diff --git a/MAINTAINERS.md b/MAINTAINERS.md index a34bda9757..e290b1b453 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -119,7 +119,7 @@ the network. Take [this PR][1], as an example. This constituted a great hotfix. It's a single commit, targeting a problem that existed on the network at the time. -Here's it should be released and deployed OTA. +Here's how it should be released and deployed OTA. [1]: https://github.com/urbit/urbit/pull/2025 @@ -159,15 +159,31 @@ so that I can type e.g. `git mu origin/foo 1337`. ### Prepare a release commit -You should create Landscape or alternative pill builds, if or as appropriate -(i.e., if anything in Landscape changed -- don't trust any compiled JS/CSS -that's included in the commit), and commit these in a release commit. - -You should always create a solid pill, in particular, as it's convenient for -tooling to be able to boot directly from a given release. - If you're making a Vere release, just play it safe and update all the pills. +For an Urbit OS release, after all the merge commits, make a release with the +commit message "release: urbit-os-v1.0.xx". This commit should have up-to-date +artifacts from pkg/interface and a new solid pill. If neither the pill nor the +JS need to be updated (e.g if the pill was already updated in the previous merge +commit), consider making the release commit with --allow-empty. + +If anything in `pkg/interface` has changed, ensure it has been built and +deployed properly. You'll want to do this before making a pill, since you want +the pill to have the new files/hash. For most things, it is sufficient to run +`npm install; npm run build:prod` in `pkg/interface`. + +However, if you've made a change to Landscape's JS, then you will need to build +a "glob" and upload it to bootstrap.urbit.org. To do this, run `npm install; +npm run build:prod` in `pkg/interface`, and add the resulting +`pkg/arvo/app/landscape/index.js` to a fakezod at that path (or just create a +new fakezod with `urbit -F zod -B bin/solid.pill -A pkg/arvo`). Run +`:glob|make`, and this will output a file in `fakezod/.urb/put/glob-0vXXX.glob`. + +Upload this file to bootstrap.urbit.org, and modify `+hash` at the top of +`pkg/arvo/app/glob.hoon` to match the hash in the filename. Do not commit the +produced `index.js` and make sure it doesn't end up in your pills (they should +be less than 10MB each). + ### Tag the resulting commit What you should do here depends on the type of release being made. @@ -205,7 +221,7 @@ You can get the "contributions" section by the shortlog between the last release and this release: ``` -git log --pretty=short LAST_RELEASE.. | git shortlog +git shortlog LAST_RELEASE.. ``` I originally tried to curate this list somewhat, but now just paste it diff --git a/README.md b/README.md index 5dd5ace5e8..c5018a871e 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Urbit uses [Nix][nix] to manage builds. On Linux and macOS you can install Nix via: ``` -curl https://nixos.org/nix/install | sh +curl -L https://nixos.org/nix/install | sh ``` The Makefile in the project's root directory contains useful phony targets for diff --git a/bin/brass.pill b/bin/brass.pill index 72a256ae6b..cc8c83ed8b 100644 --- a/bin/brass.pill +++ b/bin/brass.pill @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:29a948ebcf5d82577b3d1271cb8d0c6cf1fa8b63a324ad2ef43e73ad5dcfe62c -size 4846052 +oid sha256:f738f60e9e028081864f317106f623d2f21a5fe5c2f6fdd83576e22d21a8c6a6 +size 14862847 diff --git a/bin/ivory.pill b/bin/ivory.pill index 3bdc23eabc..829304a932 100644 --- a/bin/ivory.pill +++ b/bin/ivory.pill @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6c9cec5d3dd639a82b1b867375225e6becb9f234338ef0a4cb2626ae72ba8944 -size 1265620 +oid sha256:9fbfbe75a6685df444621ebd27677716fd0abf7113020f3274c3b5c209e3616e +size 1304972 diff --git a/bin/solid.pill b/bin/solid.pill index 3ada6c01d4..e56fe36f0d 100644 --- a/bin/solid.pill +++ b/bin/solid.pill @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f41c00b072d8b4a8e18908b038f65602e698b92d02846f44d463c4f3d425680c -size 7313574 +oid sha256:463039d83a55c7a560101bda1614a6501ef8b0cc91144588cb372f36d1b42486 +size 6259468 diff --git a/nix/ops/boot-ship.nix b/nix/ops/boot-ship.nix index ef78c294d8..2fb2ba2e79 100644 --- a/nix/ops/boot-ship.nix +++ b/nix/ops/boot-ship.nix @@ -10,9 +10,10 @@ let tlon = import ../pkgs { inherit pkgs; }; arvo = tlon.arvo; urbit = tlon.urbit; + herb = tlon.herb; in import ./fakeship { - inherit pkgs tlon deps arvo pill ship debug; + inherit pkgs arvo pill ship herb urbit; } diff --git a/nix/ops/test/builder.sh b/nix/ops/test/builder.sh index 4a852ab3f5..2746797abf 100644 --- a/nix/ops/test/builder.sh +++ b/nix/ops/test/builder.sh @@ -22,50 +22,59 @@ trap shutdown EXIT herb ./ship -p hood -d '+hood/mass' -# Start the test app +# Run the unit tests and then print scrollback +herb ./ship -d '~& ~ ~& %test-unit-start ~' +herb ./ship -d '####-test %/tests' +herb ./ship -d '~& ~ ~& %test-unit-end ~' + +# Start and run the test app herb ./ship -p hood -d '+hood/start %test' -# Run the %cores tests -herb ./ship -d '~& ~ ~& %start-test-cores ~' -herb ./ship -p test -d ':- %cores /' -herb ./ship -d '~& %finish-test-cores ~' +herb ./ship -d '~& ~ ~& %test-agents-start ~' +herb ./ship -p test -d '%agents' +herb ./ship -d '~& ~ ~& %test-agents-end ~' +herb ./ship -d '~& ~ ~& %test-generators-start ~' +herb ./ship -p test -d '%generators' +herb ./ship -d '~& ~ ~& %test-generators-end ~' + +herb ./ship -d '~& ~ ~& %test-marks-start ~' +herb ./ship -p test -d '%marks' +herb ./ship -d '~& ~ ~& %test-marks-end ~' + +# compact the loom, comparing memory use before and after herb ./ship -p hood -d '+hood/mass' -# Run the %renders tests -herb ./ship -d '~& ~ ~& %start-test-renders ~' -herb ./ship -p test -d ':- %renders /' -herb ./ship -d '~& %finish-test-renders ~' - -# Run the test generator -herb ./ship -d '+test, =seed `@uvI`(shaz %reproducible)' > test-generator-output - -cat test-generator-output || true - -herb ./ship -p hood -d '+hood/mass' - -herb ./ship -d '~& ~ ~& %start-pack ~' +herb ./ship -d '~& ~ ~& %pack-start ~' herb ./ship -p hood -d '+hood/pack' -herb ./ship -d '~& ~ ~& %finish-pack ~' +herb ./ship -d '~& ~ ~& %pack-end ~' + +herb ./ship -p hood -d '+hood/mass' shutdown # Collect output -cp urbit-output test-cores-output -cp urbit-output test-renders-output +cp urbit-output test-output-unit +cp urbit-output test-output-agents +cp urbit-output test-output-generators +cp urbit-output test-output-marks rm urbit-output -sed -i '0,/start-test-renders/d' test-renders-output -sed -i '/finish-test-renders/,$d' test-renders-output +sed -i '0,/test-unit-start/d' test-output-unit +sed -i '/test-unit-end/,$d' test-output-unit -sed -i '0,/start-test-cores/d' test-cores-output -sed -i '/finish-test-cores/,$d' test-cores-output +sed -i '0,/test-agents-start/d' test-output-agents +sed -i '/test-agents-end/,$d' test-output-agents + +sed -i '0,/test-generators-start/d' test-output-generators +sed -i '/test-generators-end/,$d' test-output-generators + +sed -i '0,/test-marks-start/d' test-output-marks +sed -i '/test-marks-end/,$d' test-output-marks mkdir $out -cp test-renders-output $out/renders -cp test-cores-output $out/cores -cp test-generator-output $out/generator +cp -r test-output-* $out/ set +x diff --git a/pkg/arvo/app/aqua.hoon b/pkg/arvo/app/aqua.hoon index b10b9556a0..748a2ee2f5 100644 --- a/pkg/arvo/app/aqua.hoon +++ b/pkg/arvo/app/aqua.hoon @@ -163,7 +163,9 @@ $ =. snap +.p.poke-result =. ..abet-pe (publish-event tym ue) - =. ..abet-pe (handle-effects ((list ovum) -.p.poke-result)) + =. ..abet-pe + ~| ova=-.p.poke-result + (handle-effects ;;((list ovum) -.p.poke-result)) $ :: :: Peek @@ -380,13 +382,12 @@ %c %clay %d %dill %e %eyre - %f %ford %g %gall %j %jael %g %gall == =/ pax - /(scot %p our.hid)/home/(scot %da now.hid)/sys/vane/[vane] + /(scot %p our.hid)/work/(scot %da now.hid)/sys/vane/[vane] =/ txt .^(@ %cx (weld pax /hoon)) [/vane/[vane] [%veer v pax txt]] => .(this ^+(this this)) @@ -400,7 +401,7 @@ :_ ~ %- unix-event %- %*(. file-ovum:pill-lib directories slim-dirs) - /(scot %p our.hid)/home/(scot %da now.hid) + /(scot %p our.hid)/work/(scot %da now.hid) =^ ms all-state (poke-pill pil) (emit-cards ms) :: diff --git a/pkg/arvo/app/chat-cli.hoon b/pkg/arvo/app/chat-cli.hoon index 20065b4843..005f9b8f31 100644 --- a/pkg/arvo/app/chat-cli.hoon +++ b/pkg/arvo/app/chat-cli.hoon @@ -451,6 +451,7 @@ :: ++ parser |^ + %+ stag | %+ knee *command |. ~+ =- ;~(pose ;~(pfix mic -) message) ;~ pose @@ -646,24 +647,24 @@ ++ tab-list ^- (list [@t tank]) :~ - [%join leaf+";join ~ship/chat-name (glyph)"] - [%leave leaf+";leave ~ship/chat-name"] + [';join' leaf+";join ~ship/chat-name (glyph)"] + [';leave' leaf+";leave ~ship/chat-name"] :: - [%create leaf+";create [type] /chat-name (glyph)"] - [%delete leaf+";delete /chat-name"] - [%invite leaf+";invite /chat-name ~ships"] - [%banish leaf+";banish /chat-name ~ships"] + [';create' leaf+";create [type] /chat-name (glyph)"] + [';delete' leaf+";delete /chat-name"] + [';invite' leaf+";invite /chat-name ~ships"] + [';banish' leaf+";banish /chat-name ~ships"] :: - [%bind leaf+";bind [glyph] ~ship/chat-name"] - [%unbind leaf+";unbind [glyph]"] - [%what leaf+";what (~ship/chat-name) (glyph)"] + [';bind' leaf+";bind [glyph] ~ship/chat-name"] + [';unbind' leaf+";unbind [glyph]"] + [';what' leaf+";what (~ship/chat-name) (glyph)"] :: - [%settings leaf+";settings"] - [%set leaf+";set key (value)"] - [%unset leaf+";unset key"] + [';settings' leaf+";settings"] + [';set' leaf+";set key (value)"] + [';unset' leaf+";unset key"] :: - [%chats leaf+";chats"] - [%help leaf+";help"] + [';chats' leaf+";chats"] + [';help' leaf+";help"] == :: +work: run user command :: diff --git a/pkg/arvo/app/chat-hook.hoon b/pkg/arvo/app/chat-hook.hoon index 0005f07f7b..3e1156be5a 100644 --- a/pkg/arvo/app/chat-hook.hoon +++ b/pkg/arvo/app/chat-hook.hoon @@ -14,11 +14,17 @@ +$ versioned-state $% state-0 state-1 + state-2 + == +:: ++$ state-2 + $: %2 + state-base == :: +$ state-1 $: %1 - loaded-cards=(list card) + loaded-cards=* state-base == +$ state-0 [%0 state-base] @@ -39,7 +45,7 @@ $% [%chat-update update:store] == -- -=| state-1 +=| state-2 =* state - :: %- agent:dbug @@ -66,29 +72,30 @@ ^- (quip card _this) |^ =/ old !<(versioned-state old-vase) - ?: ?=(%1 -.old) - :_ this(state old) - %+ murn ~(tap by wex.bol) - |= [[=wire =ship =term] *] - ^- (unit card) - ?. &(?=([%mailbox *] wire) =(our.bol ship) =(%chat-store term)) - ~ - `[%pass wire %agent [our.bol %chat-store] %leave ~] - :: path structure ugprade logic - :: - =/ keys=(set path) (scry:cc (set path) %chat-store /keys) - =/ upgraded-state - %* . *state-1 - synced synced - invite-created invite-created - allow-history allow-history - loaded-cards - %- zing - ^- (list (list card)) - %+ turn ~(tap in keys) generate-cards - == - :_ this(state upgraded-state) - loaded-cards.upgraded-state + =^ moves state + ^- (quip card state-2) + ?: ?=(%2 -.old) + ^- (quip card state-2) + `old + :: + ?: ?=(%1 -.old) + ^- (quip card state-2) + :_ [%2 +>.old] + %+ murn ~(tap by wex.bol) + |= [[=wire =ship =term] *] + ^- (unit card) + ?. &(?=([%mailbox *] wire) =(our.bol ship) =(%chat-store term)) + ~ + `[%pass wire %agent [our.bol %chat-store] %leave ~] + ^- (quip card state-2) + :: path structure ugprade logic + :: + =/ keys=(set path) (scry:cc (set path) %chat-store /keys) + :_ [%2 +.old] + %- zing + ^- (list (list card)) + (turn ~(tap in keys) generate-cards) + [moves this] :: ++ generate-cards |= old-chat=path @@ -234,10 +241,7 @@ ?+ mark (on-poke:def mark vase) %json (poke-json:cc !<(json vase)) %chat-action (poke-chat-action:cc !<(action:store vase)) - %noun - ?: =(%store-load q.vase) - [loaded-cards.state state(loaded-cards ~)] - [~ state] + %noun [~ state] :: %chat-hook-action (poke-chat-hook-action:cc !<(action:hook vase)) @@ -459,7 +463,7 @@ (chats-of-group pax) |= chat=path ^- (list card) - =/ owner (~(get by synced) chat) + =/ owner (~(get by synced.state) chat) ?~ owner ~ ?. =(u.owner our.bol) ~ %- zing diff --git a/pkg/arvo/app/chat-store.hoon b/pkg/arvo/app/chat-store.hoon index b37b1f0445..5a468ecb00 100644 --- a/pkg/arvo/app/chat-store.hoon +++ b/pkg/arvo/app/chat-store.hoon @@ -5,17 +5,20 @@ |% +$ card card:agent:gall +$ versioned-state - $% state-zero - state-one - state-two + $% state-0 + state-1 + state-2 == :: -+$ state-zero [%0 =inbox:store] -+$ state-one [%1 =inbox:store] -+$ state-two [%2 =inbox:store] ++$ state-0 [%0 =inbox:store] ++$ state-1 [%1 =inbox:store] ++$ state-2 [%2 =inbox:store] ++$ admin-action + $% [%trim ~] + == -- :: -=| state-two +=| state-2 =* state - :: %- agent:dbug @@ -33,15 +36,24 @@ ++ on-save !>(state) ++ on-load |= old-vase=vase + ^- (quip card _this) + |^ =/ old !<(versioned-state old-vase) - ?: ?=(%2 -.old) - [~ this(state old)] - =/ reversed-inbox=inbox:store - %- ~(run by inbox.old) + =? old ?=(%0 -.old) + (old-to-2 inbox.old) + =? old ?=(%1 -.old) + (old-to-2 inbox.old) + [~ this(state [%2 inbox.old])] + :: + ++ old-to-2 + |= =inbox:store + ^- state-2 + :- %2 + %- ~(run by inbox) |= =mailbox:store ^- mailbox:store [config.mailbox (flop envelopes.mailbox)] - [~ this(state [%2 reversed-inbox])] + -- :: ++ on-poke ~/ %chat-store-poke @@ -52,6 +64,7 @@ ?+ mark (on-poke:def mark vase) %json (poke-json:cc !<(json vase)) %chat-action (poke-chat-action:cc !<(action:store vase)) + %noun [~ (poke-noun:cc !<(admin-action vase))] == [cards this] :: @@ -148,6 +161,32 @@ [~ ~ %noun !>((swag [start (sub end start)] envelopes))] == :: +++ poke-noun + |= nou=admin-action + ^- _state + ~& %trimming-chat-store + %_ state + inbox + %- ~(urn by inbox) + |= [=path mailbox:store] + ^- mailbox:store + =/ [a=* out=(list envelope:store)] + %+ roll envelopes + |= $: =envelope:store + o=[[hav=(set serial:store) curr=@] out=(list envelope:store)] + == + ?: (~(has in hav.o) uid.envelope) + [[hav.o curr.o] out.o] + :- + ^- [(set serial:store) @] + [(~(put in hav.o) uid.envelope) +(curr.o)] + ^- (list envelope:store) + [envelope(number curr.o) out.o] + =/ len (lent out) + ~? !=(len (lent envelopes)) [path [%old (lent envelopes)] [%new len]] + [[len len] (flop out)] + == +:: ++ poke-json |= jon=json ^- (quip card _state) @@ -197,8 +236,8 @@ [~ state] =. letter.envelope.action (evaluate-letter [author letter]:envelope.action) =^ envelope u.mailbox (prepend-envelope u.mailbox envelope.action) - :- (send-diff path.action action(envelope envelope)) - state(inbox (~(put by inbox) path.action u.mailbox)) + :_ state(inbox (~(put by inbox) path.action u.mailbox)) + (send-diff path.action action(envelope envelope)) :: ++ handle-messages |= act=action:store diff --git a/pkg/arvo/app/chat-view.hoon b/pkg/arvo/app/chat-view.hoon index 5dbd0a9e55..2a13eb8d3f 100644 --- a/pkg/arvo/app/chat-view.hoon +++ b/pkg/arvo/app/chat-view.hoon @@ -1,19 +1,19 @@ :: chat-view: sets up chat JS client, paginates data, and combines commands :: into semantic actions for the UI :: -/- *permission-store, - *permission-hook, - *group-store, - *invite-store, - *metadata-store, - *permission-group-hook, - *chat-hook, - *metadata-hook, - *rw-security, - hook=chat-hook -/+ *server, default-agent, verb, dbug, - store=chat-store, - view=chat-view +/- *permission-store +/- *permission-hook +/- *group-store +/- *invite-store +/- *metadata-store +/- *permission-group-hook +/- *chat-hook +/- *metadata-hook +/- *rw-security +/- hook=chat-hook +/+ *server, default-agent, verb, dbug +/+ store=chat-store +/+ view=chat-view :: ~% %chat-view-top ..is ~ |% @@ -96,7 +96,9 @@ ++ truncated-inbox ^- inbox:store =/ =inbox:store - .^(inbox:store %gx /=chat-store/(scot %da now.bol)/all/noun) + =/ our (scot %p our.bol) + =/ now (scot %da now.bol) + .^(inbox:store %gx /[our]/chat-store/[now]/all/noun) %- ~(run by inbox) |= =mailbox:store ^- mailbox:store @@ -403,7 +405,12 @@ ++ chat-scry |= pax=path ^- (unit mailbox:store) - =. pax ;:(weld /=chat-store/(scot %da now.bol)/mailbox pax /noun) + =. pax + ;: weld + /(scot %p our.bol)/chat-store/(scot %da now.bol)/mailbox + pax + /noun + == .^((unit mailbox:store) %gx pax) :: ++ maybe-group-from-chat diff --git a/pkg/arvo/app/contact-hook.hoon b/pkg/arvo/app/contact-hook.hoon index 2415380ec1..b5a2b83fb8 100644 --- a/pkg/arvo/app/contact-hook.hoon +++ b/pkg/arvo/app/contact-hook.hoon @@ -456,20 +456,30 @@ ++ contacts-scry |= pax=path ^- (unit contacts) - =. pax ;:(weld /=contact-store/(scot %da now.bol)/contacts pax /noun) + =. pax + ;: weld + /(scot %p our.bol)/contact-store/(scot %da now.bol)/contacts + pax + /noun + == .^((unit contacts) %gx pax) :: ++ invite-scry |= uid=serial ^- (unit invite) =/ pax - /=invite-store/(scot %da now.bol)/invite/contacts/(scot %uv uid)/noun + ;: weld + /(scot %p our.bol)/invite-store/(scot %da now.bol) + /invite/contacts/(scot %uv uid)/noun + == .^((unit invite) %gx pax) :: ++ group-scry |= pax=path - ^- (unit group) - .^((unit group) %gx ;:(weld /=group-store/(scot %da now.bol) pax /noun)) + .^ (unit group) + %gx + ;:(weld /(scot %p our.bol)/group-store/(scot %da now.bol) pax /noun) + == :: ++ pull-wire |= pax=path diff --git a/pkg/arvo/app/contact-view.hoon b/pkg/arvo/app/contact-view.hoon index f30f85b504..e6fc820c9f 100644 --- a/pkg/arvo/app/contact-view.hoon +++ b/pkg/arvo/app/contact-view.hoon @@ -1,14 +1,15 @@ :: contact-view: sets up contact JS client and combines commands :: into semantic actions for the UI :: -/- *group-store, - *group-hook, - *invite-store, - *contact-hook, - *metadata-store, - *metadata-hook, - *permission-group-hook, - *permission-hook +/- *group-store +/- *group-hook +/- *invite-store +/- *contact-hook +/- *metadata-store +/- *metadata-hook +/- *permission-group-hook +/- *permission-hook +:: /+ *server, *contact-json, default-agent, dbug |% +$ versioned-state @@ -256,11 +257,16 @@ :: ++ all-scry ^- rolodex - .^(rolodex %gx /=contact-store/(scot %da now.bol)/all/noun) + .^(rolodex %gx /(scot %p our.bol)/contact-store/(scot %da now.bol)/all/noun) :: ++ contact-scry |= pax=path ^- (unit contact) - =. pax ;:(weld /=contact-store/(scot %da now.bol)/contact pax /noun) + =. pax + ;: weld + /(scot %p our.bol)/contact-store/(scot %da now.bol)/contact + pax + /noun + == .^((unit contact) %gx pax) -- diff --git a/pkg/arvo/app/dbug.hoon b/pkg/arvo/app/dbug.hoon index 320a03dbae..7d980713a9 100644 --- a/pkg/arvo/app/dbug.hoon +++ b/pkg/arvo/app/dbug.hoon @@ -360,12 +360,13 @@ :- %a %+ turn %+ sort ~(tap by sessions:auth-state:v-eyre) - |= [[@uv a=@da] [@uv b=@da]] - (gth a b) + |= [[@uv a=session:eyre] [@uv b=session:eyre]] + (gth expiry-time.a expiry-time.b) |= [cookie=@uv session:eyre] %- pairs :~ 'cookie'^s+(end 3 4 (rsh 3 2 (scot %x (shax cookie)))) 'expiry'^(time expiry-time) + 'channels'^(numb ~(wyt in channels)) == :: :: /eyre/channels.json diff --git a/pkg/arvo/app/debug/index.html b/pkg/arvo/app/debug/index.html index b16e317b03..eb37ada11d 100644 --- a/pkg/arvo/app/debug/index.html +++ b/pkg/arvo/app/debug/index.html @@ -12,8 +12,8 @@
- - + + diff --git a/pkg/arvo/app/dojo.hoon b/pkg/arvo/app/dojo.hoon index bba65e646c..ffd205c3e2 100644 --- a/pkg/arvo/app/dojo.hoon +++ b/pkg/arvo/app/dojo.hoon @@ -23,10 +23,10 @@ poy/(unit dojo-project) :: working $: :: sur: structure imports :: - sur=(list cable:ford) + sur=(list cable:clay) :: lib: library imports :: - lib=(list cable:ford) + lib=(list cable:clay) == var/(map term cage) :: variable state old/(set term) :: used TLVs @@ -89,7 +89,7 @@ $: mad/dojo-command :: operation num/@ud :: number of tasks cud/(unit dojo-source) :: now solving - pux/(unit path) :: ford working + pux/(unit path) :: working pro/(unit vase) :: prompting loop per/(unit sole-edit) :: pending reverse job/(map @ud dojo-build) :: problems @@ -100,6 +100,17 @@ -- => |% +:: TODO: move to zuse? copied from clay +:: +++ with-face |=([face=@tas =vase] vase(p [%face face p.vase])) +++ with-faces + =| res=(unit vase) + |= vaz=(list [face=@tas =vase]) + ^- vase + ?~ vaz (need res) + =/ faz (with-face i.vaz) + =. res `?~(res faz (slop faz u.res)) + $(vaz t.vaz) :: |parser-at: parsers for dojo expressions using :dir as working directory :: ++ parser-at @@ -177,13 +188,13 @@ :: ++ parse-cables %+ cook - |= cables=(list cable:ford) + |= cables=(list cable:clay) :+ 0 %ex ^- hoon :: :- %clsg %+ turn cables - |= cable=cable:ford + |= cable=cable:clay ^- hoon :: :+ %clhp @@ -194,7 +205,7 @@ (most ;~(plug com gaw) parse-cable) :: ++ parse-cable - %+ cook |=(a=cable:ford a) + %+ cook |=(a=cable:clay a) ;~ pose (stag ~ ;~(pfix tar sym)) (cook |=([face=term tis=@ file=term] [`face file]) ;~(plug sym tis sym)) @@ -312,23 +323,22 @@ dir dir(r [%da now.hid]) :: - ++ he-disc `disc:ford`[p q]:he-beam ++ he-beak `beak`[p q r]:he-beam - ++ he-rail `rail:ford`[[p q] s]:he-beam ++ he-parser (parser-at our.hid he-beam) :: ++ dy :: project work |_ dojo-project :: ++ dy-abet +>(poy `+<) :: resolve ++ dy-amok +>(poy ~) :: terminate - ++ dy-ford :: send work to ford - |= [way=wire schematic=schematic:ford] + :: +dy-sing: make a clay read request + :: + ++ dy-sing + |= [way=wire =care:clay =path] ^+ +>+> - ?> ?=($~ pux) - :: pin all builds to :now.hid so they don't get cached forever - :: + ?> ?=(~ pux) %- he-card(poy `+>+<(pux `way)) - [%pass way %arvo %f %build live=%.n schematic] + =/ [=ship =desk =case:clay] he-beak + [%pass way %arvo %c %warp ship desk ~ %sing care case path] :: ++ dy-request |= [way=wire =request:http] @@ -348,12 +358,8 @@ :: really shoud stop the thread as well :: [%pass u.pux %agent [our.hid %spider] %leave ~] - [%pass u.pux %arvo %f %kill ~] - :: - ++ dy-slam :: call by ford - |= {way/wire gat/vase sam/vase} - ^+ +>+> - (dy-ford way `schematic:ford`[%call [%$ %noun gat] [%$ %noun sam]]) + =/ [=ship =desk =case:clay] he-beak + [%pass u.pux %arvo %c %warp ship desk ~] :: ++ dy-errd :: reject change, abet |= {rev/(unit sole-edit) err/@u} @@ -479,7 +485,11 @@ ?: |(?=(^ per) ?=(^ pux) ?=(~ pro)) ~& %dy-no-prompt (dy-diff %bel ~) - (dy-slam /dial u.pro !>(txt)) + =/ res (mule |.((slam u.pro !>(txt)))) + ?: ?=(%| -.res) + %- (slog >%dy-done< p.res) + (dy-rash %bel ~) :: TODO: or +dy-abet(per ~) ? + (dy-made-dial %noun p.res) :: ++ dy-cast |* {typ/_* bun/vase} @@ -516,13 +526,13 @@ $lib %_ . lib - ((dy-cast (list cable:ford) !>(*(list cable:ford))) q.cay) + ((dy-cast (list cable:clay) !>(*(list cable:clay))) q.cay) == :: $sur %_ . sur - ((dy-cast (list cable:ford) !>(*(list cable:ford))) q.cay) + ((dy-cast (list cable:clay) !>(*(list cable:clay))) q.cay) == :: $dir =+ ^= pax ^- path @@ -637,7 +647,12 @@ ~& %dy-edit-busy =^ lic say (~(transmit sole say) dat) (dy-diff %mor [%det lic] [%bel ~] ~) - (dy-slam(per `dat) /edit u.pro !>((tufa buf.say))) + => .(per `dat) + =/ res (mule |.((slam u.pro !>((tufa buf.say))))) + ?: ?=(%| -.res) + %- (slog >%dy-edit< p.res) + (dy-rash %bel ~) :: TODO: or +dy-abet(per ~) ? + (dy-made-edit %noun p.res) :: ++ dy-type :: sole action |= act/sole-action @@ -657,43 +672,79 @@ !>(~) (slop (dy-vase p.i.src) $(src t.src)) :: - ++ dy-silk-vase |=(vax/vase [%$ %noun vax]) :: vase to silk - ++ dy-silk-sources :: arglist to silk - |= src/(list dojo-source) - ^- schematic:ford - [%$ %noun (dy-sore src)] - :: - ++ dy-silk-config :: configure - |= {cay/cage cig/dojo-config} - ^- [wire schematic:ford] + ++ dy-run-generator + !. + |= [cay=cage cig=dojo-config] + ^+ +>+> ?. (~(nest ut [%cell [%atom %$ ~] %noun]) | p.q.cay) - :: - :: naked gate + :: naked generator; takes one argument :: ?. &(?=({* ~} p.cig) ?=(~ q.cig)) ~|(%one-argument !!) - :- /noun - :+ %call [%$ %noun q.cay] - [%$ %noun (dy-vase p.i.p.cig)] - :: + =/ res (mule |.((slam q.cay (dy-vase p.i.p.cig)))) + ?: ?=(%| -.res) + :: TODO: or +dy-rash ? + (he-diff(poy ~) %tan leaf+"dojo: naked generator failure" p.res) + (dy-hand %noun p.res) :: normal generator :: - :- ?+ -.q.q.cay ~|(%bad-gen ~_((sell (slot 2 q.cay)) !!)) - $say /gent - $ask /dial + :: A normal generator takes as arguments: + :: - event args: date, entropy, beak (network location) + :: - positional arguments, as a list + :: - optional keyword arguments, as name-value pairs + :: + :: The generator is a pair of a result mark and a gate. + :: TODO: test %ask generators + :: + =/ wat (mule |.(!<(?(%ask %say) (slot 2 q.cay)))) + ?: ?=(%| -.wat) + (he-diff(poy ~) %tan leaf+"dojo: generator neither %ask nor %say" p.wat) + =- =/ res (mule -) + ?: ?=(%| -.res) + (he-diff(poy ~) %tan leaf+"dojo: generator failure" p.res) + ?- p.wat + %ask (dy-made-dial %noun p.res) + %say (dy-made-gent %noun p.res) == - =+ gat=(slot 3 q.cay) - :+ %call [%$ %noun gat] - :+ [%$ %noun !>([now=now.hid eny=eny.hid bec=he-beak])] - (dy-silk-sources p.cig) - :+ %mute [%$ %noun (fall (slew 27 gat) !>(~))] - ^- (list [wing schematic:ford]) - %+ turn ~(tap by q.cig) - |= {a/term b/(unit dojo-source)} - ^- [wing schematic:ford] - :- [a ~] - :+ %$ %noun - ?~(b !>([~ ~]) (dy-vase p.u.b)) + :: gat: generator gate + :: som: default gat sample + :: ven: event arguments + :: poz: positional arguments + :: kev: key-value named arguments + :: kuv: default keyword arguments + :: sam: fully populated sample + :: rog: default gat sample + :: + |. ^- vase + =/ gat=vase (slot 3 q.cay) + =/ som=vase (slot 6 gat) + =/ ven=vase !>([now=now.hid eny=eny.hid bec=he-beak]) + =/ poz=vase (dy-sore p.cig) + =/ kev=vase + =/ kuv=(unit vase) (slew 7 som) + ?: =(~ q.cig) + (fall kuv !>(~)) + =/ soz=(list [var=term vax=vase]) + %~ tap by + %- ~(run by q.cig) + |=(val=(unit dojo-source) ?~(val !>([~ ~]) (dy-vase p.u.val))) + ~| keyword-arg-failure+~(key by q.cig) + %+ slap + (with-faces kuv+(need kuv) rep+(with-faces soz) ~) + :+ %cncb [%kuv]~ + %+ turn soz + |= [var=term *] + ^- [wing hoon] + [[var]~ [%wing var %rep ~]] + :: + =/ sam=vase :(slop ven poz kev) + ?. (~(nest ut p.som) | p.sam) + ~> %slog.1^leaf+"dojo: nest-need" + ~> %slog.0^(skol p.som) + ~> %slog.1^leaf+"dojo: nest-have" + ~> %slog.0^(skol p.sam) + !! + (slam gat sam) :: ++ dy-made-dial :: dialog product |= cag/cage @@ -742,51 +793,81 @@ ++ dy-make :: build step ^+ +> ?> ?=(^ cud) - =+ bil=q.u.cud :: XX =* - ?: ?=($ur -.bil) - (dy-request /hand `request:http`[%'GET' p.bil ~ ~]) - ?: ?=($te -.bil) - (dy-wool-poke p.bil q.bil) - %- dy-ford - ^- [path schematic:ford] - ?- -.bil - $ge (dy-silk-config (dy-cage p.p.p.bil) q.p.bil) - $dv [/hand [%core [he-disc (weld /hoon (flop p.bil))]]] - $ex [/hand (dy-mare p.bil)] - $sa [/hand [%bunt he-disc p.bil]] - $as [/hand [%cast he-disc p.bil [%$ (dy-cage p.q.bil)]]] - $do [/hand [%call (dy-mare p.bil) [%$ (dy-cage p.q.bil)]]] - $tu :- /hand - :+ %$ %noun - |- ^- vase - ?~ p.bil !! - =+ hed=(dy-vase p.i.p.bil) - ?~ t.p.bil hed - (slop hed $(p.bil t.p.bil)) + =/ bil q.u.cud + ?- -.bil + %ur (dy-request /hand `request:http`[%'GET' p.bil ~ ~]) + %te (dy-wool-poke p.bil q.bil) + %ex (dy-mere p.bil) + %dv (dy-sing hand+p.bil %a (snoc p.bil %hoon)) + %ge (dy-run-generator (dy-cage p.p.p.bil) q.p.bil) + %sa + =+ .^(=dais:clay cb+(en-beam:format he-beak /[p.bil])) + (dy-hand p.bil bunt:dais) + :: + %as + =/ cag=cage (dy-cage p.q.bil) + =+ .^(=tube:clay cc+(en-beam:format he-beak /[p.bil]/[p.cag])) + (dy-hand p.bil (tube q.cag)) + :: + %do + =/ gat (dy-eval p.bil) + ?: ?=(%| -.gat) + (he-diff(poy ~) %tan leaf+"dojo: %do create gate failed" p.gat) + =/ res (mule |.((slam q.p.gat (dy-vase p.q.bil)))) + ?: ?=(%| -.res) + (he-diff(poy ~) %tan leaf+"dojo: %do execute failed" p.res) + (dy-hand %noun p.res) + :: + %tu + %+ dy-hand %noun + |- ^- vase + ?~ p.bil !! + =/ hed (dy-vase p.i.p.bil) + ?~ t.p.bil hed + (slop hed $(p.bil t.p.bil)) == + :: +dy-hoon-var: if input is a dojo variable lookup, perform it :: - ++ dy-hoon-mark :: XX architect + :: If the expression is a bare reference to a Dojo variable, + :: produce that variable's value; otherwise, produce ~. + :: + ++ dy-hoon-var =+ ^= ope |= gen/hoon ^- hoon ?: ?=(?($sgld $sgbn) -.gen) $(gen q.gen) =+ ~(open ap gen) ?.(=(gen -) $(gen -) gen) - |= gen/hoon ^- (unit mark) + |= gen/hoon ^- (unit cage) =. gen (ope gen) ?: ?=({$cnts {@ ~} ~} gen) - (bind (~(get by var) i.p.gen) head) + (~(get by var) i.p.gen) ~ + :: +dy-mere: execute hoon and complete construction step :: - ++ dy-mare :: build expression - |= gen/hoon - ^- schematic:ford - =+ too=(dy-hoon-mark gen) - =- ?~(too - [%cast he-disc u.too -]) - :+ %ride gen - :- [%$ he-hoon-head] - :^ %plan he-rail `coin`blob+** - `scaffold:ford`[he-rail zuse sur lib ~ ~] + ++ dy-mere + |= =hoon + =/ res (dy-eval hoon) + ?: ?=(%| -.res) + (he-diff(poy ~) %tan leaf+"dojo: hoon expression failed" p.res) + (dy-hand p.res) + :: +dy-eval: run hoon source against the dojo subject + :: + :: TODO: use /lib and /sur imports to construct subject + :: + ++ dy-eval + |= =hoon + ^- (each cage tang) + ?^ val=(dy-hoon-var hoon) + &+u.val + !. + %- mule |. + :- %noun + =/ vaz=(list [term vase]) + (turn ~(tap by var) |=([lal=term cag=cage] [lal q.cag])) + =/ sut (slop !>([our=our now=now eny=eny]:hid) !>(..zuse)) + =? sut ?=(^ vaz) (slop (with-faces vaz) sut) + (slap sut hoon) :: ++ dy-step :: advance project |= nex/@ud @@ -875,38 +956,17 @@ :- %pro [& %$ (weld he-prow ?~(buf "> " "< "))] :: - ++ he-made :: result from ford - |= $: way=wire - date=@da - $= result - $% [%complete build-result=build-result:ford] - [%incomplete =tang] - == == + ++ he-writ + |= [way=wire =riot:clay] ^+ +> ?> ?=(^ poy) =< he-pine - ?- -.result - %incomplete - (he-diff(poy ~) %tan tang.result) - :: - %complete - ?- -.build-result.result - :: - %success - :: - %. (result-to-cage:ford build-result.result) - =+ dye=~(. dy u.poy(pux ~)) - ?+ way !! - {$hand ~} dy-hand:dye - {$dial ~} dy-made-dial:dye - {$gent ~} dy-made-gent:dye - {$noun ~} dy-made-noun:dye - {$edit ~} dy-made-edit:dye - == - :: - %error - (he-diff(poy ~) %tan message.build-result.result) - == == + ?+ way !! + [%hand *] + ?~ riot + (he-diff(poy ~) %tan >%generator-build-fail< >(snoc t.way %hoon)< ~) + (~(dy-hand dy u.poy(pux ~)) noun+!<(vase q.r.u.riot)) + == :: ++ he-unto :: result from agent |= {way/wire cit/sign:agent:gall} @@ -916,7 +976,7 @@ +> ?~ p.cit (he-diff %txt ">=") - (he-diff %tan u.p.cit) + (he-diff %tan leaf+"dojo: app poke failed" u.p.cit) :: ++ he-wool |= [way=wire =sign:agent:gall] @@ -925,13 +985,13 @@ %poke-ack ?~ p.sign +>.$ - =. +>.$ (he-diff(poy ~) %tan u.p.sign) + =. +>.$ (he-diff(poy ~) %tan leaf+"dojo: thread poke failed" u.p.sign) (he-card %pass /wool %agent [our.hid %spider] %leave ~) :: %watch-ack ?~ p.sign +>.$ - (he-diff(poy ~) %tan u.p.sign) + (he-diff(poy ~) %tan leaf+"dojo: thread watch failed" u.p.sign) :: %fact ?+ p.cage.sign ~|([%dojo-thread-bad-mark-result p.cage.sign] !!) @@ -1449,7 +1509,7 @@ =^ moves state =< he-abet ?+ +<.sign-arvo ~|([%dojo-bad-take +<.sign-arvo] !!) - %made (he-made:he-full t.wire +>.sign-arvo) + %writ (he-writ:he-full t.wire +>.sign-arvo) %http-response (he-http-response:he-full t.wire +>.sign-arvo) == [moves ..on-init] diff --git a/pkg/arvo/app/eth-watcher.hoon b/pkg/arvo/app/eth-watcher.hoon index 4265235864..0a4355a470 100644 --- a/pkg/arvo/app/eth-watcher.hoon +++ b/pkg/arvo/app/eth-watcher.hoon @@ -318,7 +318,11 @@ %watch-ack ?~ p.sign [~ this] - %- (slog leaf+"eth-watcher couldn't start listen to thread" u.p.sign) + %- (slog leaf+"eth-watcher couldn't start listening to thread" u.p.sign) + :: TODO: kill thread that may have started, although it may not + :: have started yet since we get this response before the + :: %start-spider poke is processed + :: [~ (clear-running t.wire)] :: %kick [~ (clear-running t.wire)] @@ -413,7 +417,7 @@ ++ on-arvo |= [=wire =sign-arvo] ^- (quip card agent:gall) - ?+ +<.sign-arvo ~|([%strange-sign-arvo -.sign-arvo] !!) + ?+ +<.sign-arvo ~|([%strange-sign-arvo -.sign-arvo] !!) %wake ?. ?=([%timer *] wire) ~& weird-wire=wire [~ this] =* path t.wire diff --git a/pkg/arvo/app/file-server.hoon b/pkg/arvo/app/file-server.hoon index c20ce198f9..6732fd30a3 100644 --- a/pkg/arvo/app/file-server.hoon +++ b/pkg/arvo/app/file-server.hoon @@ -1,14 +1,14 @@ -/- srv=file-server +/- srv=file-server, glob /+ *server, default-agent, verb, dbug |% +$ card card:agent:gall -+$ versioned-state - $% state-zero ++$ serving (map url-base=path [=content public=?]) ++$ content + $% [%clay =path] + [%glob =glob:glob] == -:: -+$ serving (map url-base=path [clay-base=path public=?]) -+$ state-zero - $: %0 ++$ state-1 + $: %1 =configuration:srv =serving == @@ -17,7 +17,7 @@ %+ verb | %- agent:dbug :: -=| state-zero +=| state-1 =* state - ^- agent:gall |_ =bowl:gall @@ -33,7 +33,7 @@ %+ turn ^- (list path) [/ /'~landscape' ~] - |=(pax=path [pax [/app/landscape %.n]]) + |=(pax=path [pax [clay+/app/landscape %.n]]) == :~ (connect /) (connect /'~landscape') @@ -49,7 +49,32 @@ ++ on-load |= old-vase=vase ^- (quip card _this) - [~ this(state !<(state-zero old-vase))] + |^ + =+ !<(old-state=versioned-state old-vase) + =? old-state ?=(%0 -.old-state) + %= old-state + - %1 + serving-0 + %- ~(run by serving-0.old-state) + |= [=clay=path public=?] + ^- [content ?] + [[%clay clay-path] public] + == + ?> ?=(%1 -.old-state) + [~ this(state old-state)] + :: + +$ versioned-state + $% state-1 + state-0 + == + :: + +$ serving-0 (map url-base=path [=clay=path public=?]) + +$ state-0 + $: %0 + =configuration:srv + =serving-0 + == + -- :: ++ on-poke |= [=mark =vase] @@ -75,7 +100,14 @@ ?: (~(has by serving) url-base) ~|("url already bound to {<(~(got by serving) url-base.act)>}" !!) :- [%pass url-base %arvo %e %connect [~ url-base] %file-server]~ - this(serving (~(put by serving) url-base [clay-base.act public.act])) + this(serving (~(put by serving) url-base clay+clay-base.act public.act)) + :: + %serve-glob + =* url-base url-base.act + ?: (~(has by serving) url-base) + ~|("url already bound to {<(~(got by serving) url-base.act)>}" !!) + :- [%pass url-base %arvo %e %connect [~ url-base] %file-server]~ + this(serving (~(put by serving) url-base glob+glob.act public.act)) :: %unserve-dir :- [%pass url-base.act %arvo %e %disconnect [~ url-base.act]]~ @@ -84,9 +116,9 @@ %toggle-permission ?. (~(has by serving) url-base.act) ~|("url is not bound" !!) - =/ [clay-base=path public=?] (~(got by serving) url-base.act) + =/ [=content public=?] (~(got by serving) url-base.act) :- ~ - this(serving (~(put by serving) url-base.act [clay-base !public])) + this(serving (~(put by serving) url-base.act [content !public])) :: %set-landscape-homepage-prefix =. landscape-homepage-prefix.configuration prefix.act @@ -133,42 +165,67 @@ |= req-line=request-line ^- [simple-payload:http ?] =/ pax=path (snoc site.req-line (need ext.req-line)) - =/ clay-path=(unit [path ?]) (get-clay-path pax) - ?~ clay-path [not-found:gen %.n] - =/ scry-path - :* (scot %p our.bowl) - q.byk.bowl - (scot %da now.bowl) - -.u.clay-path + =/ content=(unit [=content suffix=path public=?]) (get-content pax) + ?~ content [not-found:gen %.n] + ?- -.content.u.content + %clay + =/ scry-path + :* (scot %p our.bowl) + q.byk.bowl + (scot %da now.bowl) + (lowercase (weld path.content.u.content suffix.u.content)) + == + ?. .^(? %cu scry-path) [not-found:gen %.n] + =/ file (as-octs:mimes:html .^(@ %cx scry-path)) + :_ public.u.content + ?+ ext.req-line not-found:gen + [~ %html] (html-response:gen file) + [~ %js] (js-response:gen file) + [~ %css] (css-response:gen file) + [~ %png] (png-response:gen file) == - ?. .^(? %cu scry-path) [not-found:gen %.n] - =/ file (as-octs:mimes:html .^(@ %cx scry-path)) - :_ +.u.clay-path - ?+ ext.req-line not-found:gen - [~ %html] (html-response:gen file) - [~ %js] (js-response:gen file) - [~ %css] (css-response:gen file) - [~ %png] (png-response:gen file) + :: + %glob + =/ data=(unit mime) + (~(get by glob.content.u.content) suffix.u.content) + ?~ data + [not-found:gen %.n] + :_ public.u.content + =/ mime-type=@t (rsh 3 1 (crip )) + :: Should maybe inspect to see how long cache should hold + :: + [[200 ['content-type' mime-type] max-1-da:gen ~] `q.u.data] == :: - ++ get-clay-path + ++ lowercase + |= upper=(list @t) + %+ turn upper + |= word=@t + %- crip + %+ turn (rip 3 word) + |= char=@t + ?. &((gte char 'A') (lte char 'Z')) + char + (add char ^~((sub 'a' 'A'))) + :: + ++ get-content |= pax=path - ^- (unit [path ?]) - =/ first-try (match-clay-path pax (~(del by serving) /)) + ^- (unit [content path ?]) + =/ first-try (match-content-path pax (~(del by serving) /)) ?^ first-try first-try =/ root (~(get by serving) /) ?~ root ~ - (match-clay-path pax (~(gas by *^serving) [[/ u.root] ~])) + (match-content-path pax (~(gas by *^serving) [[/ u.root] ~])) :: - ++ match-clay-path + ++ match-content-path |= [pax=path =^serving] - ^- (unit [path ?]) + ^- (unit [content path ?]) %- ~(rep by serving) - |= [[url-base=path clay-base=path public=?] out=(unit [path ?])] + |= [[url-base=path =content public=?] out=(unit [content path ?])] ?^ out out =/ suf (get-suffix url-base pax) ?~ suf ~ - `[(weld clay-base u.suf) public] + `[content u.suf public] :: ++ get-suffix |= [a=path b=path] @@ -207,11 +264,33 @@ ?+ +<.sign (on-arvo:def wire sign) %bound ?: accepted.sign [~ this] + ~& [dap.bowl %failed-to-bind path.binding.sign] [~ this(serving (~(del by serving) path.binding.sign))] == :: ++ on-leave on-leave:def -++ on-peek on-peek:def +++ on-peek + |= =path + ^- (unit (unit cage)) + |^ + ?+ path (on-peek:def path) + [%x %clay %base %hash ~] ``hash+!>(base-hash) + == + :: stolen from +trouble + :: TODO: move to a lib? + ++ base-hash + ^- @uv + =+ .^ ota=(unit [=ship =desk =aeon:clay]) + %gx /(scot %p our.bowl)/hood/(scot %da now.bowl)/kiln/ota/noun + == + ?~ ota + *@uv + =/ parent (scot %p ship.u.ota) + =+ .^(=cass:clay %cs /[parent]/[desk.u.ota]/1/late/foo) + %^ end 3 3 + .^(@uv %cz /[parent]/[desk.u.ota]/(scot %ud ud.cass)) + -- + ++ on-agent on-agent:def ++ on-fail on-fail:def -- diff --git a/pkg/arvo/app/glob.hoon b/pkg/arvo/app/glob.hoon new file mode 100644 index 0000000000..4f3ef41d70 --- /dev/null +++ b/pkg/arvo/app/glob.hoon @@ -0,0 +1,187 @@ +/- glob +/+ default-agent, verb, dbug +|% +++ hash 0v2.kf979.bjv2a.i15f0.sesik.9nnot ++$ state-0 [%0 hash=@uv glob=(unit (each glob:glob tid=@ta))] ++$ all-states + $% state-0 + == ++$ card card:agent:gall +-- +|% +++ wait-timeout + |= [=path now=@da] + ^- card + [%pass [%timer path] %arvo %b %wait (add now ~m30)] +:: +++ wait-start + |= now=@da + ^- card + [%pass /start %arvo %b %wait now] +:: +++ poke-file-server + |= [our=@p =cage] + ^- card + [%pass /serving/(scot %uv hash) %agent [our %file-server] %poke cage] +:: +++ poke-spider + |= [=path our=@p =cage] + ^- card + [%pass [%running path] %agent [our %spider] %poke cage] +:: +++ watch-spider + |= [=path our=@p =sub=path] + ^- card + [%pass [%running path] %agent [our %spider] %watch sub-path] +:: +++ leave-spider + |= [=path our=@p] + ^- card + [%pass [%running path] %agent [our %spider] %leave ~] +-- +=| state=state-0 +=. hash.state hash +=/ serve-path=path /'~landscape'/js/index +^- agent:gall +%+ verb | +%- agent:dbug +^- agent:gall +|_ =bowl:gall ++* this . + def ~(. (default-agent this %|) bowl) +++ on-init + ^- (quip card _this) + :: delay through timer to make sure %spider has started + [[(wait-start now.bowl) ~] this] +:: +++ on-save !>(state) +++ on-load + |= old-state=vase + ^- (quip card _this) + ~& > %initting + =+ !<(old=all-states old-state) + ?> ?=(%0 -.old) + ?~ glob.old + on-init + ?: ?=(%& -.u.glob.old) + ?: =(hash.old hash.state) + `this(state old) + on-init + =/ cancel-cards + =/ args [tid.p.u.glob.old &] + :~ (leave-spider /(scot %uv hash.old) our.bowl) + (poke-spider /(scot %uv hash.old) our.bowl %spider-stop !>(args)) + == + =^ init-cards this on-init + [(weld cancel-cards init-cards) this] +:: +++ on-poke + |= [=mark =vase] + ^- (quip card _this) + ?+ mark (on-poke:def mark vase) + %glob-make + :_ this + =/ home=path /(scot %p our.bowl)/home/(scot %da now.bowl) + =+ .^(=tube:clay %cc (weld home /js/mime)) + =+ .^(js=@t %cx (weld home /app/landscape/js/index/js)) + =+ !<(=mime (tube !>(js))) + =/ =glob:glob (~(put by *glob:glob) /js mime) + =/ =path /(cat 3 'glob-' (scot %uv (sham glob)))/glob + [%pass /make %agent [our.bowl %hood] %poke %drum-put !>([path (jam glob)])]~ + :: + %noun + ?: =(%kick q.vase) + (on-load !>(state(hash *@uv))) + (on-poke:def mark vase) + == +:: +++ on-watch on-watch:def +++ on-leave on-leave:def +++ on-peek on-peek:def +++ on-agent + |= [=wire =sign:agent:gall] + ^- (quip card _this) + ?: ?=([%serving @ ~] wire) + (on-agent:def wire sign) + ?: ?=([%make ~] wire) + (on-agent:def wire sign) + ?. ?=([%running @ ~] wire) + %- (slog leaf+"glob: strange on-agent! {}" ~) + (on-agent:def wire sign) + ?- -.sign + %poke-ack + ?~ p.sign + [~ this] + %- (slog leaf+"glob: couldn't start thread; will retry" u.p.sign) + :_ this(glob.state ~) :_ ~ + (leave-spider t.wire our.bowl) + :: + %watch-ack + ?~ p.sign + [~ this] + %- (slog leaf+"glob: couldn't listen to thread; will retry" u.p.sign) + [~ this(glob.state ~)] + :: + %kick + =? glob.state ?=([~ %| *] glob.state) + ~ + `this + :: + %fact + =/ produced-hash (slav %uv i.t.wire) + ?. =(hash.state produced-hash) + [~ this] + ?+ p.cage.sign (on-agent:def wire sign) + %thread-fail + =+ !<([=term =tang] q.cage.sign) + %- (slog leaf+"glob: thread failed; will retry" leaf+ tang) + [~ this(glob.state ~)] + :: + %thread-done + =+ !<(=glob:glob q.cage.sign) + ?. =(hash.state (sham glob)) + %: mean + leaf+"glob: hash doesn't match!" + >expected=hash.state< + >got=(sham glob)< + ~ + == + :_ this(glob.state `[%& glob]) :_ ~ + %+ poke-file-server our.bowl + [%file-server-action !>([%serve-glob serve-path glob %&])] + == + == +:: +++ on-arvo + |= [=wire =sign-arvo] + ^- (quip card _this) + ?: ?=([%start ~] wire) + =/ new-tid=@ta (cat 3 'glob--' (scot %uv eny.bowl)) + =/ args [~ `new-tid %glob !>([hash.state ~])] + =/ action !>([%unserve-dir serve-path]) + :_ this(glob.state `[%| new-tid]) + :~ (poke-file-server our.bowl %file-server-action action) + (wait-timeout /[new-tid] now.bowl) + (watch-spider /(scot %uv hash.state) our.bowl /thread-result/[new-tid]) + (poke-spider /(scot %uv hash.state) our.bowl %spider-start !>(args)) + == + ?. ?=([%timer @ ~] wire) + %- (slog leaf+"glob: strange on-arvo wire: {}" ~) + `this + ?. ?=(%wake +<.sign-arvo) + %- (slog leaf+"glob: strange on-arvo sign: {}" ~) + `this + ?: ?=([~ %& *] glob.state) + `this + ?. ?| ?=(~ glob.state) + =(i.t.wire tid.p.u.glob.state) + == + `this + ?^ error.sign-arvo + %- (slog leaf+"glob: timer handling failed; will retry" ~) + [[(wait-timeout t.wire now.bowl)]~ this] + %- (slog leaf+"glob: timed out; retrying" ~) + (on-load !>(state(hash *@uv))) +:: +++ on-fail on-fail:def +-- diff --git a/pkg/arvo/app/goad.hoon b/pkg/arvo/app/goad.hoon index b3b04f030a..5e34f2151e 100644 --- a/pkg/arvo/app/goad.hoon +++ b/pkg/arvo/app/goad.hoon @@ -3,30 +3,15 @@ ^- agent:gall => |% - ++ warp - |= =bowl:gall - [%pass /clay %arvo %c %warp our.bowl %home ~ %next %z da+now.bowl /sys] - :: - ++ wait - |= =bowl:gall - [%pass /behn %arvo %b %wait +(now.bowl)] - :: ++ goad |= force=? :~ [%pass /gall %arvo %g %goad force ~] == -- -:: |_ =bowl:gall +* this . def ~(. (default-agent this %|) bowl) -++ on-init - :: subscribe to /sys and do initial goad - :: - [[(warp bowl) (wait bowl) ~] this] :: -++ on-save on-save:def -++ on-load on-load:def ++ on-poke |= [=mark =vase] ?: ?=([%noun * %go] +<) @@ -35,32 +20,19 @@ [(goad &) this] (on-poke:def mark vase) :: -++ on-watch on-watch:def -++ on-leave on-leave:def -++ on-peek on-peek:def -++ on-agent on-agent:def ++ on-arvo - |= [=wire =sign-arvo] - ?+ wire (on-arvo:def wire sign-arvo) - [%clay ~] - :: on writ, wait - :: - ?> ?=(%writ +<.sign-arvo) - :_ this - :~ (warp bowl) - (wait bowl) - == - :: - [%behn ~] - :: on wake, goad - :: - ?> ?=(%wake +<.sign-arvo) - ?^ error.sign-arvo - :_ this :_ ~ - [%pass /dill %arvo %d %flog %crud %goad-fail u.error.sign-arvo] - %- (slog leaf+"goad: recompiling all apps" ~) - [(goad &) this] + |= [wir=wire sin=sign-arvo] + ?+ wir (on-arvo:def wir sin) + [%clay ~] `this + [%behn ~] `this :: backcompat == :: +++ on-agent on-agent:def ++ on-fail on-fail:def +++ on-init on-init:def +++ on-leave on-leave:def +++ on-load on-load:def +++ on-peek on-peek:def +++ on-save on-save:def +++ on-watch on-watch:def -- diff --git a/pkg/arvo/app/group-hook.hoon b/pkg/arvo/app/group-hook.hoon index ebc19456d9..c560b450f6 100644 --- a/pkg/arvo/app/group-hook.hoon +++ b/pkg/arvo/app/group-hook.hoon @@ -68,7 +68,7 @@ ?. (~(has by synced.state) t.path) (on-watch:def path) =/ scry-path=^path - :(welp /=group-store/(scot %da now.bowl) t.path /noun) + :(welp /(scot %p our.bowl)/group-store/(scot %da now.bowl) t.path /noun) =/ grp=(unit group) .^((unit group) %gx scry-path) ?~ grp @@ -242,8 +242,13 @@ :: ++ group-scry |= pax=path - ^- (unit group) - .^((unit group) %gx ;:(weld /=group-store/(scot %da now.bol) pax /noun)) + .^ (unit group) + %gx + (scot %p our.bol) + %group-store + (scot %da now.bol) + (weld pax /noun) + == :: ++ update-subscribers |= [pax=path diff=group-update] diff --git a/pkg/arvo/app/hood.hoon b/pkg/arvo/app/hood.hoon index a210877243..75dee7e07f 100644 --- a/pkg/arvo/app/hood.hoon +++ b/pkg/arvo/app/hood.hoon @@ -1,228 +1,120 @@ -:: :: :: -:::: /hoon/hood/app :: :: - :: :: :: -/? 310 :: zuse version -/- *sole -/+ sole, :: libraries - :: XX these should really be separate apps, as - :: none of them interact with each other in - :: any fashion; however, to reduce boot-time - :: complexity and work around the current - :: non-functionality of end-to-end acknowledgments, - :: they have been bundled into :hood - :: - :: |command handlers - hood-helm, hood-kiln, hood-drum, hood-write -:: :: :: -:::: :: :: - :: :: :: +/+ default-agent +/+ drum=hood-drum, helm=hood-helm, kiln=hood-kiln |% -++ hood-module - :: each hood module follows this general shape - => |% - +$ part [%module %0 pith] - +$ pith ~ - ++ take - |~ [wire sign-arvo] - *(quip card:agent:gall part) - ++ take-agent - |~ [wire gift:agent:gall] - *(quip card:agent:gall part) - ++ poke - |~ [mark vase] - *(quip card:agent:gall part) - -- - |= [bowl:gall own=part] - |_ moz=(list card:agent:gall) - ++ abet [(flop moz) own] - -- ++$ state + $: %8 + drum=state:drum + helm=state:helm + kiln=state:kiln + == ++$ state-7 + $: %7 + drum=state:drum + helm=state:helm + kiln=state:kiln + == ++$ any-state + $% state + state-7 + [ver=?(%1 %2 %3 %4 %5 %6) lac=(map @tas fin-any-state)] + == ++$ any-state-tuple + $: drum=any-state:drum + helm=any-state:helm + kiln=any-state:kiln + == ++$ fin-any-state + $% [%drum any-state:drum] + [%helm any-state:helm] + [%kiln any-state:kiln] + [%write *] :: gets deleted + == -- -:: :: :: -:::: :: :: state handling - :: :: :: -!: -=> |% :: - ++ hood-old :: unified old-state - {?($1 $2 $3 $4 $5 $6) lac/(map @tas hood-part-old)} - ++ hood-1 :: unified state - {$6 lac/(map @tas hood-part)} :: - ++ hood-good :: extract specific - =+ hed=$:hood-head - |@ ++ $ - |: paw=$:hood-part - ?- hed - $drum ?>(?=($drum -.paw) `part:hood-drum`paw) - $helm ?>(?=($helm -.paw) `part:hood-helm`paw) - $kiln ?>(?=($kiln -.paw) `part:hood-kiln`paw) - $write ?>(?=($write -.paw) `part:hood-write`paw) - == - -- - ++ hood-head _-:$:hood-part :: initialize state - ++ hood-make :: - =+ $:{our/@p hed/hood-head} :: - |@ ++ $ - ?- hed - $drum (make:hood-drum our) - $helm *part:hood-helm - $kiln *part:hood-kiln - $write *part:hood-write - == - -- - ++ hood-part-old hood-part :: old state for ++prep - ++ hood-port :: state transition - |: paw=$:hood-part-old ^- hood-part :: - paw :: - :: :: - ++ hood-part :: current module state - $% {$drum $2 pith-2:hood-drum} :: - {$helm $0 pith:hood-helm} :: - {$kiln $0 pith:hood-kiln} :: - {$write $0 pith:hood-write} :: - == :: - -- :: -:: :: :: -:::: :: :: app proper - :: :: :: ^- agent:gall -=| hood-1 :: module states -=> |% - ++ help - |= hid/bowl:gall - |% - ++ able :: find+make part - =+ hed=$:hood-head - |@ ++ $ - =+ rep=(~(get by lac) hed) - =+ par=?^(rep u.rep `hood-part`(hood-make our.hid hed)) - ((hood-good hed) par) - -- - :: - ++ ably :: save part - =+ $:{(list) hood-part} - |@ ++ $ - [+<- (~(put by lac) +<+< +<+)] - -- - :: :: :: - :::: :: :: generic handling - :: :: :: - ++ prep - |= old/(unit hood-old) ^- (quip _!! _+>) - :- ~ - ?~ old +> - +>(lac (~(run by lac.u.old) hood-port)) - :: - ++ poke-hood-load :: recover lost brain - |= dat/hood-part - ?> =(our.hid src.hid) - ~& loaded+-.dat - [~ (~(put by lac) -.dat dat)] - :: - :: - ++ from-module :: create wrapper - |* _[identity=%module start=..$ finish=_abet]:(hood-module) - =- [wrap=- *start] :: usage (wrap handle-arm):from-foo - |* handle/_finish - |= a=_+<.handle - =. +>.handle (start hid (able identity)) - ^- (quip card:agent:gall _lac) - %- ably - ^- (quip card:agent:gall hood-part) - (handle a) - :: per-module interface wrappers - ++ from-drum (from-module %drum [..$ _se-abet]:(hood-drum)) - ++ from-helm (from-module %helm [..$ _abet]:(hood-helm)) - ++ from-kiln (from-module %kiln [..$ _abet]:(hood-kiln)) - ++ from-write (from-module %write [..$ _abet]:(hood-write)) - -- - -- -|_ hid/bowl:gall :: gall environment +=| =state +|_ =bowl:gall ++* this . + def ~(. (default-agent this %|) bowl) + drum-core (drum bowl drum.state) + helm-core (helm bowl helm.state) + kiln-core (kiln bowl kiln.state) +:: +++ on-fail on-fail:def ++ on-init - `..on-init + ^- step:agent:gall + =^ d drum.state on-init:drum-core + [d this] :: -++ on-save - !>([%6 lac]) +++ on-leave on-leave:def +++ on-peek + |= =path + ^- (unit (unit cage)) + ?+ path (on-peek:def path) + [* %kiln *] (on-peek:kiln-core path) + == :: +++ on-save !>(state) ++ on-load |= =old-state=vase - =/ old-state !<(hood-old old-state-vase) - =^ cards lac - =. lac lac.old-state - ?- -.old-state - %1 ((wrap on-load):from-drum:(help hid) %1) - %2 ((wrap on-load):from-drum:(help hid) %2) - %3 ((wrap on-load):from-drum:(help hid) %3) - %4 ((wrap on-load):from-drum:(help hid) %4) - %5 ((wrap on-load):from-drum:(help hid) %5) - %6 `lac + ^- step:agent:gall + =+ !<(old=any-state old-state-vase) + =/ tup=any-state-tuple + ?+ -.old +.old + ?(%1 %2 %3 %4 %5 %6) + :* =-(?>(?=(%drum -<) ->) (~(got by lac.old) %drum)) + =-(?>(?=(%helm -<) ->) (~(got by lac.old) %helm)) + =-(?>(?=(%kiln -<) ->) (~(got by lac.old) %kiln)) + == == - [cards ..on-init] + =^ d drum.state (on-load:drum-core -.old drum.tup) + =^ h helm.state (on-load:helm-core -.old helm.tup) + =^ k kiln.state (on-load:kiln-core -.old kiln.tup) + [:(weld d h k) this] :: ++ on-poke |= [=mark =vase] - ^- (quip card:agent:gall agent:gall) - =/ h (help hid) - =^ cards lac - ?: =(%helm (end 3 4 mark)) - ((wrap poke):from-helm:h mark vase) - ?: =(%drum (end 3 4 mark)) - ((wrap poke):from-drum:h mark vase) - ?: =(%kiln (end 3 4 mark)) - ((wrap poke):from-kiln:h mark vase) - ?: =(%write (end 3 5 mark)) - ((wrap poke):from-write:h mark vase) - :: XX should rename and move to libs - :: - ?+ mark ~|([%poke-hood-bad-mark mark] !!) - %hood-load (poke-hood-load:h !<(hood-part vase)) - %atom ((wrap poke-atom):from-helm:h !<(@ vase)) - %dill-belt ((wrap poke-dill-belt):from-drum:h !<(dill-belt:dill vase)) - %dill-blit ((wrap poke-dill-blit):from-drum:h !<(dill-blit:dill vase)) - %hood-sync ((wrap poke-sync):from-kiln:h !<([desk ship desk] vase)) - == - [cards ..on-init] + ^- step:agent:gall + |^ + =/ fin (end 3 4 mark) + ?: =(%drum fin) poke-drum + ?: =(%helm fin) poke-helm + ?: =(%kiln fin) poke-kiln + :: + ?+ mark (on-poke:def mark vase) + %atom poke-helm(mark %helm-atom) + %dill-belt poke-drum(mark %drum-dill-belt) + %dill-blit poke-drum(mark %drum-dill-blit) + %hood-sync poke-kiln(mark %kiln-sync) + %write-sec-atom poke-helm(mark %helm-write-sec-atom) + == + ++ poke-drum =^(c drum.state (poke:drum-core mark vase) [c this]) + ++ poke-helm =^(c helm.state (poke:helm-core mark vase) [c this]) + ++ poke-kiln =^(c kiln.state (poke:kiln-core mark vase) [c this]) + -- :: ++ on-watch |= =path - =/ h (help hid) - =^ cards lac - ?+ path ~|([%hood-bad-path wire] !!) - [%drum *] ((wrap peer):from-drum:h t.path) - == - [cards ..on-init] -:: -++ on-leave - |= path - `..on-init -:: -++ on-peek - |= path - *(unit (unit cage)) + ^- step:agent:gall + ?+ path (on-watch:def +<) + [%drum *] =^(c drum.state (peer:drum-core +<) [c this]) + == :: ++ on-agent |= [=wire =sign:agent:gall] - =/ h (help hid) - =^ cards lac - ?+ wire ~|([%hood-bad-wire wire] !!) - [%helm *] ((wrap take-agent):from-helm:h wire sign) - [%kiln *] ((wrap take-agent):from-kiln:h wire sign) - [%drum *] ((wrap take-agent):from-drum:h wire sign) - [%write *] ((wrap take-agent):from-write:h wire sign) - == - [cards ..on-init] + ^- step:agent:gall + ?+ wire ~|([%hood-bad-wire wire] !!) + [%drum *] =^(c drum.state (take-agent:drum-core +<) [c this]) + [%helm *] =^(c helm.state (take-agent:helm-core +<) [c this]) + [%kiln *] =^(c kiln.state (take-agent:kiln-core +<) [c this]) + == +:: TODO: symmetry between adding and stripping wire prefixes :: ++ on-arvo - |= [=wire =sign-arvo] - =/ h (help hid) - =^ cards lac - ?+ wire ~|([%hood-bad-wire wire] !!) - [%helm *] ((wrap take):from-helm:h t.wire sign-arvo) - [%drum *] ((wrap take):from-drum:h t.wire sign-arvo) - [%kiln *] ((wrap take-general):from-kiln:h t.wire sign-arvo) - [%write *] ((wrap take):from-write:h t.wire sign-arvo) - == - [cards ..on-init] -:: -++ on-fail - |= [term tang] - `..on-init + |= [=wire syn=sign-arvo] + ^- step:agent:gall + ?+ wire ~|([%hood-bad-wire wire] !!) + [%drum *] =^(c drum.state (take-arvo:drum-core t.wire syn) [c this]) + [%helm *] =^(c helm.state (take-arvo:helm-core t.wire syn) [c this]) + [%kiln *] =^(c kiln.state (take-arvo:kiln-core t.wire syn) [c this]) + == -- diff --git a/pkg/arvo/app/invite-hook.hoon b/pkg/arvo/app/invite-hook.hoon index 22cb95b299..2e4cef97b9 100644 --- a/pkg/arvo/app/invite-hook.hoon +++ b/pkg/arvo/app/invite-hook.hoon @@ -100,14 +100,22 @@ |= pax=path ^- (unit invitatory) =. pax - ;:(weld /=invite-store/(scot %da now.bowl)/invitatory pax /noun) + ;: weld + /(scot %p our.bowl)/invite-store/(scot %da now.bowl)/invitatory + pax + /noun + == .^((unit invitatory) %gx pax) :: ++ invite-scry |= [pax=path uid=serial] ^- (unit invite) =. pax - ;:(weld /=invite-store/(scot %da now.bowl)/invite pax /(scot %uv uid)/noun) + ;: weld + /(scot %p our.bowl)/invite-store/(scot %da now.bowl)/invite + pax + /(scot %uv uid)/noun + == .^((unit invite) %gx pax) -- diff --git a/pkg/arvo/app/invite-view.hoon b/pkg/arvo/app/invite-view.hoon new file mode 100644 index 0000000000..666ed54730 --- /dev/null +++ b/pkg/arvo/app/invite-view.hoon @@ -0,0 +1,17 @@ +/+ default-agent +^- agent:gall +|_ =bowl:gall ++* this . + def ~(. (default-agent this %|) bowl) + step `step:agent:gall`[~ this] +++ on-init on-init:def +++ on-save on-save:def +++ on-load on-load:def +++ on-poke |=(* step) +++ on-watch on-watch:def +++ on-leave |=(* step) +++ on-peek |=(* ~) +++ on-agent |=(* step) +++ on-arvo |=(* step) +++ on-fail on-fail:def +-- diff --git a/pkg/arvo/app/landscape/img/Chat.png b/pkg/arvo/app/landscape/img/.png similarity index 100% rename from pkg/arvo/app/landscape/img/Chat.png rename to pkg/arvo/app/landscape/img/.png diff --git a/pkg/arvo/app/landscape/img/chat.png b/pkg/arvo/app/landscape/img/chat.png new file mode 100644 index 0000000000..58223a5d63 Binary files /dev/null and b/pkg/arvo/app/landscape/img/chat.png differ diff --git a/pkg/arvo/app/landscape/img/ChatSwitcherClosed.png b/pkg/arvo/app/landscape/img/chatswitcherclosed.png similarity index 100% rename from pkg/arvo/app/landscape/img/ChatSwitcherClosed.png rename to pkg/arvo/app/landscape/img/chatswitcherclosed.png diff --git a/pkg/arvo/app/landscape/img/ChatSwitcherLink.png b/pkg/arvo/app/landscape/img/chatswitcherlink.png similarity index 100% rename from pkg/arvo/app/landscape/img/ChatSwitcherLink.png rename to pkg/arvo/app/landscape/img/chatswitcherlink.png diff --git a/pkg/arvo/app/landscape/img/Chevron.png b/pkg/arvo/app/landscape/img/chevron.png similarity index 100% rename from pkg/arvo/app/landscape/img/Chevron.png rename to pkg/arvo/app/landscape/img/chevron.png diff --git a/pkg/arvo/app/landscape/img/CodeEval.png b/pkg/arvo/app/landscape/img/codeeval.png similarity index 100% rename from pkg/arvo/app/landscape/img/CodeEval.png rename to pkg/arvo/app/landscape/img/codeeval.png diff --git a/pkg/arvo/app/landscape/img/Dojo.png b/pkg/arvo/app/landscape/img/dojo.png similarity index 100% rename from pkg/arvo/app/landscape/img/Dojo.png rename to pkg/arvo/app/landscape/img/dojo.png diff --git a/pkg/arvo/app/landscape/img/Favicon.png b/pkg/arvo/app/landscape/img/favicon.png similarity index 100% rename from pkg/arvo/app/landscape/img/Favicon.png rename to pkg/arvo/app/landscape/img/favicon.png diff --git a/pkg/arvo/app/landscape/img/Icon-Home.png b/pkg/arvo/app/landscape/img/icon-home.png similarity index 100% rename from pkg/arvo/app/landscape/img/Icon-Home.png rename to pkg/arvo/app/landscape/img/icon-home.png diff --git a/pkg/arvo/app/landscape/img/ImageUpload.png b/pkg/arvo/app/landscape/img/imageupload.png similarity index 100% rename from pkg/arvo/app/landscape/img/ImageUpload.png rename to pkg/arvo/app/landscape/img/imageupload.png diff --git a/pkg/arvo/app/landscape/img/Link.png b/pkg/arvo/app/landscape/img/link.png similarity index 100% rename from pkg/arvo/app/landscape/img/Link.png rename to pkg/arvo/app/landscape/img/link.png diff --git a/pkg/arvo/app/landscape/img/Links.png b/pkg/arvo/app/landscape/img/links.png similarity index 100% rename from pkg/arvo/app/landscape/img/Links.png rename to pkg/arvo/app/landscape/img/links.png diff --git a/pkg/arvo/app/landscape/img/Publish.png b/pkg/arvo/app/landscape/img/publish.png similarity index 100% rename from pkg/arvo/app/landscape/img/Publish.png rename to pkg/arvo/app/landscape/img/publish.png diff --git a/pkg/arvo/app/landscape/img/Send.png b/pkg/arvo/app/landscape/img/send.png similarity index 100% rename from pkg/arvo/app/landscape/img/Send.png rename to pkg/arvo/app/landscape/img/send.png diff --git a/pkg/arvo/app/landscape/img/Spinner.png b/pkg/arvo/app/landscape/img/spinner.png similarity index 100% rename from pkg/arvo/app/landscape/img/Spinner.png rename to pkg/arvo/app/landscape/img/spinner.png diff --git a/pkg/arvo/app/landscape/js/channel.js b/pkg/arvo/app/landscape/js/channel.js index 7db7b68250..0cc70008cf 100644 --- a/pkg/arvo/app/landscape/js/channel.js +++ b/pkg/arvo/app/landscape/js/channel.js @@ -9,6 +9,9 @@ class Channel { this.onChannelError = (err) => { console.error('event source error: ', err); }; + this.onChannelOpen = (e) => { + console.log('open', e); + }; } init() { @@ -58,6 +61,10 @@ class Channel { this.onChannelError = onError; } + setOnChannelOpen(onOpen = (e) => {}) { + this.onChannelOpen = onOpen; + } + deleteOnUnload() { window.addEventListener("unload", (event) => { this.delete(); @@ -216,6 +223,8 @@ class Channel { } } + this.eventSource.onopen = this.onChannelOpen; + this.eventSource.onerror = e => { this.delete(); this.init(); diff --git a/pkg/arvo/app/landscape/js/index.js b/pkg/arvo/app/landscape/js/index.js deleted file mode 100644 index 50745101d4..0000000000 --- a/pkg/arvo/app/landscape/js/index.js +++ /dev/null @@ -1,351 +0,0 @@ -!function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/",n(n.s=397)}([function(e,t,n){"use strict";e.exports=n(227)},function(e,t,n){(function(e){e.exports=function(){"use strict";var t,r;function i(){return t.apply(null,arguments)}function o(e){return e instanceof Array||"[object Array]"===Object.prototype.toString.call(e)}function a(e){return null!=e&&"[object Object]"===Object.prototype.toString.call(e)}function s(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function l(e){if(Object.getOwnPropertyNames)return 0===Object.getOwnPropertyNames(e).length;var t;for(t in e)if(s(e,t))return!1;return!0}function c(e){return void 0===e}function u(e){return"number"==typeof e||"[object Number]"===Object.prototype.toString.call(e)}function d(e){return e instanceof Date||"[object Date]"===Object.prototype.toString.call(e)}function f(e,t){var n,r=[];for(n=0;n>>0;for(t=0;t0)for(n=0;n=0?n?"+":"":"-")+Math.pow(10,Math.max(0,i)).toString().substr(1)+r}i.suppressDeprecationWarnings=!1,i.deprecationHandler=null,S=Object.keys?Object.keys:function(e){var t,n=[];for(t in e)s(e,t)&&n.push(t);return n};var j=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,Y=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,P={},A={};function N(e,t,n,r){var i=r;"string"==typeof r&&(i=function(){return this[r]()}),e&&(A[e]=i),t&&(A[t[0]]=function(){return D(i.apply(this,arguments),t[1],t[2])}),n&&(A[n]=function(){return this.localeData().ordinal(i.apply(this,arguments),e)})}function R(e,t){return e.isValid()?(t=H(t,e.localeData()),P[t]=P[t]||function(e){var t,n,r,i=e.match(j);for(t=0,n=i.length;t=0&&Y.test(e);)e=e.replace(Y,r),Y.lastIndex=0,n-=1;return e}var I={};function F(e,t){var n=e.toLowerCase();I[n]=I[n+"s"]=I[t]=e}function z(e){return"string"==typeof e?I[e]||I[e.toLowerCase()]:void 0}function W(e){var t,n,r={};for(n in e)s(e,n)&&(t=z(n))&&(r[t]=e[n]);return r}var B={};function U(e,t){B[e]=t}function V(e){return e%4==0&&e%100!=0||e%400==0}function q(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function Z(e){var t=+e,n=0;return 0!==t&&isFinite(t)&&(n=q(t)),n}function G(e,t){return function(n){return null!=n?(J(this,e,n),i.updateOffset(this,t),this):$(this,e)}}function $(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function J(e,t,n){e.isValid()&&!isNaN(n)&&("FullYear"===t&&V(e.year())&&1===e.month()&&29===e.date()?(n=Z(n),e._d["set"+(e._isUTC?"UTC":"")+t](n,e.month(),we(n,e.month()))):e._d["set"+(e._isUTC?"UTC":"")+t](n))}var K,X=/\d/,Q=/\d\d/,ee=/\d{3}/,te=/\d{4}/,ne=/[+-]?\d{6}/,re=/\d\d?/,ie=/\d\d\d\d?/,oe=/\d\d\d\d\d\d?/,ae=/\d{1,3}/,se=/\d{1,4}/,le=/[+-]?\d{1,6}/,ce=/\d+/,ue=/[+-]?\d+/,de=/Z|[+-]\d\d:?\d\d/gi,fe=/Z|[+-]\d\d(?::?\d\d)?/gi,he=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i;function pe(e,t,n){K[e]=E(t)?t:function(e,r){return e&&n?n:t}}function me(e,t){return s(K,e)?K[e](t._strict,t._locale):new RegExp(be(e.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,(function(e,t,n,r,i){return t||n||r||i}))))}function be(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}K={};var ge,ye={};function ve(e,t){var n,r=t;for("string"==typeof e&&(e=[e]),u(t)&&(r=function(e,n){n[t]=Z(e)}),n=0;n68?1900:2e3)};var Ye=G("FullYear",!0);function Pe(e,t,n,r,i,o,a){var s;return e<100&&e>=0?(s=new Date(e+400,t,n,r,i,o,a),isFinite(s.getFullYear())&&s.setFullYear(e)):s=new Date(e,t,n,r,i,o,a),s}function Ae(e){var t,n;return e<100&&e>=0?((n=Array.prototype.slice.call(arguments))[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)):t=new Date(Date.UTC.apply(null,arguments)),t}function Ne(e,t,n){var r=7+t-n;return-(7+Ae(e,0,r).getUTCDay()-t)%7+r-1}function Re(e,t,n,r,i){var o,a,s=1+7*(t-1)+(7+n-r)%7+Ne(e,r,i);return s<=0?a=je(o=e-1)+s:s>je(e)?(o=e+1,a=s-je(e)):(o=e,a=s),{year:o,dayOfYear:a}}function He(e,t,n){var r,i,o=Ne(e.year(),t,n),a=Math.floor((e.dayOfYear()-o-1)/7)+1;return a<1?r=a+Ie(i=e.year()-1,t,n):a>Ie(e.year(),t,n)?(r=a-Ie(e.year(),t,n),i=e.year()+1):(i=e.year(),r=a),{week:r,year:i}}function Ie(e,t,n){var r=Ne(e,t,n),i=Ne(e+1,t,n);return(je(e)-r+i)/7}function Fe(e,t){return e.slice(t,7).concat(e.slice(0,t))}N("w",["ww",2],"wo","week"),N("W",["WW",2],"Wo","isoWeek"),F("week","w"),F("isoWeek","W"),U("week",5),U("isoWeek",5),pe("w",re),pe("ww",re,Q),pe("W",re),pe("WW",re,Q),_e(["w","ww","W","WW"],(function(e,t,n,r){t[r.substr(0,1)]=Z(e)})),N("d",0,"do","day"),N("dd",0,0,(function(e){return this.localeData().weekdaysMin(this,e)})),N("ddd",0,0,(function(e){return this.localeData().weekdaysShort(this,e)})),N("dddd",0,0,(function(e){return this.localeData().weekdays(this,e)})),N("e",0,0,"weekday"),N("E",0,0,"isoWeekday"),F("day","d"),F("weekday","e"),F("isoWeekday","E"),U("day",11),U("weekday",11),U("isoWeekday",11),pe("d",re),pe("e",re),pe("E",re),pe("dd",(function(e,t){return t.weekdaysMinRegex(e)})),pe("ddd",(function(e,t){return t.weekdaysShortRegex(e)})),pe("dddd",(function(e,t){return t.weekdaysRegex(e)})),_e(["dd","ddd","dddd"],(function(e,t,n,r){var i=n._locale.weekdaysParse(e,r,n._strict);null!=i?t.d=i:m(n).invalidWeekday=e})),_e(["d","e","E"],(function(e,t,n,r){t[r]=Z(e)}));var ze="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),We="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Be="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),Ue=he,Ve=he,qe=he;function Ze(e,t,n){var r,i,o,a=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],r=0;r<7;++r)o=p([2e3,1]).day(r),this._minWeekdaysParse[r]=this.weekdaysMin(o,"").toLocaleLowerCase(),this._shortWeekdaysParse[r]=this.weekdaysShort(o,"").toLocaleLowerCase(),this._weekdaysParse[r]=this.weekdays(o,"").toLocaleLowerCase();return n?"dddd"===t?-1!==(i=ge.call(this._weekdaysParse,a))?i:null:"ddd"===t?-1!==(i=ge.call(this._shortWeekdaysParse,a))?i:null:-1!==(i=ge.call(this._minWeekdaysParse,a))?i:null:"dddd"===t?-1!==(i=ge.call(this._weekdaysParse,a))||-1!==(i=ge.call(this._shortWeekdaysParse,a))||-1!==(i=ge.call(this._minWeekdaysParse,a))?i:null:"ddd"===t?-1!==(i=ge.call(this._shortWeekdaysParse,a))||-1!==(i=ge.call(this._weekdaysParse,a))||-1!==(i=ge.call(this._minWeekdaysParse,a))?i:null:-1!==(i=ge.call(this._minWeekdaysParse,a))||-1!==(i=ge.call(this._weekdaysParse,a))||-1!==(i=ge.call(this._shortWeekdaysParse,a))?i:null}function Ge(){function e(e,t){return t.length-e.length}var t,n,r,i,o,a=[],s=[],l=[],c=[];for(t=0;t<7;t++)n=p([2e3,1]).day(t),r=be(this.weekdaysMin(n,"")),i=be(this.weekdaysShort(n,"")),o=be(this.weekdays(n,"")),a.push(r),s.push(i),l.push(o),c.push(r),c.push(i),c.push(o);a.sort(e),s.sort(e),l.sort(e),c.sort(e),this._weekdaysRegex=new RegExp("^("+c.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+a.join("|")+")","i")}function $e(){return this.hours()%12||12}function Je(e,t){N(e,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)}))}function Ke(e,t){return t._meridiemParse}N("H",["HH",2],0,"hour"),N("h",["hh",2],0,$e),N("k",["kk",2],0,(function(){return this.hours()||24})),N("hmm",0,0,(function(){return""+$e.apply(this)+D(this.minutes(),2)})),N("hmmss",0,0,(function(){return""+$e.apply(this)+D(this.minutes(),2)+D(this.seconds(),2)})),N("Hmm",0,0,(function(){return""+this.hours()+D(this.minutes(),2)})),N("Hmmss",0,0,(function(){return""+this.hours()+D(this.minutes(),2)+D(this.seconds(),2)})),Je("a",!0),Je("A",!1),F("hour","h"),U("hour",13),pe("a",Ke),pe("A",Ke),pe("H",re),pe("h",re),pe("k",re),pe("HH",re,Q),pe("hh",re,Q),pe("kk",re,Q),pe("hmm",ie),pe("hmmss",oe),pe("Hmm",ie),pe("Hmmss",oe),ve(["H","HH"],3),ve(["k","kk"],(function(e,t,n){var r=Z(e);t[3]=24===r?0:r})),ve(["a","A"],(function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e})),ve(["h","hh"],(function(e,t,n){t[3]=Z(e),m(n).bigHour=!0})),ve("hmm",(function(e,t,n){var r=e.length-2;t[3]=Z(e.substr(0,r)),t[4]=Z(e.substr(r)),m(n).bigHour=!0})),ve("hmmss",(function(e,t,n){var r=e.length-4,i=e.length-2;t[3]=Z(e.substr(0,r)),t[4]=Z(e.substr(r,2)),t[5]=Z(e.substr(i)),m(n).bigHour=!0})),ve("Hmm",(function(e,t,n){var r=e.length-2;t[3]=Z(e.substr(0,r)),t[4]=Z(e.substr(r))})),ve("Hmmss",(function(e,t,n){var r=e.length-4,i=e.length-2;t[3]=Z(e.substr(0,r)),t[4]=Z(e.substr(r,2)),t[5]=Z(e.substr(i))}));var Xe,Qe=G("Hours",!0),et={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",w:"a week",ww:"%d weeks",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:xe,monthsShort:Me,week:{dow:0,doy:6},weekdays:ze,weekdaysMin:Be,weekdaysShort:We,meridiemParse:/[ap]\.?m?\.?/i},tt={},nt={};function rt(e,t){var n,r=Math.min(e.length,t.length);for(n=0;n0;){if(r=ot(i.slice(0,t).join("-")))return r;if(n&&n.length>=t&&rt(i,n)>=t-1)break;t--}o++}return Xe}(e)}function ct(e){var t,n=e._a;return n&&-2===m(e).overflow&&(t=n[1]<0||n[1]>11?1:n[2]<1||n[2]>we(n[0],n[1])?2:n[3]<0||n[3]>24||24===n[3]&&(0!==n[4]||0!==n[5]||0!==n[6])?3:n[4]<0||n[4]>59?4:n[5]<0||n[5]>59?5:n[6]<0||n[6]>999?6:-1,m(e)._overflowDayOfYear&&(t<0||t>2)&&(t=2),m(e)._overflowWeeks&&-1===t&&(t=7),m(e)._overflowWeekday&&-1===t&&(t=8),m(e).overflow=t),e}var ut=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,dt=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,ft=/Z|[+-]\d\d(?::?\d\d)?/,ht=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/],["YYYYMM",/\d{6}/,!1],["YYYY",/\d{4}/,!1]],pt=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],mt=/^\/?Date\((-?\d+)/i,bt=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,gt={UT:0,GMT:0,EDT:-240,EST:-300,CDT:-300,CST:-360,MDT:-360,MST:-420,PDT:-420,PST:-480};function yt(e){var t,n,r,i,o,a,s=e._i,l=ut.exec(s)||dt.exec(s);if(l){for(m(e).iso=!0,t=0,n=ht.length;t7)&&(l=!0)):(o=e._locale._week.dow,a=e._locale._week.doy,c=He(Lt(),o,a),n=kt(t.gg,e._a[0],c.year),r=kt(t.w,c.week),null!=t.d?((i=t.d)<0||i>6)&&(l=!0):null!=t.e?(i=t.e+o,(t.e<0||t.e>6)&&(l=!0)):i=o),r<1||r>Ie(n,o,a)?m(e)._overflowWeeks=!0:null!=l?m(e)._overflowWeekday=!0:(s=Re(n,r,i,o,a),e._a[0]=s.year,e._dayOfYear=s.dayOfYear)}(e),null!=e._dayOfYear&&(a=kt(e._a[0],r[0]),(e._dayOfYear>je(a)||0===e._dayOfYear)&&(m(e)._overflowDayOfYear=!0),n=Ae(a,0,e._dayOfYear),e._a[1]=n.getUTCMonth(),e._a[2]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=s[t]=r[t];for(;t<7;t++)e._a[t]=s[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[3]&&0===e._a[4]&&0===e._a[5]&&0===e._a[6]&&(e._nextDay=!0,e._a[3]=0),e._d=(e._useUTC?Ae:Pe).apply(null,s),o=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[3]=24),e._w&&void 0!==e._w.d&&e._w.d!==o&&(m(e).weekdayMismatch=!0)}}function xt(e){if(e._f!==i.ISO_8601)if(e._f!==i.RFC_2822){e._a=[],m(e).empty=!0;var t,n,r,o,a,s,l=""+e._i,c=l.length,u=0;for(r=H(e._f,e._locale).match(j)||[],t=0;t0&&m(e).unusedInput.push(a),l=l.slice(l.indexOf(n)+n.length),u+=n.length),A[o]?(n?m(e).empty=!1:m(e).unusedTokens.push(o),ke(o,n,e)):e._strict&&!n&&m(e).unusedTokens.push(o);m(e).charsLeftOver=c-u,l.length>0&&m(e).unusedInput.push(l),e._a[3]<=12&&!0===m(e).bigHour&&e._a[3]>0&&(m(e).bigHour=void 0),m(e).parsedDateParts=e._a.slice(0),m(e).meridiem=e._meridiem,e._a[3]=function(e,t,n){var r;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((r=e.isPM(n))&&t<12&&(t+=12),r||12!==t||(t=0),t):t}(e._locale,e._a[3],e._meridiem),null!==(s=m(e).era)&&(e._a[0]=e._locale.erasConvertYear(s,e._a[0])),wt(e),ct(e)}else _t(e);else yt(e)}function Mt(e){var t=e._i,n=e._f;return e._locale=e._locale||lt(e._l),null===t||void 0===n&&""===t?g({nullInput:!0}):("string"==typeof t&&(e._i=t=e._locale.preparse(t)),w(t)?new k(ct(t)):(d(t)?e._d=t:o(n)?function(e){var t,n,r,i,o,a,s=!1;if(0===e._f.length)return m(e).invalidFormat=!0,void(e._d=new Date(NaN));for(i=0;ithis?this:e:g()}));function Tt(e,t){var n,r;if(1===t.length&&o(t[0])&&(t=t[0]),!t.length)return Lt();for(n=t[0],r=1;r=0?new Date(e+400,t,n)-126227808e5:new Date(e,t,n).valueOf()}function on(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-126227808e5:Date.UTC(e,t,n)}function an(e,t){return t.erasAbbrRegex(e)}function sn(){var e,t,n=[],r=[],i=[],o=[],a=this.eras();for(e=0,t=a.length;e(o=Ie(e,r,i))&&(t=o),un.call(this,e,t,n,r,i))}function un(e,t,n,r,i){var o=Re(e,t,n,r,i),a=Ae(o.year,0,o.dayOfYear);return this.year(a.getUTCFullYear()),this.month(a.getUTCMonth()),this.date(a.getUTCDate()),this}N("N",0,0,"eraAbbr"),N("NN",0,0,"eraAbbr"),N("NNN",0,0,"eraAbbr"),N("NNNN",0,0,"eraName"),N("NNNNN",0,0,"eraNarrow"),N("y",["y",1],"yo","eraYear"),N("y",["yy",2],0,"eraYear"),N("y",["yyy",3],0,"eraYear"),N("y",["yyyy",4],0,"eraYear"),pe("N",an),pe("NN",an),pe("NNN",an),pe("NNNN",(function(e,t){return t.erasNameRegex(e)})),pe("NNNNN",(function(e,t){return t.erasNarrowRegex(e)})),ve(["N","NN","NNN","NNNN","NNNNN"],(function(e,t,n,r){var i=n._locale.erasParse(e,r,n._strict);i?m(n).era=i:m(n).invalidEra=e})),pe("y",ce),pe("yy",ce),pe("yyy",ce),pe("yyyy",ce),pe("yo",(function(e,t){return t._eraYearOrdinalRegex||ce})),ve(["y","yy","yyy","yyyy"],0),ve(["yo"],(function(e,t,n,r){var i;n._locale._eraYearOrdinalRegex&&(i=e.match(n._locale._eraYearOrdinalRegex)),n._locale.eraYearOrdinalParse?t[0]=n._locale.eraYearOrdinalParse(e,i):t[0]=parseInt(e,10)})),N(0,["gg",2],0,(function(){return this.weekYear()%100})),N(0,["GG",2],0,(function(){return this.isoWeekYear()%100})),ln("gggg","weekYear"),ln("ggggg","weekYear"),ln("GGGG","isoWeekYear"),ln("GGGGG","isoWeekYear"),F("weekYear","gg"),F("isoWeekYear","GG"),U("weekYear",1),U("isoWeekYear",1),pe("G",ue),pe("g",ue),pe("GG",re,Q),pe("gg",re,Q),pe("GGGG",se,te),pe("gggg",se,te),pe("GGGGG",le,ne),pe("ggggg",le,ne),_e(["gggg","ggggg","GGGG","GGGGG"],(function(e,t,n,r){t[r.substr(0,2)]=Z(e)})),_e(["gg","GG"],(function(e,t,n,r){t[r]=i.parseTwoDigitYear(e)})),N("Q",0,"Qo","quarter"),F("quarter","Q"),U("quarter",7),pe("Q",X),ve("Q",(function(e,t){t[1]=3*(Z(e)-1)})),N("D",["DD",2],"Do","date"),F("date","D"),U("date",9),pe("D",re),pe("DD",re,Q),pe("Do",(function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient})),ve(["D","DD"],2),ve("Do",(function(e,t){t[2]=Z(e.match(re)[0])}));var dn=G("Date",!0);N("DDD",["DDDD",3],"DDDo","dayOfYear"),F("dayOfYear","DDD"),U("dayOfYear",4),pe("DDD",ae),pe("DDDD",ee),ve(["DDD","DDDD"],(function(e,t,n){n._dayOfYear=Z(e)})),N("m",["mm",2],0,"minute"),F("minute","m"),U("minute",14),pe("m",re),pe("mm",re,Q),ve(["m","mm"],4);var fn=G("Minutes",!1);N("s",["ss",2],0,"second"),F("second","s"),U("second",15),pe("s",re),pe("ss",re,Q),ve(["s","ss"],5);var hn,pn,mn=G("Seconds",!1);for(N("S",0,0,(function(){return~~(this.millisecond()/100)})),N(0,["SS",2],0,(function(){return~~(this.millisecond()/10)})),N(0,["SSS",3],0,"millisecond"),N(0,["SSSS",4],0,(function(){return 10*this.millisecond()})),N(0,["SSSSS",5],0,(function(){return 100*this.millisecond()})),N(0,["SSSSSS",6],0,(function(){return 1e3*this.millisecond()})),N(0,["SSSSSSS",7],0,(function(){return 1e4*this.millisecond()})),N(0,["SSSSSSSS",8],0,(function(){return 1e5*this.millisecond()})),N(0,["SSSSSSSSS",9],0,(function(){return 1e6*this.millisecond()})),F("millisecond","ms"),U("millisecond",16),pe("S",ae,X),pe("SS",ae,Q),pe("SSS",ae,ee),hn="SSSS";hn.length<=9;hn+="S")pe(hn,ce);function bn(e,t){t[6]=Z(1e3*("0."+e))}for(hn="S";hn.length<=9;hn+="S")ve(hn,bn);pn=G("Milliseconds",!1),N("z",0,0,"zoneAbbr"),N("zz",0,0,"zoneName");var gn=k.prototype;function yn(e){return e}gn.add=Zt,gn.calendar=function(e,t){1===arguments.length&&(Jt(arguments[0])?(e=arguments[0],t=void 0):Kt(arguments[0])&&(t=arguments[0],e=void 0));var n=e||Lt(),r=Rt(n,this).startOf("day"),o=i.calendarFormat(this,r)||"sameElse",a=t&&(E(t[o])?t[o].call(this,n):t[o]);return this.format(a||this.localeData().calendar(o,this,Lt(n)))},gn.clone=function(){return new k(this)},gn.diff=function(e,t,n){var r,i,o;if(!this.isValid())return NaN;if(!(r=Rt(e,this)).isValid())return NaN;switch(i=6e4*(r.utcOffset()-this.utcOffset()),t=z(t)){case"year":o=Xt(this,r)/12;break;case"month":o=Xt(this,r);break;case"quarter":o=Xt(this,r)/3;break;case"second":o=(this-r)/1e3;break;case"minute":o=(this-r)/6e4;break;case"hour":o=(this-r)/36e5;break;case"day":o=(this-r-i)/864e5;break;case"week":o=(this-r-i)/6048e5;break;default:o=this-r}return n?o:q(o)},gn.endOf=function(e){var t,n;if(void 0===(e=z(e))||"millisecond"===e||!this.isValid())return this;switch(n=this._isUTC?on:rn,e){case"year":t=n(this.year()+1,0,1)-1;break;case"quarter":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":t=n(this.year(),this.month()+1,1)-1;break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":t=n(this.year(),this.month(),this.date()+1)-1;break;case"hour":t=this._d.valueOf(),t+=36e5-nn(t+(this._isUTC?0:6e4*this.utcOffset()),36e5)-1;break;case"minute":t=this._d.valueOf(),t+=6e4-nn(t,6e4)-1;break;case"second":t=this._d.valueOf(),t+=1e3-nn(t,1e3)-1}return this._d.setTime(t),i.updateOffset(this,!0),this},gn.format=function(e){e||(e=this.isUtc()?i.defaultFormatUtc:i.defaultFormat);var t=R(this,e);return this.localeData().postformat(t)},gn.from=function(e,t){return this.isValid()&&(w(e)&&e.isValid()||Lt(e).isValid())?Wt({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},gn.fromNow=function(e){return this.from(Lt(),e)},gn.to=function(e,t){return this.isValid()&&(w(e)&&e.isValid()||Lt(e).isValid())?Wt({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},gn.toNow=function(e){return this.to(Lt(),e)},gn.get=function(e){return E(this[e=z(e)])?this[e]():this},gn.invalidAt=function(){return m(this).overflow},gn.isAfter=function(e,t){var n=w(e)?e:Lt(e);return!(!this.isValid()||!n.isValid())&&("millisecond"===(t=z(t)||"millisecond")?this.valueOf()>n.valueOf():n.valueOf()9999?R(n,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):E(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",R(n,"Z")):R(n,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")},gn.inspect=function(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e,t,n,r="moment",i="";return this.isLocal()||(r=0===this.utcOffset()?"moment.utc":"moment.parseZone",i="Z"),e="["+r+'("]',t=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",n=i+'[")]',this.format(e+t+"-MM-DD[T]HH:mm:ss.SSS"+n)},"undefined"!=typeof Symbol&&null!=Symbol.for&&(gn[Symbol.for("nodejs.util.inspect.custom")]=function(){return"Moment<"+this.format()+">"}),gn.toJSON=function(){return this.isValid()?this.toISOString():null},gn.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},gn.unix=function(){return Math.floor(this.valueOf()/1e3)},gn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},gn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},gn.eraName=function(){var e,t,n,r=this.localeData().eras();for(e=0,t=r.length;ethis.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},gn.isLocal=function(){return!!this.isValid()&&!this._isUTC},gn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},gn.isUtc=It,gn.isUTC=It,gn.zoneAbbr=function(){return this._isUTC?"UTC":""},gn.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},gn.dates=M("dates accessor is deprecated. Use date instead.",dn),gn.months=M("months accessor is deprecated. Use month instead",Oe),gn.years=M("years accessor is deprecated. Use year instead",Ye),gn.zone=M("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",(function(e,t){return null!=e?("string"!=typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()})),gn.isDSTShifted=M("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",(function(){if(!c(this._isDSTShifted))return this._isDSTShifted;var e,t={};return _(t,this),(t=Mt(t))._a?(e=t._isUTC?p(t._a):Lt(t._a),this._isDSTShifted=this.isValid()&&function(e,t,n){var r,i=Math.min(e.length,t.length),o=Math.abs(e.length-t.length),a=0;for(r=0;r0):this._isDSTShifted=!1,this._isDSTShifted}));var vn=O.prototype;function _n(e,t,n,r){var i=lt(),o=p().set(r,t);return i[n](o,e)}function kn(e,t,n){if(u(e)&&(t=e,e=void 0),e=e||"",null!=t)return _n(e,t,n,"month");var r,i=[];for(r=0;r<12;r++)i[r]=_n(e,r,n,"month");return i}function wn(e,t,n,r){"boolean"==typeof e?(u(t)&&(n=t,t=void 0),t=t||""):(n=t=e,e=!1,u(t)&&(n=t,t=void 0),t=t||"");var i,o=lt(),a=e?o._week.dow:0,s=[];if(null!=n)return _n(t,(n+a)%7,r,"day");for(i=0;i<7;i++)s[i]=_n(t,(i+a)%7,r,"day");return s}vn.calendar=function(e,t,n){var r=this._calendar[e]||this._calendar.sameElse;return E(r)?r.call(t,n):r},vn.longDateFormat=function(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.match(j).map((function(e){return"MMMM"===e||"MM"===e||"DD"===e||"dddd"===e?e.slice(1):e})).join(""),this._longDateFormat[e])},vn.invalidDate=function(){return this._invalidDate},vn.ordinal=function(e){return this._ordinal.replace("%d",e)},vn.preparse=yn,vn.postformat=yn,vn.relativeTime=function(e,t,n,r){var i=this._relativeTime[n];return E(i)?i(e,t,n,r):i.replace(/%d/i,e)},vn.pastFuture=function(e,t){var n=this._relativeTime[e>0?"future":"past"];return E(n)?n(t):n.replace(/%s/i,t)},vn.set=function(e){var t,n;for(n in e)s(e,n)&&(E(t=e[n])?this[n]=t:this["_"+n]=t);this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)},vn.eras=function(e,t){var n,r,o,a=this._eras||lt("en")._eras;for(n=0,r=a.length;n=0)return l[r]},vn.erasConvertYear=function(e,t){var n=e.since<=e.until?1:-1;return void 0===t?i(e.since).year():i(e.since).year()+(t-e.offset)*n},vn.erasAbbrRegex=function(e){return s(this,"_erasAbbrRegex")||sn.call(this),e?this._erasAbbrRegex:this._erasRegex},vn.erasNameRegex=function(e){return s(this,"_erasNameRegex")||sn.call(this),e?this._erasNameRegex:this._erasRegex},vn.erasNarrowRegex=function(e){return s(this,"_erasNarrowRegex")||sn.call(this),e?this._erasNarrowRegex:this._erasRegex},vn.months=function(e,t){return e?o(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||Se).test(t)?"format":"standalone"][e.month()]:o(this._months)?this._months:this._months.standalone},vn.monthsShort=function(e,t){return e?o(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[Se.test(t)?"format":"standalone"][e.month()]:o(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},vn.monthsParse=function(e,t,n){var r,i,o;if(this._monthsParseExact)return Ee.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),r=0;r<12;r++){if(i=p([2e3,r]),n&&!this._longMonthsParse[r]&&(this._longMonthsParse[r]=new RegExp("^"+this.months(i,"").replace(".","")+"$","i"),this._shortMonthsParse[r]=new RegExp("^"+this.monthsShort(i,"").replace(".","")+"$","i")),n||this._monthsParse[r]||(o="^"+this.months(i,"")+"|^"+this.monthsShort(i,""),this._monthsParse[r]=new RegExp(o.replace(".",""),"i")),n&&"MMMM"===t&&this._longMonthsParse[r].test(e))return r;if(n&&"MMM"===t&&this._shortMonthsParse[r].test(e))return r;if(!n&&this._monthsParse[r].test(e))return r}},vn.monthsRegex=function(e){return this._monthsParseExact?(s(this,"_monthsRegex")||De.call(this),e?this._monthsStrictRegex:this._monthsRegex):(s(this,"_monthsRegex")||(this._monthsRegex=Ce),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)},vn.monthsShortRegex=function(e){return this._monthsParseExact?(s(this,"_monthsRegex")||De.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(s(this,"_monthsShortRegex")||(this._monthsShortRegex=Le),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)},vn.week=function(e){return He(e,this._week.dow,this._week.doy).week},vn.firstDayOfYear=function(){return this._week.doy},vn.firstDayOfWeek=function(){return this._week.dow},vn.weekdays=function(e,t){var n=o(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?"format":"standalone"];return!0===e?Fe(n,this._week.dow):e?n[e.day()]:n},vn.weekdaysMin=function(e){return!0===e?Fe(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin},vn.weekdaysShort=function(e){return!0===e?Fe(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort},vn.weekdaysParse=function(e,t,n){var r,i,o;if(this._weekdaysParseExact)return Ze.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),r=0;r<7;r++){if(i=p([2e3,1]).day(r),n&&!this._fullWeekdaysParse[r]&&(this._fullWeekdaysParse[r]=new RegExp("^"+this.weekdays(i,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[r]=new RegExp("^"+this.weekdaysShort(i,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[r]=new RegExp("^"+this.weekdaysMin(i,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[r]||(o="^"+this.weekdays(i,"")+"|^"+this.weekdaysShort(i,"")+"|^"+this.weekdaysMin(i,""),this._weekdaysParse[r]=new RegExp(o.replace(".",""),"i")),n&&"dddd"===t&&this._fullWeekdaysParse[r].test(e))return r;if(n&&"ddd"===t&&this._shortWeekdaysParse[r].test(e))return r;if(n&&"dd"===t&&this._minWeekdaysParse[r].test(e))return r;if(!n&&this._weekdaysParse[r].test(e))return r}},vn.weekdaysRegex=function(e){return this._weekdaysParseExact?(s(this,"_weekdaysRegex")||Ge.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(s(this,"_weekdaysRegex")||(this._weekdaysRegex=Ue),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)},vn.weekdaysShortRegex=function(e){return this._weekdaysParseExact?(s(this,"_weekdaysRegex")||Ge.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(s(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=Ve),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},vn.weekdaysMinRegex=function(e){return this._weekdaysParseExact?(s(this,"_weekdaysRegex")||Ge.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(s(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=qe),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},vn.isPM=function(e){return"p"===(e+"").toLowerCase().charAt(0)},vn.meridiem=function(e,t,n){return e>11?n?"pm":"PM":n?"am":"AM"},at("en",{eras:[{since:"0001-01-01",until:1/0,offset:1,name:"Anno Domini",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"Before Christ",narrow:"BC",abbr:"BC"}],dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===Z(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}}),i.lang=M("moment.lang is deprecated. Use moment.locale instead.",at),i.langData=M("moment.langData is deprecated. Use moment.localeData instead.",lt);var xn=Math.abs;function Mn(e,t,n,r){var i=Wt(t,n);return e._milliseconds+=r*i._milliseconds,e._days+=r*i._days,e._months+=r*i._months,e._bubble()}function Sn(e){return e<0?Math.floor(e):Math.ceil(e)}function Ln(e){return 4800*e/146097}function Cn(e){return 146097*e/4800}function En(e){return function(){return this.as(e)}}var Tn=En("ms"),On=En("s"),Dn=En("m"),jn=En("h"),Yn=En("d"),Pn=En("w"),An=En("M"),Nn=En("Q"),Rn=En("y");function Hn(e){return function(){return this.isValid()?this._data[e]:NaN}}var In=Hn("milliseconds"),Fn=Hn("seconds"),zn=Hn("minutes"),Wn=Hn("hours"),Bn=Hn("days"),Un=Hn("months"),Vn=Hn("years"),qn=Math.round,Zn={ss:44,s:45,m:45,h:22,d:26,w:null,M:11};function Gn(e,t,n,r,i){return i.relativeTime(t||1,!!n,e,r)}var $n=Math.abs;function Jn(e){return(e>0)-(e<0)||+e}function Kn(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n,r,i,o,a,s,l=$n(this._milliseconds)/1e3,c=$n(this._days),u=$n(this._months),d=this.asSeconds();return d?(e=q(l/60),t=q(e/60),l%=60,e%=60,n=q(u/12),u%=12,r=l?l.toFixed(3).replace(/\.?0+$/,""):"",i=d<0?"-":"",o=Jn(this._months)!==Jn(d)?"-":"",a=Jn(this._days)!==Jn(d)?"-":"",s=Jn(this._milliseconds)!==Jn(d)?"-":"",i+"P"+(n?o+n+"Y":"")+(u?o+u+"M":"")+(c?a+c+"D":"")+(t||e||l?"T":"")+(t?s+t+"H":"")+(e?s+e+"M":"")+(l?s+r+"S":"")):"P0D"}var Xn=Dt.prototype;return Xn.isValid=function(){return this._isValid},Xn.abs=function(){var e=this._data;return this._milliseconds=xn(this._milliseconds),this._days=xn(this._days),this._months=xn(this._months),e.milliseconds=xn(e.milliseconds),e.seconds=xn(e.seconds),e.minutes=xn(e.minutes),e.hours=xn(e.hours),e.months=xn(e.months),e.years=xn(e.years),this},Xn.add=function(e,t){return Mn(this,e,t,1)},Xn.subtract=function(e,t){return Mn(this,e,t,-1)},Xn.as=function(e){if(!this.isValid())return NaN;var t,n,r=this._milliseconds;if("month"===(e=z(e))||"quarter"===e||"year"===e)switch(t=this._days+r/864e5,n=this._months+Ln(t),e){case"month":return n;case"quarter":return n/3;case"year":return n/12}else switch(t=this._days+Math.round(Cn(this._months)),e){case"week":return t/7+r/6048e5;case"day":return t+r/864e5;case"hour":return 24*t+r/36e5;case"minute":return 1440*t+r/6e4;case"second":return 86400*t+r/1e3;case"millisecond":return Math.floor(864e5*t)+r;default:throw new Error("Unknown unit "+e)}},Xn.asMilliseconds=Tn,Xn.asSeconds=On,Xn.asMinutes=Dn,Xn.asHours=jn,Xn.asDays=Yn,Xn.asWeeks=Pn,Xn.asMonths=An,Xn.asQuarters=Nn,Xn.asYears=Rn,Xn.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*Z(this._months/12):NaN},Xn._bubble=function(){var e,t,n,r,i,o=this._milliseconds,a=this._days,s=this._months,l=this._data;return o>=0&&a>=0&&s>=0||o<=0&&a<=0&&s<=0||(o+=864e5*Sn(Cn(s)+a),a=0,s=0),l.milliseconds=o%1e3,e=q(o/1e3),l.seconds=e%60,t=q(e/60),l.minutes=t%60,n=q(t/60),l.hours=n%24,a+=q(n/24),i=q(Ln(a)),s+=i,a-=Sn(Cn(i)),r=q(s/12),s%=12,l.days=a,l.months=s,l.years=r,this},Xn.clone=function(){return Wt(this)},Xn.get=function(e){return e=z(e),this.isValid()?this[e+"s"]():NaN},Xn.milliseconds=In,Xn.seconds=Fn,Xn.minutes=zn,Xn.hours=Wn,Xn.days=Bn,Xn.weeks=function(){return q(this.days()/7)},Xn.months=Un,Xn.years=Vn,Xn.humanize=function(e,t){if(!this.isValid())return this.localeData().invalidDate();var n,r,i=!1,o=Zn;return"object"==typeof e&&(t=e,e=!1),"boolean"==typeof e&&(i=e),"object"==typeof t&&(o=Object.assign({},Zn,t),null!=t.s&&null==t.ss&&(o.ss=t.s-1)),n=this.localeData(),r=function(e,t,n,r){var i=Wt(e).abs(),o=qn(i.as("s")),a=qn(i.as("m")),s=qn(i.as("h")),l=qn(i.as("d")),c=qn(i.as("M")),u=qn(i.as("w")),d=qn(i.as("y")),f=o<=n.ss&&["s",o]||o0,f[4]=r,Gn.apply(null,f)}(this,!i,o,n),i&&(r=n.pastFuture(+this,r)),n.postformat(r)},Xn.toISOString=Kn,Xn.toString=Kn,Xn.toJSON=Kn,Xn.locale=Qt,Xn.localeData=tn,Xn.toIsoString=M("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",Kn),Xn.lang=en,N("X",0,0,"unix"),N("x",0,0,"valueOf"),pe("x",ue),pe("X",/[+-]?\d+(\.\d{1,3})?/),ve("X",(function(e,t,n){n._d=new Date(1e3*parseFloat(e))})),ve("x",(function(e,t,n){n._d=new Date(Z(e))})), -//! moment.js -i.version="2.25.3",t=Lt,i.fn=gn,i.min=function(){var e=[].slice.call(arguments,0);return Tt("isBefore",e)},i.max=function(){var e=[].slice.call(arguments,0);return Tt("isAfter",e)},i.now=function(){return Date.now?Date.now():+new Date},i.utc=p,i.unix=function(e){return Lt(1e3*e)},i.months=function(e,t){return kn(e,t,"months")},i.isDate=d,i.locale=at,i.invalid=g,i.duration=Wt,i.isMoment=w,i.weekdays=function(e,t,n){return wn(e,t,n,"weekdays")},i.parseZone=function(){return Lt.apply(null,arguments).parseZone()},i.localeData=lt,i.isDuration=jt,i.monthsShort=function(e,t){return kn(e,t,"monthsShort")},i.weekdaysMin=function(e,t,n){return wn(e,t,n,"weekdaysMin")},i.defineLocale=st,i.updateLocale=function(e,t){if(null!=t){var n,r,i=et;null!=tt[e]&&null!=tt[e].parentLocale?tt[e].set(T(tt[e]._config,t)):(null!=(r=ot(e))&&(i=r._config),t=T(i,t),null==r&&(t.abbr=e),(n=new O(t)).parentLocale=tt[e],tt[e]=n),at(e)}else null!=tt[e]&&(null!=tt[e].parentLocale?(tt[e]=tt[e].parentLocale,e===at()&&at(e)):null!=tt[e]&&delete tt[e]);return tt[e]},i.locales=function(){return S(tt)},i.weekdaysShort=function(e,t,n){return wn(e,t,n,"weekdaysShort")},i.normalizeUnits=z,i.relativeTimeRounding=function(e){return void 0===e?qn:"function"==typeof e&&(qn=e,!0)},i.relativeTimeThreshold=function(e,t){return void 0!==Zn[e]&&(void 0===t?Zn[e]:(Zn[e]=t,"s"===e&&(Zn.ss=t-1),!0))},i.calendarFormat=function(e,t){var n=e.diff(t,"days",!0);return n<-6?"sameElse":n<-1?"lastWeek":n<0?"lastDay":n<1?"sameDay":n<2?"nextDay":n<7?"nextWeek":"sameElse"},i.prototype=gn,i.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},i}()}).call(this,n(31)(e))},function(e,t,n){(function(e,r){var i; -/** - * @license - * Lodash - * Copyright OpenJS Foundation and other contributors - * Released under MIT license - * Based on Underscore.js 1.8.3 - * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - */(function(){var o="Expected a function",a="__lodash_placeholder__",s=[["ary",128],["bind",1],["bindKey",2],["curry",8],["curryRight",16],["flip",512],["partial",32],["partialRight",64],["rearg",256]],l="[object Arguments]",c="[object Array]",u="[object Boolean]",d="[object Date]",f="[object Error]",h="[object Function]",p="[object GeneratorFunction]",m="[object Map]",b="[object Number]",g="[object Object]",y="[object RegExp]",v="[object Set]",_="[object String]",k="[object Symbol]",w="[object WeakMap]",x="[object ArrayBuffer]",M="[object DataView]",S="[object Float32Array]",L="[object Float64Array]",C="[object Int8Array]",E="[object Int16Array]",T="[object Int32Array]",O="[object Uint8Array]",D="[object Uint16Array]",j="[object Uint32Array]",Y=/\b__p \+= '';/g,P=/\b(__p \+=) '' \+/g,A=/(__e\(.*?\)|\b__t\)) \+\n'';/g,N=/&(?:amp|lt|gt|quot|#39);/g,R=/[&<>"']/g,H=RegExp(N.source),I=RegExp(R.source),F=/<%-([\s\S]+?)%>/g,z=/<%([\s\S]+?)%>/g,W=/<%=([\s\S]+?)%>/g,B=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,U=/^\w*$/,V=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,q=/[\\^$.*+?()[\]{}|]/g,Z=RegExp(q.source),G=/^\s+|\s+$/g,$=/^\s+/,J=/\s+$/,K=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,X=/\{\n\/\* \[wrapped with (.+)\] \*/,Q=/,? & /,ee=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,te=/\\(\\)?/g,ne=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,re=/\w*$/,ie=/^[-+]0x[0-9a-f]+$/i,oe=/^0b[01]+$/i,ae=/^\[object .+?Constructor\]$/,se=/^0o[0-7]+$/i,le=/^(?:0|[1-9]\d*)$/,ce=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,ue=/($^)/,de=/['\n\r\u2028\u2029\\]/g,fe="\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff",he="\\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",pe="[\\ud800-\\udfff]",me="["+he+"]",be="["+fe+"]",ge="\\d+",ye="[\\u2700-\\u27bf]",ve="[a-z\\xdf-\\xf6\\xf8-\\xff]",_e="[^\\ud800-\\udfff"+he+ge+"\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde]",ke="\\ud83c[\\udffb-\\udfff]",we="[^\\ud800-\\udfff]",xe="(?:\\ud83c[\\udde6-\\uddff]){2}",Me="[\\ud800-\\udbff][\\udc00-\\udfff]",Se="[A-Z\\xc0-\\xd6\\xd8-\\xde]",Le="(?:"+ve+"|"+_e+")",Ce="(?:"+Se+"|"+_e+")",Ee="(?:"+be+"|"+ke+")"+"?",Te="[\\ufe0e\\ufe0f]?"+Ee+("(?:\\u200d(?:"+[we,xe,Me].join("|")+")[\\ufe0e\\ufe0f]?"+Ee+")*"),Oe="(?:"+[ye,xe,Me].join("|")+")"+Te,De="(?:"+[we+be+"?",be,xe,Me,pe].join("|")+")",je=RegExp("['’]","g"),Ye=RegExp(be,"g"),Pe=RegExp(ke+"(?="+ke+")|"+De+Te,"g"),Ae=RegExp([Se+"?"+ve+"+(?:['’](?:d|ll|m|re|s|t|ve))?(?="+[me,Se,"$"].join("|")+")",Ce+"+(?:['’](?:D|LL|M|RE|S|T|VE))?(?="+[me,Se+Le,"$"].join("|")+")",Se+"?"+Le+"+(?:['’](?:d|ll|m|re|s|t|ve))?",Se+"+(?:['’](?:D|LL|M|RE|S|T|VE))?","\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",ge,Oe].join("|"),"g"),Ne=RegExp("[\\u200d\\ud800-\\udfff"+fe+"\\ufe0e\\ufe0f]"),Re=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,He=["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"],Ie=-1,Fe={};Fe[S]=Fe[L]=Fe[C]=Fe[E]=Fe[T]=Fe[O]=Fe["[object Uint8ClampedArray]"]=Fe[D]=Fe[j]=!0,Fe[l]=Fe[c]=Fe[x]=Fe[u]=Fe[M]=Fe[d]=Fe[f]=Fe[h]=Fe[m]=Fe[b]=Fe[g]=Fe[y]=Fe[v]=Fe[_]=Fe[w]=!1;var ze={};ze[l]=ze[c]=ze[x]=ze[M]=ze[u]=ze[d]=ze[S]=ze[L]=ze[C]=ze[E]=ze[T]=ze[m]=ze[b]=ze[g]=ze[y]=ze[v]=ze[_]=ze[k]=ze[O]=ze["[object Uint8ClampedArray]"]=ze[D]=ze[j]=!0,ze[f]=ze[h]=ze[w]=!1;var We={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},Be=parseFloat,Ue=parseInt,Ve="object"==typeof e&&e&&e.Object===Object&&e,qe="object"==typeof self&&self&&self.Object===Object&&self,Ze=Ve||qe||Function("return this")(),Ge=t&&!t.nodeType&&t,$e=Ge&&"object"==typeof r&&r&&!r.nodeType&&r,Je=$e&&$e.exports===Ge,Ke=Je&&Ve.process,Xe=function(){try{var e=$e&&$e.require&&$e.require("util").types;return e||Ke&&Ke.binding&&Ke.binding("util")}catch(e){}}(),Qe=Xe&&Xe.isArrayBuffer,et=Xe&&Xe.isDate,tt=Xe&&Xe.isMap,nt=Xe&&Xe.isRegExp,rt=Xe&&Xe.isSet,it=Xe&&Xe.isTypedArray;function ot(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 at(e,t,n,r){for(var i=-1,o=null==e?0:e.length;++i-1}function ft(e,t,n){for(var r=-1,i=null==e?0:e.length;++r-1;);return n}function Pt(e,t){for(var n=e.length;n--&&kt(t,e[n],0)>-1;);return n}function At(e,t){for(var n=e.length,r=0;n--;)e[n]===t&&++r;return r}var Nt=Lt({"À":"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"}),Rt=Lt({"&":"&","<":"<",">":">",'"':""","'":"'"});function Ht(e){return"\\"+We[e]}function It(e){return Ne.test(e)}function Ft(e){var t=-1,n=Array(e.size);return e.forEach((function(e,r){n[++t]=[r,e]})),n}function zt(e,t){return function(n){return e(t(n))}}function Wt(e,t){for(var n=-1,r=e.length,i=0,o=[];++n",""":'"',"'":"'"});var Gt=function e(t){var n,r=(t=null==t?Ze:Gt.defaults(Ze.Object(),t,Gt.pick(Ze,He))).Array,i=t.Date,fe=t.Error,he=t.Function,pe=t.Math,me=t.Object,be=t.RegExp,ge=t.String,ye=t.TypeError,ve=r.prototype,_e=he.prototype,ke=me.prototype,we=t["__core-js_shared__"],xe=_e.toString,Me=ke.hasOwnProperty,Se=0,Le=(n=/[^.]+$/.exec(we&&we.keys&&we.keys.IE_PROTO||""))?"Symbol(src)_1."+n:"",Ce=ke.toString,Ee=xe.call(me),Te=Ze._,Oe=be("^"+xe.call(Me).replace(q,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),De=Je?t.Buffer:void 0,Pe=t.Symbol,Ne=t.Uint8Array,We=De?De.allocUnsafe:void 0,Ve=zt(me.getPrototypeOf,me),qe=me.create,Ge=ke.propertyIsEnumerable,$e=ve.splice,Ke=Pe?Pe.isConcatSpreadable:void 0,Xe=Pe?Pe.iterator:void 0,yt=Pe?Pe.toStringTag:void 0,Lt=function(){try{var e=Qi(me,"defineProperty");return e({},"",{}),e}catch(e){}}(),$t=t.clearTimeout!==Ze.clearTimeout&&t.clearTimeout,Jt=i&&i.now!==Ze.Date.now&&i.now,Kt=t.setTimeout!==Ze.setTimeout&&t.setTimeout,Xt=pe.ceil,Qt=pe.floor,en=me.getOwnPropertySymbols,tn=De?De.isBuffer:void 0,nn=t.isFinite,rn=ve.join,on=zt(me.keys,me),an=pe.max,sn=pe.min,ln=i.now,cn=t.parseInt,un=pe.random,dn=ve.reverse,fn=Qi(t,"DataView"),hn=Qi(t,"Map"),pn=Qi(t,"Promise"),mn=Qi(t,"Set"),bn=Qi(t,"WeakMap"),gn=Qi(me,"create"),yn=bn&&new bn,vn={},_n=Co(fn),kn=Co(hn),wn=Co(pn),xn=Co(mn),Mn=Co(bn),Sn=Pe?Pe.prototype:void 0,Ln=Sn?Sn.valueOf:void 0,Cn=Sn?Sn.toString:void 0;function En(e){if(Ua(e)&&!Ya(e)&&!(e instanceof jn)){if(e instanceof Dn)return e;if(Me.call(e,"__wrapped__"))return Eo(e)}return new Dn(e)}var Tn=function(){function e(){}return function(t){if(!Ba(t))return{};if(qe)return qe(t);e.prototype=t;var n=new e;return e.prototype=void 0,n}}();function On(){}function Dn(e,t){this.__wrapped__=e,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=void 0}function jn(e){this.__wrapped__=e,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=4294967295,this.__views__=[]}function Yn(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t=t?e:t)),e}function Jn(e,t,n,r,i,o){var a,s=1&t,c=2&t,f=4&t;if(n&&(a=i?n(e,r,i,o):n(e)),void 0!==a)return a;if(!Ba(e))return e;var w=Ya(e);if(w){if(a=function(e){var t=e.length,n=new e.constructor(t);t&&"string"==typeof e[0]&&Me.call(e,"index")&&(n.index=e.index,n.input=e.input);return n}(e),!s)return gi(e,a)}else{var Y=no(e),P=Y==h||Y==p;if(Ra(e))return di(e,s);if(Y==g||Y==l||P&&!i){if(a=c||P?{}:io(e),!s)return c?function(e,t){return yi(e,to(e),t)}(e,function(e,t){return e&&yi(t,ks(t),e)}(a,e)):function(e,t){return yi(e,eo(e),t)}(e,qn(a,e))}else{if(!ze[Y])return i?e:{};a=function(e,t,n){var r=e.constructor;switch(t){case x:return fi(e);case u:case d:return new r(+e);case M:return function(e,t){var n=t?fi(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.byteLength)}(e,n);case S:case L:case C:case E:case T:case O:case"[object Uint8ClampedArray]":case D:case j:return hi(e,n);case m:return new r;case b:case _:return new r(e);case y:return function(e){var t=new e.constructor(e.source,re.exec(e));return t.lastIndex=e.lastIndex,t}(e);case v:return new r;case k:return i=e,Ln?me(Ln.call(i)):{}}var i}(e,Y,s)}}o||(o=new Rn);var A=o.get(e);if(A)return A;o.set(e,a),$a(e)?e.forEach((function(r){a.add(Jn(r,t,n,r,e,o))})):Va(e)&&e.forEach((function(r,i){a.set(i,Jn(r,t,n,i,e,o))}));var N=w?void 0:(f?c?qi:Vi:c?ks:_s)(e);return st(N||e,(function(r,i){N&&(r=e[i=r]),Bn(a,i,Jn(r,t,n,i,e,o))})),a}function Kn(e,t,n){var r=n.length;if(null==e)return!r;for(e=me(e);r--;){var i=n[r],o=t[i],a=e[i];if(void 0===a&&!(i in e)||!o(a))return!1}return!0}function Xn(e,t,n){if("function"!=typeof e)throw new ye(o);return _o((function(){e.apply(void 0,n)}),t)}function Qn(e,t,n,r){var i=-1,o=dt,a=!0,s=e.length,l=[],c=t.length;if(!s)return l;n&&(t=ht(t,Ot(n))),r?(o=ft,a=!1):t.length>=200&&(o=jt,a=!1,t=new Nn(t));e:for(;++i-1},Pn.prototype.set=function(e,t){var n=this.__data__,r=Un(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this},An.prototype.clear=function(){this.size=0,this.__data__={hash:new Yn,map:new(hn||Pn),string:new Yn}},An.prototype.delete=function(e){var t=Ki(this,e).delete(e);return this.size-=t?1:0,t},An.prototype.get=function(e){return Ki(this,e).get(e)},An.prototype.has=function(e){return Ki(this,e).has(e)},An.prototype.set=function(e,t){var n=Ki(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this},Nn.prototype.add=Nn.prototype.push=function(e){return this.__data__.set(e,"__lodash_hash_undefined__"),this},Nn.prototype.has=function(e){return this.__data__.has(e)},Rn.prototype.clear=function(){this.__data__=new Pn,this.size=0},Rn.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},Rn.prototype.get=function(e){return this.__data__.get(e)},Rn.prototype.has=function(e){return this.__data__.has(e)},Rn.prototype.set=function(e,t){var n=this.__data__;if(n instanceof Pn){var r=n.__data__;if(!hn||r.length<199)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new An(r)}return n.set(e,t),this.size=n.size,this};var er=ki(lr),tr=ki(cr,!0);function nr(e,t){var n=!0;return er(e,(function(e,r,i){return n=!!t(e,r,i)})),n}function rr(e,t,n){for(var r=-1,i=e.length;++r0&&n(s)?t>1?or(s,t-1,n,r,i):pt(i,s):r||(i[i.length]=s)}return i}var ar=wi(),sr=wi(!0);function lr(e,t){return e&&ar(e,t,_s)}function cr(e,t){return e&&sr(e,t,_s)}function ur(e,t){return ut(t,(function(t){return Fa(e[t])}))}function dr(e,t){for(var n=0,r=(t=si(t,e)).length;null!=e&&nt}function mr(e,t){return null!=e&&Me.call(e,t)}function br(e,t){return null!=e&&t in me(e)}function gr(e,t,n){for(var i=n?ft:dt,o=e[0].length,a=e.length,s=a,l=r(a),c=1/0,u=[];s--;){var d=e[s];s&&t&&(d=ht(d,Ot(t))),c=sn(d.length,c),l[s]=!n&&(t||o>=120&&d.length>=120)?new Nn(s&&d):void 0}d=e[0];var f=-1,h=l[0];e:for(;++f=s)return l;var c=n[r];return l*("desc"==c?-1:1)}}return e.index-t.index}(e,t,n)}))}function Yr(e,t,n){for(var r=-1,i=t.length,o={};++r-1;)s!==e&&$e.call(s,l,1),$e.call(e,l,1);return e}function Ar(e,t){for(var n=e?t.length:0,r=n-1;n--;){var i=t[n];if(n==r||i!==o){var o=i;ao(i)?$e.call(e,i,1):Qr(e,i)}}return e}function Nr(e,t){return e+Qt(un()*(t-e+1))}function Rr(e,t){var n="";if(!e||t<1||t>9007199254740991)return n;do{t%2&&(n+=e),(t=Qt(t/2))&&(e+=e)}while(t);return n}function Hr(e,t){return ko(mo(e,t,qs),e+"")}function Ir(e){return In(Ts(e))}function Fr(e,t){var n=Ts(e);return Mo(n,$n(t,0,n.length))}function zr(e,t,n,r){if(!Ba(e))return e;for(var i=-1,o=(t=si(t,e)).length,a=o-1,s=e;null!=s&&++io?0:o+t),(n=n>o?o:n)<0&&(n+=o),o=t>n?0:n-t>>>0,t>>>=0;for(var a=r(o);++i>>1,a=e[o];null!==a&&!Ka(a)&&(n?a<=t:a=200){var c=t?null:Ri(e);if(c)return Bt(c);a=!1,i=jt,l=new Nn}else l=t?[]:s;e:for(;++r=r?e:Vr(e,t,n)}var ui=$t||function(e){return Ze.clearTimeout(e)};function di(e,t){if(t)return e.slice();var n=e.length,r=We?We(n):new e.constructor(n);return e.copy(r),r}function fi(e){var t=new e.constructor(e.byteLength);return new Ne(t).set(new Ne(e)),t}function hi(e,t){var n=t?fi(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.length)}function pi(e,t){if(e!==t){var n=void 0!==e,r=null===e,i=e==e,o=Ka(e),a=void 0!==t,s=null===t,l=t==t,c=Ka(t);if(!s&&!c&&!o&&e>t||o&&a&&l&&!s&&!c||r&&a&&l||!n&&l||!i)return 1;if(!r&&!o&&!c&&e1?n[i-1]:void 0,a=i>2?n[2]:void 0;for(o=e.length>3&&"function"==typeof o?(i--,o):void 0,a&&so(n[0],n[1],a)&&(o=i<3?void 0:o,i=1),t=me(t);++r-1?i[o?t[a]:a]:void 0}}function Ci(e){return Ui((function(t){var n=t.length,r=n,i=Dn.prototype.thru;for(e&&t.reverse();r--;){var a=t[r];if("function"!=typeof a)throw new ye(o);if(i&&!s&&"wrapper"==Gi(a))var s=new Dn([],!0)}for(r=s?r:n;++r1&&v.reverse(),d&&cs))return!1;var c=o.get(e);if(c&&o.get(t))return c==t;var u=-1,d=!0,f=2&n?new Nn:void 0;for(o.set(e,t),o.set(t,e);++u-1&&e%1==0&&e1?"& ":"")+t[r],t=t.join(n>2?", ":" "),e.replace(K,"{\n/* [wrapped with "+t+"] */\n")}(r,function(e,t){return st(s,(function(n){var r="_."+n[0];t&n[1]&&!dt(e,r)&&e.push(r)})),e.sort()}(function(e){var t=e.match(X);return t?t[1].split(Q):[]}(r),n)))}function xo(e){var t=0,n=0;return function(){var r=ln(),i=16-(r-n);if(n=r,i>0){if(++t>=800)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}function Mo(e,t){var n=-1,r=e.length,i=r-1;for(t=void 0===t?r:t;++n1?e[t-1]:void 0;return n="function"==typeof n?(e.pop(),n):void 0,Go(e,n)}));function ta(e){var t=En(e);return t.__chain__=!0,t}function na(e,t){return t(e)}var ra=Ui((function(e){var t=e.length,n=t?e[0]:0,r=this.__wrapped__,i=function(t){return Gn(t,e)};return!(t>1||this.__actions__.length)&&r instanceof jn&&ao(n)?((r=r.slice(n,+n+(t?1:0))).__actions__.push({func:na,args:[i],thisArg:void 0}),new Dn(r,this.__chain__).thru((function(e){return t&&!e.length&&e.push(void 0),e}))):this.thru(i)}));var ia=vi((function(e,t,n){Me.call(e,n)?++e[n]:Zn(e,n,1)}));var oa=Li(jo),aa=Li(Yo);function sa(e,t){return(Ya(e)?st:er)(e,Ji(t,3))}function la(e,t){return(Ya(e)?lt:tr)(e,Ji(t,3))}var ca=vi((function(e,t,n){Me.call(e,n)?e[n].push(t):Zn(e,n,[t])}));var ua=Hr((function(e,t,n){var i=-1,o="function"==typeof t,a=Aa(e)?r(e.length):[];return er(e,(function(e){a[++i]=o?ot(t,e,n):yr(e,t,n)})),a})),da=vi((function(e,t,n){Zn(e,n,t)}));function fa(e,t){return(Ya(e)?ht:Cr)(e,Ji(t,3))}var ha=vi((function(e,t,n){e[n?0:1].push(t)}),(function(){return[[],[]]}));var pa=Hr((function(e,t){if(null==e)return[];var n=t.length;return n>1&&so(e,t[0],t[1])?t=[]:n>2&&so(t[0],t[1],t[2])&&(t=[t[0]]),jr(e,or(t,1),[])})),ma=Jt||function(){return Ze.Date.now()};function ba(e,t,n){return t=n?void 0:t,Ii(e,128,void 0,void 0,void 0,void 0,t=e&&null==t?e.length:t)}function ga(e,t){var n;if("function"!=typeof t)throw new ye(o);return e=rs(e),function(){return--e>0&&(n=t.apply(this,arguments)),e<=1&&(t=void 0),n}}var ya=Hr((function(e,t,n){var r=1;if(n.length){var i=Wt(n,$i(ya));r|=32}return Ii(e,r,t,n,i)})),va=Hr((function(e,t,n){var r=3;if(n.length){var i=Wt(n,$i(va));r|=32}return Ii(t,r,e,n,i)}));function _a(e,t,n){var r,i,a,s,l,c,u=0,d=!1,f=!1,h=!0;if("function"!=typeof e)throw new ye(o);function p(t){var n=r,o=i;return r=i=void 0,u=t,s=e.apply(o,n)}function m(e){return u=e,l=_o(g,t),d?p(e):s}function b(e){var n=e-c;return void 0===c||n>=t||n<0||f&&e-u>=a}function g(){var e=ma();if(b(e))return y(e);l=_o(g,function(e){var n=t-(e-c);return f?sn(n,a-(e-u)):n}(e))}function y(e){return l=void 0,h&&r?p(e):(r=i=void 0,s)}function v(){var e=ma(),n=b(e);if(r=arguments,i=this,c=e,n){if(void 0===l)return m(c);if(f)return ui(l),l=_o(g,t),p(c)}return void 0===l&&(l=_o(g,t)),s}return t=os(t)||0,Ba(n)&&(d=!!n.leading,a=(f="maxWait"in n)?an(os(n.maxWait)||0,t):a,h="trailing"in n?!!n.trailing:h),v.cancel=function(){void 0!==l&&ui(l),u=0,r=c=i=l=void 0},v.flush=function(){return void 0===l?s:y(ma())},v}var ka=Hr((function(e,t){return Xn(e,1,t)})),wa=Hr((function(e,t,n){return Xn(e,os(t)||0,n)}));function xa(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new ye(o);var n=function(){var r=arguments,i=t?t.apply(this,r):r[0],o=n.cache;if(o.has(i))return o.get(i);var a=e.apply(this,r);return n.cache=o.set(i,a)||o,a};return n.cache=new(xa.Cache||An),n}function Ma(e){if("function"!=typeof e)throw new ye(o);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)}}xa.Cache=An;var Sa=li((function(e,t){var n=(t=1==t.length&&Ya(t[0])?ht(t[0],Ot(Ji())):ht(or(t,1),Ot(Ji()))).length;return Hr((function(r){for(var i=-1,o=sn(r.length,n);++i=t})),ja=vr(function(){return arguments}())?vr:function(e){return Ua(e)&&Me.call(e,"callee")&&!Ge.call(e,"callee")},Ya=r.isArray,Pa=Qe?Ot(Qe):function(e){return Ua(e)&&hr(e)==x};function Aa(e){return null!=e&&Wa(e.length)&&!Fa(e)}function Na(e){return Ua(e)&&Aa(e)}var Ra=tn||ol,Ha=et?Ot(et):function(e){return Ua(e)&&hr(e)==d};function Ia(e){if(!Ua(e))return!1;var t=hr(e);return t==f||"[object DOMException]"==t||"string"==typeof e.message&&"string"==typeof e.name&&!Za(e)}function Fa(e){if(!Ba(e))return!1;var t=hr(e);return t==h||t==p||"[object AsyncFunction]"==t||"[object Proxy]"==t}function za(e){return"number"==typeof e&&e==rs(e)}function Wa(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991}function Ba(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function Ua(e){return null!=e&&"object"==typeof e}var Va=tt?Ot(tt):function(e){return Ua(e)&&no(e)==m};function qa(e){return"number"==typeof e||Ua(e)&&hr(e)==b}function Za(e){if(!Ua(e)||hr(e)!=g)return!1;var t=Ve(e);if(null===t)return!0;var n=Me.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&xe.call(n)==Ee}var Ga=nt?Ot(nt):function(e){return Ua(e)&&hr(e)==y};var $a=rt?Ot(rt):function(e){return Ua(e)&&no(e)==v};function Ja(e){return"string"==typeof e||!Ya(e)&&Ua(e)&&hr(e)==_}function Ka(e){return"symbol"==typeof e||Ua(e)&&hr(e)==k}var Xa=it?Ot(it):function(e){return Ua(e)&&Wa(e.length)&&!!Fe[hr(e)]};var Qa=Pi(Lr),es=Pi((function(e,t){return e<=t}));function ts(e){if(!e)return[];if(Aa(e))return Ja(e)?qt(e):gi(e);if(Xe&&e[Xe])return function(e){for(var t,n=[];!(t=e.next()).done;)n.push(t.value);return n}(e[Xe]());var t=no(e);return(t==m?Ft:t==v?Bt:Ts)(e)}function ns(e){return e?(e=os(e))===1/0||e===-1/0?17976931348623157e292*(e<0?-1:1):e==e?e:0:0===e?e:0}function rs(e){var t=ns(e),n=t%1;return t==t?n?t-n:t:0}function is(e){return e?$n(rs(e),0,4294967295):0}function os(e){if("number"==typeof e)return e;if(Ka(e))return NaN;if(Ba(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=Ba(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(G,"");var n=oe.test(e);return n||se.test(e)?Ue(e.slice(2),n?2:8):ie.test(e)?NaN:+e}function as(e){return yi(e,ks(e))}function ss(e){return null==e?"":Kr(e)}var ls=_i((function(e,t){if(fo(t)||Aa(t))yi(t,_s(t),e);else for(var n in t)Me.call(t,n)&&Bn(e,n,t[n])})),cs=_i((function(e,t){yi(t,ks(t),e)})),us=_i((function(e,t,n,r){yi(t,ks(t),e,r)})),ds=_i((function(e,t,n,r){yi(t,_s(t),e,r)})),fs=Ui(Gn);var hs=Hr((function(e,t){e=me(e);var n=-1,r=t.length,i=r>2?t[2]:void 0;for(i&&so(t[0],t[1],i)&&(r=1);++n1),t})),yi(e,qi(e),n),r&&(n=Jn(n,7,Wi));for(var i=t.length;i--;)Qr(n,t[i]);return n}));var Ss=Ui((function(e,t){return null==e?{}:function(e,t){return Yr(e,t,(function(t,n){return bs(e,n)}))}(e,t)}));function Ls(e,t){if(null==e)return{};var n=ht(qi(e),(function(e){return[e]}));return t=Ji(t),Yr(e,n,(function(e,n){return t(e,n[0])}))}var Cs=Hi(_s),Es=Hi(ks);function Ts(e){return null==e?[]:Dt(e,_s(e))}var Os=Mi((function(e,t,n){return t=t.toLowerCase(),e+(n?Ds(t):t)}));function Ds(e){return Is(ss(e).toLowerCase())}function js(e){return(e=ss(e))&&e.replace(ce,Nt).replace(Ye,"")}var Ys=Mi((function(e,t,n){return e+(n?"-":"")+t.toLowerCase()})),Ps=Mi((function(e,t,n){return e+(n?" ":"")+t.toLowerCase()})),As=xi("toLowerCase");var Ns=Mi((function(e,t,n){return e+(n?"_":"")+t.toLowerCase()}));var Rs=Mi((function(e,t,n){return e+(n?" ":"")+Is(t)}));var Hs=Mi((function(e,t,n){return e+(n?" ":"")+t.toUpperCase()})),Is=xi("toUpperCase");function Fs(e,t,n){return e=ss(e),void 0===(t=n?void 0:t)?function(e){return Re.test(e)}(e)?function(e){return e.match(Ae)||[]}(e):function(e){return e.match(ee)||[]}(e):e.match(t)||[]}var zs=Hr((function(e,t){try{return ot(e,void 0,t)}catch(e){return Ia(e)?e:new fe(e)}})),Ws=Ui((function(e,t){return st(t,(function(t){t=Lo(t),Zn(e,t,ya(e[t],e))})),e}));function Bs(e){return function(){return e}}var Us=Ci(),Vs=Ci(!0);function qs(e){return e}function Zs(e){return xr("function"==typeof e?e:Jn(e,1))}var Gs=Hr((function(e,t){return function(n){return yr(n,e,t)}})),$s=Hr((function(e,t){return function(n){return yr(e,n,t)}}));function Js(e,t,n){var r=_s(t),i=ur(t,r);null!=n||Ba(t)&&(i.length||!r.length)||(n=t,t=e,e=this,i=ur(t,_s(t)));var o=!(Ba(n)&&"chain"in n&&!n.chain),a=Fa(e);return st(i,(function(n){var r=t[n];e[n]=r,a&&(e.prototype[n]=function(){var t=this.__chain__;if(o||t){var n=e(this.__wrapped__),i=n.__actions__=gi(this.__actions__);return i.push({func:r,args:arguments,thisArg:e}),n.__chain__=t,n}return r.apply(e,pt([this.value()],arguments))})})),e}function Ks(){}var Xs=Di(ht),Qs=Di(ct),el=Di(gt);function tl(e){return lo(e)?St(Lo(e)):function(e){return function(t){return dr(t,e)}}(e)}var nl=Yi(),rl=Yi(!0);function il(){return[]}function ol(){return!1}var al=Oi((function(e,t){return e+t}),0),sl=Ni("ceil"),ll=Oi((function(e,t){return e/t}),1),cl=Ni("floor");var ul,dl=Oi((function(e,t){return e*t}),1),fl=Ni("round"),hl=Oi((function(e,t){return e-t}),0);return En.after=function(e,t){if("function"!=typeof t)throw new ye(o);return e=rs(e),function(){if(--e<1)return t.apply(this,arguments)}},En.ary=ba,En.assign=ls,En.assignIn=cs,En.assignInWith=us,En.assignWith=ds,En.at=fs,En.before=ga,En.bind=ya,En.bindAll=Ws,En.bindKey=va,En.castArray=function(){if(!arguments.length)return[];var e=arguments[0];return Ya(e)?e:[e]},En.chain=ta,En.chunk=function(e,t,n){t=(n?so(e,t,n):void 0===t)?1:an(rs(t),0);var i=null==e?0:e.length;if(!i||t<1)return[];for(var o=0,a=0,s=r(Xt(i/t));oi?0:i+n),(r=void 0===r||r>i?i:rs(r))<0&&(r+=i),r=n>r?0:is(r);n>>0)?(e=ss(e))&&("string"==typeof t||null!=t&&!Ga(t))&&!(t=Kr(t))&&It(e)?ci(qt(e),0,n):e.split(t,n):[]},En.spread=function(e,t){if("function"!=typeof e)throw new ye(o);return t=null==t?0:an(rs(t),0),Hr((function(n){var r=n[t],i=ci(n,0,t);return r&&pt(i,r),ot(e,this,i)}))},En.tail=function(e){var t=null==e?0:e.length;return t?Vr(e,1,t):[]},En.take=function(e,t,n){return e&&e.length?Vr(e,0,(t=n||void 0===t?1:rs(t))<0?0:t):[]},En.takeRight=function(e,t,n){var r=null==e?0:e.length;return r?Vr(e,(t=r-(t=n||void 0===t?1:rs(t)))<0?0:t,r):[]},En.takeRightWhile=function(e,t){return e&&e.length?ti(e,Ji(t,3),!1,!0):[]},En.takeWhile=function(e,t){return e&&e.length?ti(e,Ji(t,3)):[]},En.tap=function(e,t){return t(e),e},En.throttle=function(e,t,n){var r=!0,i=!0;if("function"!=typeof e)throw new ye(o);return Ba(n)&&(r="leading"in n?!!n.leading:r,i="trailing"in n?!!n.trailing:i),_a(e,t,{leading:r,maxWait:t,trailing:i})},En.thru=na,En.toArray=ts,En.toPairs=Cs,En.toPairsIn=Es,En.toPath=function(e){return Ya(e)?ht(e,Lo):Ka(e)?[e]:gi(So(ss(e)))},En.toPlainObject=as,En.transform=function(e,t,n){var r=Ya(e),i=r||Ra(e)||Xa(e);if(t=Ji(t,4),null==n){var o=e&&e.constructor;n=i?r?new o:[]:Ba(e)&&Fa(o)?Tn(Ve(e)):{}}return(i?st:lr)(e,(function(e,r,i){return t(n,e,r,i)})),n},En.unary=function(e){return ba(e,1)},En.union=Uo,En.unionBy=Vo,En.unionWith=qo,En.uniq=function(e){return e&&e.length?Xr(e):[]},En.uniqBy=function(e,t){return e&&e.length?Xr(e,Ji(t,2)):[]},En.uniqWith=function(e,t){return t="function"==typeof t?t:void 0,e&&e.length?Xr(e,void 0,t):[]},En.unset=function(e,t){return null==e||Qr(e,t)},En.unzip=Zo,En.unzipWith=Go,En.update=function(e,t,n){return null==e?e:ei(e,t,ai(n))},En.updateWith=function(e,t,n,r){return r="function"==typeof r?r:void 0,null==e?e:ei(e,t,ai(n),r)},En.values=Ts,En.valuesIn=function(e){return null==e?[]:Dt(e,ks(e))},En.without=$o,En.words=Fs,En.wrap=function(e,t){return La(ai(t),e)},En.xor=Jo,En.xorBy=Ko,En.xorWith=Xo,En.zip=Qo,En.zipObject=function(e,t){return ii(e||[],t||[],Bn)},En.zipObjectDeep=function(e,t){return ii(e||[],t||[],zr)},En.zipWith=ea,En.entries=Cs,En.entriesIn=Es,En.extend=cs,En.extendWith=us,Js(En,En),En.add=al,En.attempt=zs,En.camelCase=Os,En.capitalize=Ds,En.ceil=sl,En.clamp=function(e,t,n){return void 0===n&&(n=t,t=void 0),void 0!==n&&(n=(n=os(n))==n?n:0),void 0!==t&&(t=(t=os(t))==t?t:0),$n(os(e),t,n)},En.clone=function(e){return Jn(e,4)},En.cloneDeep=function(e){return Jn(e,5)},En.cloneDeepWith=function(e,t){return Jn(e,5,t="function"==typeof t?t:void 0)},En.cloneWith=function(e,t){return Jn(e,4,t="function"==typeof t?t:void 0)},En.conformsTo=function(e,t){return null==t||Kn(e,t,_s(t))},En.deburr=js,En.defaultTo=function(e,t){return null==e||e!=e?t:e},En.divide=ll,En.endsWith=function(e,t,n){e=ss(e),t=Kr(t);var r=e.length,i=n=void 0===n?r:$n(rs(n),0,r);return(n-=t.length)>=0&&e.slice(n,i)==t},En.eq=Ta,En.escape=function(e){return(e=ss(e))&&I.test(e)?e.replace(R,Rt):e},En.escapeRegExp=function(e){return(e=ss(e))&&Z.test(e)?e.replace(q,"\\$&"):e},En.every=function(e,t,n){var r=Ya(e)?ct:nr;return n&&so(e,t,n)&&(t=void 0),r(e,Ji(t,3))},En.find=oa,En.findIndex=jo,En.findKey=function(e,t){return vt(e,Ji(t,3),lr)},En.findLast=aa,En.findLastIndex=Yo,En.findLastKey=function(e,t){return vt(e,Ji(t,3),cr)},En.floor=cl,En.forEach=sa,En.forEachRight=la,En.forIn=function(e,t){return null==e?e:ar(e,Ji(t,3),ks)},En.forInRight=function(e,t){return null==e?e:sr(e,Ji(t,3),ks)},En.forOwn=function(e,t){return e&&lr(e,Ji(t,3))},En.forOwnRight=function(e,t){return e&&cr(e,Ji(t,3))},En.get=ms,En.gt=Oa,En.gte=Da,En.has=function(e,t){return null!=e&&ro(e,t,mr)},En.hasIn=bs,En.head=Ao,En.identity=qs,En.includes=function(e,t,n,r){e=Aa(e)?e:Ts(e),n=n&&!r?rs(n):0;var i=e.length;return n<0&&(n=an(i+n,0)),Ja(e)?n<=i&&e.indexOf(t,n)>-1:!!i&&kt(e,t,n)>-1},En.indexOf=function(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var i=null==n?0:rs(n);return i<0&&(i=an(r+i,0)),kt(e,t,i)},En.inRange=function(e,t,n){return t=ns(t),void 0===n?(n=t,t=0):n=ns(n),function(e,t,n){return e>=sn(t,n)&&e=-9007199254740991&&e<=9007199254740991},En.isSet=$a,En.isString=Ja,En.isSymbol=Ka,En.isTypedArray=Xa,En.isUndefined=function(e){return void 0===e},En.isWeakMap=function(e){return Ua(e)&&no(e)==w},En.isWeakSet=function(e){return Ua(e)&&"[object WeakSet]"==hr(e)},En.join=function(e,t){return null==e?"":rn.call(e,t)},En.kebabCase=Ys,En.last=Io,En.lastIndexOf=function(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var i=r;return void 0!==n&&(i=(i=rs(n))<0?an(r+i,0):sn(i,r-1)),t==t?function(e,t,n){for(var r=n+1;r--;)if(e[r]===t)return r;return r}(e,t,i):_t(e,xt,i,!0)},En.lowerCase=Ps,En.lowerFirst=As,En.lt=Qa,En.lte=es,En.max=function(e){return e&&e.length?rr(e,qs,pr):void 0},En.maxBy=function(e,t){return e&&e.length?rr(e,Ji(t,2),pr):void 0},En.mean=function(e){return Mt(e,qs)},En.meanBy=function(e,t){return Mt(e,Ji(t,2))},En.min=function(e){return e&&e.length?rr(e,qs,Lr):void 0},En.minBy=function(e,t){return e&&e.length?rr(e,Ji(t,2),Lr):void 0},En.stubArray=il,En.stubFalse=ol,En.stubObject=function(){return{}},En.stubString=function(){return""},En.stubTrue=function(){return!0},En.multiply=dl,En.nth=function(e,t){return e&&e.length?Dr(e,rs(t)):void 0},En.noConflict=function(){return Ze._===this&&(Ze._=Te),this},En.noop=Ks,En.now=ma,En.pad=function(e,t,n){e=ss(e);var r=(t=rs(t))?Vt(e):0;if(!t||r>=t)return e;var i=(t-r)/2;return ji(Qt(i),n)+e+ji(Xt(i),n)},En.padEnd=function(e,t,n){e=ss(e);var r=(t=rs(t))?Vt(e):0;return t&&rt){var r=e;e=t,t=r}if(n||e%1||t%1){var i=un();return sn(e+i*(t-e+Be("1e-"+((i+"").length-1))),t)}return Nr(e,t)},En.reduce=function(e,t,n){var r=Ya(e)?mt:Ct,i=arguments.length<3;return r(e,Ji(t,4),n,i,er)},En.reduceRight=function(e,t,n){var r=Ya(e)?bt:Ct,i=arguments.length<3;return r(e,Ji(t,4),n,i,tr)},En.repeat=function(e,t,n){return t=(n?so(e,t,n):void 0===t)?1:rs(t),Rr(ss(e),t)},En.replace=function(){var e=arguments,t=ss(e[0]);return e.length<3?t:t.replace(e[1],e[2])},En.result=function(e,t,n){var r=-1,i=(t=si(t,e)).length;for(i||(i=1,e=void 0);++r9007199254740991)return[];var n=4294967295,r=sn(e,4294967295);e-=4294967295;for(var i=Tt(r,t=Ji(t));++n=o)return e;var s=n-Vt(r);if(s<1)return r;var l=a?ci(a,0,s).join(""):e.slice(0,s);if(void 0===i)return l+r;if(a&&(s+=l.length-s),Ga(i)){if(e.slice(s).search(i)){var c,u=l;for(i.global||(i=be(i.source,ss(re.exec(i))+"g")),i.lastIndex=0;c=i.exec(u);)var d=c.index;l=l.slice(0,void 0===d?s:d)}}else if(e.indexOf(Kr(i),s)!=s){var f=l.lastIndexOf(i);f>-1&&(l=l.slice(0,f))}return l+r},En.unescape=function(e){return(e=ss(e))&&H.test(e)?e.replace(N,Zt):e},En.uniqueId=function(e){var t=++Se;return ss(e)+t},En.upperCase=Hs,En.upperFirst=Is,En.each=sa,En.eachRight=la,En.first=Ao,Js(En,(ul={},lr(En,(function(e,t){Me.call(En.prototype,t)||(ul[t]=e)})),ul),{chain:!1}),En.VERSION="4.17.15",st(["bind","bindKey","curry","curryRight","partial","partialRight"],(function(e){En[e].placeholder=En})),st(["drop","take"],(function(e,t){jn.prototype[e]=function(n){n=void 0===n?1:an(rs(n),0);var r=this.__filtered__&&!t?new jn(this):this.clone();return r.__filtered__?r.__takeCount__=sn(n,r.__takeCount__):r.__views__.push({size:sn(n,4294967295),type:e+(r.__dir__<0?"Right":"")}),r},jn.prototype[e+"Right"]=function(t){return this.reverse()[e](t).reverse()}})),st(["filter","map","takeWhile"],(function(e,t){var n=t+1,r=1==n||3==n;jn.prototype[e]=function(e){var t=this.clone();return t.__iteratees__.push({iteratee:Ji(e,3),type:n}),t.__filtered__=t.__filtered__||r,t}})),st(["head","last"],(function(e,t){var n="take"+(t?"Right":"");jn.prototype[e]=function(){return this[n](1).value()[0]}})),st(["initial","tail"],(function(e,t){var n="drop"+(t?"":"Right");jn.prototype[e]=function(){return this.__filtered__?new jn(this):this[n](1)}})),jn.prototype.compact=function(){return this.filter(qs)},jn.prototype.find=function(e){return this.filter(e).head()},jn.prototype.findLast=function(e){return this.reverse().find(e)},jn.prototype.invokeMap=Hr((function(e,t){return"function"==typeof e?new jn(this):this.map((function(n){return yr(n,e,t)}))})),jn.prototype.reject=function(e){return this.filter(Ma(Ji(e)))},jn.prototype.slice=function(e,t){e=rs(e);var n=this;return n.__filtered__&&(e>0||t<0)?new jn(n):(e<0?n=n.takeRight(-e):e&&(n=n.drop(e)),void 0!==t&&(n=(t=rs(t))<0?n.dropRight(-t):n.take(t-e)),n)},jn.prototype.takeRightWhile=function(e){return this.reverse().takeWhile(e).reverse()},jn.prototype.toArray=function(){return this.take(4294967295)},lr(jn.prototype,(function(e,t){var n=/^(?:filter|find|map|reject)|While$/.test(t),r=/^(?:head|last)$/.test(t),i=En[r?"take"+("last"==t?"Right":""):t],o=r||/^find/.test(t);i&&(En.prototype[t]=function(){var t=this.__wrapped__,a=r?[1]:arguments,s=t instanceof jn,l=a[0],c=s||Ya(t),u=function(e){var t=i.apply(En,pt([e],a));return r&&d?t[0]:t};c&&n&&"function"==typeof l&&1!=l.length&&(s=c=!1);var d=this.__chain__,f=!!this.__actions__.length,h=o&&!d,p=s&&!f;if(!o&&c){t=p?t:new jn(this);var m=e.apply(t,a);return m.__actions__.push({func:na,args:[u],thisArg:void 0}),new Dn(m,d)}return h&&p?e.apply(this,a):(m=this.thru(u),h?r?m.value()[0]:m.value():m)})})),st(["pop","push","shift","sort","splice","unshift"],(function(e){var t=ve[e],n=/^(?:push|sort|unshift)$/.test(e)?"tap":"thru",r=/^(?:pop|shift)$/.test(e);En.prototype[e]=function(){var e=arguments;if(r&&!this.__chain__){var i=this.value();return t.apply(Ya(i)?i:[],e)}return this[n]((function(n){return t.apply(Ya(n)?n:[],e)}))}})),lr(jn.prototype,(function(e,t){var n=En[t];if(n){var r=n.name+"";Me.call(vn,r)||(vn[r]=[]),vn[r].push({name:t,func:n})}})),vn[Ei(void 0,2).name]=[{name:"wrapper",func:void 0}],jn.prototype.clone=function(){var e=new jn(this.__wrapped__);return e.__actions__=gi(this.__actions__),e.__dir__=this.__dir__,e.__filtered__=this.__filtered__,e.__iteratees__=gi(this.__iteratees__),e.__takeCount__=this.__takeCount__,e.__views__=gi(this.__views__),e},jn.prototype.reverse=function(){if(this.__filtered__){var e=new jn(this);e.__dir__=-1,e.__filtered__=!0}else(e=this.clone()).__dir__*=-1;return e},jn.prototype.value=function(){var e=this.__wrapped__.value(),t=this.__dir__,n=Ya(e),r=t<0,i=n?e.length:0,o=function(e,t,n){var r=-1,i=n.length;for(;++r=this.__values__.length;return{done:e,value:e?void 0:this.__values__[this.__index__++]}},En.prototype.plant=function(e){for(var t,n=this;n instanceof On;){var r=Eo(n);r.__index__=0,r.__values__=void 0,t?i.__wrapped__=r:t=r;var i=r;n=n.__wrapped__}return i.__wrapped__=e,t},En.prototype.reverse=function(){var e=this.__wrapped__;if(e instanceof jn){var t=e;return this.__actions__.length&&(t=new jn(this)),(t=t.reverse()).__actions__.push({func:na,args:[Bo],thisArg:void 0}),new Dn(t,this.__chain__)}return this.thru(Bo)},En.prototype.toJSON=En.prototype.valueOf=En.prototype.value=function(){return ni(this.__wrapped__,this.__actions__)},En.prototype.first=En.prototype.head,Xe&&(En.prototype[Xe]=function(){return this}),En}();Ze._=Gt,void 0===(i=function(){return Gt}.call(t,n,t,r))||(r.exports=i)}).call(this)}).call(this,n(19),n(31)(e))},function(e,t,n){"use strict";var r=n(33),i="object"==typeof self&&self&&self.Object===Object&&self,o=r.a||i||Function("return this")();t.a=o},function(e,t,n){const r=n(377),i=n(217);e.exports=Object.assign(r,i)},function(e,t,n){"use strict"; -/* -object-assign -(c) Sindre Sorhus -@license MIT -*/var r=Object.getOwnPropertySymbols,i=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function a(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,s,l=a(e),c=1;c=15&&(d=!1,l=!0);var w=y&&(c||d&&(null==k||k<12.11)),x=n||a&&s>=9;function M(e){return new RegExp("(^|\\s)"+e+"(?:$|\\s)\\s*")}var S,L=function(e,t){var n=e.className,r=M(t).exec(n);if(r){var i=n.slice(r.index+r[0].length);e.className=n.slice(0,r.index)+(i?r[1]+i:"")}};function C(e){for(var t=e.childNodes.length;t>0;--t)e.removeChild(e.firstChild);return e}function E(e,t){return C(e).appendChild(t)}function T(e,t,n,r){var i=document.createElement(e);if(n&&(i.className=n),r&&(i.style.cssText=r),"string"==typeof t)i.appendChild(document.createTextNode(t));else if(t)for(var o=0;o=t)return a+(t-o);a+=s-o,a+=n-a%n,o=s+1}}m?A=function(e){e.selectionStart=0,e.selectionEnd=e.value.length}:a&&(A=function(e){try{e.select()}catch(e){}});var I=function(){this.id=null,this.f=null,this.time=0,this.handler=N(this.onTimeout,this)};function F(e,t){for(var n=0;n=t)return r+Math.min(a,t-i);if(i+=o-r,r=o+1,(i+=n-i%n)>=t)return r}}var q=[""];function Z(e){for(;q.length<=e;)q.push(G(q)+" ");return q[e]}function G(e){return e[e.length-1]}function $(e,t){for(var n=[],r=0;r"€"&&(e.toUpperCase()!=e.toLowerCase()||X.test(e))}function ee(e,t){return t?!!(t.source.indexOf("\\w")>-1&&Q(e))||t.test(e):Q(e)}function te(e){for(var t in e)if(e.hasOwnProperty(t)&&e[t])return!1;return!0}var ne=/[\u0300-\u036f\u0483-\u0489\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u065e\u0670\u06d6-\u06dc\u06de-\u06e4\u06e7\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0900-\u0902\u093c\u0941-\u0948\u094d\u0951-\u0955\u0962\u0963\u0981\u09bc\u09be\u09c1-\u09c4\u09cd\u09d7\u09e2\u09e3\u0a01\u0a02\u0a3c\u0a41\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a70\u0a71\u0a75\u0a81\u0a82\u0abc\u0ac1-\u0ac5\u0ac7\u0ac8\u0acd\u0ae2\u0ae3\u0b01\u0b3c\u0b3e\u0b3f\u0b41-\u0b44\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b82\u0bbe\u0bc0\u0bcd\u0bd7\u0c3e-\u0c40\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0cbc\u0cbf\u0cc2\u0cc6\u0ccc\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0d3e\u0d41-\u0d44\u0d4d\u0d57\u0d62\u0d63\u0dca\u0dcf\u0dd2-\u0dd4\u0dd6\u0ddf\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0f18\u0f19\u0f35\u0f37\u0f39\u0f71-\u0f7e\u0f80-\u0f84\u0f86\u0f87\u0f90-\u0f97\u0f99-\u0fbc\u0fc6\u102d-\u1030\u1032-\u1037\u1039\u103a\u103d\u103e\u1058\u1059\u105e-\u1060\u1071-\u1074\u1082\u1085\u1086\u108d\u109d\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b7-\u17bd\u17c6\u17c9-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193b\u1a17\u1a18\u1a56\u1a58-\u1a5e\u1a60\u1a62\u1a65-\u1a6c\u1a73-\u1a7c\u1a7f\u1b00-\u1b03\u1b34\u1b36-\u1b3a\u1b3c\u1b42\u1b6b-\u1b73\u1b80\u1b81\u1ba2-\u1ba5\u1ba8\u1ba9\u1c2c-\u1c33\u1c36\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce0\u1ce2-\u1ce8\u1ced\u1dc0-\u1de6\u1dfd-\u1dff\u200c\u200d\u20d0-\u20f0\u2cef-\u2cf1\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua66f-\ua672\ua67c\ua67d\ua6f0\ua6f1\ua802\ua806\ua80b\ua825\ua826\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua951\ua980-\ua982\ua9b3\ua9b6-\ua9b9\ua9bc\uaa29-\uaa2e\uaa31\uaa32\uaa35\uaa36\uaa43\uaa4c\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uabe5\uabe8\uabed\udc00-\udfff\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\uff9e\uff9f]/;function re(e){return e.charCodeAt(0)>=768&&ne.test(e)}function ie(e,t,n){for(;(n<0?t>0:tn?-1:1;;){if(t==n)return t;var i=(t+n)/2,o=r<0?Math.ceil(i):Math.floor(i);if(o==t)return e(o)?t:n;e(o)?n=o:t=o+r}}var ae=null;function se(e,t,n){var r;ae=null;for(var i=0;it)return i;o.to==t&&(o.from!=o.to&&"before"==n?r=i:ae=i),o.from==t&&(o.from!=o.to&&"before"!=n?r=i:ae=i)}return null!=r?r:ae}var le=function(){var e=/[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/,t=/[stwN]/,n=/[LRr]/,r=/[Lb1n]/,i=/[1n]/;function o(e,t,n){this.level=e,this.from=t,this.to=n}return function(a,s){var l="ltr"==s?"L":"R";if(0==a.length||"ltr"==s&&!e.test(a))return!1;for(var c,u=a.length,d=[],f=0;f-1&&(r[t]=i.slice(0,o).concat(i.slice(o+1)))}}}function pe(e,t){var n=fe(e,t);if(n.length)for(var r=Array.prototype.slice.call(arguments,2),i=0;i0}function ye(e){e.prototype.on=function(e,t){de(this,e,t)},e.prototype.off=function(e,t){he(this,e,t)}}function ve(e){e.preventDefault?e.preventDefault():e.returnValue=!1}function _e(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}function ke(e){return null!=e.defaultPrevented?e.defaultPrevented:0==e.returnValue}function we(e){ve(e),_e(e)}function xe(e){return e.target||e.srcElement}function Me(e){var t=e.which;return null==t&&(1&e.button?t=1:2&e.button?t=3:4&e.button&&(t=2)),y&&e.ctrlKey&&1==t&&(t=3),t}var Se,Le,Ce=function(){if(a&&s<9)return!1;var e=T("div");return"draggable"in e||"dragDrop"in e}();function Ee(e){if(null==Se){var t=T("span","​");E(e,T("span",[t,document.createTextNode("x")])),0!=e.firstChild.offsetHeight&&(Se=t.offsetWidth<=1&&t.offsetHeight>2&&!(a&&s<8))}var n=Se?T("span","​"):T("span"," ",null,"display: inline-block; width: 1px; margin-right: -1px");return n.setAttribute("cm-text",""),n}function Te(e){if(null!=Le)return Le;var t=E(e,document.createTextNode("AخA")),n=S(t,0,1).getBoundingClientRect(),r=S(t,1,2).getBoundingClientRect();return C(e),!(!n||n.left==n.right)&&(Le=r.right-n.right<3)}var Oe,De=3!="\n\nb".split(/\n/).length?function(e){for(var t=0,n=[],r=e.length;t<=r;){var i=e.indexOf("\n",t);-1==i&&(i=e.length);var o=e.slice(t,"\r"==e.charAt(i-1)?i-1:i),a=o.indexOf("\r");-1!=a?(n.push(o.slice(0,a)),t+=a+1):(n.push(o),t=i+1)}return n}:function(e){return e.split(/\r\n?|\n/)},je=window.getSelection?function(e){try{return e.selectionStart!=e.selectionEnd}catch(e){return!1}}:function(e){var t;try{t=e.ownerDocument.selection.createRange()}catch(e){}return!(!t||t.parentElement()!=e)&&0!=t.compareEndPoints("StartToEnd",t)},Ye="oncopy"in(Oe=T("div"))||(Oe.setAttribute("oncopy","return;"),"function"==typeof Oe.oncopy),Pe=null,Ae={},Ne={};function Re(e,t){arguments.length>2&&(t.dependencies=Array.prototype.slice.call(arguments,2)),Ae[e]=t}function He(e){if("string"==typeof e&&Ne.hasOwnProperty(e))e=Ne[e];else if(e&&"string"==typeof e.name&&Ne.hasOwnProperty(e.name)){var t=Ne[e.name];"string"==typeof t&&(t={name:t}),(e=K(t,e)).name=t.name}else{if("string"==typeof e&&/^[\w\-]+\/[\w\-]+\+xml$/.test(e))return He("application/xml");if("string"==typeof e&&/^[\w\-]+\/[\w\-]+\+json$/.test(e))return He("application/json")}return"string"==typeof e?{name:e}:e||{name:"null"}}function Ie(e,t){t=He(t);var n=Ae[t.name];if(!n)return Ie(e,"text/plain");var r=n(e,t);if(Fe.hasOwnProperty(t.name)){var i=Fe[t.name];for(var o in i)i.hasOwnProperty(o)&&(r.hasOwnProperty(o)&&(r["_"+o]=r[o]),r[o]=i[o])}if(r.name=t.name,t.helperType&&(r.helperType=t.helperType),t.modeProps)for(var a in t.modeProps)r[a]=t.modeProps[a];return r}var Fe={};function ze(e,t){R(t,Fe.hasOwnProperty(e)?Fe[e]:Fe[e]={})}function We(e,t){if(!0===t)return t;if(e.copyState)return e.copyState(t);var n={};for(var r in t){var i=t[r];i instanceof Array&&(i=i.concat([])),n[r]=i}return n}function Be(e,t){for(var n;e.innerMode&&(n=e.innerMode(t))&&n.mode!=e;)t=n.state,e=n.mode;return n||{mode:e,state:t}}function Ue(e,t,n){return!e.startState||e.startState(t,n)}var Ve=function(e,t,n){this.pos=this.start=0,this.string=e,this.tabSize=t||8,this.lastColumnPos=this.lastColumnValue=0,this.lineStart=0,this.lineOracle=n};function qe(e,t){if((t-=e.first)<0||t>=e.size)throw new Error("There is no line "+(t+e.first)+" in the document.");for(var n=e;!n.lines;)for(var r=0;;++r){var i=n.children[r],o=i.chunkSize();if(t=e.first&&tn?et(n,qe(e,n).text.length):function(e,t){var n=e.ch;return null==n||n>t?et(e.line,t):n<0?et(e.line,0):e}(t,qe(e,t.line).text.length)}function lt(e,t){for(var n=[],r=0;r=this.string.length},Ve.prototype.sol=function(){return this.pos==this.lineStart},Ve.prototype.peek=function(){return this.string.charAt(this.pos)||void 0},Ve.prototype.next=function(){if(this.post},Ve.prototype.eatSpace=function(){for(var e=this.pos;/[\s\u00a0]/.test(this.string.charAt(this.pos));)++this.pos;return this.pos>e},Ve.prototype.skipToEnd=function(){this.pos=this.string.length},Ve.prototype.skipTo=function(e){var t=this.string.indexOf(e,this.pos);if(t>-1)return this.pos=t,!0},Ve.prototype.backUp=function(e){this.pos-=e},Ve.prototype.column=function(){return this.lastColumnPos0?null:(r&&!1!==t&&(this.pos+=r[0].length),r)}var i=function(e){return n?e.toLowerCase():e};if(i(this.string.substr(this.pos,e.length))==i(e))return!1!==t&&(this.pos+=e.length),!0},Ve.prototype.current=function(){return this.string.slice(this.start,this.pos)},Ve.prototype.hideFirstChars=function(e,t){this.lineStart+=e;try{return t()}finally{this.lineStart-=e}},Ve.prototype.lookAhead=function(e){var t=this.lineOracle;return t&&t.lookAhead(e)},Ve.prototype.baseToken=function(){var e=this.lineOracle;return e&&e.baseToken(this.pos)};var ct=function(e,t){this.state=e,this.lookAhead=t},ut=function(e,t,n,r){this.state=t,this.doc=e,this.line=n,this.maxLookAhead=r||0,this.baseTokens=null,this.baseTokenPos=1};function dt(e,t,n,r){var i=[e.state.modeGen],o={};_t(e,t.text,e.doc.mode,n,(function(e,t){return i.push(e,t)}),o,r);for(var a=n.state,s=function(r){n.baseTokens=i;var s=e.state.overlays[r],l=1,c=0;n.state=!0,_t(e,t.text,s.mode,n,(function(e,t){for(var n=l;ce&&i.splice(l,1,e,i[l+1],r),l+=2,c=Math.min(e,r)}if(t)if(s.opaque)i.splice(n,l-n,e,"overlay "+t),l=n+2;else for(;ne.options.maxHighlightLength&&We(e.doc.mode,r.state),o=dt(e,t,r);i&&(r.state=i),t.stateAfter=r.save(!i),t.styles=o.styles,o.classes?t.styleClasses=o.classes:t.styleClasses&&(t.styleClasses=null),n===e.doc.highlightFrontier&&(e.doc.modeFrontier=Math.max(e.doc.modeFrontier,++e.doc.highlightFrontier))}return t.styles}function ht(e,t,n){var r=e.doc,i=e.display;if(!r.mode.startState)return new ut(r,!0,t);var o=function(e,t,n){for(var r,i,o=e.doc,a=n?-1:t-(e.doc.mode.innerMode?1e3:100),s=t;s>a;--s){if(s<=o.first)return o.first;var l=qe(o,s-1),c=l.stateAfter;if(c&&(!n||s+(c instanceof ct?c.lookAhead:0)<=o.modeFrontier))return s;var u=H(l.text,null,e.options.tabSize);(null==i||r>u)&&(i=s-1,r=u)}return i}(e,t,n),a=o>r.first&&qe(r,o-1).stateAfter,s=a?ut.fromSaved(r,a,o):new ut(r,Ue(r.mode),o);return r.iter(o,t,(function(n){pt(e,n.text,s);var r=s.line;n.stateAfter=r==t-1||r%5==0||r>=i.viewFrom&&rt.start)return o}throw new Error("Mode "+e.name+" failed to advance stream.")}ut.prototype.lookAhead=function(e){var t=this.doc.getLine(this.line+e);return null!=t&&e>this.maxLookAhead&&(this.maxLookAhead=e),t},ut.prototype.baseToken=function(e){if(!this.baseTokens)return null;for(;this.baseTokens[this.baseTokenPos]<=e;)this.baseTokenPos+=2;var t=this.baseTokens[this.baseTokenPos+1];return{type:t&&t.replace(/( |^)overlay .*/,""),size:this.baseTokens[this.baseTokenPos]-e}},ut.prototype.nextLine=function(){this.line++,this.maxLookAhead>0&&this.maxLookAhead--},ut.fromSaved=function(e,t,n){return t instanceof ct?new ut(e,We(e.mode,t.state),n,t.lookAhead):new ut(e,We(e.mode,t),n)},ut.prototype.save=function(e){var t=!1!==e?We(this.doc.mode,this.state):this.state;return this.maxLookAhead>0?new ct(t,this.maxLookAhead):t};var gt=function(e,t,n){this.start=e.start,this.end=e.pos,this.string=e.current(),this.type=t||null,this.state=n};function yt(e,t,n,r){var i,o,a=e.doc,s=a.mode,l=qe(a,(t=st(a,t)).line),c=ht(e,t.line,n),u=new Ve(l.text,e.options.tabSize,c);for(r&&(o=[]);(r||u.pose.options.maxHighlightLength?(s=!1,a&&pt(e,t,r,d.pos),d.pos=t.length,l=null):l=vt(bt(n,d,r.state,f),o),f){var h=f[0].name;h&&(l="m-"+(l?h+" "+l:h))}if(!s||u!=l){for(;c=t:o.to>t);(r||(r=[])).push(new xt(a,o.from,s?null:o.to))}}return r}(n,i,a),l=function(e,t,n){var r;if(e)for(var i=0;i=t:o.to>t)||o.from==t&&"bookmark"==a.type&&(!n||o.marker.insertLeft)){var s=null==o.from||(a.inclusiveLeft?o.from<=t:o.from0&&s)for(var v=0;vt)&&(!n||jt(n,o.marker)<0)&&(n=o.marker)}return n}function Rt(e,t,n,r,i){var o=qe(e,t),a=wt&&o.markedSpans;if(a)for(var s=0;s=0&&d<=0||u<=0&&d>=0)&&(u<=0&&(l.marker.inclusiveRight&&i.inclusiveLeft?tt(c.to,n)>=0:tt(c.to,n)>0)||u>=0&&(l.marker.inclusiveRight&&i.inclusiveLeft?tt(c.from,r)<=0:tt(c.from,r)<0)))return!0}}}function Ht(e){for(var t;t=Pt(e);)e=t.find(-1,!0).line;return e}function It(e,t){var n=qe(e,t),r=Ht(n);return n==r?t:Je(r)}function Ft(e,t){if(t>e.lastLine())return t;var n,r=qe(e,t);if(!zt(e,r))return t;for(;n=At(r);)r=n.find(1,!0).line;return Je(r)+1}function zt(e,t){var n=wt&&t.markedSpans;if(n)for(var r=void 0,i=0;it.maxLineLength&&(t.maxLineLength=n,t.maxLine=e)}))}var qt=function(e,t,n){this.text=e,Tt(this,t),this.height=n?n(this):1};function Zt(e){e.parent=null,Et(e)}qt.prototype.lineNo=function(){return Je(this)},ye(qt);var Gt={},$t={};function Jt(e,t){if(!e||/^\s*$/.test(e))return null;var n=t.addModeClass?$t:Gt;return n[e]||(n[e]=e.replace(/\S+/g,"cm-$&"))}function Kt(e,t){var n=O("span",null,null,l?"padding-right: .1px":null),r={pre:O("pre",[n],"CodeMirror-line"),content:n,col:0,pos:0,cm:e,trailingSpace:!1,splitSpaces:e.getOption("lineWrapping")};t.measure={};for(var i=0;i<=(t.rest?t.rest.length:0);i++){var o=i?t.rest[i-1]:t.line,a=void 0;r.pos=0,r.addToken=Qt,Te(e.display.measure)&&(a=ce(o,e.doc.direction))&&(r.addToken=en(r.addToken,a)),r.map=[],nn(o,r,ft(e,o,t!=e.display.externalMeasured&&Je(o))),o.styleClasses&&(o.styleClasses.bgClass&&(r.bgClass=P(o.styleClasses.bgClass,r.bgClass||"")),o.styleClasses.textClass&&(r.textClass=P(o.styleClasses.textClass,r.textClass||""))),0==r.map.length&&r.map.push(0,0,r.content.appendChild(Ee(e.display.measure))),0==i?(t.measure.map=r.map,t.measure.cache={}):((t.measure.maps||(t.measure.maps=[])).push(r.map),(t.measure.caches||(t.measure.caches=[])).push({}))}if(l){var s=r.content.lastChild;(/\bcm-tab\b/.test(s.className)||s.querySelector&&s.querySelector(".cm-tab"))&&(r.content.className="cm-tab-wrap-hack")}return pe(e,"renderLine",e,t.line,r.pre),r.pre.className&&(r.textClass=P(r.pre.className,r.textClass||"")),r}function Xt(e){var t=T("span","•","cm-invalidchar");return t.title="\\u"+e.charCodeAt(0).toString(16),t.setAttribute("aria-label",t.title),t}function Qt(e,t,n,r,i,o,l){if(t){var c,u=e.splitSpaces?function(e,t){if(e.length>1&&!/ /.test(e))return e;for(var n=t,r="",i=0;ic&&d.from<=c);f++);if(d.to>=u)return e(n,r,i,o,a,s,l);e(n,r.slice(0,d.to-c),i,o,null,s,l),o=null,r=r.slice(d.to-c),c=d.to}}}function tn(e,t,n,r){var i=!r&&n.widgetNode;i&&e.map.push(e.pos,e.pos+t,i),!r&&e.cm.display.input.needsContentAttribute&&(i||(i=e.content.appendChild(document.createElement("span"))),i.setAttribute("cm-marker",n.id)),i&&(e.cm.display.input.setUneditable(i),e.content.appendChild(i)),e.pos+=t,e.trailingSpace=!1}function nn(e,t,n){var r=e.markedSpans,i=e.text,o=0;if(r)for(var a,s,l,c,u,d,f,h=i.length,p=0,m=1,b="",g=0;;){if(g==p){l=c=u=s="",f=null,d=null,g=1/0;for(var y=[],v=void 0,_=0;_p||w.collapsed&&k.to==p&&k.from==p)){if(null!=k.to&&k.to!=p&&g>k.to&&(g=k.to,c=""),w.className&&(l+=" "+w.className),w.css&&(s=(s?s+";":"")+w.css),w.startStyle&&k.from==p&&(u+=" "+w.startStyle),w.endStyle&&k.to==g&&(v||(v=[])).push(w.endStyle,k.to),w.title&&((f||(f={})).title=w.title),w.attributes)for(var x in w.attributes)(f||(f={}))[x]=w.attributes[x];w.collapsed&&(!d||jt(d.marker,w)<0)&&(d=k)}else k.from>p&&g>k.from&&(g=k.from)}if(v)for(var M=0;M=h)break;for(var L=Math.min(h,g);;){if(b){var C=p+b.length;if(!d){var E=C>L?b.slice(0,L-p):b;t.addToken(t,E,a?a+l:l,u,p+E.length==g?c:"",s,f)}if(C>=L){b=b.slice(L-p),p=L;break}p=C,u=""}b=i.slice(o,o=n[m++]),a=Jt(n[m++],t.cm.options)}}else for(var T=1;Tn)return{map:e.measure.maps[i],cache:e.measure.caches[i],before:!0}}function On(e,t,n,r){return Yn(e,jn(e,t),n,r)}function Dn(e,t){if(t>=e.display.viewFrom&&t=n.lineN&&t2&&o.push((l.bottom+c.top)/2-n.top)}}o.push(n.bottom-n.top)}}(e,t.view,t.rect),t.hasHeights=!0),(o=function(e,t,n,r){var i,o=Nn(t.map,n,r),l=o.node,c=o.start,u=o.end,d=o.collapse;if(3==l.nodeType){for(var f=0;f<4;f++){for(;c&&re(t.line.text.charAt(o.coverStart+c));)--c;for(;o.coverStart+u1}(e))return t;var n=screen.logicalXDPI/screen.deviceXDPI,r=screen.logicalYDPI/screen.deviceYDPI;return{left:t.left*n,right:t.right*n,top:t.top*r,bottom:t.bottom*r}}(e.display.measure,i))}else{var h;c>0&&(d=r="right"),i=e.options.lineWrapping&&(h=l.getClientRects()).length>1?h["right"==r?h.length-1:0]:l.getBoundingClientRect()}if(a&&s<9&&!c&&(!i||!i.left&&!i.right)){var p=l.parentNode.getClientRects()[0];i=p?{left:p.left,right:p.left+ir(e.display),top:p.top,bottom:p.bottom}:An}for(var m=i.top-t.rect.top,b=i.bottom-t.rect.top,g=(m+b)/2,y=t.view.measure.heights,v=0;vt)&&(i=(o=l-s)-1,t>=l&&(a="right")),null!=i){if(r=e[c+2],s==l&&n==(r.insertLeft?"left":"right")&&(a=n),"left"==n&&0==i)for(;c&&e[c-2]==e[c-3]&&e[c-1].insertLeft;)r=e[2+(c-=3)],a="left";if("right"==n&&i==l-s)for(;c=0&&(n=e[i]).left==n.right;i--);return n}function Hn(e){if(e.measure&&(e.measure.cache={},e.measure.heights=null,e.rest))for(var t=0;t=r.text.length?(l=r.text.length,c="before"):l<=0&&(l=0,c="after"),!s)return a("before"==c?l-1:l,"before"==c);function u(e,t,n){return a(n?e-1:e,1==s[t].level!=n)}var d=se(s,l,c),f=ae,h=u(l,d,"before"==c);return null!=f&&(h.other=u(l,f,"before"!=c)),h}function Gn(e,t){var n=0;t=st(e.doc,t),e.options.lineWrapping||(n=ir(e.display)*t.ch);var r=qe(e.doc,t.line),i=Bt(r)+xn(e.display);return{left:n,right:n,top:i,bottom:i+r.height}}function $n(e,t,n,r,i){var o=et(e,t,n);return o.xRel=i,r&&(o.outside=r),o}function Jn(e,t,n){var r=e.doc;if((n+=e.display.viewOffset)<0)return $n(r.first,0,null,-1,-1);var i=Ke(r,n),o=r.first+r.size-1;if(i>o)return $n(r.first+r.size-1,qe(r,o).text.length,null,1,1);t<0&&(t=0);for(var a=qe(r,i);;){var s=er(e,a,i,t,n),l=Nt(a,s.ch+(s.xRel>0||s.outside>0?1:0));if(!l)return s;var c=l.find(1);if(c.line==i)return c;a=qe(r,i=c.line)}}function Kn(e,t,n,r){r-=Bn(t);var i=t.text.length,o=oe((function(t){return Yn(e,n,t-1).bottom<=r}),i,0);return{begin:o,end:i=oe((function(t){return Yn(e,n,t).top>r}),o,i)}}function Xn(e,t,n,r){return n||(n=jn(e,t)),Kn(e,t,n,Un(e,t,Yn(e,n,r),"line").top)}function Qn(e,t,n,r){return!(e.bottom<=n)&&(e.top>n||(r?e.left:e.right)>t)}function er(e,t,n,r,i){i-=Bt(t);var o=jn(e,t),a=Bn(t),s=0,l=t.text.length,c=!0,u=ce(t,e.doc.direction);if(u){var d=(e.options.lineWrapping?nr:tr)(e,t,n,o,u,r,i);s=(c=1!=d.level)?d.from:d.to-1,l=c?d.to:d.from-1}var f,h,p=null,m=null,b=oe((function(t){var n=Yn(e,o,t);return n.top+=a,n.bottom+=a,!!Qn(n,r,i,!1)&&(n.top<=i&&n.left<=r&&(p=t,m=n),!0)}),s,l),g=!1;if(m){var y=r-m.left=_.bottom?1:0}return $n(n,b=ie(t.text,b,1),h,g,r-f)}function tr(e,t,n,r,i,o,a){var s=oe((function(s){var l=i[s],c=1!=l.level;return Qn(Zn(e,et(n,c?l.to:l.from,c?"before":"after"),"line",t,r),o,a,!0)}),0,i.length-1),l=i[s];if(s>0){var c=1!=l.level,u=Zn(e,et(n,c?l.from:l.to,c?"after":"before"),"line",t,r);Qn(u,o,a,!0)&&u.top>a&&(l=i[s-1])}return l}function nr(e,t,n,r,i,o,a){var s=Kn(e,t,r,a),l=s.begin,c=s.end;/\s/.test(t.text.charAt(c-1))&&c--;for(var u=null,d=null,f=0;f=c||h.to<=l)){var p=Yn(e,r,1!=h.level?Math.min(c,h.to)-1:Math.max(l,h.from)).right,m=pm)&&(u=h,d=m)}}return u||(u=i[i.length-1]),u.fromc&&(u={from:u.from,to:c,level:u.level}),u}function rr(e){if(null!=e.cachedTextHeight)return e.cachedTextHeight;if(null==Pn){Pn=T("pre",null,"CodeMirror-line-like");for(var t=0;t<49;++t)Pn.appendChild(document.createTextNode("x")),Pn.appendChild(T("br"));Pn.appendChild(document.createTextNode("x"))}E(e.measure,Pn);var n=Pn.offsetHeight/50;return n>3&&(e.cachedTextHeight=n),C(e.measure),n||1}function ir(e){if(null!=e.cachedCharWidth)return e.cachedCharWidth;var t=T("span","xxxxxxxxxx"),n=T("pre",[t],"CodeMirror-line-like");E(e.measure,n);var r=t.getBoundingClientRect(),i=(r.right-r.left)/10;return i>2&&(e.cachedCharWidth=i),i||10}function or(e){for(var t=e.display,n={},r={},i=t.gutters.clientLeft,o=t.gutters.firstChild,a=0;o;o=o.nextSibling,++a){var s=e.display.gutterSpecs[a].className;n[s]=o.offsetLeft+o.clientLeft+i,r[s]=o.clientWidth}return{fixedPos:ar(t),gutterTotalWidth:t.gutters.offsetWidth,gutterLeft:n,gutterWidth:r,wrapperWidth:t.wrapper.clientWidth}}function ar(e){return e.scroller.getBoundingClientRect().left-e.sizer.getBoundingClientRect().left}function sr(e){var t=rr(e.display),n=e.options.lineWrapping,r=n&&Math.max(5,e.display.scroller.clientWidth/ir(e.display)-3);return function(i){if(zt(e.doc,i))return 0;var o=0;if(i.widgets)for(var a=0;a0&&(l=qe(e.doc,c.line).text).length==c.ch){var u=H(l,l.length,e.options.tabSize)-l.length;c=et(c.line,Math.max(0,Math.round((o-Sn(e.display).left)/ir(e.display))-u))}return c}function ur(e,t){if(t>=e.display.viewTo)return null;if((t-=e.display.viewFrom)<0)return null;for(var n=e.display.view,r=0;rt)&&(i.updateLineNumbers=t),e.curOp.viewChanged=!0,t>=i.viewTo)wt&&It(e.doc,t)i.viewFrom?hr(e):(i.viewFrom+=r,i.viewTo+=r);else if(t<=i.viewFrom&&n>=i.viewTo)hr(e);else if(t<=i.viewFrom){var o=pr(e,n,n+r,1);o?(i.view=i.view.slice(o.index),i.viewFrom=o.lineN,i.viewTo+=r):hr(e)}else if(n>=i.viewTo){var a=pr(e,t,t,-1);a?(i.view=i.view.slice(0,a.index),i.viewTo=a.lineN):hr(e)}else{var s=pr(e,t,t,-1),l=pr(e,n,n+r,1);s&&l?(i.view=i.view.slice(0,s.index).concat(on(e,s.lineN,l.lineN)).concat(i.view.slice(l.index)),i.viewTo+=r):hr(e)}var c=i.externalMeasured;c&&(n=i.lineN&&t=r.viewTo)){var o=r.view[ur(e,t)];if(null!=o.node){var a=o.changes||(o.changes=[]);-1==F(a,n)&&a.push(n)}}}function hr(e){e.display.viewFrom=e.display.viewTo=e.doc.first,e.display.view=[],e.display.viewOffset=0}function pr(e,t,n,r){var i,o=ur(e,t),a=e.display.view;if(!wt||n==e.doc.first+e.doc.size)return{index:o,lineN:n};for(var s=e.display.viewFrom,l=0;l0){if(o==a.length-1)return null;i=s+a[o].size-t,o++}else i=s-t;t+=i,n+=i}for(;It(e.doc,n)!=n;){if(o==(r<0?0:a.length-1))return null;n+=r*a[o-(r<0?1:0)].size,o+=r}return{index:o,lineN:n}}function mr(e){for(var t=e.display.view,n=0,r=0;r=e.display.viewTo||s.to().linet||t==n&&a.to==t)&&(r(Math.max(a.from,t),Math.min(a.to,n),1==a.level?"rtl":"ltr",o),i=!0)}i||r(t,n,"ltr")}(m,n||0,null==r?f:r,(function(e,t,i,d){var b="ltr"==i,g=h(e,b?"left":"right"),y=h(t-1,b?"right":"left"),v=null==n&&0==e,_=null==r&&t==f,k=0==d,w=!m||d==m.length-1;if(y.top-g.top<=3){var x=(c?_:v)&&w,M=(c?v:_)&&k?s:(b?g:y).left,S=x?l:(b?y:g).right;u(M,g.top,S-M,g.bottom)}else{var L,C,E,T;b?(L=c&&v&&k?s:g.left,C=c?l:p(e,i,"before"),E=c?s:p(t,i,"after"),T=c&&_&&w?l:y.right):(L=c?p(e,i,"before"):s,C=!c&&v&&k?l:g.right,E=!c&&_&&w?s:y.left,T=c?p(t,i,"after"):l),u(L,g.top,C-L,g.bottom),g.bottom0?t.blinker=setInterval((function(){return t.cursorDiv.style.visibility=(n=!n)?"":"hidden"}),e.options.cursorBlinkRate):e.options.cursorBlinkRate<0&&(t.cursorDiv.style.visibility="hidden")}}function wr(e){e.state.focused||(e.display.input.focus(),Mr(e))}function xr(e){e.state.delayingBlurEvent=!0,setTimeout((function(){e.state.delayingBlurEvent&&(e.state.delayingBlurEvent=!1,Sr(e))}),100)}function Mr(e,t){e.state.delayingBlurEvent&&(e.state.delayingBlurEvent=!1),"nocursor"!=e.options.readOnly&&(e.state.focused||(pe(e,"focus",e,t),e.state.focused=!0,Y(e.display.wrapper,"CodeMirror-focused"),e.curOp||e.display.selForContextMenu==e.doc.sel||(e.display.input.reset(),l&&setTimeout((function(){return e.display.input.reset(!0)}),20)),e.display.input.receivedFocus()),kr(e))}function Sr(e,t){e.state.delayingBlurEvent||(e.state.focused&&(pe(e,"blur",e,t),e.state.focused=!1,L(e.display.wrapper,"CodeMirror-focused")),clearInterval(e.display.blinker),setTimeout((function(){e.state.focused||(e.display.shift=!1)}),150))}function Lr(e){for(var t=e.display,n=t.lineDiv.offsetTop,r=0;r.005||f<-.005)&&($e(i.line,l),Cr(i.line),i.rest))for(var h=0;he.display.sizerWidth){var p=Math.ceil(c/ir(e.display));p>e.display.maxLineLength&&(e.display.maxLineLength=p,e.display.maxLine=i.line,e.display.maxLineChanged=!0)}}}}function Cr(e){if(e.widgets)for(var t=0;t=a&&(o=Ke(t,Bt(qe(t,l))-e.wrapper.clientHeight),a=l)}return{from:o,to:Math.max(a,o+1)}}function Tr(e,t){var n=e.display,r=rr(e.display);t.top<0&&(t.top=0);var i=e.curOp&&null!=e.curOp.scrollTop?e.curOp.scrollTop:n.scroller.scrollTop,o=En(e),a={};t.bottom-t.top>o&&(t.bottom=t.top+o);var s=e.doc.height+Mn(n),l=t.tops-r;if(t.topi+o){var u=Math.min(t.top,(c?s:t.bottom)-o);u!=i&&(a.scrollTop=u)}var d=e.curOp&&null!=e.curOp.scrollLeft?e.curOp.scrollLeft:n.scroller.scrollLeft,f=Cn(e)-(e.options.fixedGutter?n.gutters.offsetWidth:0),h=t.right-t.left>f;return h&&(t.right=t.left+f),t.left<10?a.scrollLeft=0:t.leftf+d-3&&(a.scrollLeft=t.right+(h?0:10)-f),a}function Or(e,t){null!=t&&(Yr(e),e.curOp.scrollTop=(null==e.curOp.scrollTop?e.doc.scrollTop:e.curOp.scrollTop)+t)}function Dr(e){Yr(e);var t=e.getCursor();e.curOp.scrollToPos={from:t,to:t,margin:e.options.cursorScrollMargin}}function jr(e,t,n){null==t&&null==n||Yr(e),null!=t&&(e.curOp.scrollLeft=t),null!=n&&(e.curOp.scrollTop=n)}function Yr(e){var t=e.curOp.scrollToPos;t&&(e.curOp.scrollToPos=null,Pr(e,Gn(e,t.from),Gn(e,t.to),t.margin))}function Pr(e,t,n,r){var i=Tr(e,{left:Math.min(t.left,n.left),top:Math.min(t.top,n.top)-r,right:Math.max(t.right,n.right),bottom:Math.max(t.bottom,n.bottom)+r});jr(e,i.scrollLeft,i.scrollTop)}function Ar(e,t){Math.abs(e.doc.scrollTop-t)<2||(n||li(e,{top:t}),Nr(e,t,!0),n&&li(e),ri(e,100))}function Nr(e,t,n){t=Math.max(0,Math.min(e.display.scroller.scrollHeight-e.display.scroller.clientHeight,t)),(e.display.scroller.scrollTop!=t||n)&&(e.doc.scrollTop=t,e.display.scrollbars.setScrollTop(t),e.display.scroller.scrollTop!=t&&(e.display.scroller.scrollTop=t))}function Rr(e,t,n,r){t=Math.max(0,Math.min(t,e.display.scroller.scrollWidth-e.display.scroller.clientWidth)),(n?t==e.doc.scrollLeft:Math.abs(e.doc.scrollLeft-t)<2)&&!r||(e.doc.scrollLeft=t,di(e),e.display.scroller.scrollLeft!=t&&(e.display.scroller.scrollLeft=t),e.display.scrollbars.setScrollLeft(t))}function Hr(e){var t=e.display,n=t.gutters.offsetWidth,r=Math.round(e.doc.height+Mn(e.display));return{clientHeight:t.scroller.clientHeight,viewHeight:t.wrapper.clientHeight,scrollWidth:t.scroller.scrollWidth,clientWidth:t.scroller.clientWidth,viewWidth:t.wrapper.clientWidth,barLeft:e.options.fixedGutter?n:0,docHeight:r,scrollHeight:r+Ln(e)+t.barHeight,nativeBarWidth:t.nativeBarWidth,gutterWidth:n}}var Ir=function(e,t,n){this.cm=n;var r=this.vert=T("div",[T("div",null,null,"min-width: 1px")],"CodeMirror-vscrollbar"),i=this.horiz=T("div",[T("div",null,null,"height: 100%; min-height: 1px")],"CodeMirror-hscrollbar");r.tabIndex=i.tabIndex=-1,e(r),e(i),de(r,"scroll",(function(){r.clientHeight&&t(r.scrollTop,"vertical")})),de(i,"scroll",(function(){i.clientWidth&&t(i.scrollLeft,"horizontal")})),this.checkedZeroWidth=!1,a&&s<8&&(this.horiz.style.minHeight=this.vert.style.minWidth="18px")};Ir.prototype.update=function(e){var t=e.scrollWidth>e.clientWidth+1,n=e.scrollHeight>e.clientHeight+1,r=e.nativeBarWidth;if(n){this.vert.style.display="block",this.vert.style.bottom=t?r+"px":"0";var i=e.viewHeight-(t?r:0);this.vert.firstChild.style.height=Math.max(0,e.scrollHeight-e.clientHeight+i)+"px"}else this.vert.style.display="",this.vert.firstChild.style.height="0";if(t){this.horiz.style.display="block",this.horiz.style.right=n?r+"px":"0",this.horiz.style.left=e.barLeft+"px";var o=e.viewWidth-e.barLeft-(n?r:0);this.horiz.firstChild.style.width=Math.max(0,e.scrollWidth-e.clientWidth+o)+"px"}else this.horiz.style.display="",this.horiz.firstChild.style.width="0";return!this.checkedZeroWidth&&e.clientHeight>0&&(0==r&&this.zeroWidthHack(),this.checkedZeroWidth=!0),{right:n?r:0,bottom:t?r:0}},Ir.prototype.setScrollLeft=function(e){this.horiz.scrollLeft!=e&&(this.horiz.scrollLeft=e),this.disableHoriz&&this.enableZeroWidthBar(this.horiz,this.disableHoriz,"horiz")},Ir.prototype.setScrollTop=function(e){this.vert.scrollTop!=e&&(this.vert.scrollTop=e),this.disableVert&&this.enableZeroWidthBar(this.vert,this.disableVert,"vert")},Ir.prototype.zeroWidthHack=function(){var e=y&&!h?"12px":"18px";this.horiz.style.height=this.vert.style.width=e,this.horiz.style.pointerEvents=this.vert.style.pointerEvents="none",this.disableHoriz=new I,this.disableVert=new I},Ir.prototype.enableZeroWidthBar=function(e,t,n){e.style.pointerEvents="auto",t.set(1e3,(function r(){var i=e.getBoundingClientRect();("vert"==n?document.elementFromPoint(i.right-1,(i.top+i.bottom)/2):document.elementFromPoint((i.right+i.left)/2,i.bottom-1))!=e?e.style.pointerEvents="none":t.set(1e3,r)}))},Ir.prototype.clear=function(){var e=this.horiz.parentNode;e.removeChild(this.horiz),e.removeChild(this.vert)};var Fr=function(){};function zr(e,t){t||(t=Hr(e));var n=e.display.barWidth,r=e.display.barHeight;Wr(e,t);for(var i=0;i<4&&n!=e.display.barWidth||r!=e.display.barHeight;i++)n!=e.display.barWidth&&e.options.lineWrapping&&Lr(e),Wr(e,Hr(e)),n=e.display.barWidth,r=e.display.barHeight}function Wr(e,t){var n=e.display,r=n.scrollbars.update(t);n.sizer.style.paddingRight=(n.barWidth=r.right)+"px",n.sizer.style.paddingBottom=(n.barHeight=r.bottom)+"px",n.heightForcer.style.borderBottom=r.bottom+"px solid transparent",r.right&&r.bottom?(n.scrollbarFiller.style.display="block",n.scrollbarFiller.style.height=r.bottom+"px",n.scrollbarFiller.style.width=r.right+"px"):n.scrollbarFiller.style.display="",r.bottom&&e.options.coverGutterNextToScrollbar&&e.options.fixedGutter?(n.gutterFiller.style.display="block",n.gutterFiller.style.height=r.bottom+"px",n.gutterFiller.style.width=t.gutterWidth+"px"):n.gutterFiller.style.display=""}Fr.prototype.update=function(){return{bottom:0,right:0}},Fr.prototype.setScrollLeft=function(){},Fr.prototype.setScrollTop=function(){},Fr.prototype.clear=function(){};var Br={native:Ir,null:Fr};function Ur(e){e.display.scrollbars&&(e.display.scrollbars.clear(),e.display.scrollbars.addClass&&L(e.display.wrapper,e.display.scrollbars.addClass)),e.display.scrollbars=new Br[e.options.scrollbarStyle]((function(t){e.display.wrapper.insertBefore(t,e.display.scrollbarFiller),de(t,"mousedown",(function(){e.state.focused&&setTimeout((function(){return e.display.input.focus()}),0)})),t.setAttribute("cm-not-content","true")}),(function(t,n){"horizontal"==n?Rr(e,t):Ar(e,t)}),e),e.display.scrollbars.addClass&&Y(e.display.wrapper,e.display.scrollbars.addClass)}var Vr=0;function qr(e){var t;e.curOp={cm:e,viewChanged:!1,startHeight:e.doc.height,forceUpdate:!1,updateInput:0,typing:!1,changeObjs:null,cursorActivityHandlers:null,cursorActivityCalled:0,selectionChanged:!1,updateMaxLine:!1,scrollLeft:null,scrollTop:null,scrollToPos:null,focus:!1,id:++Vr},t=e.curOp,an?an.ops.push(t):t.ownsGroup=an={ops:[t],delayedCallbacks:[]}}function Zr(e){var t=e.curOp;t&&function(e,t){var n=e.ownsGroup;if(n)try{!function(e){var t=e.delayedCallbacks,n=0;do{for(;n=n.viewTo)||n.maxLineChanged&&t.options.lineWrapping,e.update=e.mustUpdate&&new oi(t,e.mustUpdate&&{top:e.scrollTop,ensure:e.scrollToPos},e.forceUpdate)}function $r(e){e.updatedDisplay=e.mustUpdate&&ai(e.cm,e.update)}function Jr(e){var t=e.cm,n=t.display;e.updatedDisplay&&Lr(t),e.barMeasure=Hr(t),n.maxLineChanged&&!t.options.lineWrapping&&(e.adjustWidthTo=On(t,n.maxLine,n.maxLine.text.length).left+3,t.display.sizerWidth=e.adjustWidthTo,e.barMeasure.scrollWidth=Math.max(n.scroller.clientWidth,n.sizer.offsetLeft+e.adjustWidthTo+Ln(t)+t.display.barWidth),e.maxScrollLeft=Math.max(0,n.sizer.offsetLeft+e.adjustWidthTo-Cn(t))),(e.updatedDisplay||e.selectionChanged)&&(e.preparedSelection=n.input.prepareSelection())}function Kr(e){var t=e.cm;null!=e.adjustWidthTo&&(t.display.sizer.style.minWidth=e.adjustWidthTo+"px",e.maxScrollLeft(window.innerHeight||document.documentElement.clientHeight)&&(i=!1),null!=i&&!p){var o=T("div","​",null,"position: absolute;\n top: "+(t.top-n.viewOffset-xn(e.display))+"px;\n height: "+(t.bottom-t.top+Ln(e)+n.barHeight)+"px;\n left: "+t.left+"px; width: "+Math.max(2,t.right-t.left)+"px;");e.display.lineSpace.appendChild(o),o.scrollIntoView(i),e.display.lineSpace.removeChild(o)}}}(t,function(e,t,n,r){var i;null==r&&(r=0),e.options.lineWrapping||t!=n||(n="before"==(t=t.ch?et(t.line,"before"==t.sticky?t.ch-1:t.ch,"after"):t).sticky?et(t.line,t.ch+1,"before"):t);for(var o=0;o<5;o++){var a=!1,s=Zn(e,t),l=n&&n!=t?Zn(e,n):s,c=Tr(e,i={left:Math.min(s.left,l.left),top:Math.min(s.top,l.top)-r,right:Math.max(s.left,l.left),bottom:Math.max(s.bottom,l.bottom)+r}),u=e.doc.scrollTop,d=e.doc.scrollLeft;if(null!=c.scrollTop&&(Ar(e,c.scrollTop),Math.abs(e.doc.scrollTop-u)>1&&(a=!0)),null!=c.scrollLeft&&(Rr(e,c.scrollLeft),Math.abs(e.doc.scrollLeft-d)>1&&(a=!0)),!a)break}return i}(t,st(r,e.scrollToPos.from),st(r,e.scrollToPos.to),e.scrollToPos.margin));var i=e.maybeHiddenMarkers,o=e.maybeUnhiddenMarkers;if(i)for(var a=0;a=e.display.viewTo)){var n=+new Date+e.options.workTime,r=ht(e,t.highlightFrontier),i=[];t.iter(r.line,Math.min(t.first+t.size,e.display.viewTo+500),(function(o){if(r.line>=e.display.viewFrom){var a=o.styles,s=o.text.length>e.options.maxHighlightLength?We(t.mode,r.state):null,l=dt(e,o,r,!0);s&&(r.state=s),o.styles=l.styles;var c=o.styleClasses,u=l.classes;u?o.styleClasses=u:c&&(o.styleClasses=null);for(var d=!a||a.length!=o.styles.length||c!=u&&(!c||!u||c.bgClass!=u.bgClass||c.textClass!=u.textClass),f=0;!d&&fn)return ri(e,e.options.workDelay),!0})),t.highlightFrontier=r.line,t.modeFrontier=Math.max(t.modeFrontier,r.line),i.length&&Qr(e,(function(){for(var t=0;t=n.viewFrom&&t.visible.to<=n.viewTo&&(null==n.updateLineNumbers||n.updateLineNumbers>=n.viewTo)&&n.renderedView==n.view&&0==mr(e))return!1;fi(e)&&(hr(e),t.dims=or(e));var i=r.first+r.size,o=Math.max(t.visible.from-e.options.viewportMargin,r.first),a=Math.min(i,t.visible.to+e.options.viewportMargin);n.viewFroma&&n.viewTo-a<20&&(a=Math.min(i,n.viewTo)),wt&&(o=It(e.doc,o),a=Ft(e.doc,a));var s=o!=n.viewFrom||a!=n.viewTo||n.lastWrapHeight!=t.wrapperHeight||n.lastWrapWidth!=t.wrapperWidth;!function(e,t,n){var r=e.display;0==r.view.length||t>=r.viewTo||n<=r.viewFrom?(r.view=on(e,t,n),r.viewFrom=t):(r.viewFrom>t?r.view=on(e,t,r.viewFrom).concat(r.view):r.viewFromn&&(r.view=r.view.slice(0,ur(e,n)))),r.viewTo=n}(e,o,a),n.viewOffset=Bt(qe(e.doc,n.viewFrom)),e.display.mover.style.top=n.viewOffset+"px";var c=mr(e);if(!s&&0==c&&!t.force&&n.renderedView==n.view&&(null==n.updateLineNumbers||n.updateLineNumbers>=n.viewTo))return!1;var u=function(e){if(e.hasFocus())return null;var t=j();if(!t||!D(e.display.lineDiv,t))return null;var n={activeElt:t};if(window.getSelection){var r=window.getSelection();r.anchorNode&&r.extend&&D(e.display.lineDiv,r.anchorNode)&&(n.anchorNode=r.anchorNode,n.anchorOffset=r.anchorOffset,n.focusNode=r.focusNode,n.focusOffset=r.focusOffset)}return n}(e);return c>4&&(n.lineDiv.style.display="none"),function(e,t,n){var r=e.display,i=e.options.lineNumbers,o=r.lineDiv,a=o.firstChild;function s(t){var n=t.nextSibling;return l&&y&&e.display.currentWheelTarget==t?t.style.display="none":t.parentNode.removeChild(t),n}for(var c=r.view,u=r.viewFrom,d=0;d-1&&(h=!1),un(e,f,u,n)),h&&(C(f.lineNumber),f.lineNumber.appendChild(document.createTextNode(Qe(e.options,u)))),a=f.node.nextSibling}else{var p=gn(e,f,u,n);o.insertBefore(p,a)}u+=f.size}for(;a;)a=s(a)}(e,n.updateLineNumbers,t.dims),c>4&&(n.lineDiv.style.display=""),n.renderedView=n.view,function(e){if(e&&e.activeElt&&e.activeElt!=j()&&(e.activeElt.focus(),e.anchorNode&&D(document.body,e.anchorNode)&&D(document.body,e.focusNode))){var t=window.getSelection(),n=document.createRange();n.setEnd(e.anchorNode,e.anchorOffset),n.collapse(!1),t.removeAllRanges(),t.addRange(n),t.extend(e.focusNode,e.focusOffset)}}(u),C(n.cursorDiv),C(n.selectionDiv),n.gutters.style.height=n.sizer.style.minHeight=0,s&&(n.lastWrapHeight=t.wrapperHeight,n.lastWrapWidth=t.wrapperWidth,ri(e,400)),n.updateLineNumbers=null,!0}function si(e,t){for(var n=t.viewport,r=!0;;r=!1){if(r&&e.options.lineWrapping&&t.oldDisplayWidth!=Cn(e))r&&(t.visible=Er(e.display,e.doc,n));else if(n&&null!=n.top&&(n={top:Math.min(e.doc.height+Mn(e.display)-En(e),n.top)}),t.visible=Er(e.display,e.doc,n),t.visible.from>=e.display.viewFrom&&t.visible.to<=e.display.viewTo)break;if(!ai(e,t))break;Lr(e);var i=Hr(e);br(e),zr(e,i),ui(e,i),t.force=!1}t.signal(e,"update",e),e.display.viewFrom==e.display.reportedViewFrom&&e.display.viewTo==e.display.reportedViewTo||(t.signal(e,"viewportChange",e,e.display.viewFrom,e.display.viewTo),e.display.reportedViewFrom=e.display.viewFrom,e.display.reportedViewTo=e.display.viewTo)}function li(e,t){var n=new oi(e,t);if(ai(e,n)){Lr(e),si(e,n);var r=Hr(e);br(e),zr(e,r),ui(e,r),n.finish()}}function ci(e){var t=e.gutters.offsetWidth;e.sizer.style.marginLeft=t+"px"}function ui(e,t){e.display.sizer.style.minHeight=t.docHeight+"px",e.display.heightForcer.style.top=t.docHeight+"px",e.display.gutters.style.height=t.docHeight+e.display.barHeight+Ln(e)+"px"}function di(e){var t=e.display,n=t.view;if(t.alignWidgets||t.gutters.firstChild&&e.options.fixedGutter){for(var r=ar(t)-t.scroller.scrollLeft+e.doc.scrollLeft,i=t.gutters.offsetWidth,o=r+"px",a=0;as.clientWidth,u=s.scrollHeight>s.clientHeight;if(i&&c||o&&u){if(o&&y&&l)e:for(var f=t.target,h=a.view;f!=s;f=f.parentNode)for(var p=0;p=0&&tt(e,r.to())<=0)return n}return-1};var xi=function(e,t){this.anchor=e,this.head=t};function Mi(e,t,n){var r=e&&e.options.selectionsMayTouch,i=t[n];t.sort((function(e,t){return tt(e.from(),t.from())})),n=F(t,i);for(var o=1;o0:l>=0){var c=ot(s.from(),a.from()),u=it(s.to(),a.to()),d=s.empty()?a.from()==a.head:s.from()==s.head;o<=n&&--n,t.splice(--o,2,new xi(d?u:c,d?c:u))}}return new wi(t,n)}function Si(e,t){return new wi([new xi(e,t||e)],0)}function Li(e){return e.text?et(e.from.line+e.text.length-1,G(e.text).length+(1==e.text.length?e.from.ch:0)):e.to}function Ci(e,t){if(tt(e,t.from)<0)return e;if(tt(e,t.to)<=0)return Li(t);var n=e.line+t.text.length-(t.to.line-t.from.line)-1,r=e.ch;return e.line==t.to.line&&(r+=Li(t).ch-t.to.ch),et(n,r)}function Ei(e,t){for(var n=[],r=0;r1&&e.remove(s.line+1,p-1),e.insert(s.line+1,g)}ln(e,"change",e,t)}function Pi(e,t,n){!function e(r,i,o){if(r.linked)for(var a=0;as-(e.cm?e.cm.options.historyEventDelay:500)||"*"==t.origin.charAt(0)))&&(o=function(e,t){return t?(Ii(e.done),G(e.done)):e.done.length&&!G(e.done).ranges?G(e.done):e.done.length>1&&!e.done[e.done.length-2].ranges?(e.done.pop(),G(e.done)):void 0}(i,i.lastOp==r)))a=G(o.changes),0==tt(t.from,t.to)&&0==tt(t.from,a.to)?a.to=Li(t):o.changes.push(Hi(e,t));else{var l=G(i.done);for(l&&l.ranges||Wi(e.sel,i.done),o={changes:[Hi(e,t)],generation:i.generation},i.done.push(o);i.done.length>i.undoDepth;)i.done.shift(),i.done[0].ranges||i.done.shift()}i.done.push(n),i.generation=++i.maxGeneration,i.lastModTime=i.lastSelTime=s,i.lastOp=i.lastSelOp=r,i.lastOrigin=i.lastSelOrigin=t.origin,a||pe(e,"historyAdded")}function zi(e,t,n,r){var i=e.history,o=r&&r.origin;n==i.lastSelOp||o&&i.lastSelOrigin==o&&(i.lastModTime==i.lastSelTime&&i.lastOrigin==o||function(e,t,n,r){var i=t.charAt(0);return"*"==i||"+"==i&&n.ranges.length==r.ranges.length&&n.somethingSelected()==r.somethingSelected()&&new Date-e.history.lastSelTime<=(e.cm?e.cm.options.historyEventDelay:500)}(e,o,G(i.done),t))?i.done[i.done.length-1]=t:Wi(t,i.done),i.lastSelTime=+new Date,i.lastSelOrigin=o,i.lastSelOp=n,r&&!1!==r.clearRedo&&Ii(i.undone)}function Wi(e,t){var n=G(t);n&&n.ranges&&n.equals(e)||t.push(e)}function Bi(e,t,n,r){var i=t["spans_"+e.id],o=0;e.iter(Math.max(e.first,n),Math.min(e.first+e.size,r),(function(n){n.markedSpans&&((i||(i=t["spans_"+e.id]={}))[o]=n.markedSpans),++o}))}function Ui(e){if(!e)return null;for(var t,n=0;n-1&&(G(s)[d]=c[d],delete c[d])}}}return r}function Zi(e,t,n,r){if(r){var i=e.anchor;if(n){var o=tt(t,i)<0;o!=tt(n,i)<0?(i=t,t=n):o!=tt(t,n)<0&&(t=n)}return new xi(i,t)}return new xi(n||t,t)}function Gi(e,t,n,r,i){null==i&&(i=e.cm&&(e.cm.display.shift||e.extend)),Qi(e,new wi([Zi(e.sel.primary(),t,n,i)],0),r)}function $i(e,t,n){for(var r=[],i=e.cm&&(e.cm.display.shift||e.extend),o=0;o=t.ch:s.to>t.ch))){if(i&&(pe(l,"beforeCursorEnter"),l.explicitlyCleared)){if(o.markedSpans){--a;continue}break}if(!l.atomic)continue;if(n){var d=l.find(r<0?1:-1),f=void 0;if((r<0?u:c)&&(d=ao(e,d,-r,d&&d.line==t.line?o:null)),d&&d.line==t.line&&(f=tt(d,n))&&(r<0?f<0:f>0))return io(e,d,t,r,i)}var h=l.find(r<0?-1:1);return(r<0?c:u)&&(h=ao(e,h,r,h.line==t.line?o:null)),h?io(e,h,t,r,i):null}}return t}function oo(e,t,n,r,i){var o=r||1,a=io(e,t,n,o,i)||!i&&io(e,t,n,o,!0)||io(e,t,n,-o,i)||!i&&io(e,t,n,-o,!0);return a||(e.cantEdit=!0,et(e.first,0))}function ao(e,t,n,r){return n<0&&0==t.ch?t.line>e.first?st(e,et(t.line-1)):null:n>0&&t.ch==(r||qe(e,t.line)).text.length?t.line0)){var u=[l,1],d=tt(c.from,s.from),f=tt(c.to,s.to);(d<0||!a.inclusiveLeft&&!d)&&u.push({from:c.from,to:s.from}),(f>0||!a.inclusiveRight&&!f)&&u.push({from:s.to,to:c.to}),i.splice.apply(i,u),l+=u.length-3}}return i}(e,t.from,t.to);if(r)for(var i=r.length-1;i>=0;--i)uo(e,{from:r[i].from,to:r[i].to,text:i?[""]:t.text,origin:t.origin});else uo(e,t)}}function uo(e,t){if(1!=t.text.length||""!=t.text[0]||0!=tt(t.from,t.to)){var n=Ei(e,t);Fi(e,t,n,e.cm?e.cm.curOp.id:NaN),po(e,t,n,Lt(e,t));var r=[];Pi(e,(function(e,n){n||-1!=F(r,e.history)||(yo(e.history,t),r.push(e.history)),po(e,t,null,Lt(e,t))}))}}function fo(e,t,n){var r=e.cm&&e.cm.state.suppressEdits;if(!r||n){for(var i,o=e.history,a=e.sel,s="undo"==t?o.done:o.undone,l="undo"==t?o.undone:o.done,c=0;c=0;--h){var p=f(h);if(p)return p.v}}}}function ho(e,t){if(0!=t&&(e.first+=t,e.sel=new wi($(e.sel.ranges,(function(e){return new xi(et(e.anchor.line+t,e.anchor.ch),et(e.head.line+t,e.head.ch))})),e.sel.primIndex),e.cm)){dr(e.cm,e.first,e.first-t,t);for(var n=e.cm.display,r=n.viewFrom;re.lastLine())){if(t.from.lineo&&(t={from:t.from,to:et(o,qe(e,o).text.length),text:[t.text[0]],origin:t.origin}),t.removed=Ze(e,t.from,t.to),n||(n=Ei(e,t)),e.cm?function(e,t,n){var r=e.doc,i=e.display,o=t.from,a=t.to,s=!1,l=o.line;e.options.lineWrapping||(l=Je(Ht(qe(r,o.line))),r.iter(l,a.line+1,(function(e){if(e==i.maxLine)return s=!0,!0}))),r.sel.contains(t.from,t.to)>-1&&be(e),Yi(r,t,n,sr(e)),e.options.lineWrapping||(r.iter(l,o.line+t.text.length,(function(e){var t=Ut(e);t>i.maxLineLength&&(i.maxLine=e,i.maxLineLength=t,i.maxLineChanged=!0,s=!1)})),s&&(e.curOp.updateMaxLine=!0)),function(e,t){if(e.modeFrontier=Math.min(e.modeFrontier,t),!(e.highlightFrontiern;r--){var i=qe(e,r).stateAfter;if(i&&(!(i instanceof ct)||r+i.lookAhead1||!(this.children[0]instanceof _o))){var s=[];this.collapse(s),this.children=[new _o(s)],this.children[0].parent=this}},collapse:function(e){for(var t=0;t50){for(var a=i.lines.length%25+25,s=a;s10);e.parent.maybeSpill()}},iterN:function(e,t,n){for(var r=0;r0||0==a&&!1!==o.clearWhenEmpty)return o;if(o.replacedWith&&(o.collapsed=!0,o.widgetNode=O("span",[o.replacedWith],"CodeMirror-widget"),r.handleMouseEvents||o.widgetNode.setAttribute("cm-ignore-events","true"),r.insertLeft&&(o.widgetNode.insertLeft=!0)),o.collapsed){if(Rt(e,t.line,t,n,o)||t.line!=n.line&&Rt(e,n.line,t,n,o))throw new Error("Inserting collapsed marker partially overlapping an existing one");wt=!0}o.addToHistory&&Fi(e,{from:t,to:n,origin:"markText"},e.sel,NaN);var s,l=t.line,c=e.cm;if(e.iter(l,n.line+1,(function(e){c&&o.collapsed&&!c.options.lineWrapping&&Ht(e)==c.display.maxLine&&(s=!0),o.collapsed&&l!=t.line&&$e(e,0),function(e,t){e.markedSpans=e.markedSpans?e.markedSpans.concat([t]):[t],t.marker.attachLine(e)}(e,new xt(o,l==t.line?t.ch:null,l==n.line?n.ch:null)),++l})),o.collapsed&&e.iter(t.line,n.line+1,(function(t){zt(e,t)&&$e(t,0)})),o.clearOnEnter&&de(o,"beforeCursorEnter",(function(){return o.clear()})),o.readOnly&&(kt=!0,(e.history.done.length||e.history.undone.length)&&e.clearHistory()),o.collapsed&&(o.id=++Mo,o.atomic=!0),c){if(s&&(c.curOp.updateMaxLine=!0),o.collapsed)dr(c,t.line,n.line+1);else if(o.className||o.startStyle||o.endStyle||o.css||o.attributes||o.title)for(var u=t.line;u<=n.line;u++)fr(c,u,"text");o.atomic&&no(c.doc),ln(c,"markerAdded",c,o)}return o}So.prototype.clear=function(){if(!this.explicitlyCleared){var e=this.doc.cm,t=e&&!e.curOp;if(t&&qr(e),ge(this,"clear")){var n=this.find();n&&ln(this,"clear",n.from,n.to)}for(var r=null,i=null,o=0;oe.display.maxLineLength&&(e.display.maxLine=c,e.display.maxLineLength=u,e.display.maxLineChanged=!0)}null!=r&&e&&this.collapsed&&dr(e,r,i+1),this.lines.length=0,this.explicitlyCleared=!0,this.atomic&&this.doc.cantEdit&&(this.doc.cantEdit=!1,e&&no(e.doc)),e&&ln(e,"markerCleared",e,this,r,i),t&&Zr(e),this.parent&&this.parent.clear()}},So.prototype.find=function(e,t){var n,r;null==e&&"bookmark"==this.type&&(e=1);for(var i=0;i=0;l--)co(this,r[l]);s?Xi(this,s):this.cm&&Dr(this.cm)})),undo:ni((function(){fo(this,"undo")})),redo:ni((function(){fo(this,"redo")})),undoSelection:ni((function(){fo(this,"undo",!0)})),redoSelection:ni((function(){fo(this,"redo",!0)})),setExtending:function(e){this.extend=e},getExtending:function(){return this.extend},historySize:function(){for(var e=this.history,t=0,n=0,r=0;r=e.ch)&&t.push(i.marker.parent||i.marker)}return t},findMarks:function(e,t,n){e=st(this,e),t=st(this,t);var r=[],i=e.line;return this.iter(e.line,t.line+1,(function(o){var a=o.markedSpans;if(a)for(var s=0;s=l.to||null==l.from&&i!=e.line||null!=l.from&&i==t.line&&l.from>=t.ch||n&&!n(l.marker)||r.push(l.marker.parent||l.marker)}++i})),r},getAllMarks:function(){var e=[];return this.iter((function(t){var n=t.markedSpans;if(n)for(var r=0;re)return t=e,!0;e-=o,++n})),st(this,et(n,t))},indexFromPos:function(e){var t=(e=st(this,e)).ch;if(e.linet&&(t=e.from),null!=e.to&&e.to-1)return t.state.draggingText(e),void setTimeout((function(){return t.display.input.focus()}),20);try{var d=e.dataTransfer.getData("Text");if(d){var f;if(t.state.draggingText&&!t.state.draggingText.copy&&(f=t.listSelections()),eo(t.doc,Si(n,n)),f)for(var h=0;h=0;t--)mo(e.doc,"",r[t].from,r[t].to,"+delete");Dr(e)}))}function Xo(e,t,n){var r=ie(e.text,t+n,n);return r<0||r>e.text.length?null:r}function Qo(e,t,n){var r=Xo(e,t.ch,n);return null==r?null:new et(t.line,r,n<0?"after":"before")}function ea(e,t,n,r,i){if(e){"rtl"==t.doc.direction&&(i=-i);var o=ce(n,t.doc.direction);if(o){var a,s=i<0?G(o):o[0],l=i<0==(1==s.level)?"after":"before";if(s.level>0||"rtl"==t.doc.direction){var c=jn(t,n);a=i<0?n.text.length-1:0;var u=Yn(t,c,a).top;a=oe((function(e){return Yn(t,c,e).top==u}),i<0==(1==s.level)?s.from:s.to-1,a),"before"==l&&(a=Xo(n,a,1))}else a=i<0?s.to:s.from;return new et(r,a,l)}}return new et(r,i<0?n.text.length:0,i<0?"before":"after")}Bo.basic={Left:"goCharLeft",Right:"goCharRight",Up:"goLineUp",Down:"goLineDown",End:"goLineEnd",Home:"goLineStartSmart",PageUp:"goPageUp",PageDown:"goPageDown",Delete:"delCharAfter",Backspace:"delCharBefore","Shift-Backspace":"delCharBefore",Tab:"defaultTab","Shift-Tab":"indentAuto",Enter:"newlineAndIndent",Insert:"toggleOverwrite",Esc:"singleSelection"},Bo.pcDefault={"Ctrl-A":"selectAll","Ctrl-D":"deleteLine","Ctrl-Z":"undo","Shift-Ctrl-Z":"redo","Ctrl-Y":"redo","Ctrl-Home":"goDocStart","Ctrl-End":"goDocEnd","Ctrl-Up":"goLineUp","Ctrl-Down":"goLineDown","Ctrl-Left":"goGroupLeft","Ctrl-Right":"goGroupRight","Alt-Left":"goLineStart","Alt-Right":"goLineEnd","Ctrl-Backspace":"delGroupBefore","Ctrl-Delete":"delGroupAfter","Ctrl-S":"save","Ctrl-F":"find","Ctrl-G":"findNext","Shift-Ctrl-G":"findPrev","Shift-Ctrl-F":"replace","Shift-Ctrl-R":"replaceAll","Ctrl-[":"indentLess","Ctrl-]":"indentMore","Ctrl-U":"undoSelection","Shift-Ctrl-U":"redoSelection","Alt-U":"redoSelection",fallthrough:"basic"},Bo.emacsy={"Ctrl-F":"goCharRight","Ctrl-B":"goCharLeft","Ctrl-P":"goLineUp","Ctrl-N":"goLineDown","Alt-F":"goWordRight","Alt-B":"goWordLeft","Ctrl-A":"goLineStart","Ctrl-E":"goLineEnd","Ctrl-V":"goPageDown","Shift-Ctrl-V":"goPageUp","Ctrl-D":"delCharAfter","Ctrl-H":"delCharBefore","Alt-D":"delWordAfter","Alt-Backspace":"delWordBefore","Ctrl-K":"killLine","Ctrl-T":"transposeChars","Ctrl-O":"openLine"},Bo.macDefault={"Cmd-A":"selectAll","Cmd-D":"deleteLine","Cmd-Z":"undo","Shift-Cmd-Z":"redo","Cmd-Y":"redo","Cmd-Home":"goDocStart","Cmd-Up":"goDocStart","Cmd-End":"goDocEnd","Cmd-Down":"goDocEnd","Alt-Left":"goGroupLeft","Alt-Right":"goGroupRight","Cmd-Left":"goLineLeft","Cmd-Right":"goLineRight","Alt-Backspace":"delGroupBefore","Ctrl-Alt-Backspace":"delGroupAfter","Alt-Delete":"delGroupAfter","Cmd-S":"save","Cmd-F":"find","Cmd-G":"findNext","Shift-Cmd-G":"findPrev","Cmd-Alt-F":"replace","Shift-Cmd-Alt-F":"replaceAll","Cmd-[":"indentLess","Cmd-]":"indentMore","Cmd-Backspace":"delWrappedLineLeft","Cmd-Delete":"delWrappedLineRight","Cmd-U":"undoSelection","Shift-Cmd-U":"redoSelection","Ctrl-Up":"goDocStart","Ctrl-Down":"goDocEnd",fallthrough:["basic","emacsy"]},Bo.default=y?Bo.macDefault:Bo.pcDefault;var ta={selectAll:so,singleSelection:function(e){return e.setSelection(e.getCursor("anchor"),e.getCursor("head"),W)},killLine:function(e){return Ko(e,(function(t){if(t.empty()){var n=qe(e.doc,t.head.line).text.length;return t.head.ch==n&&t.head.line0)i=new et(i.line,i.ch+1),e.replaceRange(o.charAt(i.ch-1)+o.charAt(i.ch-2),et(i.line,i.ch-2),i,"+transpose");else if(i.line>e.doc.first){var a=qe(e.doc,i.line-1).text;a&&(i=new et(i.line,1),e.replaceRange(o.charAt(0)+e.doc.lineSeparator()+a.charAt(a.length-1),et(i.line-1,a.length-1),i,"+transpose"))}n.push(new xi(i,i))}e.setSelections(n)}))},newlineAndIndent:function(e){return Qr(e,(function(){for(var t=e.listSelections(),n=t.length-1;n>=0;n--)e.replaceRange(e.doc.lineSeparator(),t[n].anchor,t[n].head,"+input");t=e.listSelections();for(var r=0;r-1&&(tt((i=c.ranges[i]).from(),t)<0||t.xRel>0)&&(tt(i.to(),t)>0||t.xRel<0)?function(e,t,n,r){var i=e.display,o=!1,c=ei(e,(function(t){l&&(i.scroller.draggable=!1),e.state.draggingText=!1,he(i.wrapper.ownerDocument,"mouseup",c),he(i.wrapper.ownerDocument,"mousemove",u),he(i.scroller,"dragstart",d),he(i.scroller,"drop",c),o||(ve(t),r.addNew||Gi(e.doc,n,null,null,r.extend),l||a&&9==s?setTimeout((function(){i.wrapper.ownerDocument.body.focus(),i.input.focus()}),20):i.input.focus())})),u=function(e){o=o||Math.abs(t.clientX-e.clientX)+Math.abs(t.clientY-e.clientY)>=10},d=function(){return o=!0};l&&(i.scroller.draggable=!0),e.state.draggingText=c,c.copy=!r.moveOnDrag,i.scroller.dragDrop&&i.scroller.dragDrop(),de(i.wrapper.ownerDocument,"mouseup",c),de(i.wrapper.ownerDocument,"mousemove",u),de(i.scroller,"dragstart",d),de(i.scroller,"drop",c),xr(e),setTimeout((function(){return i.input.focus()}),20)}(e,r,t,o):function(e,t,n,r){var i=e.display,o=e.doc;ve(t);var a,s,l=o.sel,c=l.ranges;if(r.addNew&&!r.extend?(s=o.sel.contains(n),a=s>-1?c[s]:new xi(n,n)):(a=o.sel.primary(),s=o.sel.primIndex),"rectangle"==r.unit)r.addNew||(a=new xi(n,n)),n=cr(e,t,!0,!0),s=-1;else{var u=ga(e,n,r.unit);a=r.extend?Zi(a,u.anchor,u.head,r.extend):u}r.addNew?-1==s?(s=c.length,Qi(o,Mi(e,c.concat([a]),s),{scroll:!1,origin:"*mouse"})):c.length>1&&c[s].empty()&&"char"==r.unit&&!r.extend?(Qi(o,Mi(e,c.slice(0,s).concat(c.slice(s+1)),0),{scroll:!1,origin:"*mouse"}),l=o.sel):Ji(o,s,a,B):(s=0,Qi(o,new wi([a],0),B),l=o.sel);var d=n;function f(t){if(0!=tt(d,t))if(d=t,"rectangle"==r.unit){for(var i=[],c=e.options.tabSize,u=H(qe(o,n.line).text,n.ch,c),f=H(qe(o,t.line).text,t.ch,c),h=Math.min(u,f),p=Math.max(u,f),m=Math.min(n.line,t.line),b=Math.min(e.lastLine(),Math.max(n.line,t.line));m<=b;m++){var g=qe(o,m).text,y=V(g,h,c);h==p?i.push(new xi(et(m,y),et(m,y))):g.length>y&&i.push(new xi(et(m,y),et(m,V(g,p,c))))}i.length||i.push(new xi(n,n)),Qi(o,Mi(e,l.ranges.slice(0,s).concat(i),s),{origin:"*mouse",scroll:!1}),e.scrollIntoView(t)}else{var v,_=a,k=ga(e,t,r.unit),w=_.anchor;tt(k.anchor,w)>0?(v=k.head,w=ot(_.from(),k.anchor)):(v=k.anchor,w=it(_.to(),k.head));var x=l.ranges.slice(0);x[s]=function(e,t){var n=t.anchor,r=t.head,i=qe(e.doc,n.line);if(0==tt(n,r)&&n.sticky==r.sticky)return t;var o=ce(i);if(!o)return t;var a=se(o,n.ch,n.sticky),s=o[a];if(s.from!=n.ch&&s.to!=n.ch)return t;var l,c=a+(s.from==n.ch==(1!=s.level)?0:1);if(0==c||c==o.length)return t;if(r.line!=n.line)l=(r.line-n.line)*("ltr"==e.doc.direction?1:-1)>0;else{var u=se(o,r.ch,r.sticky),d=u-a||(r.ch-n.ch)*(1==s.level?-1:1);l=u==c-1||u==c?d<0:d>0}var f=o[c+(l?-1:0)],h=l==(1==f.level),p=h?f.from:f.to,m=h?"after":"before";return n.ch==p&&n.sticky==m?t:new xi(new et(n.line,p,m),r)}(e,new xi(st(o,w),v)),Qi(o,Mi(e,x,s),B)}}var h=i.wrapper.getBoundingClientRect(),p=0;function m(t){e.state.selectingText=!1,p=1/0,t&&(ve(t),i.input.focus()),he(i.wrapper.ownerDocument,"mousemove",b),he(i.wrapper.ownerDocument,"mouseup",g),o.history.lastSelOrigin=null}var b=ei(e,(function(t){0!==t.buttons&&Me(t)?function t(n){var a=++p,s=cr(e,n,!0,"rectangle"==r.unit);if(s)if(0!=tt(s,d)){e.curOp.focus=j(),f(s);var l=Er(i,o);(s.line>=l.to||s.lineh.bottom?20:0;c&&setTimeout(ei(e,(function(){p==a&&(i.scroller.scrollTop+=c,t(n))})),50)}}(t):m(t)})),g=ei(e,m);e.state.selectingText=g,de(i.wrapper.ownerDocument,"mousemove",b),de(i.wrapper.ownerDocument,"mouseup",g)}(e,r,t,o)}(t,r,o,e):xe(e)==n.scroller&&ve(e):2==i?(r&&Gi(t.doc,r),setTimeout((function(){return n.input.focus()}),20)):3==i&&(x?t.display.input.onContextMenu(e):xr(t)))}}function ga(e,t,n){if("char"==n)return new xi(t,t);if("word"==n)return e.findWordAt(t);if("line"==n)return new xi(et(t.line,0),st(e.doc,et(t.line+1,0)));var r=n(e,t);return new xi(r.from,r.to)}function ya(e,t,n,r){var i,o;if(t.touches)i=t.touches[0].clientX,o=t.touches[0].clientY;else try{i=t.clientX,o=t.clientY}catch(t){return!1}if(i>=Math.floor(e.display.gutters.getBoundingClientRect().right))return!1;r&&ve(t);var a=e.display,s=a.lineDiv.getBoundingClientRect();if(o>s.bottom||!ge(e,n))return ke(t);o-=s.top-a.viewOffset;for(var l=0;l=i)return pe(e,n,e,Ke(e.doc,o),e.display.gutterSpecs[l].className,t),ke(t)}}function va(e,t){return ya(e,t,"gutterClick",!0)}function _a(e,t){wn(e.display,t)||function(e,t){return!!ge(e,"gutterContextMenu")&&ya(e,t,"gutterContextMenu",!1)}(e,t)||me(e,t,"contextmenu")||x||e.display.input.onContextMenu(t)}function ka(e){e.display.wrapper.className=e.display.wrapper.className.replace(/\s*cm-s-\S+/g,"")+e.options.theme.replace(/(^|\s)\s*/g," cm-s-"),Fn(e)}ma.prototype.compare=function(e,t,n){return this.time+400>e&&0==tt(t,this.pos)&&n==this.button};var wa={toString:function(){return"CodeMirror.Init"}},xa={},Ma={};function Sa(e,t,n){if(!t!=!(n&&n!=wa)){var r=e.display.dragFunctions,i=t?de:he;i(e.display.scroller,"dragstart",r.start),i(e.display.scroller,"dragenter",r.enter),i(e.display.scroller,"dragover",r.over),i(e.display.scroller,"dragleave",r.leave),i(e.display.scroller,"drop",r.drop)}}function La(e){e.options.lineWrapping?(Y(e.display.wrapper,"CodeMirror-wrap"),e.display.sizer.style.minWidth="",e.display.sizerWidth=null):(L(e.display.wrapper,"CodeMirror-wrap"),Vt(e)),lr(e),dr(e),Fn(e),setTimeout((function(){return zr(e)}),100)}function Ca(e,t){var n=this;if(!(this instanceof Ca))return new Ca(e,t);this.options=t=t?R(t):{},R(xa,t,!1);var r=t.value;"string"==typeof r?r=new Do(r,t.mode,null,t.lineSeparator,t.direction):t.mode&&(r.modeOption=t.mode),this.doc=r;var i=new Ca.inputStyles[t.inputStyle](this),o=this.display=new bi(e,r,i,t);for(var c in o.wrapper.CodeMirror=this,ka(this),t.lineWrapping&&(this.display.wrapper.className+=" CodeMirror-wrap"),Ur(this),this.state={keyMaps:[],overlays:[],modeGen:0,overwrite:!1,delayingBlurEvent:!1,focused:!1,suppressEdits:!1,pasteIncoming:-1,cutIncoming:-1,selectingText:!1,draggingText:!1,highlight:new I,keySeq:null,specialChars:null},t.autofocus&&!g&&o.input.focus(),a&&s<11&&setTimeout((function(){return n.display.input.reset(!0)}),20),function(e){var t=e.display;de(t.scroller,"mousedown",ei(e,ba)),de(t.scroller,"dblclick",a&&s<11?ei(e,(function(t){if(!me(e,t)){var n=cr(e,t);if(n&&!va(e,t)&&!wn(e.display,t)){ve(t);var r=e.findWordAt(n);Gi(e.doc,r.anchor,r.head)}}})):function(t){return me(e,t)||ve(t)}),de(t.scroller,"contextmenu",(function(t){return _a(e,t)})),de(t.input.getField(),"contextmenu",(function(n){t.scroller.contains(n.target)||_a(e,n)}));var n,r={end:0};function i(){t.activeTouch&&(n=setTimeout((function(){return t.activeTouch=null}),1e3),(r=t.activeTouch).end=+new Date)}function o(e,t){if(null==t.left)return!0;var n=t.left-e.left,r=t.top-e.top;return n*n+r*r>400}de(t.scroller,"touchstart",(function(i){if(!me(e,i)&&!function(e){if(1!=e.touches.length)return!1;var t=e.touches[0];return t.radiusX<=1&&t.radiusY<=1}(i)&&!va(e,i)){t.input.ensurePolled(),clearTimeout(n);var o=+new Date;t.activeTouch={start:o,moved:!1,prev:o-r.end<=300?r:null},1==i.touches.length&&(t.activeTouch.left=i.touches[0].pageX,t.activeTouch.top=i.touches[0].pageY)}})),de(t.scroller,"touchmove",(function(){t.activeTouch&&(t.activeTouch.moved=!0)})),de(t.scroller,"touchend",(function(n){var r=t.activeTouch;if(r&&!wn(t,n)&&null!=r.left&&!r.moved&&new Date-r.start<300){var a,s=e.coordsChar(t.activeTouch,"page");a=!r.prev||o(r,r.prev)?new xi(s,s):!r.prev.prev||o(r,r.prev.prev)?e.findWordAt(s):new xi(et(s.line,0),st(e.doc,et(s.line+1,0))),e.setSelection(a.anchor,a.head),e.focus(),ve(n)}i()})),de(t.scroller,"touchcancel",i),de(t.scroller,"scroll",(function(){t.scroller.clientHeight&&(Ar(e,t.scroller.scrollTop),Rr(e,t.scroller.scrollLeft,!0),pe(e,"scroll",e))})),de(t.scroller,"mousewheel",(function(t){return ki(e,t)})),de(t.scroller,"DOMMouseScroll",(function(t){return ki(e,t)})),de(t.wrapper,"scroll",(function(){return t.wrapper.scrollTop=t.wrapper.scrollLeft=0})),t.dragFunctions={enter:function(t){me(e,t)||we(t)},over:function(t){me(e,t)||(function(e,t){var n=cr(e,t);if(n){var r=document.createDocumentFragment();yr(e,n,r),e.display.dragCursor||(e.display.dragCursor=T("div",null,"CodeMirror-cursors CodeMirror-dragcursors"),e.display.lineSpace.insertBefore(e.display.dragCursor,e.display.cursorDiv)),E(e.display.dragCursor,r)}}(e,t),we(t))},start:function(t){return function(e,t){if(a&&(!e.state.draggingText||+new Date-jo<100))we(t);else if(!me(e,t)&&!wn(e.display,t)&&(t.dataTransfer.setData("Text",e.getSelection()),t.dataTransfer.effectAllowed="copyMove",t.dataTransfer.setDragImage&&!f)){var n=T("img",null,null,"position: fixed; left: 0; top: 0;");n.src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==",d&&(n.width=n.height=1,e.display.wrapper.appendChild(n),n._top=n.offsetTop),t.dataTransfer.setDragImage(n,0,0),d&&n.parentNode.removeChild(n)}}(e,t)},drop:ei(e,Yo),leave:function(t){me(e,t)||Po(e)}};var l=t.input.getField();de(l,"keyup",(function(t){return da.call(e,t)})),de(l,"keydown",ei(e,ua)),de(l,"keypress",ei(e,fa)),de(l,"focus",(function(t){return Mr(e,t)})),de(l,"blur",(function(t){return Sr(e,t)}))}(this),Ro(),qr(this),this.curOp.forceUpdate=!0,Ai(this,r),t.autofocus&&!g||this.hasFocus()?setTimeout(N(Mr,this),20):Sr(this),Ma)Ma.hasOwnProperty(c)&&Ma[c](this,t[c],wa);fi(this),t.finishInit&&t.finishInit(this);for(var u=0;u150)){if(!r)return;n="prev"}}else c=0,n="not";"prev"==n?c=t>o.first?H(qe(o,t-1).text,null,a):0:"add"==n?c=l+e.options.indentUnit:"subtract"==n?c=l-e.options.indentUnit:"number"==typeof n&&(c=l+n),c=Math.max(0,c);var d="",f=0;if(e.options.indentWithTabs)for(var h=Math.floor(c/a);h;--h)f+=a,d+="\t";if(fa,l=De(t),c=null;if(s&&r.ranges.length>1)if(Oa&&Oa.text.join("\n")==t){if(r.ranges.length%Oa.text.length==0){c=[];for(var u=0;u=0;f--){var h=r.ranges[f],p=h.from(),m=h.to();h.empty()&&(n&&n>0?p=et(p.line,p.ch-n):e.state.overwrite&&!s?m=et(m.line,Math.min(qe(o,m.line).text.length,m.ch+G(l).length)):s&&Oa&&Oa.lineWise&&Oa.text.join("\n")==t&&(p=m=et(p.line,0)));var b={from:p,to:m,text:c?c[f%c.length]:l,origin:i||(s?"paste":e.state.cutIncoming>a?"cut":"+input")};co(e.doc,b),ln(e,"inputRead",e,b)}t&&!s&&Pa(e,t),Dr(e),e.curOp.updateInput<2&&(e.curOp.updateInput=d),e.curOp.typing=!0,e.state.pasteIncoming=e.state.cutIncoming=-1}function Ya(e,t){var n=e.clipboardData&&e.clipboardData.getData("Text");if(n)return e.preventDefault(),t.isReadOnly()||t.options.disableInput||Qr(t,(function(){return ja(t,n,0,null,"paste")})),!0}function Pa(e,t){if(e.options.electricChars&&e.options.smartIndent)for(var n=e.doc.sel,r=n.ranges.length-1;r>=0;r--){var i=n.ranges[r];if(!(i.head.ch>100||r&&n.ranges[r-1].head.line==i.head.line)){var o=e.getModeAt(i.head),a=!1;if(o.electricChars){for(var s=0;s-1){a=Ta(e,i.head.line,"smart");break}}else o.electricInput&&o.electricInput.test(qe(e.doc,i.head.line).text.slice(0,i.head.ch))&&(a=Ta(e,i.head.line,"smart"));a&&ln(e,"electricInput",e,i.head.line)}}}function Aa(e){for(var t=[],n=[],r=0;r=t.text.length?(n.ch=t.text.length,n.sticky="before"):n.ch<=0&&(n.ch=0,n.sticky="after");var o=se(i,n.ch,n.sticky),a=i[o];if("ltr"==e.doc.direction&&a.level%2==0&&(r>0?a.to>n.ch:a.from=a.from&&f>=u.begin)){var h=d?"before":"after";return new et(n.line,f,h)}}var p=function(e,t,r){for(var o=function(e,t){return t?new et(n.line,l(e,1),"before"):new et(n.line,e,"after")};e>=0&&e0==(1!=a.level),c=s?r.begin:l(r.end,-1);if(a.from<=c&&c0?u.end:l(u.begin,-1);return null==b||r>0&&b==t.text.length||!(m=p(r>0?0:i.length-1,r,c(b)))?null:m}(e.cm,s,t,n):Qo(s,t,n))){if(r||(a=t.line+l)=e.first+e.size||(t=new et(a,t.ch,t.sticky),!(s=qe(e,a))))return!1;t=ea(i,e.cm,s,t.line,l)}else t=o;return!0}if("char"==r)c();else if("column"==r)c(!0);else if("word"==r||"group"==r)for(var u=null,d="group"==r,f=e.cm&&e.cm.getHelper(t,"wordChars"),h=!0;!(n<0)||c(!h);h=!1){var p=s.text.charAt(t.ch)||"\n",m=ee(p,f)?"w":d&&"\n"==p?"n":!d||/\s/.test(p)?null:"p";if(!d||h||m||(m="s"),u&&u!=m){n<0&&(n=1,c(),t.sticky="after");break}if(m&&(u=m),n>0&&!c(!h))break}var b=oo(e,t,o,a,!0);return nt(o,b)&&(b.hitSide=!0),b}function Ia(e,t,n,r){var i,o,a=e.doc,s=t.left;if("page"==r){var l=Math.min(e.display.wrapper.clientHeight,window.innerHeight||document.documentElement.clientHeight),c=Math.max(l-.5*rr(e.display),3);i=(n>0?t.bottom:t.top)+n*c}else"line"==r&&(i=n>0?t.bottom+3:t.top-3);for(;(o=Jn(e,s,i)).outside;){if(n<0?i<=0:i>=a.height){o.hitSide=!0;break}i+=5*n}return o}var Fa=function(e){this.cm=e,this.lastAnchorNode=this.lastAnchorOffset=this.lastFocusNode=this.lastFocusOffset=null,this.polling=new I,this.composing=null,this.gracePeriod=!1,this.readDOMTimeout=null};function za(e,t){var n=Dn(e,t.line);if(!n||n.hidden)return null;var r=qe(e.doc,t.line),i=Tn(n,r,t.line),o=ce(r,e.doc.direction),a="left";o&&(a=se(o,t.ch)%2?"right":"left");var s=Nn(i.map,t.ch,a);return s.offset="right"==s.collapse?s.end:s.start,s}function Wa(e,t){return t&&(e.bad=!0),e}function Ba(e,t,n){var r;if(t==e.display.lineDiv){if(!(r=e.display.lineDiv.childNodes[n]))return Wa(e.clipPos(et(e.display.viewTo-1)),!0);t=null,n=0}else for(r=t;;r=r.parentNode){if(!r||r==e.display.lineDiv)return null;if(r.parentNode&&r.parentNode==e.display.lineDiv)break}for(var i=0;i=t.display.viewTo||o.line=t.display.viewFrom&&za(t,i)||{node:l[0].measure.map[2],offset:0},u=o.liner.firstLine()&&(a=et(a.line-1,qe(r.doc,a.line-1).length)),s.ch==qe(r.doc,s.line).text.length&&s.linei.viewTo-1)return!1;a.line==i.viewFrom||0==(e=ur(r,a.line))?(t=Je(i.view[0].line),n=i.view[0].node):(t=Je(i.view[e].line),n=i.view[e-1].node.nextSibling);var l,c,u=ur(r,s.line);if(u==i.view.length-1?(l=i.viewTo-1,c=i.lineDiv.lastChild):(l=Je(i.view[u+1].line)-1,c=i.view[u+1].node.previousSibling),!n)return!1;for(var d=r.doc.splitLines(function(e,t,n,r,i){var o="",a=!1,s=e.doc.lineSeparator(),l=!1;function c(){a&&(o+=s,l&&(o+=s),a=l=!1)}function u(e){e&&(c(),o+=e)}function d(t){if(1==t.nodeType){var n=t.getAttribute("cm-text");if(n)return void u(n);var o,f=t.getAttribute("cm-marker");if(f){var h=e.findMarks(et(r,0),et(i+1,0),(b=+f,function(e){return e.id==b}));return void(h.length&&(o=h[0].find(0))&&u(Ze(e.doc,o.from,o.to).join(s)))}if("false"==t.getAttribute("contenteditable"))return;var p=/^(pre|div|p|li|table|br)$/i.test(t.nodeName);if(!/^br$/i.test(t.nodeName)&&0==t.textContent.length)return;p&&c();for(var m=0;m1&&f.length>1;)if(G(d)==G(f))d.pop(),f.pop(),l--;else{if(d[0]!=f[0])break;d.shift(),f.shift(),t++}for(var h=0,p=0,m=d[0],b=f[0],g=Math.min(m.length,b.length);ha.ch&&y.charCodeAt(y.length-p-1)==v.charCodeAt(v.length-p-1);)h--,p++;d[d.length-1]=y.slice(0,y.length-p).replace(/^\u200b+/,""),d[0]=d[0].slice(h).replace(/\u200b+$/,"");var k=et(t,h),w=et(l,f.length?G(f).length-p:0);return d.length>1||d[0]||tt(k,w)?(mo(r.doc,d,k,w,"+input"),!0):void 0},Fa.prototype.ensurePolled=function(){this.forceCompositionEnd()},Fa.prototype.reset=function(){this.forceCompositionEnd()},Fa.prototype.forceCompositionEnd=function(){this.composing&&(clearTimeout(this.readDOMTimeout),this.composing=null,this.updateFromDOM(),this.div.blur(),this.div.focus())},Fa.prototype.readFromDOMSoon=function(){var e=this;null==this.readDOMTimeout&&(this.readDOMTimeout=setTimeout((function(){if(e.readDOMTimeout=null,e.composing){if(!e.composing.done)return;e.composing=null}e.updateFromDOM()}),80))},Fa.prototype.updateFromDOM=function(){var e=this;!this.cm.isReadOnly()&&this.pollContent()||Qr(this.cm,(function(){return dr(e.cm)}))},Fa.prototype.setUneditable=function(e){e.contentEditable="false"},Fa.prototype.onKeyPress=function(e){0==e.charCode||this.composing||(e.preventDefault(),this.cm.isReadOnly()||ei(this.cm,ja)(this.cm,String.fromCharCode(null==e.charCode?e.keyCode:e.charCode),0))},Fa.prototype.readOnlyChanged=function(e){this.div.contentEditable=String("nocursor"!=e)},Fa.prototype.onContextMenu=function(){},Fa.prototype.resetPosition=function(){},Fa.prototype.needsContentAttribute=!0;var Va=function(e){this.cm=e,this.prevInput="",this.pollingFast=!1,this.polling=new I,this.hasSelection=!1,this.composing=null};Va.prototype.init=function(e){var t=this,n=this,r=this.cm;this.createField(e);var i=this.textarea;function o(e){if(!me(r,e)){if(r.somethingSelected())Da({lineWise:!1,text:r.getSelections()});else{if(!r.options.lineWiseCopyCut)return;var t=Aa(r);Da({lineWise:!0,text:t.text}),"cut"==e.type?r.setSelections(t.ranges,null,W):(n.prevInput="",i.value=t.text.join("\n"),A(i))}"cut"==e.type&&(r.state.cutIncoming=+new Date)}}e.wrapper.insertBefore(this.wrapper,e.wrapper.firstChild),m&&(i.style.width="0px"),de(i,"input",(function(){a&&s>=9&&t.hasSelection&&(t.hasSelection=null),n.poll()})),de(i,"paste",(function(e){me(r,e)||Ya(e,r)||(r.state.pasteIncoming=+new Date,n.fastPoll())})),de(i,"cut",o),de(i,"copy",o),de(e.scroller,"paste",(function(t){if(!wn(e,t)&&!me(r,t)){if(!i.dispatchEvent)return r.state.pasteIncoming=+new Date,void n.focus();var o=new Event("paste");o.clipboardData=t.clipboardData,i.dispatchEvent(o)}})),de(e.lineSpace,"selectstart",(function(t){wn(e,t)||ve(t)})),de(i,"compositionstart",(function(){var e=r.getCursor("from");n.composing&&n.composing.range.clear(),n.composing={start:e,range:r.markText(e,r.getCursor("to"),{className:"CodeMirror-composing"})}})),de(i,"compositionend",(function(){n.composing&&(n.poll(),n.composing.range.clear(),n.composing=null)}))},Va.prototype.createField=function(e){this.wrapper=Ra(),this.textarea=this.wrapper.firstChild},Va.prototype.screenReaderLabelChanged=function(e){e?this.textarea.setAttribute("aria-label",e):this.textarea.removeAttribute("aria-label")},Va.prototype.prepareSelection=function(){var e=this.cm,t=e.display,n=e.doc,r=gr(e);if(e.options.moveInputWithCursor){var i=Zn(e,n.sel.primary().head,"div"),o=t.wrapper.getBoundingClientRect(),a=t.lineDiv.getBoundingClientRect();r.teTop=Math.max(0,Math.min(t.wrapper.clientHeight-10,i.top+a.top-o.top)),r.teLeft=Math.max(0,Math.min(t.wrapper.clientWidth-10,i.left+a.left-o.left))}return r},Va.prototype.showSelection=function(e){var t=this.cm.display;E(t.cursorDiv,e.cursors),E(t.selectionDiv,e.selection),null!=e.teTop&&(this.wrapper.style.top=e.teTop+"px",this.wrapper.style.left=e.teLeft+"px")},Va.prototype.reset=function(e){if(!this.contextMenuPending&&!this.composing){var t=this.cm;if(t.somethingSelected()){this.prevInput="";var n=t.getSelection();this.textarea.value=n,t.state.focused&&A(this.textarea),a&&s>=9&&(this.hasSelection=n)}else e||(this.prevInput=this.textarea.value="",a&&s>=9&&(this.hasSelection=null))}},Va.prototype.getField=function(){return this.textarea},Va.prototype.supportsTouch=function(){return!1},Va.prototype.focus=function(){if("nocursor"!=this.cm.options.readOnly&&(!g||j()!=this.textarea))try{this.textarea.focus()}catch(e){}},Va.prototype.blur=function(){this.textarea.blur()},Va.prototype.resetPosition=function(){this.wrapper.style.top=this.wrapper.style.left=0},Va.prototype.receivedFocus=function(){this.slowPoll()},Va.prototype.slowPoll=function(){var e=this;this.pollingFast||this.polling.set(this.cm.options.pollInterval,(function(){e.poll(),e.cm.state.focused&&e.slowPoll()}))},Va.prototype.fastPoll=function(){var e=!1,t=this;t.pollingFast=!0,t.polling.set(20,(function n(){t.poll()||e?(t.pollingFast=!1,t.slowPoll()):(e=!0,t.polling.set(60,n))}))},Va.prototype.poll=function(){var e=this,t=this.cm,n=this.textarea,r=this.prevInput;if(this.contextMenuPending||!t.state.focused||je(n)&&!r&&!this.composing||t.isReadOnly()||t.options.disableInput||t.state.keySeq)return!1;var i=n.value;if(i==r&&!t.somethingSelected())return!1;if(a&&s>=9&&this.hasSelection===i||y&&/[\uf700-\uf7ff]/.test(i))return t.display.input.reset(),!1;if(t.doc.sel==t.display.selForContextMenu){var o=i.charCodeAt(0);if(8203!=o||r||(r="​"),8666==o)return this.reset(),this.cm.execCommand("undo")}for(var l=0,c=Math.min(r.length,i.length);l1e3||i.indexOf("\n")>-1?n.value=e.prevInput="":e.prevInput=i,e.composing&&(e.composing.range.clear(),e.composing.range=t.markText(e.composing.start,t.getCursor("to"),{className:"CodeMirror-composing"}))})),!0},Va.prototype.ensurePolled=function(){this.pollingFast&&this.poll()&&(this.pollingFast=!1)},Va.prototype.onKeyPress=function(){a&&s>=9&&(this.hasSelection=null),this.fastPoll()},Va.prototype.onContextMenu=function(e){var t=this,n=t.cm,r=n.display,i=t.textarea;t.contextMenuPending&&t.contextMenuPending();var o=cr(n,e),c=r.scroller.scrollTop;if(o&&!d){n.options.resetSelectionOnContextMenu&&-1==n.doc.sel.contains(o)&&ei(n,Qi)(n.doc,Si(o),W);var u,f=i.style.cssText,h=t.wrapper.style.cssText,p=t.wrapper.offsetParent.getBoundingClientRect();if(t.wrapper.style.cssText="position: static",i.style.cssText="position: absolute; width: 30px; height: 30px;\n top: "+(e.clientY-p.top-5)+"px; left: "+(e.clientX-p.left-5)+"px;\n z-index: 1000; background: "+(a?"rgba(255, 255, 255, .05)":"transparent")+";\n outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);",l&&(u=window.scrollY),r.input.focus(),l&&window.scrollTo(null,u),r.input.reset(),n.somethingSelected()||(i.value=t.prevInput=" "),t.contextMenuPending=g,r.selForContextMenu=n.doc.sel,clearTimeout(r.detectingSelectAll),a&&s>=9&&b(),x){we(e);var m=function(){he(window,"mouseup",m),setTimeout(g,20)};de(window,"mouseup",m)}else setTimeout(g,50)}function b(){if(null!=i.selectionStart){var e=n.somethingSelected(),o="​"+(e?i.value:"");i.value="⇚",i.value=o,t.prevInput=e?"":"​",i.selectionStart=1,i.selectionEnd=o.length,r.selForContextMenu=n.doc.sel}}function g(){if(t.contextMenuPending==g&&(t.contextMenuPending=!1,t.wrapper.style.cssText=h,i.style.cssText=f,a&&s<9&&r.scrollbars.setScrollTop(r.scroller.scrollTop=c),null!=i.selectionStart)){(!a||a&&s<9)&&b();var e=0,o=function(){r.selForContextMenu==n.doc.sel&&0==i.selectionStart&&i.selectionEnd>0&&"​"==t.prevInput?ei(n,so)(n):e++<10?r.detectingSelectAll=setTimeout(o,500):(r.selForContextMenu=null,r.input.reset())};r.detectingSelectAll=setTimeout(o,200)}}},Va.prototype.readOnlyChanged=function(e){e||this.reset(),this.textarea.disabled="nocursor"==e},Va.prototype.setUneditable=function(){},Va.prototype.needsContentAttribute=!1,function(e){var t=e.optionHandlers;function n(n,r,i,o){e.defaults[n]=r,i&&(t[n]=o?function(e,t,n){n!=wa&&i(e,t,n)}:i)}e.defineOption=n,e.Init=wa,n("value","",(function(e,t){return e.setValue(t)}),!0),n("mode",null,(function(e,t){e.doc.modeOption=t,Oi(e)}),!0),n("indentUnit",2,Oi,!0),n("indentWithTabs",!1),n("smartIndent",!0),n("tabSize",4,(function(e){Di(e),Fn(e),dr(e)}),!0),n("lineSeparator",null,(function(e,t){if(e.doc.lineSep=t,t){var n=[],r=e.doc.first;e.doc.iter((function(e){for(var i=0;;){var o=e.text.indexOf(t,i);if(-1==o)break;i=o+t.length,n.push(et(r,o))}r++}));for(var i=n.length-1;i>=0;i--)mo(e.doc,t,n[i],et(n[i].line,n[i].ch+t.length))}})),n("specialChars",/[\u0000-\u001f\u007f-\u009f\u00ad\u061c\u200b-\u200f\u2028\u2029\ufeff\ufff9-\ufffc]/g,(function(e,t,n){e.state.specialChars=new RegExp(t.source+(t.test("\t")?"":"|\t"),"g"),n!=wa&&e.refresh()})),n("specialCharPlaceholder",Xt,(function(e){return e.refresh()}),!0),n("electricChars",!0),n("inputStyle",g?"contenteditable":"textarea",(function(){throw new Error("inputStyle can not (yet) be changed in a running editor")}),!0),n("spellcheck",!1,(function(e,t){return e.getInputField().spellcheck=t}),!0),n("autocorrect",!1,(function(e,t){return e.getInputField().autocorrect=t}),!0),n("autocapitalize",!1,(function(e,t){return e.getInputField().autocapitalize=t}),!0),n("rtlMoveVisually",!_),n("wholeLineUpdateBefore",!0),n("theme","default",(function(e){ka(e),mi(e)}),!0),n("keyMap","default",(function(e,t,n){var r=Jo(t),i=n!=wa&&Jo(n);i&&i.detach&&i.detach(e,r),r.attach&&r.attach(e,i||null)})),n("extraKeys",null),n("configureMouse",null),n("lineWrapping",!1,La,!0),n("gutters",[],(function(e,t){e.display.gutterSpecs=hi(t,e.options.lineNumbers),mi(e)}),!0),n("fixedGutter",!0,(function(e,t){e.display.gutters.style.left=t?ar(e.display)+"px":"0",e.refresh()}),!0),n("coverGutterNextToScrollbar",!1,(function(e){return zr(e)}),!0),n("scrollbarStyle","native",(function(e){Ur(e),zr(e),e.display.scrollbars.setScrollTop(e.doc.scrollTop),e.display.scrollbars.setScrollLeft(e.doc.scrollLeft)}),!0),n("lineNumbers",!1,(function(e,t){e.display.gutterSpecs=hi(e.options.gutters,t),mi(e)}),!0),n("firstLineNumber",1,mi,!0),n("lineNumberFormatter",(function(e){return e}),mi,!0),n("showCursorWhenSelecting",!1,br,!0),n("resetSelectionOnContextMenu",!0),n("lineWiseCopyCut",!0),n("pasteLinesPerSelection",!0),n("selectionsMayTouch",!1),n("readOnly",!1,(function(e,t){"nocursor"==t&&(Sr(e),e.display.input.blur()),e.display.input.readOnlyChanged(t)})),n("screenReaderLabel",null,(function(e,t){t=""===t?null:t,e.display.input.screenReaderLabelChanged(t)})),n("disableInput",!1,(function(e,t){t||e.display.input.reset()}),!0),n("dragDrop",!0,Sa),n("allowDropFileTypes",null),n("cursorBlinkRate",530),n("cursorScrollMargin",0),n("cursorHeight",1,br,!0),n("singleCursorHeightPerLine",!0,br,!0),n("workTime",100),n("workDelay",100),n("flattenSpans",!0,Di,!0),n("addModeClass",!1,Di,!0),n("pollInterval",100),n("undoDepth",200,(function(e,t){return e.doc.history.undoDepth=t})),n("historyEventDelay",1250),n("viewportMargin",10,(function(e){return e.refresh()}),!0),n("maxHighlightLength",1e4,Di,!0),n("moveInputWithCursor",!0,(function(e,t){t||e.display.input.resetPosition()})),n("tabindex",null,(function(e,t){return e.display.input.getField().tabIndex=t||""})),n("autofocus",null),n("direction","ltr",(function(e,t){return e.doc.setDirection(t)}),!0),n("phrases",null)}(Ca),function(e){var t=e.optionHandlers,n=e.helpers={};e.prototype={constructor:e,focus:function(){window.focus(),this.display.input.focus()},setOption:function(e,n){var r=this.options,i=r[e];r[e]==n&&"mode"!=e||(r[e]=n,t.hasOwnProperty(e)&&ei(this,t[e])(this,n,i),pe(this,"optionChange",this,e))},getOption:function(e){return this.options[e]},getDoc:function(){return this.doc},addKeyMap:function(e,t){this.state.keyMaps[t?"push":"unshift"](Jo(e))},removeKeyMap:function(e){for(var t=this.state.keyMaps,n=0;nn&&(Ta(this,i.head.line,e,!0),n=i.head.line,r==this.doc.sel.primIndex&&Dr(this));else{var o=i.from(),a=i.to(),s=Math.max(n,o.line);n=Math.min(this.lastLine(),a.line-(a.ch?0:1))+1;for(var l=s;l0&&Ji(this.doc,r,new xi(o,c[r].to()),W)}}})),getTokenAt:function(e,t){return yt(this,e,t)},getLineTokens:function(e,t){return yt(this,et(e),t,!0)},getTokenTypeAt:function(e){e=st(this.doc,e);var t,n=ft(this,qe(this.doc,e.line)),r=0,i=(n.length-1)/2,o=e.ch;if(0==o)t=n[2];else for(;;){var a=r+i>>1;if((a?n[2*a-1]:0)>=o)i=a;else{if(!(n[2*a+1]o&&(e=o,i=!0),r=qe(this.doc,e)}else r=e;return Un(this,r,{top:0,left:0},t||"page",n||i).top+(i?this.doc.height-Bt(r):0)},defaultTextHeight:function(){return rr(this.display)},defaultCharWidth:function(){return ir(this.display)},getViewport:function(){return{from:this.display.viewFrom,to:this.display.viewTo}},addWidget:function(e,t,n,r,i){var o,a,s,l=this.display,c=(e=Zn(this,st(this.doc,e))).bottom,u=e.left;if(t.style.position="absolute",t.setAttribute("cm-ignore-events","true"),this.display.input.setUneditable(t),l.sizer.appendChild(t),"over"==r)c=e.top;else if("above"==r||"near"==r){var d=Math.max(l.wrapper.clientHeight,this.doc.height),f=Math.max(l.sizer.clientWidth,l.lineSpace.clientWidth);("above"==r||e.bottom+t.offsetHeight>d)&&e.top>t.offsetHeight?c=e.top-t.offsetHeight:e.bottom+t.offsetHeight<=d&&(c=e.bottom),u+t.offsetWidth>f&&(u=f-t.offsetWidth)}t.style.top=c+"px",t.style.left=t.style.right="","right"==i?(u=l.sizer.clientWidth-t.offsetWidth,t.style.right="0px"):("left"==i?u=0:"middle"==i&&(u=(l.sizer.clientWidth-t.offsetWidth)/2),t.style.left=u+"px"),n&&(o=this,a={left:u,top:c,right:u+t.offsetWidth,bottom:c+t.offsetHeight},null!=(s=Tr(o,a)).scrollTop&&Ar(o,s.scrollTop),null!=s.scrollLeft&&Rr(o,s.scrollLeft))},triggerOnKeyDown:ti(ua),triggerOnKeyPress:ti(fa),triggerOnKeyUp:da,triggerOnMouseDown:ti(ba),execCommand:function(e){if(ta.hasOwnProperty(e))return ta[e].call(null,this)},triggerElectric:ti((function(e){Pa(this,e)})),findPosH:function(e,t,n,r){var i=1;t<0&&(i=-1,t=-t);for(var o=st(this.doc,e),a=0;a0&&a(t.charAt(n-1));)--n;for(;r.5||this.options.lineWrapping)&&lr(this),pe(this,"refresh",this)})),swapDoc:ti((function(e){var t=this.doc;return t.cm=null,this.state.selectingText&&this.state.selectingText(),Ai(this,e),Fn(this),this.display.input.reset(),jr(this,e.scrollLeft,e.scrollTop),this.curOp.forceScroll=!0,ln(this,"swapDoc",this,t),t})),phrase:function(e){var t=this.options.phrases;return t&&Object.prototype.hasOwnProperty.call(t,e)?t[e]:e},getInputField:function(){return this.display.input.getField()},getWrapperElement:function(){return this.display.wrapper},getScrollerElement:function(){return this.display.scroller},getGutterElement:function(){return this.display.gutters}},ye(e),e.registerHelper=function(t,r,i){n.hasOwnProperty(t)||(n[t]=e[t]={_global:[]}),n[t][r]=i},e.registerGlobalHelper=function(t,r,i,o){e.registerHelper(t,r,o),n[t]._global.push({pred:i,val:o})}}(Ca);var qa="iter insert remove copy getEditor constructor".split(" ");for(var Za in Do.prototype)Do.prototype.hasOwnProperty(Za)&&F(qa,Za)<0&&(Ca.prototype[Za]=function(e){return function(){return e.apply(this.doc,arguments)}}(Do.prototype[Za]));return ye(Do),Ca.inputStyles={textarea:Va,contenteditable:Fa},Ca.defineMode=function(e){Ca.defaults.mode||"null"==e||(Ca.defaults.mode=e),Re.apply(this,arguments)},Ca.defineMIME=function(e,t){Ne[e]=t},Ca.defineMode("null",(function(){return{token:function(e){return e.skipToEnd()}}})),Ca.defineMIME("text/plain","null"),Ca.defineExtension=function(e,t){Ca.prototype[e]=t},Ca.defineDocExtension=function(e,t){Do.prototype[e]=t},Ca.fromTextArea=function(e,t){if((t=t?R(t):{}).value=e.value,!t.tabindex&&e.tabIndex&&(t.tabindex=e.tabIndex),!t.placeholder&&e.placeholder&&(t.placeholder=e.placeholder),null==t.autofocus){var n=j();t.autofocus=n==e||null!=e.getAttribute("autofocus")&&n==document.body}function r(){e.value=s.getValue()}var i;if(e.form&&(de(e.form,"submit",r),!t.leaveSubmitMethodAlone)){var o=e.form;i=o.submit;try{var a=o.submit=function(){r(),o.submit=i,o.submit(),o.submit=a}}catch(e){}}t.finishInit=function(n){n.save=r,n.getTextArea=function(){return e},n.toTextArea=function(){n.toTextArea=isNaN,r(),e.parentNode.removeChild(n.getWrapperElement()),e.style.display="",e.form&&(he(e.form,"submit",r),t.leaveSubmitMethodAlone||"function"!=typeof e.form.submit||(e.form.submit=i))}},e.style.display="none";var s=Ca((function(t){return e.parentNode.insertBefore(t,e.nextSibling)}),t);return s},function(e){e.off=he,e.on=de,e.wheelEventPixels=_i,e.Doc=Do,e.splitLines=De,e.countColumn=H,e.findColumn=V,e.isWordChar=Q,e.Pass=z,e.signal=pe,e.Line=qt,e.changeEnd=Li,e.scrollbarModel=Br,e.Pos=et,e.cmpPos=tt,e.modes=Ae,e.mimeModes=Ne,e.resolveMode=He,e.getMode=Ie,e.modeExtensions=Fe,e.extendMode=ze,e.copyState=We,e.startState=Ue,e.innerMode=Be,e.commands=ta,e.keyMap=Bo,e.keyName=$o,e.isModifierKey=Zo,e.lookupKey=qo,e.normalizeKeyMap=Vo,e.StringStream=Ve,e.SharedTextMarker=Co,e.TextMarker=So,e.LineWidget=wo,e.e_preventDefault=ve,e.e_stopPropagation=_e,e.e_stop=we,e.addClass=Y,e.contains=D,e.rmClass=L,e.keyNames=Io}(Ca),Ca.version="5.53.2",Ca}()},function(e,t){var n=["input","select","textarea","a[href]","button","[tabindex]","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])'],r=n.join(","),i="undefined"==typeof Element?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector;function o(e,t){t=t||{};var n,o,s,l=[],d=[],f=e.querySelectorAll(r);for(t.includeContainer&&i.call(e,r)&&(f=Array.prototype.slice.apply(f)).unshift(e),n=0;n0&&t.push(u.ofType(n,r));e.allowNode&&t.push(u.ifNotMatch(e.allowNode,r));var i=!e.escapeHtml&&!e.skipHtml,o=(e.astPlugins||[]).some((function(e){return(Array.isArray(e)?e[0]:e).identity===b.HtmlParser}));i&&!o&&t.push(c);return e.astPlugins?t.concat(e.astPlugins):t}(e),k=s.runSync(p),w=_.reduce((function(e,t){return t(e,y)}),k);return d(w,y)};function v(e,t){return Array.isArray(t)?e.use.apply(e,r(t)):e.use(t)}y.defaultProps={renderers:{},escapeHtml:!0,skipHtml:!1,sourcePos:!1,rawSourcePos:!1,transformLinkUri:p,astPlugins:[],plugins:[],parserOptions:{}},y.propTypes={className:s.string,source:s.string,children:s.string,sourcePos:s.bool,rawSourcePos:s.bool,escapeHtml:s.bool,skipHtml:s.bool,allowNode:s.func,allowedTypes:s.arrayOf(s.oneOf(g)),disallowedTypes:s.arrayOf(s.oneOf(g)),transformLinkUri:s.oneOfType([s.func,s.bool]),linkTarget:s.oneOfType([s.func,s.string]),transformImageUri:s.func,astPlugins:s.arrayOf(s.func),unwrapDisallowed:s.bool,renderers:s.object,plugins:s.array,parserOptions:s.object},y.types=g,y.renderers=m,y.uriTransformer=p,e.exports=y},function(e,t){(t=e.exports=function(e){return e.replace(/^\s*|\s*$/g,"")}).left=function(e){return e.replace(/^\s*/,"")},t.right=function(e){return e.replace(/\s*$/,"")}},function(e,t,n){"use strict";e.exports=n(236)},function(e,t,n){"use strict";e.exports=s;var r=n(275),i=r.CONTINUE,o=r.SKIP,a=r.EXIT;function s(e,t,n,i){"function"==typeof t&&"function"!=typeof n&&(i=n,n=t,t=null),r(e,t,(function(e,t){var r=t[t.length-1],i=r?r.children.indexOf(e):null;return n(e,i,r)}),i)}s.CONTINUE=i,s.SKIP=o,s.EXIT=a},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(53);t.isTag=function(e){return r.isTag(e)},t.isCDATA=function(e){return"cdata"===e.type},t.isText=function(e){return"text"===e.type},t.isComment=function(e){return"comment"===e.type},t.hasChildren=function(e){return Object.prototype.hasOwnProperty.call(e,"children")}},function(e,t,n){"use strict";n.r(t),function(e){n.d(t,"ServerStyleSheet",(function(){return Ne})),n.d(t,"StyleSheetConsumer",(function(){return J})),n.d(t,"StyleSheetContext",(function(){return $})),n.d(t,"StyleSheetManager",(function(){return ne})),n.d(t,"ThemeConsumer",(function(){return Ce})),n.d(t,"ThemeContext",(function(){return Le})),n.d(t,"ThemeProvider",(function(){return Ee})),n.d(t,"__PRIVATE__",(function(){return Ie})),n.d(t,"createGlobalStyle",(function(){return Pe})),n.d(t,"css",(function(){return ue})),n.d(t,"isStyledComponent",(function(){return _})),n.d(t,"keyframes",(function(){return Ae})),n.d(t,"useTheme",(function(){return He})),n.d(t,"version",(function(){return Fe})),n.d(t,"withTheme",(function(){return Re}));var r=n(24),i=n(0),o=n.n(i),a=n(219),s=n.n(a),l=n(220),c=n(221),u=n(59),d=n(18),f=n.n(d);function h(){return(h=Object.assign||function(e){for(var t=1;t1?t-1:0),r=1;r0?" Additional arguments: "+n.join(", "):""))}var C=function(e){var t=document.head,n=e||t,r=document.createElement("style"),i=function(e){for(var t=e.childNodes,n=t.length;n>=0;n--){var r=t[n];if(r&&1===r.nodeType&&r.hasAttribute(k))return r}}(n),o=void 0!==i?i.nextSibling:null;r.setAttribute(k,"active"),r.setAttribute("data-styled-version","5.1.0");var a=S();return a&&r.setAttribute("nonce",a),n.insertBefore(r,o),r},E=function(){function e(e){var t=this.element=C(e);t.appendChild(document.createTextNode("")),this.sheet=function(e){if(e.sheet)return e.sheet;for(var t=document.styleSheets,n=0,r=t.length;n=0){var n=document.createTextNode(t),r=this.nodes[e];return this.element.insertBefore(n,r||null),this.length++,!0}return!1},t.deleteRule=function(e){this.element.removeChild(this.nodes[e]),this.length--},t.getRule=function(e){return e=this.groupSizes.length){for(var n=this.groupSizes,r=n.length,i=r;e>=i;)(i<<=1)<0&&L(16,""+e);this.groupSizes=new Uint32Array(i),this.groupSizes.set(n),this.length=i;for(var o=r;o=this.length||0===this.groupSizes[e])return t;for(var n=this.groupSizes[e],r=this.indexOfGroup(e),i=r+n,o=r;o=P&&(P=t+1),j.set(e,t),Y.set(t,e)},H="style["+k+'][data-styled-version="5.1.0"]',I=new RegExp("^"+k+'\\.g(\\d+)\\[id="([\\w\\d-]+)"\\].*?"([^"]*)'),F=function(e,t,n){for(var r,i=n.split(","),o=0,a=i.length;o0&&(c+=e+",")})),r+=""+s+l+'{content:"'+c+'"}/*!sc*/\n'}}}return r}(this)},e}(),V=function(e,t){for(var n=t.length;n;)e=33*e^t.charCodeAt(--n);return e},q=function(e){return V(5381,e)};var Z=/^\s*\/\/.*$/gm;function G(e){var t,n,r,i=void 0===e?g:e,o=i.options,a=void 0===o?g:o,s=i.plugins,c=void 0===s?b:s,u=new l.a(a),d=[],f=function(e){function t(t){if(t)try{e(t+"}")}catch(e){}}return function(n,r,i,o,a,s,l,c,u,d){switch(n){case 1:if(0===u&&64===r.charCodeAt(0))return e(r+";"),"";break;case 2:if(0===c)return r+"/*|*/";break;case 3:switch(c){case 102:case 112:return e(i[0]+r),"";default:return r+(0===d?"/*|*/":"")}case-2:r.split("/*|*/}").forEach(t)}}}((function(e){d.push(e)})),h=function(e,r,i){return r>0&&-1!==i.slice(0,r).indexOf(n)&&i.slice(r-n.length,r)!==n?"."+t:e};function p(e,i,o,a){void 0===a&&(a="&");var s=e.replace(Z,""),l=i&&o?o+" "+i+" { "+s+" }":s;return t=a,n=i,r=new RegExp("\\"+n+"\\b","g"),u(o||!i?"":i,l)}return u.use([].concat(c,[function(e,t,i){2===e&&i.length&&i[0].lastIndexOf(n)>0&&(i[0]=i[0].replace(r,h))},f,function(e){if(-2===e){var t=d;return d=[],t}}])),p.hash=c.length?c.reduce((function(e,t){return t.name||L(15),V(e,t.name)}),5381).toString():"",p}var $=o.a.createContext(),J=$.Consumer,K=o.a.createContext(),X=(K.Consumer,new U),Q=G();function ee(){return Object(i.useContext)($)||X}function te(){return Object(i.useContext)(K)||Q}function ne(e){var t=Object(i.useState)(e.stylisPlugins),n=t[0],r=t[1],a=ee(),l=Object(i.useMemo)((function(){var t=a;return e.sheet?t=e.sheet:e.target&&(t=t.reconstructWithOptions({target:e.target})),e.disableCSSOMInjection&&(t=t.reconstructWithOptions({useCSSOMInjection:!1})),t}),[e.disableCSSOMInjection,e.sheet,e.target]),c=Object(i.useMemo)((function(){return G({options:{prefix:!e.disableVendorPrefixes},plugins:n})}),[e.disableVendorPrefixes,n]);return Object(i.useEffect)((function(){s()(n,e.stylisPlugins)||r(e.stylisPlugins)}),[e.stylisPlugins]),o.a.createElement($.Provider,{value:l},o.a.createElement(K.Provider,{value:c},e.children))}var re=function(){function e(e,t){var n=this;this.inject=function(e){e.hasNameForId(n.id,n.name)||e.insertRules(n.id,n.name,Q.apply(void 0,n.stringifyArgs))},this.toString=function(){return L(12,String(n.name))},this.name=e,this.id="sc-keyframes-"+e,this.stringifyArgs=t}return e.prototype.getName=function(){return this.name},e}(),ie=/([A-Z])/g,oe=/^ms-/;function ae(e){return e.replace(ie,"-$1").toLowerCase().replace(oe,"-ms-")}var se=function(e){return null==e||!1===e||""===e},le=function e(t,n){var r=[];return Object.keys(t).forEach((function(n){if(!se(t[n])){if(m(t[n]))return r.push.apply(r,e(t[n],n)),r;if(y(t[n]))return r.push(ae(n)+":",t[n],";"),r;r.push(ae(n)+": "+(i=n,(null==(o=t[n])||"boolean"==typeof o||""===o?"":"number"!=typeof o||0===o||i in c.a?String(o).trim():o+"px")+";"))}var i,o;return r})),n?[n+" {"].concat(r,["}"]):r};function ce(e,t,n){if(Array.isArray(e)){for(var r,i=[],o=0,a=e.length;o1?t-1:0),r=1;r1?t-1:0),r=1;r25?39:97))};function ge(e){var t,n="";for(t=Math.abs(e);t>52;t=t/52|0)n=be(t%52)+n;return(be(t%52)+n).replace(me,"$1-$2")}function ye(e){for(var t=0;t>>0);if(!t.hasNameForId(r,o)){var a=n(i,"."+o,void 0,r);t.insertRules(r,o,a)}return this.staticRulesId=o,o}for(var s=this.rules.length,l=V(this.baseHash,n.hash),c="",u=0;u>>0);if(!t.hasNameForId(r,p)){var m=n(c,"."+p,void 0,r);t.insertRules(r,p,m)}return p},e}(),_e=(new Set,function(e,t,n){return void 0===n&&(n=g),e.theme!==n.theme&&e.theme||t||n.theme}),ke=/[[\].#*$><+~=|^:(),"'`-]+/g,we=/(^-|-$)/g;function xe(e){return e.replace(ke,"-").replace(we,"")}function Me(e){return"string"==typeof e&&!0}var Se=function(e){return ge(q(e)>>>0)};var Le=o.a.createContext(),Ce=Le.Consumer;function Ee(e){var t=Object(i.useContext)(Le),n=Object(i.useMemo)((function(){return function(e,t){return e?y(e)?e(t):Array.isArray(e)||"object"!=typeof e?L(8):t?h({},t,{},e):e:L(14)}(e.theme,t)}),[e.theme,t]);return e.children?o.a.createElement(Le.Provider,{value:n},e.children):null}var Te={};function Oe(e,t,n){var r=e.attrs,o=e.componentStyle,a=e.defaultProps,s=e.foldedComponentIds,l=e.shouldForwardProp,c=e.styledComponentId,d=e.target;Object(i.useDebugValue)(c);var f=function(e,t,n){void 0===e&&(e=g);var r=h({},t,{theme:e}),i={};return n.forEach((function(e){var t,n,o,a=e;for(t in y(a)&&(a=a(r)),a)r[t]=i[t]="className"===t?(n=i[t],o=a[t],n&&o?n+" "+o:n||o):a[t]})),[r,i]}(_e(t,Object(i.useContext)(Le),a)||g,t,r),p=f[0],m=f[1],b=function(e,t,n,r){var o=ee(),a=te(),s=e.isStatic&&!t?e.generateAndInjectStyles(g,o,a):e.generateAndInjectStyles(n,o,a);return Object(i.useDebugValue)(s),s}(o,r.length>0,p),v=n,_=m.$as||t.$as||m.as||t.as||d,k=Me(_),w=m!==t?h({},t,{},m):t,x=l||k&&u.a,M={};for(var S in w)"$"!==S[0]&&"as"!==S&&("forwardedAs"===S?M.as=w[S]:x&&!x(S,u.a)||(M[S]=w[S]));return t.style&&m.style!==t.style&&(M.style=h({},t.style,{},m.style)),M.className=Array.prototype.concat(s,c,b!==c?b:null,t.className,m.className).filter(Boolean).join(" "),M.ref=v,Object(i.createElement)(_,M)}function De(e,t,n){var r=_(e),i=!Me(e),a=t.displayName,s=void 0===a?function(e){return Me(e)?"styled."+e:"Styled("+v(e)+")"}(e):a,l=t.componentId,c=void 0===l?function(e,t){var n="string"!=typeof e?"sc":xe(e);Te[n]=(Te[n]||0)+1;var r=n+"-"+Se(n+Te[n]);return t?t+"-"+r:r}(t.displayName,t.parentComponentId):l,u=t.attrs,d=void 0===u?b:u,p=t.displayName&&t.componentId?xe(t.displayName)+"-"+t.componentId:t.componentId||c,m=r&&e.attrs?Array.prototype.concat(e.attrs,d).filter(Boolean):d,g=t.shouldForwardProp;r&&e.shouldForwardProp&&(g=g?function(n,r){return e.shouldForwardProp(n,r)&&t.shouldForwardProp(n,r)}:e.shouldForwardProp);var y,k=new ve(r?e.componentStyle.rules.concat(n):n,p),w=function(e,t){return Oe(y,e,t)};return w.displayName=s,(y=o.a.forwardRef(w)).attrs=m,y.componentStyle=k,y.displayName=s,y.shouldForwardProp=g,y.foldedComponentIds=r?Array.prototype.concat(e.foldedComponentIds,e.styledComponentId):b,y.styledComponentId=p,y.target=r?e.target:e,y.withComponent=function(e){var r=t.componentId,i=function(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}(t,["componentId"]),o=r&&r+"-"+(Me(e)?e:xe(v(e)));return De(e,h({},i,{attrs:m,componentId:o}),n)},Object.defineProperty(y,"defaultProps",{get:function(){return this._foldedDefaultProps},set:function(t){this._foldedDefaultProps=r?pe({},e.defaultProps,t):t}}),y.toString=function(){return"."+y.styledComponentId},i&&f()(y,e,{attrs:!0,componentStyle:!0,displayName:!0,foldedComponentIds:!0,shouldForwardProp:!0,self:!0,styledComponentId:!0,target:!0,withComponent:!0}),y}var je=function(e){return function e(t,n,i){if(void 0===i&&(i=g),!Object(r.isValidElementType)(n))return L(1,String(n));var o=function(){return t(n,i,ue.apply(void 0,arguments))};return o.withConfig=function(r){return e(t,n,h({},i,{},r))},o.attrs=function(r){return e(t,n,h({},i,{attrs:Array.prototype.concat(i.attrs,r).filter(Boolean)}))},o}(De,e)};["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","marquee","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","marker","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","tspan"].forEach((function(e){je[e]=je(e)}));var Ye=function(){function e(e,t){this.rules=e,this.componentId=t,this.isStatic=ye(e)}var t=e.prototype;return t.createStyles=function(e,t,n,r){var i=r(ce(this.rules,t,n).join(""),""),o=this.componentId+e;n.insertRules(o,o,i)},t.removeStyles=function(e,t){t.clearRules(this.componentId+e)},t.renderStyles=function(e,t,n,r){U.registerId(this.componentId+e),this.removeStyles(e,n),this.createStyles(e,t,n,r)},e}();function Pe(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r1?t-1:0),r=1;r"+t+""},this.getStyleTags=function(){return e.sealed?L(2):e._emitSheetCSS()},this.getStyleElement=function(){var t;if(e.sealed)return L(2);var n=((t={})[k]="",t["data-styled-version"]="5.1.0",t.dangerouslySetInnerHTML={__html:e.instance.toString()},t),r=S();return r&&(n.nonce=r),[o.a.createElement("style",h({},n,{key:"sc-0-0"}))]},this.seal=function(){e.sealed=!0},this.instance=new U({isServer:!0}),this.sealed=!1}var t=e.prototype;return t.collectStyles=function(e){return this.sealed?L(2):o.a.createElement(ne,{sheet:this.instance},e)},t.interleaveWithNodeStream=function(e){return L(3)},e}(),Re=function(e){var t=o.a.forwardRef((function(t,n){var r=Object(i.useContext)(Le),a=e.defaultProps,s=_e(t,r,a);return o.a.createElement(e,h({},t,{theme:s,ref:n}))}));return f()(t,e),t.displayName="WithTheme("+v(e)+")",t},He=function(){return Object(i.useContext)(Le)},Ie={StyleSheet:U,masterSheet:X},Fe="5.1.0";t.default=je}.call(this,n(36))},function(e,t,n){!function(e){"use strict";e.defineMode("markdown",(function(t,n){var r=e.getMode(t,"text/html"),i="null"==r.name;void 0===n.highlightFormatting&&(n.highlightFormatting=!1),void 0===n.maxBlockquoteDepth&&(n.maxBlockquoteDepth=0),void 0===n.taskLists&&(n.taskLists=!1),void 0===n.strikethrough&&(n.strikethrough=!1),void 0===n.emoji&&(n.emoji=!1),void 0===n.fencedCodeBlockHighlighting&&(n.fencedCodeBlockHighlighting=!0),void 0===n.xml&&(n.xml=!0),void 0===n.tokenTypeOverrides&&(n.tokenTypeOverrides={});var o={header:"header",code:"comment",quote:"quote",list1:"variable-2",list2:"variable-3",list3:"keyword",hr:"hr",image:"image",imageAltText:"image-alt-text",imageMarker:"image-marker",formatting:"formatting",linkInline:"link",linkEmail:"link",linkText:"link",linkHref:"string",em:"em",strong:"strong",strikethrough:"strikethrough",emoji:"builtin"};for(var a in o)o.hasOwnProperty(a)&&n.tokenTypeOverrides[a]&&(o[a]=n.tokenTypeOverrides[a]);var s=/^([*\-_])(?:\s*\1){2,}\s*$/,l=/^(?:[*\-+]|^[0-9]+([.)]))\s+/,c=/^\[(x| )\](?=\s)/i,u=n.allowAtxHeaderWithoutSpace?/^(#+)/:/^(#+)(?: |$)/,d=/^ {0,3}(?:\={1,}|-{2,})\s*$/,f=/^[^#!\[\]*_\\<>` "'(~:]+/,h=/^(~~~+|```+)[ \t]*([\w+#-]*)[^\n`]*$/,p=/^\s*\[[^\]]+?\]:.*$/,m=/[!"#$%&'()*+,\-.\/:;<=>?@\[\\\]^_`{|}~\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u0AF0\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E42\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC9\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDF3C-\uDF3E]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]/;function b(e,t,n){return t.f=t.inline=n,n(e,t)}function g(e,t,n){return t.f=t.block=n,n(e,t)}function y(t){if(t.linkTitle=!1,t.linkHref=!1,t.linkText=!1,t.em=!1,t.strong=!1,t.strikethrough=!1,t.quote=0,t.indentedCode=!1,t.f==_){var n=i;if(!n){var o=e.innerMode(r,t.htmlState);n="xml"==o.mode.name&&null===o.state.tagStart&&!o.state.context&&o.state.tokenize.isInText}n&&(t.f=M,t.block=v,t.htmlState=null)}return t.trailingSpace=0,t.trailingSpaceNewLine=!1,t.prevLine=t.thisLine,t.thisLine={stream:null},null}function v(r,i){var a,f=r.column()===i.indentation,m=!(a=i.prevLine.stream)||!/\S/.test(a.string),g=i.indentedCode,y=i.prevLine.hr,v=!1!==i.list,_=(i.listStack[i.listStack.length-1]||0)+3;i.indentedCode=!1;var x=i.indentation;if(null===i.indentationDiff&&(i.indentationDiff=i.indentation,v)){for(i.list=null;x=4&&(g||i.prevLine.fencedCodeEnd||i.prevLine.header||m))return r.skipToEnd(),i.indentedCode=!0,o.code;if(r.eatSpace())return null;if(f&&i.indentation<=_&&(L=r.match(u))&&L[1].length<=6)return i.quote=0,i.header=L[1].length,i.thisLine.header=!0,n.highlightFormatting&&(i.formatting="header"),i.f=i.inline,w(i);if(i.indentation<=_&&r.eat(">"))return i.quote=f?1:i.quote+1,n.highlightFormatting&&(i.formatting="quote"),r.eatSpace(),w(i);if(!S&&!i.setext&&f&&i.indentation<=_&&(L=r.match(l))){var C=L[1]?"ol":"ul";return i.indentation=x+r.current().length,i.list=!0,i.quote=0,i.listStack.push(i.indentation),i.em=!1,i.strong=!1,i.code=!1,i.strikethrough=!1,n.taskLists&&r.match(c,!1)&&(i.taskList=!0),i.f=i.inline,n.highlightFormatting&&(i.formatting=["list","list-"+C]),w(i)}return f&&i.indentation<=_&&(L=r.match(h,!0))?(i.quote=0,i.fencedEndRE=new RegExp(L[1]+"+ *$"),i.localMode=n.fencedCodeBlockHighlighting&&function(n){if(e.findModeByName){var r=e.findModeByName(n);r&&(n=r.mime||r.mimes[0])}var i=e.getMode(t,n);return"null"==i.name?null:i}(L[2]),i.localMode&&(i.localState=e.startState(i.localMode)),i.f=i.block=k,n.highlightFormatting&&(i.formatting="code-block"),i.code=-1,w(i)):i.setext||!(M&&v||i.quote||!1!==i.list||i.code||S||p.test(r.string))&&(L=r.lookAhead(1))&&(L=L.match(d))?(i.setext?(i.header=i.setext,i.setext=0,r.skipToEnd(),n.highlightFormatting&&(i.formatting="header")):(i.header="="==L[0].charAt(0)?1:2,i.setext=i.header),i.thisLine.header=!0,i.f=i.inline,w(i)):S?(r.skipToEnd(),i.hr=!0,i.thisLine.hr=!0,o.hr):"["===r.peek()?b(r,i,E):b(r,i,i.inline)}function _(t,n){var o=r.token(t,n.htmlState);if(!i){var a=e.innerMode(r,n.htmlState);("xml"==a.mode.name&&null===a.state.tagStart&&!a.state.context&&a.state.tokenize.isInText||n.md_inside&&t.current().indexOf(">")>-1)&&(n.f=M,n.block=v,n.htmlState=null)}return o}function k(e,t){var r,i=t.listStack[t.listStack.length-1]||0,a=t.indentation=e.quote?t.push(o.formatting+"-"+e.formatting[r]+"-"+e.quote):t.push("error"))}if(e.taskOpen)return t.push("meta"),t.length?t.join(" "):null;if(e.taskClosed)return t.push("property"),t.length?t.join(" "):null;if(e.linkHref?t.push(o.linkHref,"url"):(e.strong&&t.push(o.strong),e.em&&t.push(o.em),e.strikethrough&&t.push(o.strikethrough),e.emoji&&t.push(o.emoji),e.linkText&&t.push(o.linkText),e.code&&t.push(o.code),e.image&&t.push(o.image),e.imageAltText&&t.push(o.imageAltText,"link"),e.imageMarker&&t.push(o.imageMarker)),e.header&&t.push(o.header,o.header+"-"+e.header),e.quote&&(t.push(o.quote),!n.maxBlockquoteDepth||n.maxBlockquoteDepth>=e.quote?t.push(o.quote+"-"+e.quote):t.push(o.quote+"-"+n.maxBlockquoteDepth)),!1!==e.list){var i=(e.listStack.length-1)%3;i?1===i?t.push(o.list2):t.push(o.list3):t.push(o.list1)}return e.trailingSpaceNewLine?t.push("trailing-space-new-line"):e.trailingSpace&&t.push("trailing-space-"+(e.trailingSpace%2?"a":"b")),t.length?t.join(" "):null}function x(e,t){if(e.match(f,!0))return w(t)}function M(t,i){var a=i.text(t,i);if(void 0!==a)return a;if(i.list)return i.list=null,w(i);if(i.taskList)return" "===t.match(c,!0)[1]?i.taskOpen=!0:i.taskClosed=!0,n.highlightFormatting&&(i.formatting="task"),i.taskList=!1,w(i);if(i.taskOpen=!1,i.taskClosed=!1,i.header&&t.match(/^#+$/,!0))return n.highlightFormatting&&(i.formatting="header"),w(i);var s=t.next();if(i.linkTitle){i.linkTitle=!1;var l=s;"("===s&&(l=")");var u="^\\s*(?:[^"+(l=(l+"").replace(/([.?*+^\[\]\\(){}|-])/g,"\\$1"))+"\\\\]+|\\\\\\\\|\\\\.)"+l;if(t.match(new RegExp(u),!0))return o.linkHref}if("`"===s){var d=i.formatting;n.highlightFormatting&&(i.formatting="code"),t.eatWhile("`");var f=t.current().length;if(0!=i.code||i.quote&&1!=f){if(f==i.code){var h=w(i);return i.code=0,h}return i.formatting=d,w(i)}return i.code=f,w(i)}if(i.code)return w(i);if("\\"===s&&(t.next(),n.highlightFormatting)){var p=w(i),b=o.formatting+"-escape";return p?p+" "+b:b}if("!"===s&&t.match(/\[[^\]]*\] ?(?:\(|\[)/,!1))return i.imageMarker=!0,i.image=!0,n.highlightFormatting&&(i.formatting="image"),w(i);if("["===s&&i.imageMarker&&t.match(/[^\]]*\](\(.*?\)| ?\[.*?\])/,!1))return i.imageMarker=!1,i.imageAltText=!0,n.highlightFormatting&&(i.formatting="image"),w(i);if("]"===s&&i.imageAltText){n.highlightFormatting&&(i.formatting="image");var p=w(i);return i.imageAltText=!1,i.image=!1,i.inline=i.f=L,p}if("["===s&&!i.image)return i.linkText&&t.match(/^.*?\]/)||(i.linkText=!0,n.highlightFormatting&&(i.formatting="link")),w(i);if("]"===s&&i.linkText){n.highlightFormatting&&(i.formatting="link");var p=w(i);return i.linkText=!1,i.inline=i.f=t.match(/\(.*?\)| ?\[.*?\]/,!1)?L:M,p}if("<"===s&&t.match(/^(https?|ftps?):\/\/(?:[^\\>]|\\.)+>/,!1))return i.f=i.inline=S,n.highlightFormatting&&(i.formatting="link"),(p=w(i))?p+=" ":p="",p+o.linkInline;if("<"===s&&t.match(/^[^> \\]+@(?:[^\\>]|\\.)+>/,!1))return i.f=i.inline=S,n.highlightFormatting&&(i.formatting="link"),(p=w(i))?p+=" ":p="",p+o.linkEmail;if(n.xml&&"<"===s&&t.match(/^(!--|\?|!\[CDATA\[|[a-z][a-z0-9-]*(?:\s+[a-z_:.\-]+(?:\s*=\s*[^>]+)?)*\s*(?:>|$))/i,!1)){var y=t.string.indexOf(">",t.pos);if(-1!=y){var v=t.string.substring(t.start,y);/markdown\s*=\s*('|"){0,1}1('|"){0,1}/.test(v)&&(i.md_inside=!0)}return t.backUp(1),i.htmlState=e.startState(r),g(t,i,_)}if(n.xml&&"<"===s&&t.match(/^\/\w*?>/))return i.md_inside=!1,"tag";if("*"===s||"_"===s){for(var k=1,x=1==t.pos?" ":t.string.charAt(t.pos-2);k<3&&t.eat(s);)k++;var C=t.peek()||" ",E=!/\s/.test(C)&&(!m.test(C)||/\s/.test(x)||m.test(x)),T=!/\s/.test(x)&&(!m.test(x)||/\s/.test(C)||m.test(C)),O=null,D=null;if(k%2&&(i.em||!E||"*"!==s&&T&&!m.test(x)?i.em!=s||!T||"*"!==s&&E&&!m.test(C)||(O=!1):O=!0),k>1&&(i.strong||!E||"*"!==s&&T&&!m.test(x)?i.strong!=s||!T||"*"!==s&&E&&!m.test(C)||(D=!1):D=!0),null!=D||null!=O)return n.highlightFormatting&&(i.formatting=null==O?"strong":null==D?"em":"strong em"),!0===O&&(i.em=s),!0===D&&(i.strong=s),h=w(i),!1===O&&(i.em=!1),!1===D&&(i.strong=!1),h}else if(" "===s&&(t.eat("*")||t.eat("_"))){if(" "===t.peek())return w(i);t.backUp(1)}if(n.strikethrough)if("~"===s&&t.eatWhile(s)){if(i.strikethrough)return n.highlightFormatting&&(i.formatting="strikethrough"),h=w(i),i.strikethrough=!1,h;if(t.match(/^[^\s]/,!1))return i.strikethrough=!0,n.highlightFormatting&&(i.formatting="strikethrough"),w(i)}else if(" "===s&&t.match(/^~~/,!0)){if(" "===t.peek())return w(i);t.backUp(2)}if(n.emoji&&":"===s&&t.match(/^(?:[a-z_\d+][a-z_\d+-]*|\-[a-z_\d+][a-z_\d+-]*):/)){i.emoji=!0,n.highlightFormatting&&(i.formatting="emoji");var j=w(i);return i.emoji=!1,j}return" "===s&&(t.match(/^ +$/,!1)?i.trailingSpace++:i.trailingSpace&&(i.trailingSpaceNewLine=!0)),w(i)}function S(e,t){if(">"===e.next()){t.f=t.inline=M,n.highlightFormatting&&(t.formatting="link");var r=w(t);return r?r+=" ":r="",r+o.linkInline}return e.match(/^[^>]+/,!0),o.linkInline}function L(e,t){if(e.eatSpace())return null;var r,i=e.next();return"("===i||"["===i?(t.f=t.inline=(r="("===i?")":"]",function(e,t){if(e.next()===r){t.f=t.inline=M,n.highlightFormatting&&(t.formatting="link-string");var i=w(t);return t.linkHref=!1,i}return e.match(C[r]),t.linkHref=!0,w(t)}),n.highlightFormatting&&(t.formatting="link-string"),t.linkHref=!0,w(t)):"error"}var C={")":/^(?:[^\\\(\)]|\\.|\((?:[^\\\(\)]|\\.)*\))*?(?=\))/,"]":/^(?:[^\\\[\]]|\\.|\[(?:[^\\\[\]]|\\.)*\])*?(?=\])/};function E(e,t){return e.match(/^([^\]\\]|\\.)*\]:/,!1)?(t.f=T,e.next(),n.highlightFormatting&&(t.formatting="link"),t.linkText=!0,w(t)):b(e,t,M)}function T(e,t){if(e.match(/^\]:/,!0)){t.f=t.inline=O,n.highlightFormatting&&(t.formatting="link");var r=w(t);return t.linkText=!1,r}return e.match(/^([^\]\\]|\\.)+/,!0),o.linkText}function O(e,t){return e.eatSpace()?null:(e.match(/^[^\s]+/,!0),void 0===e.peek()?t.linkTitle=!0:e.match(/^(?:\s+(?:"(?:[^"\\]|\\\\|\\.)+"|'(?:[^'\\]|\\\\|\\.)+'|\((?:[^)\\]|\\\\|\\.)+\)))?/,!0),t.f=t.inline=M,o.linkHref+" url")}var D={startState:function(){return{f:v,prevLine:{stream:null},thisLine:{stream:null},block:v,htmlState:null,indentation:0,inline:M,text:x,formatting:!1,linkText:!1,linkHref:!1,linkTitle:!1,code:0,em:!1,strong:!1,header:0,setext:0,hr:!1,taskList:!1,list:!1,listStack:[],quote:0,trailingSpace:0,trailingSpaceNewLine:!1,strikethrough:!1,emoji:!1,fencedEndRE:null}},copyState:function(t){return{f:t.f,prevLine:t.prevLine,thisLine:t.thisLine,block:t.block,htmlState:t.htmlState&&e.copyState(r,t.htmlState),indentation:t.indentation,localMode:t.localMode,localState:t.localMode?e.copyState(t.localMode,t.localState):null,inline:t.inline,text:t.text,formatting:!1,linkText:t.linkText,linkTitle:t.linkTitle,linkHref:t.linkHref,code:t.code,em:t.em,strong:t.strong,strikethrough:t.strikethrough,emoji:t.emoji,header:t.header,setext:t.setext,hr:t.hr,taskList:t.taskList,list:t.list,listStack:t.listStack.slice(0),quote:t.quote,indentedCode:t.indentedCode,trailingSpace:t.trailingSpace,trailingSpaceNewLine:t.trailingSpaceNewLine,md_inside:t.md_inside,fencedEndRE:t.fencedEndRE}},token:function(e,t){if(t.formatting=!1,e!=t.thisLine.stream){if(t.header=0,t.hr=!1,e.match(/^\s*$/,!0))return y(t),null;if(t.prevLine=t.thisLine,t.thisLine={stream:e},t.taskList=!1,t.trailingSpace=0,t.trailingSpaceNewLine=!1,!t.localState&&(t.f=t.block,t.f!=_)){var n=e.match(/^\s*/,!0)[0].replace(/\t/g," ").length;if(t.indentation=n,t.indentationDiff=null,n>0)return null}}return t.f(e,t)},innerMode:function(e){return e.block==_?{state:e.htmlState,mode:r}:e.localState?{state:e.localState,mode:e.localMode}:{state:e,mode:D}},indent:function(t,n,i){return t.block==_&&r.indent?r.indent(t.htmlState,n,i):t.localState&&t.localMode.indent?t.localMode.indent(t.localState,n,i):e.Pass},blankLine:y,getType:w,blockCommentStart:"\x3c!--",blockCommentEnd:"--\x3e",closeBrackets:"()[]{}''\"\"``",fold:"markdown"};return D}),"xml"),e.defineMIME("text/markdown","markdown"),e.defineMIME("text/x-markdown","markdown")}(n(11),n(60),n(240))},function(e,t,n){"use strict";e.exports=function(e){var t="string"==typeof e?e.charCodeAt(0):e;return t>=48&&t<=57}},function(e,t){e.exports=function(e){return null!=e&&"object"==typeof e&&!0===e["@@functional/placeholder"]}},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},function(e,t,n){"use strict";!function e(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE){0;try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}}(),e.exports=n(228)},function(e,t,n){"use strict";(function(e){var n="object"==typeof e&&e&&e.Object===Object&&e;t.a=n}).call(this,n(19))},function(e,t,n){"use strict";(function(e){var r=n(3),i=n(222),o="object"==typeof exports&&exports&&!exports.nodeType&&exports,a=o&&"object"==typeof e&&e&&!e.nodeType&&e,s=a&&a.exports===o?r.a.Buffer:void 0,l=(s?s.isBuffer:void 0)||i.a;t.a=l}).call(this,n(38)(e))},function(e,t,n){var r;!function(i,o,a){if(i){for(var s,l={8:"backspace",9:"tab",13:"enter",16:"shift",17:"ctrl",18:"alt",20:"capslock",27:"esc",32:"space",33:"pageup",34:"pagedown",35:"end",36:"home",37:"left",38:"up",39:"right",40:"down",45:"ins",46:"del",91:"meta",93:"meta",224:"meta"},c={106:"*",107:"+",109:"-",110:".",111:"/",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"},u={"~":"`","!":"1","@":"2","#":"3",$:"4","%":"5","^":"6","&":"7","*":"8","(":"9",")":"0",_:"-","+":"=",":":";",'"':"'","<":",",">":".","?":"/","|":"\\"},d={option:"alt",command:"meta",return:"enter",escape:"esc",plus:"+",mod:/Mac|iPod|iPhone|iPad/.test(navigator.platform)?"meta":"ctrl"},f=1;f<20;++f)l[111+f]="f"+f;for(f=0;f<=9;++f)l[f+96]=f.toString();y.prototype.bind=function(e,t,n){return e=e instanceof Array?e:[e],this._bindMultiple.call(this,e,t,n),this},y.prototype.unbind=function(e,t){return this.bind.call(this,e,(function(){}),t)},y.prototype.trigger=function(e,t){return this._directMap[e+":"+t]&&this._directMap[e+":"+t]({},e),this},y.prototype.reset=function(){return this._callbacks={},this._directMap={},this},y.prototype.stopCallback=function(e,t){if((" "+t.className+" ").indexOf(" mousetrap ")>-1)return!1;if(function e(t,n){return null!==t&&t!==o&&(t===n||e(t.parentNode,n))}(t,this.target))return!1;if("composedPath"in e&&"function"==typeof e.composedPath){var n=e.composedPath()[0];n!==e.target&&(t=n)}return"INPUT"==t.tagName||"SELECT"==t.tagName||"TEXTAREA"==t.tagName||t.isContentEditable},y.prototype.handleKey=function(){var e=this;return e._handleKey.apply(e,arguments)},y.addKeycodes=function(e){for(var t in e)e.hasOwnProperty(t)&&(l[t]=e[t]);s=null},y.init=function(){var e=y(o);for(var t in e)"_"!==t.charAt(0)&&(y[t]=function(t){return function(){return e[t].apply(e,arguments)}}(t))},y.init(),i.Mousetrap=y,e.exports&&(e.exports=y),void 0===(r=function(){return y}.call(t,n,t,e))||(e.exports=r)}function h(e,t,n){e.addEventListener?e.addEventListener(t,n,!1):e.attachEvent("on"+t,n)}function p(e){if("keypress"==e.type){var t=String.fromCharCode(e.which);return e.shiftKey||(t=t.toLowerCase()),t}return l[e.which]?l[e.which]:c[e.which]?c[e.which]:String.fromCharCode(e.which).toLowerCase()}function m(e){return"shift"==e||"ctrl"==e||"alt"==e||"meta"==e}function b(e,t,n){return n||(n=function(){if(!s)for(var e in s={},l)e>95&&e<112||l.hasOwnProperty(e)&&(s[l[e]]=e);return s}()[e]?"keydown":"keypress"),"keypress"==n&&t.length&&(n="keydown"),n}function g(e,t){var n,r,i,o=[];for(n=function(e){return"+"===e?["+"]:(e=e.replace(/\+{2}/g,"+plus")).split("+")}(e),i=0;i1?f(e,s,n,r):(a=g(e,r),t._callbacks[a.key]=t._callbacks[a.key]||[],c(a.key,a.modifiers,{type:a.action},i,e,o),t._callbacks[a.key][i?"unshift":"push"]({callback:n,modifiers:a.modifiers,action:a.action,seq:i,level:o,combo:e}))}t._handleKey=function(e,t,n){var r,i=c(e,t,n),o={},d=0,f=!1;for(r=0;r1)for(var n=1;n=55296&&K<=57343||K>1114111?(w(7,j),_=u(65533)):_ in i?(w(6,j),_=i[_]):(M="",y(_)&&w(6,j),_>65535&&(M+=u((_-=65536)>>>10|55296),_=56320|1023&_),_=M+u(_))):E!==h&&w(4,j)),_?(Q(),O=X(),V=Y-1,Z+=Y-C+1,J.push(_),(D=X()).offset++,R&&R.call(F,_,{start:O,end:D},e.slice(C-1,Y)),O=D):(f=e.slice(C-1,Y),$+=f,Z+=f.length,V=Y-1)}else 10===v&&(G++,q++,Z=0),v==v?($+=u(v),Z++):Q();var K;return J.join("");function X(){return{line:G,column:Z,offset:V+(W.offset||0)}}function Q(){$&&(J.push($),N&&N.call(I,$,{start:O,end:X()}),$="")}}(e,a)};var c={}.hasOwnProperty,u=String.fromCharCode,d=Function.prototype,f={warning:null,reference:null,text:null,warningContext:null,referenceContext:null,textContext:null,position:{},additional:null,attribute:!1,nonTerminated:!0},h="named",p="hexadecimal",m={hexadecimal:16,decimal:10},b={};b[h]=s,b.decimal=o,b[p]=a;var g={};function y(e){return e>=1&&e<=8||11===e||e>=13&&e<=31||e>=127&&e<=159||e>=64976&&e<=65007||65535==(65535&e)||65534==(65535&e)}g[1]="Named character references must be terminated by a semicolon",g[2]="Numeric character references must be terminated by a semicolon",g[3]="Named character references cannot be empty",g[4]="Numeric character references cannot be empty",g[5]="Named character references must be known",g[6]="Numeric character references cannot be disallowed",g[7]="Numeric character references cannot be outside the permissible Unicode range"},function(e,t,n){"use strict"; -/*! - * repeat-string - * - * Copyright (c) 2014-2015, Jon Schlinkert. - * Licensed under the MIT License. - */var r,i="";e.exports=function(e,t){if("string"!=typeof e)throw new TypeError("expected a string");if(1===t)return e;if(2===t)return e+e;var n=e.length*t;if(r!==e||void 0===r)r=e,i="";else if(i.length>=n)return i.substr(0,n);for(;n>i.length&&t>1;)1&t&&(i+=e),t>>=1,e+=e;return i=(i+=e).substr(0,n)}},function(e,t,n){"use strict";e.exports=function(e){var t=String(e),n=t.length;for(;"\n"===t.charAt(--n););return t.slice(0,n+1)}},function(e,t,n){"use strict";e.exports=function(e,t,n,r){var i,o,a,s,l,c,u=["pedantic","commonmark"],d=u.length,f=e.length,h=-1;for(;++h=0&&"[object Array]"===Object.prototype.toString.call(e)}},function(e,t,n){var r=n(44),i=n(327);e.exports=function(e,t,n){return function(){if(0===arguments.length)return n();var o=Array.prototype.slice.call(arguments,0),a=o.pop();if(!r(a)){for(var s=0;s","GT":">","Gt":"≫","gtdot":"⋗","gtlPar":"⦕","gtquest":"⩼","gtrapprox":"⪆","gtrarr":"⥸","gtrdot":"⋗","gtreqless":"⋛","gtreqqless":"⪌","gtrless":"≷","gtrsim":"≳","gvertneqq":"≩︀","gvnE":"≩︀","Hacek":"ˇ","hairsp":" ","half":"½","hamilt":"ℋ","HARDcy":"Ъ","hardcy":"ъ","harrcir":"⥈","harr":"↔","hArr":"⇔","harrw":"↭","Hat":"^","hbar":"ℏ","Hcirc":"Ĥ","hcirc":"ĥ","hearts":"♥","heartsuit":"♥","hellip":"…","hercon":"⊹","hfr":"𝔥","Hfr":"ℌ","HilbertSpace":"ℋ","hksearow":"⤥","hkswarow":"⤦","hoarr":"⇿","homtht":"∻","hookleftarrow":"↩","hookrightarrow":"↪","hopf":"𝕙","Hopf":"ℍ","horbar":"―","HorizontalLine":"─","hscr":"𝒽","Hscr":"ℋ","hslash":"ℏ","Hstrok":"Ħ","hstrok":"ħ","HumpDownHump":"≎","HumpEqual":"≏","hybull":"⁃","hyphen":"‐","Iacute":"Í","iacute":"í","ic":"⁣","Icirc":"Î","icirc":"î","Icy":"И","icy":"и","Idot":"İ","IEcy":"Е","iecy":"е","iexcl":"¡","iff":"⇔","ifr":"𝔦","Ifr":"ℑ","Igrave":"Ì","igrave":"ì","ii":"ⅈ","iiiint":"⨌","iiint":"∭","iinfin":"⧜","iiota":"℩","IJlig":"IJ","ijlig":"ij","Imacr":"Ī","imacr":"ī","image":"ℑ","ImaginaryI":"ⅈ","imagline":"ℐ","imagpart":"ℑ","imath":"ı","Im":"ℑ","imof":"⊷","imped":"Ƶ","Implies":"⇒","incare":"℅","in":"∈","infin":"∞","infintie":"⧝","inodot":"ı","intcal":"⊺","int":"∫","Int":"∬","integers":"ℤ","Integral":"∫","intercal":"⊺","Intersection":"⋂","intlarhk":"⨗","intprod":"⨼","InvisibleComma":"⁣","InvisibleTimes":"⁢","IOcy":"Ё","iocy":"ё","Iogon":"Į","iogon":"į","Iopf":"𝕀","iopf":"𝕚","Iota":"Ι","iota":"ι","iprod":"⨼","iquest":"¿","iscr":"𝒾","Iscr":"ℐ","isin":"∈","isindot":"⋵","isinE":"⋹","isins":"⋴","isinsv":"⋳","isinv":"∈","it":"⁢","Itilde":"Ĩ","itilde":"ĩ","Iukcy":"І","iukcy":"і","Iuml":"Ï","iuml":"ï","Jcirc":"Ĵ","jcirc":"ĵ","Jcy":"Й","jcy":"й","Jfr":"𝔍","jfr":"𝔧","jmath":"ȷ","Jopf":"𝕁","jopf":"𝕛","Jscr":"𝒥","jscr":"𝒿","Jsercy":"Ј","jsercy":"ј","Jukcy":"Є","jukcy":"є","Kappa":"Κ","kappa":"κ","kappav":"ϰ","Kcedil":"Ķ","kcedil":"ķ","Kcy":"К","kcy":"к","Kfr":"𝔎","kfr":"𝔨","kgreen":"ĸ","KHcy":"Х","khcy":"х","KJcy":"Ќ","kjcy":"ќ","Kopf":"𝕂","kopf":"𝕜","Kscr":"𝒦","kscr":"𝓀","lAarr":"⇚","Lacute":"Ĺ","lacute":"ĺ","laemptyv":"⦴","lagran":"ℒ","Lambda":"Λ","lambda":"λ","lang":"⟨","Lang":"⟪","langd":"⦑","langle":"⟨","lap":"⪅","Laplacetrf":"ℒ","laquo":"«","larrb":"⇤","larrbfs":"⤟","larr":"←","Larr":"↞","lArr":"⇐","larrfs":"⤝","larrhk":"↩","larrlp":"↫","larrpl":"⤹","larrsim":"⥳","larrtl":"↢","latail":"⤙","lAtail":"⤛","lat":"⪫","late":"⪭","lates":"⪭︀","lbarr":"⤌","lBarr":"⤎","lbbrk":"❲","lbrace":"{","lbrack":"[","lbrke":"⦋","lbrksld":"⦏","lbrkslu":"⦍","Lcaron":"Ľ","lcaron":"ľ","Lcedil":"Ļ","lcedil":"ļ","lceil":"⌈","lcub":"{","Lcy":"Л","lcy":"л","ldca":"⤶","ldquo":"“","ldquor":"„","ldrdhar":"⥧","ldrushar":"⥋","ldsh":"↲","le":"≤","lE":"≦","LeftAngleBracket":"⟨","LeftArrowBar":"⇤","leftarrow":"←","LeftArrow":"←","Leftarrow":"⇐","LeftArrowRightArrow":"⇆","leftarrowtail":"↢","LeftCeiling":"⌈","LeftDoubleBracket":"⟦","LeftDownTeeVector":"⥡","LeftDownVectorBar":"⥙","LeftDownVector":"⇃","LeftFloor":"⌊","leftharpoondown":"↽","leftharpoonup":"↼","leftleftarrows":"⇇","leftrightarrow":"↔","LeftRightArrow":"↔","Leftrightarrow":"⇔","leftrightarrows":"⇆","leftrightharpoons":"⇋","leftrightsquigarrow":"↭","LeftRightVector":"⥎","LeftTeeArrow":"↤","LeftTee":"⊣","LeftTeeVector":"⥚","leftthreetimes":"⋋","LeftTriangleBar":"⧏","LeftTriangle":"⊲","LeftTriangleEqual":"⊴","LeftUpDownVector":"⥑","LeftUpTeeVector":"⥠","LeftUpVectorBar":"⥘","LeftUpVector":"↿","LeftVectorBar":"⥒","LeftVector":"↼","lEg":"⪋","leg":"⋚","leq":"≤","leqq":"≦","leqslant":"⩽","lescc":"⪨","les":"⩽","lesdot":"⩿","lesdoto":"⪁","lesdotor":"⪃","lesg":"⋚︀","lesges":"⪓","lessapprox":"⪅","lessdot":"⋖","lesseqgtr":"⋚","lesseqqgtr":"⪋","LessEqualGreater":"⋚","LessFullEqual":"≦","LessGreater":"≶","lessgtr":"≶","LessLess":"⪡","lesssim":"≲","LessSlantEqual":"⩽","LessTilde":"≲","lfisht":"⥼","lfloor":"⌊","Lfr":"𝔏","lfr":"𝔩","lg":"≶","lgE":"⪑","lHar":"⥢","lhard":"↽","lharu":"↼","lharul":"⥪","lhblk":"▄","LJcy":"Љ","ljcy":"љ","llarr":"⇇","ll":"≪","Ll":"⋘","llcorner":"⌞","Lleftarrow":"⇚","llhard":"⥫","lltri":"◺","Lmidot":"Ŀ","lmidot":"ŀ","lmoustache":"⎰","lmoust":"⎰","lnap":"⪉","lnapprox":"⪉","lne":"⪇","lnE":"≨","lneq":"⪇","lneqq":"≨","lnsim":"⋦","loang":"⟬","loarr":"⇽","lobrk":"⟦","longleftarrow":"⟵","LongLeftArrow":"⟵","Longleftarrow":"⟸","longleftrightarrow":"⟷","LongLeftRightArrow":"⟷","Longleftrightarrow":"⟺","longmapsto":"⟼","longrightarrow":"⟶","LongRightArrow":"⟶","Longrightarrow":"⟹","looparrowleft":"↫","looparrowright":"↬","lopar":"⦅","Lopf":"𝕃","lopf":"𝕝","loplus":"⨭","lotimes":"⨴","lowast":"∗","lowbar":"_","LowerLeftArrow":"↙","LowerRightArrow":"↘","loz":"◊","lozenge":"◊","lozf":"⧫","lpar":"(","lparlt":"⦓","lrarr":"⇆","lrcorner":"⌟","lrhar":"⇋","lrhard":"⥭","lrm":"‎","lrtri":"⊿","lsaquo":"‹","lscr":"𝓁","Lscr":"ℒ","lsh":"↰","Lsh":"↰","lsim":"≲","lsime":"⪍","lsimg":"⪏","lsqb":"[","lsquo":"‘","lsquor":"‚","Lstrok":"Ł","lstrok":"ł","ltcc":"⪦","ltcir":"⩹","lt":"<","LT":"<","Lt":"≪","ltdot":"⋖","lthree":"⋋","ltimes":"⋉","ltlarr":"⥶","ltquest":"⩻","ltri":"◃","ltrie":"⊴","ltrif":"◂","ltrPar":"⦖","lurdshar":"⥊","luruhar":"⥦","lvertneqq":"≨︀","lvnE":"≨︀","macr":"¯","male":"♂","malt":"✠","maltese":"✠","Map":"⤅","map":"↦","mapsto":"↦","mapstodown":"↧","mapstoleft":"↤","mapstoup":"↥","marker":"▮","mcomma":"⨩","Mcy":"М","mcy":"м","mdash":"—","mDDot":"∺","measuredangle":"∡","MediumSpace":" ","Mellintrf":"ℳ","Mfr":"𝔐","mfr":"𝔪","mho":"℧","micro":"µ","midast":"*","midcir":"⫰","mid":"∣","middot":"·","minusb":"⊟","minus":"−","minusd":"∸","minusdu":"⨪","MinusPlus":"∓","mlcp":"⫛","mldr":"…","mnplus":"∓","models":"⊧","Mopf":"𝕄","mopf":"𝕞","mp":"∓","mscr":"𝓂","Mscr":"ℳ","mstpos":"∾","Mu":"Μ","mu":"μ","multimap":"⊸","mumap":"⊸","nabla":"∇","Nacute":"Ń","nacute":"ń","nang":"∠⃒","nap":"≉","napE":"⩰̸","napid":"≋̸","napos":"ʼn","napprox":"≉","natural":"♮","naturals":"ℕ","natur":"♮","nbsp":" ","nbump":"≎̸","nbumpe":"≏̸","ncap":"⩃","Ncaron":"Ň","ncaron":"ň","Ncedil":"Ņ","ncedil":"ņ","ncong":"≇","ncongdot":"⩭̸","ncup":"⩂","Ncy":"Н","ncy":"н","ndash":"–","nearhk":"⤤","nearr":"↗","neArr":"⇗","nearrow":"↗","ne":"≠","nedot":"≐̸","NegativeMediumSpace":"​","NegativeThickSpace":"​","NegativeThinSpace":"​","NegativeVeryThinSpace":"​","nequiv":"≢","nesear":"⤨","nesim":"≂̸","NestedGreaterGreater":"≫","NestedLessLess":"≪","NewLine":"\\n","nexist":"∄","nexists":"∄","Nfr":"𝔑","nfr":"𝔫","ngE":"≧̸","nge":"≱","ngeq":"≱","ngeqq":"≧̸","ngeqslant":"⩾̸","nges":"⩾̸","nGg":"⋙̸","ngsim":"≵","nGt":"≫⃒","ngt":"≯","ngtr":"≯","nGtv":"≫̸","nharr":"↮","nhArr":"⇎","nhpar":"⫲","ni":"∋","nis":"⋼","nisd":"⋺","niv":"∋","NJcy":"Њ","njcy":"њ","nlarr":"↚","nlArr":"⇍","nldr":"‥","nlE":"≦̸","nle":"≰","nleftarrow":"↚","nLeftarrow":"⇍","nleftrightarrow":"↮","nLeftrightarrow":"⇎","nleq":"≰","nleqq":"≦̸","nleqslant":"⩽̸","nles":"⩽̸","nless":"≮","nLl":"⋘̸","nlsim":"≴","nLt":"≪⃒","nlt":"≮","nltri":"⋪","nltrie":"⋬","nLtv":"≪̸","nmid":"∤","NoBreak":"⁠","NonBreakingSpace":" ","nopf":"𝕟","Nopf":"ℕ","Not":"⫬","not":"¬","NotCongruent":"≢","NotCupCap":"≭","NotDoubleVerticalBar":"∦","NotElement":"∉","NotEqual":"≠","NotEqualTilde":"≂̸","NotExists":"∄","NotGreater":"≯","NotGreaterEqual":"≱","NotGreaterFullEqual":"≧̸","NotGreaterGreater":"≫̸","NotGreaterLess":"≹","NotGreaterSlantEqual":"⩾̸","NotGreaterTilde":"≵","NotHumpDownHump":"≎̸","NotHumpEqual":"≏̸","notin":"∉","notindot":"⋵̸","notinE":"⋹̸","notinva":"∉","notinvb":"⋷","notinvc":"⋶","NotLeftTriangleBar":"⧏̸","NotLeftTriangle":"⋪","NotLeftTriangleEqual":"⋬","NotLess":"≮","NotLessEqual":"≰","NotLessGreater":"≸","NotLessLess":"≪̸","NotLessSlantEqual":"⩽̸","NotLessTilde":"≴","NotNestedGreaterGreater":"⪢̸","NotNestedLessLess":"⪡̸","notni":"∌","notniva":"∌","notnivb":"⋾","notnivc":"⋽","NotPrecedes":"⊀","NotPrecedesEqual":"⪯̸","NotPrecedesSlantEqual":"⋠","NotReverseElement":"∌","NotRightTriangleBar":"⧐̸","NotRightTriangle":"⋫","NotRightTriangleEqual":"⋭","NotSquareSubset":"⊏̸","NotSquareSubsetEqual":"⋢","NotSquareSuperset":"⊐̸","NotSquareSupersetEqual":"⋣","NotSubset":"⊂⃒","NotSubsetEqual":"⊈","NotSucceeds":"⊁","NotSucceedsEqual":"⪰̸","NotSucceedsSlantEqual":"⋡","NotSucceedsTilde":"≿̸","NotSuperset":"⊃⃒","NotSupersetEqual":"⊉","NotTilde":"≁","NotTildeEqual":"≄","NotTildeFullEqual":"≇","NotTildeTilde":"≉","NotVerticalBar":"∤","nparallel":"∦","npar":"∦","nparsl":"⫽⃥","npart":"∂̸","npolint":"⨔","npr":"⊀","nprcue":"⋠","nprec":"⊀","npreceq":"⪯̸","npre":"⪯̸","nrarrc":"⤳̸","nrarr":"↛","nrArr":"⇏","nrarrw":"↝̸","nrightarrow":"↛","nRightarrow":"⇏","nrtri":"⋫","nrtrie":"⋭","nsc":"⊁","nsccue":"⋡","nsce":"⪰̸","Nscr":"𝒩","nscr":"𝓃","nshortmid":"∤","nshortparallel":"∦","nsim":"≁","nsime":"≄","nsimeq":"≄","nsmid":"∤","nspar":"∦","nsqsube":"⋢","nsqsupe":"⋣","nsub":"⊄","nsubE":"⫅̸","nsube":"⊈","nsubset":"⊂⃒","nsubseteq":"⊈","nsubseteqq":"⫅̸","nsucc":"⊁","nsucceq":"⪰̸","nsup":"⊅","nsupE":"⫆̸","nsupe":"⊉","nsupset":"⊃⃒","nsupseteq":"⊉","nsupseteqq":"⫆̸","ntgl":"≹","Ntilde":"Ñ","ntilde":"ñ","ntlg":"≸","ntriangleleft":"⋪","ntrianglelefteq":"⋬","ntriangleright":"⋫","ntrianglerighteq":"⋭","Nu":"Ν","nu":"ν","num":"#","numero":"№","numsp":" ","nvap":"≍⃒","nvdash":"⊬","nvDash":"⊭","nVdash":"⊮","nVDash":"⊯","nvge":"≥⃒","nvgt":">⃒","nvHarr":"⤄","nvinfin":"⧞","nvlArr":"⤂","nvle":"≤⃒","nvlt":"<⃒","nvltrie":"⊴⃒","nvrArr":"⤃","nvrtrie":"⊵⃒","nvsim":"∼⃒","nwarhk":"⤣","nwarr":"↖","nwArr":"⇖","nwarrow":"↖","nwnear":"⤧","Oacute":"Ó","oacute":"ó","oast":"⊛","Ocirc":"Ô","ocirc":"ô","ocir":"⊚","Ocy":"О","ocy":"о","odash":"⊝","Odblac":"Ő","odblac":"ő","odiv":"⨸","odot":"⊙","odsold":"⦼","OElig":"Œ","oelig":"œ","ofcir":"⦿","Ofr":"𝔒","ofr":"𝔬","ogon":"˛","Ograve":"Ò","ograve":"ò","ogt":"⧁","ohbar":"⦵","ohm":"Ω","oint":"∮","olarr":"↺","olcir":"⦾","olcross":"⦻","oline":"‾","olt":"⧀","Omacr":"Ō","omacr":"ō","Omega":"Ω","omega":"ω","Omicron":"Ο","omicron":"ο","omid":"⦶","ominus":"⊖","Oopf":"𝕆","oopf":"𝕠","opar":"⦷","OpenCurlyDoubleQuote":"“","OpenCurlyQuote":"‘","operp":"⦹","oplus":"⊕","orarr":"↻","Or":"⩔","or":"∨","ord":"⩝","order":"ℴ","orderof":"ℴ","ordf":"ª","ordm":"º","origof":"⊶","oror":"⩖","orslope":"⩗","orv":"⩛","oS":"Ⓢ","Oscr":"𝒪","oscr":"ℴ","Oslash":"Ø","oslash":"ø","osol":"⊘","Otilde":"Õ","otilde":"õ","otimesas":"⨶","Otimes":"⨷","otimes":"⊗","Ouml":"Ö","ouml":"ö","ovbar":"⌽","OverBar":"‾","OverBrace":"⏞","OverBracket":"⎴","OverParenthesis":"⏜","para":"¶","parallel":"∥","par":"∥","parsim":"⫳","parsl":"⫽","part":"∂","PartialD":"∂","Pcy":"П","pcy":"п","percnt":"%","period":".","permil":"‰","perp":"⊥","pertenk":"‱","Pfr":"𝔓","pfr":"𝔭","Phi":"Φ","phi":"φ","phiv":"ϕ","phmmat":"ℳ","phone":"☎","Pi":"Π","pi":"π","pitchfork":"⋔","piv":"ϖ","planck":"ℏ","planckh":"ℎ","plankv":"ℏ","plusacir":"⨣","plusb":"⊞","pluscir":"⨢","plus":"+","plusdo":"∔","plusdu":"⨥","pluse":"⩲","PlusMinus":"±","plusmn":"±","plussim":"⨦","plustwo":"⨧","pm":"±","Poincareplane":"ℌ","pointint":"⨕","popf":"𝕡","Popf":"ℙ","pound":"£","prap":"⪷","Pr":"⪻","pr":"≺","prcue":"≼","precapprox":"⪷","prec":"≺","preccurlyeq":"≼","Precedes":"≺","PrecedesEqual":"⪯","PrecedesSlantEqual":"≼","PrecedesTilde":"≾","preceq":"⪯","precnapprox":"⪹","precneqq":"⪵","precnsim":"⋨","pre":"⪯","prE":"⪳","precsim":"≾","prime":"′","Prime":"″","primes":"ℙ","prnap":"⪹","prnE":"⪵","prnsim":"⋨","prod":"∏","Product":"∏","profalar":"⌮","profline":"⌒","profsurf":"⌓","prop":"∝","Proportional":"∝","Proportion":"∷","propto":"∝","prsim":"≾","prurel":"⊰","Pscr":"𝒫","pscr":"𝓅","Psi":"Ψ","psi":"ψ","puncsp":" ","Qfr":"𝔔","qfr":"𝔮","qint":"⨌","qopf":"𝕢","Qopf":"ℚ","qprime":"⁗","Qscr":"𝒬","qscr":"𝓆","quaternions":"ℍ","quatint":"⨖","quest":"?","questeq":"≟","quot":"\\"","QUOT":"\\"","rAarr":"⇛","race":"∽̱","Racute":"Ŕ","racute":"ŕ","radic":"√","raemptyv":"⦳","rang":"⟩","Rang":"⟫","rangd":"⦒","range":"⦥","rangle":"⟩","raquo":"»","rarrap":"⥵","rarrb":"⇥","rarrbfs":"⤠","rarrc":"⤳","rarr":"→","Rarr":"↠","rArr":"⇒","rarrfs":"⤞","rarrhk":"↪","rarrlp":"↬","rarrpl":"⥅","rarrsim":"⥴","Rarrtl":"⤖","rarrtl":"↣","rarrw":"↝","ratail":"⤚","rAtail":"⤜","ratio":"∶","rationals":"ℚ","rbarr":"⤍","rBarr":"⤏","RBarr":"⤐","rbbrk":"❳","rbrace":"}","rbrack":"]","rbrke":"⦌","rbrksld":"⦎","rbrkslu":"⦐","Rcaron":"Ř","rcaron":"ř","Rcedil":"Ŗ","rcedil":"ŗ","rceil":"⌉","rcub":"}","Rcy":"Р","rcy":"р","rdca":"⤷","rdldhar":"⥩","rdquo":"”","rdquor":"”","rdsh":"↳","real":"ℜ","realine":"ℛ","realpart":"ℜ","reals":"ℝ","Re":"ℜ","rect":"▭","reg":"®","REG":"®","ReverseElement":"∋","ReverseEquilibrium":"⇋","ReverseUpEquilibrium":"⥯","rfisht":"⥽","rfloor":"⌋","rfr":"𝔯","Rfr":"ℜ","rHar":"⥤","rhard":"⇁","rharu":"⇀","rharul":"⥬","Rho":"Ρ","rho":"ρ","rhov":"ϱ","RightAngleBracket":"⟩","RightArrowBar":"⇥","rightarrow":"→","RightArrow":"→","Rightarrow":"⇒","RightArrowLeftArrow":"⇄","rightarrowtail":"↣","RightCeiling":"⌉","RightDoubleBracket":"⟧","RightDownTeeVector":"⥝","RightDownVectorBar":"⥕","RightDownVector":"⇂","RightFloor":"⌋","rightharpoondown":"⇁","rightharpoonup":"⇀","rightleftarrows":"⇄","rightleftharpoons":"⇌","rightrightarrows":"⇉","rightsquigarrow":"↝","RightTeeArrow":"↦","RightTee":"⊢","RightTeeVector":"⥛","rightthreetimes":"⋌","RightTriangleBar":"⧐","RightTriangle":"⊳","RightTriangleEqual":"⊵","RightUpDownVector":"⥏","RightUpTeeVector":"⥜","RightUpVectorBar":"⥔","RightUpVector":"↾","RightVectorBar":"⥓","RightVector":"⇀","ring":"˚","risingdotseq":"≓","rlarr":"⇄","rlhar":"⇌","rlm":"‏","rmoustache":"⎱","rmoust":"⎱","rnmid":"⫮","roang":"⟭","roarr":"⇾","robrk":"⟧","ropar":"⦆","ropf":"𝕣","Ropf":"ℝ","roplus":"⨮","rotimes":"⨵","RoundImplies":"⥰","rpar":")","rpargt":"⦔","rppolint":"⨒","rrarr":"⇉","Rrightarrow":"⇛","rsaquo":"›","rscr":"𝓇","Rscr":"ℛ","rsh":"↱","Rsh":"↱","rsqb":"]","rsquo":"’","rsquor":"’","rthree":"⋌","rtimes":"⋊","rtri":"▹","rtrie":"⊵","rtrif":"▸","rtriltri":"⧎","RuleDelayed":"⧴","ruluhar":"⥨","rx":"℞","Sacute":"Ś","sacute":"ś","sbquo":"‚","scap":"⪸","Scaron":"Š","scaron":"š","Sc":"⪼","sc":"≻","sccue":"≽","sce":"⪰","scE":"⪴","Scedil":"Ş","scedil":"ş","Scirc":"Ŝ","scirc":"ŝ","scnap":"⪺","scnE":"⪶","scnsim":"⋩","scpolint":"⨓","scsim":"≿","Scy":"С","scy":"с","sdotb":"⊡","sdot":"⋅","sdote":"⩦","searhk":"⤥","searr":"↘","seArr":"⇘","searrow":"↘","sect":"§","semi":";","seswar":"⤩","setminus":"∖","setmn":"∖","sext":"✶","Sfr":"𝔖","sfr":"𝔰","sfrown":"⌢","sharp":"♯","SHCHcy":"Щ","shchcy":"щ","SHcy":"Ш","shcy":"ш","ShortDownArrow":"↓","ShortLeftArrow":"←","shortmid":"∣","shortparallel":"∥","ShortRightArrow":"→","ShortUpArrow":"↑","shy":"­","Sigma":"Σ","sigma":"σ","sigmaf":"ς","sigmav":"ς","sim":"∼","simdot":"⩪","sime":"≃","simeq":"≃","simg":"⪞","simgE":"⪠","siml":"⪝","simlE":"⪟","simne":"≆","simplus":"⨤","simrarr":"⥲","slarr":"←","SmallCircle":"∘","smallsetminus":"∖","smashp":"⨳","smeparsl":"⧤","smid":"∣","smile":"⌣","smt":"⪪","smte":"⪬","smtes":"⪬︀","SOFTcy":"Ь","softcy":"ь","solbar":"⌿","solb":"⧄","sol":"/","Sopf":"𝕊","sopf":"𝕤","spades":"♠","spadesuit":"♠","spar":"∥","sqcap":"⊓","sqcaps":"⊓︀","sqcup":"⊔","sqcups":"⊔︀","Sqrt":"√","sqsub":"⊏","sqsube":"⊑","sqsubset":"⊏","sqsubseteq":"⊑","sqsup":"⊐","sqsupe":"⊒","sqsupset":"⊐","sqsupseteq":"⊒","square":"□","Square":"□","SquareIntersection":"⊓","SquareSubset":"⊏","SquareSubsetEqual":"⊑","SquareSuperset":"⊐","SquareSupersetEqual":"⊒","SquareUnion":"⊔","squarf":"▪","squ":"□","squf":"▪","srarr":"→","Sscr":"𝒮","sscr":"𝓈","ssetmn":"∖","ssmile":"⌣","sstarf":"⋆","Star":"⋆","star":"☆","starf":"★","straightepsilon":"ϵ","straightphi":"ϕ","strns":"¯","sub":"⊂","Sub":"⋐","subdot":"⪽","subE":"⫅","sube":"⊆","subedot":"⫃","submult":"⫁","subnE":"⫋","subne":"⊊","subplus":"⪿","subrarr":"⥹","subset":"⊂","Subset":"⋐","subseteq":"⊆","subseteqq":"⫅","SubsetEqual":"⊆","subsetneq":"⊊","subsetneqq":"⫋","subsim":"⫇","subsub":"⫕","subsup":"⫓","succapprox":"⪸","succ":"≻","succcurlyeq":"≽","Succeeds":"≻","SucceedsEqual":"⪰","SucceedsSlantEqual":"≽","SucceedsTilde":"≿","succeq":"⪰","succnapprox":"⪺","succneqq":"⪶","succnsim":"⋩","succsim":"≿","SuchThat":"∋","sum":"∑","Sum":"∑","sung":"♪","sup1":"¹","sup2":"²","sup3":"³","sup":"⊃","Sup":"⋑","supdot":"⪾","supdsub":"⫘","supE":"⫆","supe":"⊇","supedot":"⫄","Superset":"⊃","SupersetEqual":"⊇","suphsol":"⟉","suphsub":"⫗","suplarr":"⥻","supmult":"⫂","supnE":"⫌","supne":"⊋","supplus":"⫀","supset":"⊃","Supset":"⋑","supseteq":"⊇","supseteqq":"⫆","supsetneq":"⊋","supsetneqq":"⫌","supsim":"⫈","supsub":"⫔","supsup":"⫖","swarhk":"⤦","swarr":"↙","swArr":"⇙","swarrow":"↙","swnwar":"⤪","szlig":"ß","Tab":"\\t","target":"⌖","Tau":"Τ","tau":"τ","tbrk":"⎴","Tcaron":"Ť","tcaron":"ť","Tcedil":"Ţ","tcedil":"ţ","Tcy":"Т","tcy":"т","tdot":"⃛","telrec":"⌕","Tfr":"𝔗","tfr":"𝔱","there4":"∴","therefore":"∴","Therefore":"∴","Theta":"Θ","theta":"θ","thetasym":"ϑ","thetav":"ϑ","thickapprox":"≈","thicksim":"∼","ThickSpace":"  ","ThinSpace":" ","thinsp":" ","thkap":"≈","thksim":"∼","THORN":"Þ","thorn":"þ","tilde":"˜","Tilde":"∼","TildeEqual":"≃","TildeFullEqual":"≅","TildeTilde":"≈","timesbar":"⨱","timesb":"⊠","times":"×","timesd":"⨰","tint":"∭","toea":"⤨","topbot":"⌶","topcir":"⫱","top":"⊤","Topf":"𝕋","topf":"𝕥","topfork":"⫚","tosa":"⤩","tprime":"‴","trade":"™","TRADE":"™","triangle":"▵","triangledown":"▿","triangleleft":"◃","trianglelefteq":"⊴","triangleq":"≜","triangleright":"▹","trianglerighteq":"⊵","tridot":"◬","trie":"≜","triminus":"⨺","TripleDot":"⃛","triplus":"⨹","trisb":"⧍","tritime":"⨻","trpezium":"⏢","Tscr":"𝒯","tscr":"𝓉","TScy":"Ц","tscy":"ц","TSHcy":"Ћ","tshcy":"ћ","Tstrok":"Ŧ","tstrok":"ŧ","twixt":"≬","twoheadleftarrow":"↞","twoheadrightarrow":"↠","Uacute":"Ú","uacute":"ú","uarr":"↑","Uarr":"↟","uArr":"⇑","Uarrocir":"⥉","Ubrcy":"Ў","ubrcy":"ў","Ubreve":"Ŭ","ubreve":"ŭ","Ucirc":"Û","ucirc":"û","Ucy":"У","ucy":"у","udarr":"⇅","Udblac":"Ű","udblac":"ű","udhar":"⥮","ufisht":"⥾","Ufr":"𝔘","ufr":"𝔲","Ugrave":"Ù","ugrave":"ù","uHar":"⥣","uharl":"↿","uharr":"↾","uhblk":"▀","ulcorn":"⌜","ulcorner":"⌜","ulcrop":"⌏","ultri":"◸","Umacr":"Ū","umacr":"ū","uml":"¨","UnderBar":"_","UnderBrace":"⏟","UnderBracket":"⎵","UnderParenthesis":"⏝","Union":"⋃","UnionPlus":"⊎","Uogon":"Ų","uogon":"ų","Uopf":"𝕌","uopf":"𝕦","UpArrowBar":"⤒","uparrow":"↑","UpArrow":"↑","Uparrow":"⇑","UpArrowDownArrow":"⇅","updownarrow":"↕","UpDownArrow":"↕","Updownarrow":"⇕","UpEquilibrium":"⥮","upharpoonleft":"↿","upharpoonright":"↾","uplus":"⊎","UpperLeftArrow":"↖","UpperRightArrow":"↗","upsi":"υ","Upsi":"ϒ","upsih":"ϒ","Upsilon":"Υ","upsilon":"υ","UpTeeArrow":"↥","UpTee":"⊥","upuparrows":"⇈","urcorn":"⌝","urcorner":"⌝","urcrop":"⌎","Uring":"Ů","uring":"ů","urtri":"◹","Uscr":"𝒰","uscr":"𝓊","utdot":"⋰","Utilde":"Ũ","utilde":"ũ","utri":"▵","utrif":"▴","uuarr":"⇈","Uuml":"Ü","uuml":"ü","uwangle":"⦧","vangrt":"⦜","varepsilon":"ϵ","varkappa":"ϰ","varnothing":"∅","varphi":"ϕ","varpi":"ϖ","varpropto":"∝","varr":"↕","vArr":"⇕","varrho":"ϱ","varsigma":"ς","varsubsetneq":"⊊︀","varsubsetneqq":"⫋︀","varsupsetneq":"⊋︀","varsupsetneqq":"⫌︀","vartheta":"ϑ","vartriangleleft":"⊲","vartriangleright":"⊳","vBar":"⫨","Vbar":"⫫","vBarv":"⫩","Vcy":"В","vcy":"в","vdash":"⊢","vDash":"⊨","Vdash":"⊩","VDash":"⊫","Vdashl":"⫦","veebar":"⊻","vee":"∨","Vee":"⋁","veeeq":"≚","vellip":"⋮","verbar":"|","Verbar":"‖","vert":"|","Vert":"‖","VerticalBar":"∣","VerticalLine":"|","VerticalSeparator":"❘","VerticalTilde":"≀","VeryThinSpace":" ","Vfr":"𝔙","vfr":"𝔳","vltri":"⊲","vnsub":"⊂⃒","vnsup":"⊃⃒","Vopf":"𝕍","vopf":"𝕧","vprop":"∝","vrtri":"⊳","Vscr":"𝒱","vscr":"𝓋","vsubnE":"⫋︀","vsubne":"⊊︀","vsupnE":"⫌︀","vsupne":"⊋︀","Vvdash":"⊪","vzigzag":"⦚","Wcirc":"Ŵ","wcirc":"ŵ","wedbar":"⩟","wedge":"∧","Wedge":"⋀","wedgeq":"≙","weierp":"℘","Wfr":"𝔚","wfr":"𝔴","Wopf":"𝕎","wopf":"𝕨","wp":"℘","wr":"≀","wreath":"≀","Wscr":"𝒲","wscr":"𝓌","xcap":"⋂","xcirc":"◯","xcup":"⋃","xdtri":"▽","Xfr":"𝔛","xfr":"𝔵","xharr":"⟷","xhArr":"⟺","Xi":"Ξ","xi":"ξ","xlarr":"⟵","xlArr":"⟸","xmap":"⟼","xnis":"⋻","xodot":"⨀","Xopf":"𝕏","xopf":"𝕩","xoplus":"⨁","xotime":"⨂","xrarr":"⟶","xrArr":"⟹","Xscr":"𝒳","xscr":"𝓍","xsqcup":"⨆","xuplus":"⨄","xutri":"△","xvee":"⋁","xwedge":"⋀","Yacute":"Ý","yacute":"ý","YAcy":"Я","yacy":"я","Ycirc":"Ŷ","ycirc":"ŷ","Ycy":"Ы","ycy":"ы","yen":"¥","Yfr":"𝔜","yfr":"𝔶","YIcy":"Ї","yicy":"ї","Yopf":"𝕐","yopf":"𝕪","Yscr":"𝒴","yscr":"𝓎","YUcy":"Ю","yucy":"ю","yuml":"ÿ","Yuml":"Ÿ","Zacute":"Ź","zacute":"ź","Zcaron":"Ž","zcaron":"ž","Zcy":"З","zcy":"з","Zdot":"Ż","zdot":"ż","zeetrf":"ℨ","ZeroWidthSpace":"​","Zeta":"Ζ","zeta":"ζ","zfr":"𝔷","Zfr":"ℨ","ZHcy":"Ж","zhcy":"ж","zigrarr":"⇝","zopf":"𝕫","Zopf":"ℤ","Zscr":"𝒵","zscr":"𝓏","zwj":"‍","zwnj":"‌"}')},function(e){e.exports=JSON.parse('{"amp":"&","apos":"\'","gt":">","lt":"<","quot":"\\""}')},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(350);t.Node=r.Node,t.Element=r.Element,t.DataNode=r.DataNode,t.NodeWithChildren=r.NodeWithChildren;var i=/\s+/g,o={normalizeWhitespace:!1,withStartIndices:!1,withEndIndices:!1},a=function(){function e(e,t,n){this.dom=[],this._done=!1,this._tagStack=[],this._lastNode=null,this._parser=null,"function"==typeof t&&(n=t,t=o),"object"==typeof e&&(t=e,e=void 0),this._callback=e||null,this._options=t||o,this._elementCB=n||null}return e.prototype.onparserinit=function(e){this._parser=e},e.prototype.onreset=function(){this.dom=[],this._done=!1,this._tagStack=[],this._lastNode=null,this._parser=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();e&&this._parser&&(this._options.withEndIndices&&(e.endIndex=this._parser.endIndex),this._elementCB&&this._elementCB(e))},e.prototype.onopentag=function(e,t){var n=new r.Element(e,t);this.addNode(n),this._tagStack.push(n)},e.prototype.ontext=function(e){var t=this._options.normalizeWhitespace,n=this._lastNode;if(n&&"text"===n.type)t?n.data=(n.data+e).replace(i," "):n.data+=e;else{t&&(e=e.replace(i," "));var o=new r.DataNode("text",e);this.addNode(o),this._lastNode=o}},e.prototype.oncomment=function(e){if(this._lastNode&&"comment"===this._lastNode.type)this._lastNode.data+=e;else{var t=new r.DataNode("comment",e);this.addNode(t),this._lastNode=t}},e.prototype.oncommentend=function(){this._lastNode=null},e.prototype.oncdatastart=function(){var e=new r.DataNode("text",""),t=new r.NodeWithChildren("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 r.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?t.children:this.dom,r=n[n.length-1];this._parser&&(this._options.withStartIndices&&(e.startIndex=this._parser.startIndex),this._options.withEndIndices&&(e.endIndex=this._parser.endIndex)),n.push(e),r&&(e.prev=r,r.next=e),t&&(e.parent=t),this._lastNode=null},e.prototype.addDataNode=function(e){this.addNode(e),this._lastNode=e},e}();t.DomHandler=a,t.default=a},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isTag=function(e){return"tag"===e.type||"script"===e.type||"style"===e.type},t.Text="text",t.Directive="directive",t.Comment="comment",t.Script="script",t.Style="style",t.Tag="tag",t.CDATA="cdata",t.Doctype="doctype"},function(e,t,n){(function(e){!function(e,t){"use strict";function r(e,t){if(!e)throw new Error(t||"Assertion failed")}function i(e,t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e}function o(e,t,n){if(o.isBN(e))return e;this.negative=0,this.words=null,this.length=0,this.red=null,null!==e&&("le"!==t&&"be"!==t||(n=t,t=10),this._init(e||0,t||10,n||"be"))}var a;"object"==typeof e?e.exports=o:t.BN=o,o.BN=o,o.wordSize=26;try{a=n(381).Buffer}catch(e){}function s(e,t,n){for(var r=0,i=Math.min(e.length,n),o=t;o=49&&a<=54?a-49+10:a>=17&&a<=22?a-17+10:15&a}return r}function l(e,t,n,r){for(var i=0,o=Math.min(e.length,n),a=t;a=49?s-49+10:s>=17?s-17+10:s}return i}o.isBN=function(e){return e instanceof o||null!==e&&"object"==typeof e&&e.constructor.wordSize===o.wordSize&&Array.isArray(e.words)},o.max=function(e,t){return e.cmp(t)>0?e:t},o.min=function(e,t){return e.cmp(t)<0?e:t},o.prototype._init=function(e,t,n){if("number"==typeof e)return this._initNumber(e,t,n);if("object"==typeof e)return this._initArray(e,t,n);"hex"===t&&(t=16),r(t===(0|t)&&t>=2&&t<=36);var i=0;"-"===(e=e.toString().replace(/\s+/g,""))[0]&&i++,16===t?this._parseHex(e,i):this._parseBase(e,t,i),"-"===e[0]&&(this.negative=1),this.strip(),"le"===n&&this._initArray(this.toArray(),t,n)},o.prototype._initNumber=function(e,t,n){e<0&&(this.negative=1,e=-e),e<67108864?(this.words=[67108863&e],this.length=1):e<4503599627370496?(this.words=[67108863&e,e/67108864&67108863],this.length=2):(r(e<9007199254740992),this.words=[67108863&e,e/67108864&67108863,1],this.length=3),"le"===n&&this._initArray(this.toArray(),t,n)},o.prototype._initArray=function(e,t,n){if(r("number"==typeof e.length),e.length<=0)return this.words=[0],this.length=1,this;this.length=Math.ceil(e.length/3),this.words=new Array(this.length);for(var i=0;i=0;i-=3)a=e[i]|e[i-1]<<8|e[i-2]<<16,this.words[o]|=a<>>26-s&67108863,(s+=24)>=26&&(s-=26,o++);else if("le"===n)for(i=0,o=0;i>>26-s&67108863,(s+=24)>=26&&(s-=26,o++);return this.strip()},o.prototype._parseHex=function(e,t){this.length=Math.ceil((e.length-t)/6),this.words=new Array(this.length);for(var n=0;n=t;n-=6)i=s(e,n,n+6),this.words[r]|=i<>>26-o&4194303,(o+=24)>=26&&(o-=26,r++);n+6!==t&&(i=s(e,t,n+6),this.words[r]|=i<>>26-o&4194303),this.strip()},o.prototype._parseBase=function(e,t,n){this.words=[0],this.length=1;for(var r=0,i=1;i<=67108863;i*=t)r++;r--,i=i/t|0;for(var o=e.length-n,a=o%r,s=Math.min(o,o-a)+n,c=0,u=n;u1&&0===this.words[this.length-1];)this.length--;return this._normSign()},o.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},o.prototype.inspect=function(){return(this.red?""};var c=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],u=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],d=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function f(e,t,n){n.negative=t.negative^e.negative;var r=e.length+t.length|0;n.length=r,r=r-1|0;var i=0|e.words[0],o=0|t.words[0],a=i*o,s=67108863&a,l=a/67108864|0;n.words[0]=s;for(var c=1;c>>26,d=67108863&l,f=Math.min(c,t.length-1),h=Math.max(0,c-e.length+1);h<=f;h++){var p=c-h|0;u+=(a=(i=0|e.words[p])*(o=0|t.words[h])+d)/67108864|0,d=67108863&a}n.words[c]=0|d,l=0|u}return 0!==l?n.words[c]=0|l:n.length--,n.strip()}o.prototype.toString=function(e,t){var n;if(t=0|t||1,16===(e=e||10)||"hex"===e){n="";for(var i=0,o=0,a=0;a>>24-i&16777215)||a!==this.length-1?c[6-l.length]+l+n:l+n,(i+=2)>=26&&(i-=26,a--)}for(0!==o&&(n=o.toString(16)+n);n.length%t!=0;)n="0"+n;return 0!==this.negative&&(n="-"+n),n}if(e===(0|e)&&e>=2&&e<=36){var f=u[e],h=d[e];n="";var p=this.clone();for(p.negative=0;!p.isZero();){var m=p.modn(h).toString(e);n=(p=p.idivn(h)).isZero()?m+n:c[f-m.length]+m+n}for(this.isZero()&&(n="0"+n);n.length%t!=0;)n="0"+n;return 0!==this.negative&&(n="-"+n),n}r(!1,"Base should be between 2 and 36")},o.prototype.toNumber=function(){var e=this.words[0];return 2===this.length?e+=67108864*this.words[1]:3===this.length&&1===this.words[2]?e+=4503599627370496+67108864*this.words[1]:this.length>2&&r(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-e:e},o.prototype.toJSON=function(){return this.toString(16)},o.prototype.toBuffer=function(e,t){return r(void 0!==a),this.toArrayLike(a,e,t)},o.prototype.toArray=function(e,t){return this.toArrayLike(Array,e,t)},o.prototype.toArrayLike=function(e,t,n){var i=this.byteLength(),o=n||Math.max(1,i);r(i<=o,"byte array longer than desired length"),r(o>0,"Requested array length <= 0"),this.strip();var a,s,l="le"===t,c=new e(o),u=this.clone();if(l){for(s=0;!u.isZero();s++)a=u.andln(255),u.iushrn(8),c[s]=a;for(;s=4096&&(n+=13,t>>>=13),t>=64&&(n+=7,t>>>=7),t>=8&&(n+=4,t>>>=4),t>=2&&(n+=2,t>>>=2),n+t},o.prototype._zeroBits=function(e){if(0===e)return 26;var t=e,n=0;return 0==(8191&t)&&(n+=13,t>>>=13),0==(127&t)&&(n+=7,t>>>=7),0==(15&t)&&(n+=4,t>>>=4),0==(3&t)&&(n+=2,t>>>=2),0==(1&t)&&n++,n},o.prototype.bitLength=function(){var e=this.words[this.length-1],t=this._countBits(e);return 26*(this.length-1)+t},o.prototype.zeroBits=function(){if(this.isZero())return 0;for(var e=0,t=0;te.length?this.clone().ior(e):e.clone().ior(this)},o.prototype.uor=function(e){return this.length>e.length?this.clone().iuor(e):e.clone().iuor(this)},o.prototype.iuand=function(e){var t;t=this.length>e.length?e:this;for(var n=0;ne.length?this.clone().iand(e):e.clone().iand(this)},o.prototype.uand=function(e){return this.length>e.length?this.clone().iuand(e):e.clone().iuand(this)},o.prototype.iuxor=function(e){var t,n;this.length>e.length?(t=this,n=e):(t=e,n=this);for(var r=0;re.length?this.clone().ixor(e):e.clone().ixor(this)},o.prototype.uxor=function(e){return this.length>e.length?this.clone().iuxor(e):e.clone().iuxor(this)},o.prototype.inotn=function(e){r("number"==typeof e&&e>=0);var t=0|Math.ceil(e/26),n=e%26;this._expand(t),n>0&&t--;for(var i=0;i0&&(this.words[i]=~this.words[i]&67108863>>26-n),this.strip()},o.prototype.notn=function(e){return this.clone().inotn(e)},o.prototype.setn=function(e,t){r("number"==typeof e&&e>=0);var n=e/26|0,i=e%26;return this._expand(n+1),this.words[n]=t?this.words[n]|1<e.length?(n=this,r=e):(n=e,r=this);for(var i=0,o=0;o>>26;for(;0!==i&&o>>26;if(this.length=n.length,0!==i)this.words[this.length]=i,this.length++;else if(n!==this)for(;oe.length?this.clone().iadd(e):e.clone().iadd(this)},o.prototype.isub=function(e){if(0!==e.negative){e.negative=0;var t=this.iadd(e);return e.negative=1,t._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(e),this.negative=1,this._normSign();var n,r,i=this.cmp(e);if(0===i)return this.negative=0,this.length=1,this.words[0]=0,this;i>0?(n=this,r=e):(n=e,r=this);for(var o=0,a=0;a>26,this.words[a]=67108863&t;for(;0!==o&&a>26,this.words[a]=67108863&t;if(0===o&&a>>13,h=0|a[1],p=8191&h,m=h>>>13,b=0|a[2],g=8191&b,y=b>>>13,v=0|a[3],_=8191&v,k=v>>>13,w=0|a[4],x=8191&w,M=w>>>13,S=0|a[5],L=8191&S,C=S>>>13,E=0|a[6],T=8191&E,O=E>>>13,D=0|a[7],j=8191&D,Y=D>>>13,P=0|a[8],A=8191&P,N=P>>>13,R=0|a[9],H=8191&R,I=R>>>13,F=0|s[0],z=8191&F,W=F>>>13,B=0|s[1],U=8191&B,V=B>>>13,q=0|s[2],Z=8191&q,G=q>>>13,$=0|s[3],J=8191&$,K=$>>>13,X=0|s[4],Q=8191&X,ee=X>>>13,te=0|s[5],ne=8191&te,re=te>>>13,ie=0|s[6],oe=8191&ie,ae=ie>>>13,se=0|s[7],le=8191&se,ce=se>>>13,ue=0|s[8],de=8191&ue,fe=ue>>>13,he=0|s[9],pe=8191&he,me=he>>>13;n.negative=e.negative^t.negative,n.length=19;var be=(c+(r=Math.imul(d,z))|0)+((8191&(i=(i=Math.imul(d,W))+Math.imul(f,z)|0))<<13)|0;c=((o=Math.imul(f,W))+(i>>>13)|0)+(be>>>26)|0,be&=67108863,r=Math.imul(p,z),i=(i=Math.imul(p,W))+Math.imul(m,z)|0,o=Math.imul(m,W);var ge=(c+(r=r+Math.imul(d,U)|0)|0)+((8191&(i=(i=i+Math.imul(d,V)|0)+Math.imul(f,U)|0))<<13)|0;c=((o=o+Math.imul(f,V)|0)+(i>>>13)|0)+(ge>>>26)|0,ge&=67108863,r=Math.imul(g,z),i=(i=Math.imul(g,W))+Math.imul(y,z)|0,o=Math.imul(y,W),r=r+Math.imul(p,U)|0,i=(i=i+Math.imul(p,V)|0)+Math.imul(m,U)|0,o=o+Math.imul(m,V)|0;var ye=(c+(r=r+Math.imul(d,Z)|0)|0)+((8191&(i=(i=i+Math.imul(d,G)|0)+Math.imul(f,Z)|0))<<13)|0;c=((o=o+Math.imul(f,G)|0)+(i>>>13)|0)+(ye>>>26)|0,ye&=67108863,r=Math.imul(_,z),i=(i=Math.imul(_,W))+Math.imul(k,z)|0,o=Math.imul(k,W),r=r+Math.imul(g,U)|0,i=(i=i+Math.imul(g,V)|0)+Math.imul(y,U)|0,o=o+Math.imul(y,V)|0,r=r+Math.imul(p,Z)|0,i=(i=i+Math.imul(p,G)|0)+Math.imul(m,Z)|0,o=o+Math.imul(m,G)|0;var ve=(c+(r=r+Math.imul(d,J)|0)|0)+((8191&(i=(i=i+Math.imul(d,K)|0)+Math.imul(f,J)|0))<<13)|0;c=((o=o+Math.imul(f,K)|0)+(i>>>13)|0)+(ve>>>26)|0,ve&=67108863,r=Math.imul(x,z),i=(i=Math.imul(x,W))+Math.imul(M,z)|0,o=Math.imul(M,W),r=r+Math.imul(_,U)|0,i=(i=i+Math.imul(_,V)|0)+Math.imul(k,U)|0,o=o+Math.imul(k,V)|0,r=r+Math.imul(g,Z)|0,i=(i=i+Math.imul(g,G)|0)+Math.imul(y,Z)|0,o=o+Math.imul(y,G)|0,r=r+Math.imul(p,J)|0,i=(i=i+Math.imul(p,K)|0)+Math.imul(m,J)|0,o=o+Math.imul(m,K)|0;var _e=(c+(r=r+Math.imul(d,Q)|0)|0)+((8191&(i=(i=i+Math.imul(d,ee)|0)+Math.imul(f,Q)|0))<<13)|0;c=((o=o+Math.imul(f,ee)|0)+(i>>>13)|0)+(_e>>>26)|0,_e&=67108863,r=Math.imul(L,z),i=(i=Math.imul(L,W))+Math.imul(C,z)|0,o=Math.imul(C,W),r=r+Math.imul(x,U)|0,i=(i=i+Math.imul(x,V)|0)+Math.imul(M,U)|0,o=o+Math.imul(M,V)|0,r=r+Math.imul(_,Z)|0,i=(i=i+Math.imul(_,G)|0)+Math.imul(k,Z)|0,o=o+Math.imul(k,G)|0,r=r+Math.imul(g,J)|0,i=(i=i+Math.imul(g,K)|0)+Math.imul(y,J)|0,o=o+Math.imul(y,K)|0,r=r+Math.imul(p,Q)|0,i=(i=i+Math.imul(p,ee)|0)+Math.imul(m,Q)|0,o=o+Math.imul(m,ee)|0;var ke=(c+(r=r+Math.imul(d,ne)|0)|0)+((8191&(i=(i=i+Math.imul(d,re)|0)+Math.imul(f,ne)|0))<<13)|0;c=((o=o+Math.imul(f,re)|0)+(i>>>13)|0)+(ke>>>26)|0,ke&=67108863,r=Math.imul(T,z),i=(i=Math.imul(T,W))+Math.imul(O,z)|0,o=Math.imul(O,W),r=r+Math.imul(L,U)|0,i=(i=i+Math.imul(L,V)|0)+Math.imul(C,U)|0,o=o+Math.imul(C,V)|0,r=r+Math.imul(x,Z)|0,i=(i=i+Math.imul(x,G)|0)+Math.imul(M,Z)|0,o=o+Math.imul(M,G)|0,r=r+Math.imul(_,J)|0,i=(i=i+Math.imul(_,K)|0)+Math.imul(k,J)|0,o=o+Math.imul(k,K)|0,r=r+Math.imul(g,Q)|0,i=(i=i+Math.imul(g,ee)|0)+Math.imul(y,Q)|0,o=o+Math.imul(y,ee)|0,r=r+Math.imul(p,ne)|0,i=(i=i+Math.imul(p,re)|0)+Math.imul(m,ne)|0,o=o+Math.imul(m,re)|0;var we=(c+(r=r+Math.imul(d,oe)|0)|0)+((8191&(i=(i=i+Math.imul(d,ae)|0)+Math.imul(f,oe)|0))<<13)|0;c=((o=o+Math.imul(f,ae)|0)+(i>>>13)|0)+(we>>>26)|0,we&=67108863,r=Math.imul(j,z),i=(i=Math.imul(j,W))+Math.imul(Y,z)|0,o=Math.imul(Y,W),r=r+Math.imul(T,U)|0,i=(i=i+Math.imul(T,V)|0)+Math.imul(O,U)|0,o=o+Math.imul(O,V)|0,r=r+Math.imul(L,Z)|0,i=(i=i+Math.imul(L,G)|0)+Math.imul(C,Z)|0,o=o+Math.imul(C,G)|0,r=r+Math.imul(x,J)|0,i=(i=i+Math.imul(x,K)|0)+Math.imul(M,J)|0,o=o+Math.imul(M,K)|0,r=r+Math.imul(_,Q)|0,i=(i=i+Math.imul(_,ee)|0)+Math.imul(k,Q)|0,o=o+Math.imul(k,ee)|0,r=r+Math.imul(g,ne)|0,i=(i=i+Math.imul(g,re)|0)+Math.imul(y,ne)|0,o=o+Math.imul(y,re)|0,r=r+Math.imul(p,oe)|0,i=(i=i+Math.imul(p,ae)|0)+Math.imul(m,oe)|0,o=o+Math.imul(m,ae)|0;var xe=(c+(r=r+Math.imul(d,le)|0)|0)+((8191&(i=(i=i+Math.imul(d,ce)|0)+Math.imul(f,le)|0))<<13)|0;c=((o=o+Math.imul(f,ce)|0)+(i>>>13)|0)+(xe>>>26)|0,xe&=67108863,r=Math.imul(A,z),i=(i=Math.imul(A,W))+Math.imul(N,z)|0,o=Math.imul(N,W),r=r+Math.imul(j,U)|0,i=(i=i+Math.imul(j,V)|0)+Math.imul(Y,U)|0,o=o+Math.imul(Y,V)|0,r=r+Math.imul(T,Z)|0,i=(i=i+Math.imul(T,G)|0)+Math.imul(O,Z)|0,o=o+Math.imul(O,G)|0,r=r+Math.imul(L,J)|0,i=(i=i+Math.imul(L,K)|0)+Math.imul(C,J)|0,o=o+Math.imul(C,K)|0,r=r+Math.imul(x,Q)|0,i=(i=i+Math.imul(x,ee)|0)+Math.imul(M,Q)|0,o=o+Math.imul(M,ee)|0,r=r+Math.imul(_,ne)|0,i=(i=i+Math.imul(_,re)|0)+Math.imul(k,ne)|0,o=o+Math.imul(k,re)|0,r=r+Math.imul(g,oe)|0,i=(i=i+Math.imul(g,ae)|0)+Math.imul(y,oe)|0,o=o+Math.imul(y,ae)|0,r=r+Math.imul(p,le)|0,i=(i=i+Math.imul(p,ce)|0)+Math.imul(m,le)|0,o=o+Math.imul(m,ce)|0;var Me=(c+(r=r+Math.imul(d,de)|0)|0)+((8191&(i=(i=i+Math.imul(d,fe)|0)+Math.imul(f,de)|0))<<13)|0;c=((o=o+Math.imul(f,fe)|0)+(i>>>13)|0)+(Me>>>26)|0,Me&=67108863,r=Math.imul(H,z),i=(i=Math.imul(H,W))+Math.imul(I,z)|0,o=Math.imul(I,W),r=r+Math.imul(A,U)|0,i=(i=i+Math.imul(A,V)|0)+Math.imul(N,U)|0,o=o+Math.imul(N,V)|0,r=r+Math.imul(j,Z)|0,i=(i=i+Math.imul(j,G)|0)+Math.imul(Y,Z)|0,o=o+Math.imul(Y,G)|0,r=r+Math.imul(T,J)|0,i=(i=i+Math.imul(T,K)|0)+Math.imul(O,J)|0,o=o+Math.imul(O,K)|0,r=r+Math.imul(L,Q)|0,i=(i=i+Math.imul(L,ee)|0)+Math.imul(C,Q)|0,o=o+Math.imul(C,ee)|0,r=r+Math.imul(x,ne)|0,i=(i=i+Math.imul(x,re)|0)+Math.imul(M,ne)|0,o=o+Math.imul(M,re)|0,r=r+Math.imul(_,oe)|0,i=(i=i+Math.imul(_,ae)|0)+Math.imul(k,oe)|0,o=o+Math.imul(k,ae)|0,r=r+Math.imul(g,le)|0,i=(i=i+Math.imul(g,ce)|0)+Math.imul(y,le)|0,o=o+Math.imul(y,ce)|0,r=r+Math.imul(p,de)|0,i=(i=i+Math.imul(p,fe)|0)+Math.imul(m,de)|0,o=o+Math.imul(m,fe)|0;var Se=(c+(r=r+Math.imul(d,pe)|0)|0)+((8191&(i=(i=i+Math.imul(d,me)|0)+Math.imul(f,pe)|0))<<13)|0;c=((o=o+Math.imul(f,me)|0)+(i>>>13)|0)+(Se>>>26)|0,Se&=67108863,r=Math.imul(H,U),i=(i=Math.imul(H,V))+Math.imul(I,U)|0,o=Math.imul(I,V),r=r+Math.imul(A,Z)|0,i=(i=i+Math.imul(A,G)|0)+Math.imul(N,Z)|0,o=o+Math.imul(N,G)|0,r=r+Math.imul(j,J)|0,i=(i=i+Math.imul(j,K)|0)+Math.imul(Y,J)|0,o=o+Math.imul(Y,K)|0,r=r+Math.imul(T,Q)|0,i=(i=i+Math.imul(T,ee)|0)+Math.imul(O,Q)|0,o=o+Math.imul(O,ee)|0,r=r+Math.imul(L,ne)|0,i=(i=i+Math.imul(L,re)|0)+Math.imul(C,ne)|0,o=o+Math.imul(C,re)|0,r=r+Math.imul(x,oe)|0,i=(i=i+Math.imul(x,ae)|0)+Math.imul(M,oe)|0,o=o+Math.imul(M,ae)|0,r=r+Math.imul(_,le)|0,i=(i=i+Math.imul(_,ce)|0)+Math.imul(k,le)|0,o=o+Math.imul(k,ce)|0,r=r+Math.imul(g,de)|0,i=(i=i+Math.imul(g,fe)|0)+Math.imul(y,de)|0,o=o+Math.imul(y,fe)|0;var Le=(c+(r=r+Math.imul(p,pe)|0)|0)+((8191&(i=(i=i+Math.imul(p,me)|0)+Math.imul(m,pe)|0))<<13)|0;c=((o=o+Math.imul(m,me)|0)+(i>>>13)|0)+(Le>>>26)|0,Le&=67108863,r=Math.imul(H,Z),i=(i=Math.imul(H,G))+Math.imul(I,Z)|0,o=Math.imul(I,G),r=r+Math.imul(A,J)|0,i=(i=i+Math.imul(A,K)|0)+Math.imul(N,J)|0,o=o+Math.imul(N,K)|0,r=r+Math.imul(j,Q)|0,i=(i=i+Math.imul(j,ee)|0)+Math.imul(Y,Q)|0,o=o+Math.imul(Y,ee)|0,r=r+Math.imul(T,ne)|0,i=(i=i+Math.imul(T,re)|0)+Math.imul(O,ne)|0,o=o+Math.imul(O,re)|0,r=r+Math.imul(L,oe)|0,i=(i=i+Math.imul(L,ae)|0)+Math.imul(C,oe)|0,o=o+Math.imul(C,ae)|0,r=r+Math.imul(x,le)|0,i=(i=i+Math.imul(x,ce)|0)+Math.imul(M,le)|0,o=o+Math.imul(M,ce)|0,r=r+Math.imul(_,de)|0,i=(i=i+Math.imul(_,fe)|0)+Math.imul(k,de)|0,o=o+Math.imul(k,fe)|0;var Ce=(c+(r=r+Math.imul(g,pe)|0)|0)+((8191&(i=(i=i+Math.imul(g,me)|0)+Math.imul(y,pe)|0))<<13)|0;c=((o=o+Math.imul(y,me)|0)+(i>>>13)|0)+(Ce>>>26)|0,Ce&=67108863,r=Math.imul(H,J),i=(i=Math.imul(H,K))+Math.imul(I,J)|0,o=Math.imul(I,K),r=r+Math.imul(A,Q)|0,i=(i=i+Math.imul(A,ee)|0)+Math.imul(N,Q)|0,o=o+Math.imul(N,ee)|0,r=r+Math.imul(j,ne)|0,i=(i=i+Math.imul(j,re)|0)+Math.imul(Y,ne)|0,o=o+Math.imul(Y,re)|0,r=r+Math.imul(T,oe)|0,i=(i=i+Math.imul(T,ae)|0)+Math.imul(O,oe)|0,o=o+Math.imul(O,ae)|0,r=r+Math.imul(L,le)|0,i=(i=i+Math.imul(L,ce)|0)+Math.imul(C,le)|0,o=o+Math.imul(C,ce)|0,r=r+Math.imul(x,de)|0,i=(i=i+Math.imul(x,fe)|0)+Math.imul(M,de)|0,o=o+Math.imul(M,fe)|0;var Ee=(c+(r=r+Math.imul(_,pe)|0)|0)+((8191&(i=(i=i+Math.imul(_,me)|0)+Math.imul(k,pe)|0))<<13)|0;c=((o=o+Math.imul(k,me)|0)+(i>>>13)|0)+(Ee>>>26)|0,Ee&=67108863,r=Math.imul(H,Q),i=(i=Math.imul(H,ee))+Math.imul(I,Q)|0,o=Math.imul(I,ee),r=r+Math.imul(A,ne)|0,i=(i=i+Math.imul(A,re)|0)+Math.imul(N,ne)|0,o=o+Math.imul(N,re)|0,r=r+Math.imul(j,oe)|0,i=(i=i+Math.imul(j,ae)|0)+Math.imul(Y,oe)|0,o=o+Math.imul(Y,ae)|0,r=r+Math.imul(T,le)|0,i=(i=i+Math.imul(T,ce)|0)+Math.imul(O,le)|0,o=o+Math.imul(O,ce)|0,r=r+Math.imul(L,de)|0,i=(i=i+Math.imul(L,fe)|0)+Math.imul(C,de)|0,o=o+Math.imul(C,fe)|0;var Te=(c+(r=r+Math.imul(x,pe)|0)|0)+((8191&(i=(i=i+Math.imul(x,me)|0)+Math.imul(M,pe)|0))<<13)|0;c=((o=o+Math.imul(M,me)|0)+(i>>>13)|0)+(Te>>>26)|0,Te&=67108863,r=Math.imul(H,ne),i=(i=Math.imul(H,re))+Math.imul(I,ne)|0,o=Math.imul(I,re),r=r+Math.imul(A,oe)|0,i=(i=i+Math.imul(A,ae)|0)+Math.imul(N,oe)|0,o=o+Math.imul(N,ae)|0,r=r+Math.imul(j,le)|0,i=(i=i+Math.imul(j,ce)|0)+Math.imul(Y,le)|0,o=o+Math.imul(Y,ce)|0,r=r+Math.imul(T,de)|0,i=(i=i+Math.imul(T,fe)|0)+Math.imul(O,de)|0,o=o+Math.imul(O,fe)|0;var Oe=(c+(r=r+Math.imul(L,pe)|0)|0)+((8191&(i=(i=i+Math.imul(L,me)|0)+Math.imul(C,pe)|0))<<13)|0;c=((o=o+Math.imul(C,me)|0)+(i>>>13)|0)+(Oe>>>26)|0,Oe&=67108863,r=Math.imul(H,oe),i=(i=Math.imul(H,ae))+Math.imul(I,oe)|0,o=Math.imul(I,ae),r=r+Math.imul(A,le)|0,i=(i=i+Math.imul(A,ce)|0)+Math.imul(N,le)|0,o=o+Math.imul(N,ce)|0,r=r+Math.imul(j,de)|0,i=(i=i+Math.imul(j,fe)|0)+Math.imul(Y,de)|0,o=o+Math.imul(Y,fe)|0;var De=(c+(r=r+Math.imul(T,pe)|0)|0)+((8191&(i=(i=i+Math.imul(T,me)|0)+Math.imul(O,pe)|0))<<13)|0;c=((o=o+Math.imul(O,me)|0)+(i>>>13)|0)+(De>>>26)|0,De&=67108863,r=Math.imul(H,le),i=(i=Math.imul(H,ce))+Math.imul(I,le)|0,o=Math.imul(I,ce),r=r+Math.imul(A,de)|0,i=(i=i+Math.imul(A,fe)|0)+Math.imul(N,de)|0,o=o+Math.imul(N,fe)|0;var je=(c+(r=r+Math.imul(j,pe)|0)|0)+((8191&(i=(i=i+Math.imul(j,me)|0)+Math.imul(Y,pe)|0))<<13)|0;c=((o=o+Math.imul(Y,me)|0)+(i>>>13)|0)+(je>>>26)|0,je&=67108863,r=Math.imul(H,de),i=(i=Math.imul(H,fe))+Math.imul(I,de)|0,o=Math.imul(I,fe);var Ye=(c+(r=r+Math.imul(A,pe)|0)|0)+((8191&(i=(i=i+Math.imul(A,me)|0)+Math.imul(N,pe)|0))<<13)|0;c=((o=o+Math.imul(N,me)|0)+(i>>>13)|0)+(Ye>>>26)|0,Ye&=67108863;var Pe=(c+(r=Math.imul(H,pe))|0)+((8191&(i=(i=Math.imul(H,me))+Math.imul(I,pe)|0))<<13)|0;return c=((o=Math.imul(I,me))+(i>>>13)|0)+(Pe>>>26)|0,Pe&=67108863,l[0]=be,l[1]=ge,l[2]=ye,l[3]=ve,l[4]=_e,l[5]=ke,l[6]=we,l[7]=xe,l[8]=Me,l[9]=Se,l[10]=Le,l[11]=Ce,l[12]=Ee,l[13]=Te,l[14]=Oe,l[15]=De,l[16]=je,l[17]=Ye,l[18]=Pe,0!==c&&(l[19]=c,n.length++),n};function p(e,t,n){return(new m).mulp(e,t,n)}function m(e,t){this.x=e,this.y=t}Math.imul||(h=f),o.prototype.mulTo=function(e,t){var n=this.length+e.length;return 10===this.length&&10===e.length?h(this,e,t):n<63?f(this,e,t):n<1024?function(e,t,n){n.negative=t.negative^e.negative,n.length=e.length+t.length;for(var r=0,i=0,o=0;o>>26)|0)>>>26,a&=67108863}n.words[o]=s,r=a,a=i}return 0!==r?n.words[o]=r:n.length--,n.strip()}(this,e,t):p(this,e,t)},m.prototype.makeRBT=function(e){for(var t=new Array(e),n=o.prototype._countBits(e)-1,r=0;r>=1;return r},m.prototype.permute=function(e,t,n,r,i,o){for(var a=0;a>>=1)i++;return 1<>>=13,n[2*a+1]=8191&o,o>>>=13;for(a=2*t;a>=26,t+=i/67108864|0,t+=o>>>26,this.words[n]=67108863&o}return 0!==t&&(this.words[n]=t,this.length++),this},o.prototype.muln=function(e){return this.clone().imuln(e)},o.prototype.sqr=function(){return this.mul(this)},o.prototype.isqr=function(){return this.imul(this.clone())},o.prototype.pow=function(e){var t=function(e){for(var t=new Array(e.bitLength()),n=0;n>>i}return t}(e);if(0===t.length)return new o(1);for(var n=this,r=0;r=0);var t,n=e%26,i=(e-n)/26,o=67108863>>>26-n<<26-n;if(0!==n){var a=0;for(t=0;t>>26-n}a&&(this.words[t]=a,this.length++)}if(0!==i){for(t=this.length-1;t>=0;t--)this.words[t+i]=this.words[t];for(t=0;t=0),i=t?(t-t%26)/26:0;var o=e%26,a=Math.min((e-o)/26,this.length),s=67108863^67108863>>>o<a)for(this.length-=a,c=0;c=0&&(0!==u||c>=i);c--){var d=0|this.words[c];this.words[c]=u<<26-o|d>>>o,u=d&s}return l&&0!==u&&(l.words[l.length++]=u),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},o.prototype.ishrn=function(e,t,n){return r(0===this.negative),this.iushrn(e,t,n)},o.prototype.shln=function(e){return this.clone().ishln(e)},o.prototype.ushln=function(e){return this.clone().iushln(e)},o.prototype.shrn=function(e){return this.clone().ishrn(e)},o.prototype.ushrn=function(e){return this.clone().iushrn(e)},o.prototype.testn=function(e){r("number"==typeof e&&e>=0);var t=e%26,n=(e-t)/26,i=1<=0);var t=e%26,n=(e-t)/26;if(r(0===this.negative,"imaskn works only with positive numbers"),this.length<=n)return this;if(0!==t&&n++,this.length=Math.min(n,this.length),0!==t){var i=67108863^67108863>>>t<=67108864;t++)this.words[t]-=67108864,t===this.length-1?this.words[t+1]=1:this.words[t+1]++;return this.length=Math.max(this.length,t+1),this},o.prototype.isubn=function(e){if(r("number"==typeof e),r(e<67108864),e<0)return this.iaddn(-e);if(0!==this.negative)return this.negative=0,this.iaddn(e),this.negative=1,this;if(this.words[0]-=e,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var t=0;t>26)-(l/67108864|0),this.words[i+n]=67108863&o}for(;i>26,this.words[i+n]=67108863&o;if(0===s)return this.strip();for(r(-1===s),s=0,i=0;i>26,this.words[i]=67108863&o;return this.negative=1,this.strip()},o.prototype._wordDiv=function(e,t){var n=(this.length,e.length),r=this.clone(),i=e,a=0|i.words[i.length-1];0!==(n=26-this._countBits(a))&&(i=i.ushln(n),r.iushln(n),a=0|i.words[i.length-1]);var s,l=r.length-i.length;if("mod"!==t){(s=new o(null)).length=l+1,s.words=new Array(s.length);for(var c=0;c=0;d--){var f=67108864*(0|r.words[i.length+d])+(0|r.words[i.length+d-1]);for(f=Math.min(f/a|0,67108863),r._ishlnsubmul(i,f,d);0!==r.negative;)f--,r.negative=0,r._ishlnsubmul(i,1,d),r.isZero()||(r.negative^=1);s&&(s.words[d]=f)}return s&&s.strip(),r.strip(),"div"!==t&&0!==n&&r.iushrn(n),{div:s||null,mod:r}},o.prototype.divmod=function(e,t,n){return r(!e.isZero()),this.isZero()?{div:new o(0),mod:new o(0)}:0!==this.negative&&0===e.negative?(s=this.neg().divmod(e,t),"mod"!==t&&(i=s.div.neg()),"div"!==t&&(a=s.mod.neg(),n&&0!==a.negative&&a.iadd(e)),{div:i,mod:a}):0===this.negative&&0!==e.negative?(s=this.divmod(e.neg(),t),"mod"!==t&&(i=s.div.neg()),{div:i,mod:s.mod}):0!=(this.negative&e.negative)?(s=this.neg().divmod(e.neg(),t),"div"!==t&&(a=s.mod.neg(),n&&0!==a.negative&&a.isub(e)),{div:s.div,mod:a}):e.length>this.length||this.cmp(e)<0?{div:new o(0),mod:this}:1===e.length?"div"===t?{div:this.divn(e.words[0]),mod:null}:"mod"===t?{div:null,mod:new o(this.modn(e.words[0]))}:{div:this.divn(e.words[0]),mod:new o(this.modn(e.words[0]))}:this._wordDiv(e,t);var i,a,s},o.prototype.div=function(e){return this.divmod(e,"div",!1).div},o.prototype.mod=function(e){return this.divmod(e,"mod",!1).mod},o.prototype.umod=function(e){return this.divmod(e,"mod",!0).mod},o.prototype.divRound=function(e){var t=this.divmod(e);if(t.mod.isZero())return t.div;var n=0!==t.div.negative?t.mod.isub(e):t.mod,r=e.ushrn(1),i=e.andln(1),o=n.cmp(r);return o<0||1===i&&0===o?t.div:0!==t.div.negative?t.div.isubn(1):t.div.iaddn(1)},o.prototype.modn=function(e){r(e<=67108863);for(var t=(1<<26)%e,n=0,i=this.length-1;i>=0;i--)n=(t*n+(0|this.words[i]))%e;return n},o.prototype.idivn=function(e){r(e<=67108863);for(var t=0,n=this.length-1;n>=0;n--){var i=(0|this.words[n])+67108864*t;this.words[n]=i/e|0,t=i%e}return this.strip()},o.prototype.divn=function(e){return this.clone().idivn(e)},o.prototype.egcd=function(e){r(0===e.negative),r(!e.isZero());var t=this,n=e.clone();t=0!==t.negative?t.umod(e):t.clone();for(var i=new o(1),a=new o(0),s=new o(0),l=new o(1),c=0;t.isEven()&&n.isEven();)t.iushrn(1),n.iushrn(1),++c;for(var u=n.clone(),d=t.clone();!t.isZero();){for(var f=0,h=1;0==(t.words[0]&h)&&f<26;++f,h<<=1);if(f>0)for(t.iushrn(f);f-- >0;)(i.isOdd()||a.isOdd())&&(i.iadd(u),a.isub(d)),i.iushrn(1),a.iushrn(1);for(var p=0,m=1;0==(n.words[0]&m)&&p<26;++p,m<<=1);if(p>0)for(n.iushrn(p);p-- >0;)(s.isOdd()||l.isOdd())&&(s.iadd(u),l.isub(d)),s.iushrn(1),l.iushrn(1);t.cmp(n)>=0?(t.isub(n),i.isub(s),a.isub(l)):(n.isub(t),s.isub(i),l.isub(a))}return{a:s,b:l,gcd:n.iushln(c)}},o.prototype._invmp=function(e){r(0===e.negative),r(!e.isZero());var t=this,n=e.clone();t=0!==t.negative?t.umod(e):t.clone();for(var i,a=new o(1),s=new o(0),l=n.clone();t.cmpn(1)>0&&n.cmpn(1)>0;){for(var c=0,u=1;0==(t.words[0]&u)&&c<26;++c,u<<=1);if(c>0)for(t.iushrn(c);c-- >0;)a.isOdd()&&a.iadd(l),a.iushrn(1);for(var d=0,f=1;0==(n.words[0]&f)&&d<26;++d,f<<=1);if(d>0)for(n.iushrn(d);d-- >0;)s.isOdd()&&s.iadd(l),s.iushrn(1);t.cmp(n)>=0?(t.isub(n),a.isub(s)):(n.isub(t),s.isub(a))}return(i=0===t.cmpn(1)?a:s).cmpn(0)<0&&i.iadd(e),i},o.prototype.gcd=function(e){if(this.isZero())return e.abs();if(e.isZero())return this.abs();var t=this.clone(),n=e.clone();t.negative=0,n.negative=0;for(var r=0;t.isEven()&&n.isEven();r++)t.iushrn(1),n.iushrn(1);for(;;){for(;t.isEven();)t.iushrn(1);for(;n.isEven();)n.iushrn(1);var i=t.cmp(n);if(i<0){var o=t;t=n,n=o}else if(0===i||0===n.cmpn(1))break;t.isub(n)}return n.iushln(r)},o.prototype.invm=function(e){return this.egcd(e).a.umod(e)},o.prototype.isEven=function(){return 0==(1&this.words[0])},o.prototype.isOdd=function(){return 1==(1&this.words[0])},o.prototype.andln=function(e){return this.words[0]&e},o.prototype.bincn=function(e){r("number"==typeof e);var t=e%26,n=(e-t)/26,i=1<>>26,s&=67108863,this.words[a]=s}return 0!==o&&(this.words[a]=o,this.length++),this},o.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},o.prototype.cmpn=function(e){var t,n=e<0;if(0!==this.negative&&!n)return-1;if(0===this.negative&&n)return 1;if(this.strip(),this.length>1)t=1;else{n&&(e=-e),r(e<=67108863,"Number is too big");var i=0|this.words[0];t=i===e?0:ie.length)return 1;if(this.length=0;n--){var r=0|this.words[n],i=0|e.words[n];if(r!==i){ri&&(t=1);break}}return t},o.prototype.gtn=function(e){return 1===this.cmpn(e)},o.prototype.gt=function(e){return 1===this.cmp(e)},o.prototype.gten=function(e){return this.cmpn(e)>=0},o.prototype.gte=function(e){return this.cmp(e)>=0},o.prototype.ltn=function(e){return-1===this.cmpn(e)},o.prototype.lt=function(e){return-1===this.cmp(e)},o.prototype.lten=function(e){return this.cmpn(e)<=0},o.prototype.lte=function(e){return this.cmp(e)<=0},o.prototype.eqn=function(e){return 0===this.cmpn(e)},o.prototype.eq=function(e){return 0===this.cmp(e)},o.red=function(e){return new w(e)},o.prototype.toRed=function(e){return r(!this.red,"Already a number in reduction context"),r(0===this.negative,"red works only with positives"),e.convertTo(this)._forceRed(e)},o.prototype.fromRed=function(){return r(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},o.prototype._forceRed=function(e){return this.red=e,this},o.prototype.forceRed=function(e){return r(!this.red,"Already a number in reduction context"),this._forceRed(e)},o.prototype.redAdd=function(e){return r(this.red,"redAdd works only with red numbers"),this.red.add(this,e)},o.prototype.redIAdd=function(e){return r(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,e)},o.prototype.redSub=function(e){return r(this.red,"redSub works only with red numbers"),this.red.sub(this,e)},o.prototype.redISub=function(e){return r(this.red,"redISub works only with red numbers"),this.red.isub(this,e)},o.prototype.redShl=function(e){return r(this.red,"redShl works only with red numbers"),this.red.shl(this,e)},o.prototype.redMul=function(e){return r(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.mul(this,e)},o.prototype.redIMul=function(e){return r(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.imul(this,e)},o.prototype.redSqr=function(){return r(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},o.prototype.redISqr=function(){return r(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},o.prototype.redSqrt=function(){return r(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},o.prototype.redInvm=function(){return r(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},o.prototype.redNeg=function(){return r(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},o.prototype.redPow=function(e){return r(this.red&&!e.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,e)};var b={k256:null,p224:null,p192:null,p25519:null};function g(e,t){this.name=e,this.p=new o(t,16),this.n=this.p.bitLength(),this.k=new o(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function y(){g.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function v(){g.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function _(){g.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function k(){g.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function w(e){if("string"==typeof e){var t=o._prime(e);this.m=t.p,this.prime=t}else r(e.gtn(1),"modulus must be greater than 1"),this.m=e,this.prime=null}function x(e){w.call(this,e),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new o(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}g.prototype._tmp=function(){var e=new o(null);return e.words=new Array(Math.ceil(this.n/13)),e},g.prototype.ireduce=function(e){var t,n=e;do{this.split(n,this.tmp),t=(n=(n=this.imulK(n)).iadd(this.tmp)).bitLength()}while(t>this.n);var r=t0?n.isub(this.p):n.strip(),n},g.prototype.split=function(e,t){e.iushrn(this.n,0,t)},g.prototype.imulK=function(e){return e.imul(this.k)},i(y,g),y.prototype.split=function(e,t){for(var n=Math.min(e.length,9),r=0;r>>22,i=o}i>>>=22,e.words[r-10]=i,0===i&&e.length>10?e.length-=10:e.length-=9},y.prototype.imulK=function(e){e.words[e.length]=0,e.words[e.length+1]=0,e.length+=2;for(var t=0,n=0;n>>=26,e.words[n]=i,t=r}return 0!==t&&(e.words[e.length++]=t),e},o._prime=function(e){if(b[e])return b[e];var t;if("k256"===e)t=new y;else if("p224"===e)t=new v;else if("p192"===e)t=new _;else{if("p25519"!==e)throw new Error("Unknown prime "+e);t=new k}return b[e]=t,t},w.prototype._verify1=function(e){r(0===e.negative,"red works only with positives"),r(e.red,"red works only with red numbers")},w.prototype._verify2=function(e,t){r(0==(e.negative|t.negative),"red works only with positives"),r(e.red&&e.red===t.red,"red works only with red numbers")},w.prototype.imod=function(e){return this.prime?this.prime.ireduce(e)._forceRed(this):e.umod(this.m)._forceRed(this)},w.prototype.neg=function(e){return e.isZero()?e.clone():this.m.sub(e)._forceRed(this)},w.prototype.add=function(e,t){this._verify2(e,t);var n=e.add(t);return n.cmp(this.m)>=0&&n.isub(this.m),n._forceRed(this)},w.prototype.iadd=function(e,t){this._verify2(e,t);var n=e.iadd(t);return n.cmp(this.m)>=0&&n.isub(this.m),n},w.prototype.sub=function(e,t){this._verify2(e,t);var n=e.sub(t);return n.cmpn(0)<0&&n.iadd(this.m),n._forceRed(this)},w.prototype.isub=function(e,t){this._verify2(e,t);var n=e.isub(t);return n.cmpn(0)<0&&n.iadd(this.m),n},w.prototype.shl=function(e,t){return this._verify1(e),this.imod(e.ushln(t))},w.prototype.imul=function(e,t){return this._verify2(e,t),this.imod(e.imul(t))},w.prototype.mul=function(e,t){return this._verify2(e,t),this.imod(e.mul(t))},w.prototype.isqr=function(e){return this.imul(e,e.clone())},w.prototype.sqr=function(e){return this.mul(e,e)},w.prototype.sqrt=function(e){if(e.isZero())return e.clone();var t=this.m.andln(3);if(r(t%2==1),3===t){var n=this.m.add(new o(1)).iushrn(2);return this.pow(e,n)}for(var i=this.m.subn(1),a=0;!i.isZero()&&0===i.andln(1);)a++,i.iushrn(1);r(!i.isZero());var s=new o(1).toRed(this),l=s.redNeg(),c=this.m.subn(1).iushrn(1),u=this.m.bitLength();for(u=new o(2*u*u).toRed(this);0!==this.pow(u,c).cmp(l);)u.redIAdd(l);for(var d=this.pow(u,i),f=this.pow(e,i.addn(1).iushrn(1)),h=this.pow(e,i),p=a;0!==h.cmp(s);){for(var m=h,b=0;0!==m.cmp(s);b++)m=m.redSqr();r(b=0;r--){for(var c=t.words[r],u=l-1;u>=0;u--){var d=c>>u&1;i!==n[0]&&(i=this.sqr(i)),0!==d||0!==a?(a<<=1,a|=d,(4===++s||0===r&&0===u)&&(i=this.mul(i,n[a]),s=0,a=0)):s=0}l=26}return i},w.prototype.convertTo=function(e){var t=e.umod(this.m);return t===e?t.clone():t},w.prototype.convertFrom=function(e){var t=e.clone();return t.red=null,t},o.mont=function(e){return new x(e)},i(x,w),x.prototype.convertTo=function(e){return this.imod(e.ushln(this.shift))},x.prototype.convertFrom=function(e){var t=this.imod(e.mul(this.rinv));return t.red=null,t},x.prototype.imul=function(e,t){if(e.isZero()||t.isZero())return e.words[0]=0,e.length=1,e;var n=e.imul(t),r=n.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),i=n.isub(r).iushrn(this.shift),o=i;return i.cmp(this.m)>=0?o=i.isub(this.m):i.cmpn(0)<0&&(o=i.iadd(this.m)),o._forceRed(this)},x.prototype.mul=function(e,t){if(e.isZero()||t.isZero())return new o(0)._forceRed(this);var n=e.mul(t),r=n.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),i=n.isub(r).iushrn(this.shift),a=i;return i.cmp(this.m)>=0?a=i.isub(this.m):i.cmpn(0)<0&&(a=i.iadd(this.m)),a._forceRed(this)},x.prototype.invm=function(e){return this.imod(e._invmp(this.m).mul(this.r2))._forceRed(this)}}(e,this)}).call(this,n(31)(e))},function(e,t,n){"use strict";e.exports=n(239)},function(e,t){e.exports=function(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}},function(e,t,n){var r=n(373);e.exports=h,e.exports.parse=o,e.exports.compile=function(e,t){return s(o(e,t),t)},e.exports.tokensToFunction=s,e.exports.tokensToRegExp=f;var i=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function o(e,t){for(var n,r=[],o=0,a=0,s="",u=t&&t.delimiter||"/";null!=(n=i.exec(e));){var d=n[0],f=n[1],h=n.index;if(s+=e.slice(a,h),a=h+d.length,f)s+=f[1];else{var p=e[a],m=n[2],b=n[3],g=n[4],y=n[5],v=n[6],_=n[7];s&&(r.push(s),s="");var k=null!=m&&null!=p&&p!==m,w="+"===v||"*"===v,x="?"===v||"*"===v,M=n[2]||u,S=g||y;r.push({name:b||o++,prefix:m||"",delimiter:M,optional:x,repeat:w,partial:k,asterisk:!!_,pattern:S?c(S):_?".*":"[^"+l(M)+"]+?"})}}return a0){for(t=1,n=1;t]/.test(t)?"/,"]]]]>"),"]]>"):t}return""},f=function(e){return String(e).replace(/&/g,"&").replace(/'/g,"'").replace(/"/g,""").replace(//g,">")};const h=e=>(void 0!==e.attributes.style&&delete e.attributes.style,function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=n.transformAttr,i=void 0===r?function(e,t,n){return"".concat(e,'="').concat(n(t),'"')}:r,o=n.selfClose,a=void 0===o||o;if(Array.isArray(t))return t.map((function(t){return e(t,{transformAttr:i,selfClose:a})})).join("");if("text"===t.type)return d(t.value);var s="";for(var l in t.attributes){var c=i(l,t.attributes[l],f,t.name);s+=c?" ".concat(c):""}return t.children.length||!a?"<".concat(t.name).concat(s,">").concat(e(t.children,{transformAttr:i,selfClose:a}),""):"<".concat(t.name).concat(s,"/>")}(e)); -/* -object-assign -(c) Sindre Sorhus -@license MIT -*/var p=Object.getOwnPropertySymbols,m=Object.prototype.hasOwnProperty,b=Object.prototype.propertyIsEnumerable;function g(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}var y=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,r,i=g(e),o=1;o1?t-1:0),r=1;r2?n-2:0),i=2;i2?n-2:0),i=2;i8)throw new Error("warningWithoutStack() currently supports at most 8 arguments.");if(!e){if("undefined"!=typeof console){var o=r.map((function(e){return""+e}));o.unshift("Warning: "+t),Function.prototype.apply.call(console.error,console,o)}try{var a=0,s="Warning: "+t.replace(/%s/g,(function(){return r[a++]}));throw new Error(s)}catch(e){}}},M={};function S(e,t){var n=e.constructor,r=n&&(n.displayName||n.name)||"ReactClass",i=r+"."+t;M[i]||(x(!1,"Can't call %s on a component that is not yet mounted. This is a no-op, but it might indicate a bug in your application. Instead, assign to `this.state` directly or define a `state = {};` class property with the desired state in the %s component.",t,r),M[i]=!0)}var L={isMounted:function(e){return!1},enqueueForceUpdate:function(e,t,n){S(e,"forceUpdate")},enqueueReplaceState:function(e,t,n,r){S(e,"replaceState")},enqueueSetState:function(e,t,n,r){S(e,"setState")}},C={};function E(e,t,n){this.props=e,this.context=t,this.refs=C,this.updater=n||L}Object.freeze(C),E.prototype.isReactComponent={},E.prototype.setState=function(e,t){"object"!=typeof e&&"function"!=typeof e&&null!=e&&_(!1,"setState(...): takes an object of state variables to update or a function which returns an object of state variables."),this.updater.enqueueSetState(this,e,t,"setState")},E.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")};var T={isMounted:["isMounted","Instead, make sure to clean up subscriptions and pending requests in componentWillUnmount to prevent memory leaks."],replaceState:["replaceState","Refactor your code to use setState instead (see https://github.com/facebook/react/issues/3236)."]},D=function(e,t){Object.defineProperty(E.prototype,e,{get:function(){w(!1,"%s(...) is deprecated in plain JavaScript React classes. %s",t[0],t[1])}})};for(var j in T)T.hasOwnProperty(j)&&D(j,T[j]);function Y(){}function P(e,t,n){this.props=e,this.context=t,this.refs=C,this.updater=n||L}Y.prototype=E.prototype;var A=P.prototype=new Y;A.constructor=P,t(A,E.prototype),A.isPureReactComponent=!0;var N={current:null},R={current:null},H=/^(.*)[\\\/]/;function I(e){if(null==e)return null;if("number"==typeof e.tag&&x(!1,"Received an unexpected object in getComponentName(). This is likely a bug in React. Please file an issue."),"function"==typeof e)return e.displayName||e.name||null;if("string"==typeof e)return e;switch(e){case d:return"ConcurrentMode";case a:return"Fragment";case o:return"Portal";case l:return"Profiler";case s:return"StrictMode";case h:return"Suspense"}if("object"==typeof e)switch(e.$$typeof){case u:return"Context.Consumer";case c:return"Context.Provider";case f:return r=e,i=e.render,b="ForwardRef",g=i.displayName||i.name||"",r.displayName||(""!==g?b+"("+g+")":b);case p:return I(e.type);case m:var t=1===(n=e)._status?n._result:null;if(t)return I(t)}var n,r,i,b,g;return null}var F={},z=null;function W(e){z=e}F.getCurrentStack=null,F.getStackAddendum=function(){var e="";if(z){var t=I(z.type),n=z._owner;e+=function(e,t,n){var r="";if(t){var i=t.fileName,o=i.replace(H,"");if(/^index\./.test(o)){var a=i.match(H);if(a){var s=a[1];if(s)o=s.replace(H,"")+"/"+o}}r=" (at "+o+":"+t.lineNumber+")"}else n&&(r=" (created by "+n+")");return"\n in "+(e||"Unknown")+r}(t,z._source,n&&I(n.type))}var r=F.getCurrentStack;return r&&(e+=r()||""),e};var B={ReactCurrentDispatcher:N,ReactCurrentOwner:R,assign:t};t(B,{ReactDebugCurrentFrame:F,ReactComponentTreeHook:{}});var U=function(e,t){if(!e){for(var n=B.ReactDebugCurrentFrame,r=n.getStackAddendum(),i=arguments.length,o=Array(i>2?i-2:0),a=2;a1){for(var u=Array(c),d=0;d1){for(var h=Array(f),p=0;p.")}return t}(t);if(!ve[n]){ve[n]=!0;var r="";e&&e._owner&&e._owner!==R.current&&(r=" It was passed a child from "+I(e._owner.type)+"."),W(e),U(!1,'Each child in a list should have a unique "key" prop.%s%s See https://fb.me/react-warning-keys for more information.',n,r),W(null)}}}function ke(e,t){if("object"==typeof e)if(Array.isArray(e))for(var n=0;n",o=" Did you accidentally export a JSX literal instead of a component?"):l=typeof e,U(!1,"React.createElement: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s",l,o)}var c=ee.apply(this,arguments);if(null==c)return c;if(r)for(var u=2;u is not supported and will be removed in a future major release. Did you mean to render instead?")),n.Provider},set:function(e){n.Provider=e}},_currentValue:{get:function(){return n._currentValue},set:function(e){n._currentValue=e}},_currentValue2:{get:function(){return n._currentValue2},set:function(e){n._currentValue2=e}},_threadCount:{get:function(){return n._threadCount},set:function(e){n._threadCount=e}},Consumer:{get:function(){return r||(r=!0,U(!1,"Rendering is not supported and will be removed in a future major release. Did you mean to render instead?")),n.Consumer}}}),n.Consumer=o,n._currentRenderer=null,n._currentRenderer2=null,n},forwardRef:function(e){return null!=e&&e.$$typeof===p?x(!1,"forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(...)), use memo(forwardRef(...))."):"function"!=typeof e?x(!1,"forwardRef requires a render function but was given %s.",null===e?"null":typeof e):0!==e.length&&2!==e.length&&x(!1,"forwardRef render functions accept exactly two parameters: props and ref. %s",1===e.length?"Did you forget to use the ref parameter?":"Any additional parameter will be undefined."),null!=e&&(null!=e.defaultProps||null!=e.propTypes)&&x(!1,"forwardRef render functions do not support propTypes or defaultProps. Did you accidentally pass a React component?"),{$$typeof:f,render:e}},lazy:function(e){var t={$$typeof:m,_ctor:e,_status:-1,_result:null},n=void 0,r=void 0;return Object.defineProperties(t,{defaultProps:{configurable:!0,get:function(){return n},set:function(e){U(!1,"React.lazy(...): It is not supported to assign `defaultProps` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it."),n=e,Object.defineProperty(t,"defaultProps",{enumerable:!0})}},propTypes:{configurable:!0,get:function(){return r},set:function(e){U(!1,"React.lazy(...): It is not supported to assign `propTypes` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it."),r=e,Object.defineProperty(t,"propTypes",{enumerable:!0})}}}),t},memo:function(e,t){return pe(e)||x(!1,"memo: The first argument must be a component. Instead received: %s",null===e?"null":typeof e),{$$typeof:p,type:e,compare:void 0===t?null:t}},useCallback:function(e,t){return me().useCallback(e,t)},useContext:function(e,t){var n=me();if(void 0!==t&&U(!1,"useContext() second argument is reserved for future use in React. Passing it is not supported. You passed: %s.%s",t,"number"==typeof t&&Array.isArray(arguments[2])?"\n\nDid you call array.map(useContext)? Calling Hooks inside a loop is not supported. Learn more at https://fb.me/rules-of-hooks":""),void 0!==e._context){var r=e._context;r.Consumer===e?U(!1,"Calling useContext(Context.Consumer) is not supported, may cause bugs, and will be removed in a future major release. Did you mean to call useContext(Context) instead?"):r.Provider===e&&U(!1,"Calling useContext(Context.Provider) is not supported. Did you mean to call useContext(Context) instead?")}return n.useContext(e,t)},useEffect:function(e,t){return me().useEffect(e,t)},useImperativeHandle:function(e,t,n){return me().useImperativeHandle(e,t,n)},useDebugValue:function(e,t){return me().useDebugValue(e,t)},useLayoutEffect:function(e,t){return me().useLayoutEffect(e,t)},useMemo:function(e,t){return me().useMemo(e,t)},useReducer:function(e,t,n){return me().useReducer(e,t,n)},useRef:function(e){return me().useRef(e)},useState:function(e){return me().useState(e)},Fragment:a,StrictMode:s,Suspense:h,createElement:Me,cloneElement:function(e,t,n){for(var r=te.apply(this,arguments),i=2;i{return void 0===t&&(t=""),j.createElement(e.name,o({},(n=e.attributes,Object.entries(n).reduce((e,[t,n])=>{return"class"===t&&(t="className"),o({},e,{[""+(r=t,r.replace(/-([a-z])/g,e=>e[1].toUpperCase()))]:n});var r},{})),{key:""+t}),e.children.map((e,n)=>Y(e,`${t}:${n}`)));var n},P=e=>void 0===e;var A={bac:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:0,stroke:0},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:1,stroke:1,"stroke-width":"2"},children:[]}]},bal:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"line",attributes:{x1:"128",y1:"32.0072",x2:"32.7071",y2:"127.3",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"line",attributes:{x1:"128",y1:"64.0072",x2:"64.7071",y2:"127.3",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"line",attributes:{x1:"128",y1:"96.0072",x2:"96.7071",y2:"127.3",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},ban:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0C128 70.6924 70.6924 128 -1.52588e-05 128",stroke:0,fill:"none"},children:[]}]},bar:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},bat:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0C128 35.3462 99.3462 64 64 64C28.6538 64 0 35.3462 0 0",stroke:0,fill:"none"},children:[]}]},bec:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00280762 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},bel:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]}]},ben:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"8",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},bep:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64C92.6538 64 64 92.6538 64 128",stroke:0,fill:"none"},children:[]}]},ber:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M96 0L96 128",stroke:0,fill:"none"},children:[]}]},bes:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 128C64 92.6538 35.3462 64 0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-0.00280762 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},bet:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"16.0036",y1:"15.9965",x2:"48.0036",y2:"47.9965",stroke:0,fill:"none"},children:[]}]},bex:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"16.0036",y1:"15.9965",x2:"48.0036",y2:"47.9965",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},bic:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 96C74.9807 96 32 53.0193 32 -4.19629e-06",stroke:0,fill:"none"},children:[]}]},bid:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M32 0C32 70.6925 74.9807 128 128 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]}]},bil:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"80.0035",y1:"79.9965",x2:"112.004",y2:"111.997",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},bin:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]}]},bis:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"128",y1:"64",x2:"-8.87604e-09",y2:"64",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"128",y1:"96",x2:"-8.87604e-09",y2:"96",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"128",y1:"32",x2:"-8.87604e-09",y2:"32",stroke:0,fill:"none"},children:[]}]},bit:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},bol:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"48",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"128",y1:"64",x2:"-4.37114e-08",y2:"64",stroke:0,fill:"none"},children:[]}]},bon:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 128C92.6538 128 64 99.3462 64 64C64 28.6538 92.6538 4.215e-07 128 0",stroke:0,fill:"none"},children:[]}]},bor:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M0 128C4.63574e-06 92.6489 14.3309 60.6449 37.5 37.4807",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32 128C32 101.492 42.7436 77.4939 60.1138 60.1217",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 128C64 110.328 71.1626 94.3287 82.7432 82.7471",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M95.6284 128C95.6284 119.164 99.2097 111.164 105 105.374",stroke:0,fill:"none"},children:[]}]},bos:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},bot:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"32",y1:"2.18557e-08",x2:"32",y2:"128",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},bud:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M16 64C16 90.5097 37.4903 112 64 112",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"16",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"16",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},bur:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M7.37542e-06 -3.56072e-06C1.19529e-06 70.6924 57.3075 128 128 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},bus:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M32 128C32 110.327 17.6731 96 0 96",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},byl:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"path",attributes:{d:"M-0.00280762 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M22.1288 22.6299C16.0075 28.7511 8.0234 31.874 0.00134547 31.9986M44.7562 45.2573C32.3866 57.6269 16.2133 63.8747 0.00134277 64.0005M67.3836 67.8847C48.7656 86.5027 24.403 95.8749 0.00134412 96.0012",stroke:0,fill:"none"},children:[]}]},byn:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0C128 35.3511 113.669 67.3551 90.5 90.5193",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M96 0C96 26.5077 85.2564 50.5061 67.8862 67.8783",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 0C64 17.6721 56.8374 33.6713 45.2568 45.2529",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32.3716 0C32.3716 8.83603 28.7903 16.8356 23 22.6264",stroke:0,fill:"none"},children:[]}]},byr:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00280762 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"48",cy:"80",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"48",cy:"80",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},byt:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"48",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32 0L32 128",stroke:0,fill:"none"},children:[]}]},dab:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{y1:"-0.5",x2:"45.2548",y2:"-0.5",transform:"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.6499)",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:0,stroke:0},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:1,stroke:1,"stroke-width":"2"},children:[]}]},dac:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64L-5.96046e-08 64",stroke:0,fill:"none"},children:[]}]},dal:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"63.29",y2:"63.2929",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"line",attributes:{x1:"128",y1:"32.0072",x2:"32.7071",y2:"127.3",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"line",attributes:{x1:"128",y1:"64.0072",x2:"64.7071",y2:"127.3",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"line",attributes:{x1:"128",y1:"96.0072",x2:"96.7071",y2:"127.3",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},dan:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"96",y1:"2.18557e-08",x2:"96",y2:"128",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},dap:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"80.0035",y1:"79.9964",x2:"112.004",y2:"111.996",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},dar:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"path",attributes:{d:"M86.6274 86.6274C99.1242 74.1307 99.1242 53.8694 86.6274 41.3726C74.1306 28.8758 53.8694 28.8758 41.3726 41.3726",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M75.3137 75.3137C81.5621 69.0653 81.5621 58.9347 75.3137 52.6863C69.0653 46.4379 58.9347 46.4379 52.6863 52.6863",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M97.9411 97.9411C116.686 79.1959 116.686 48.804 97.9411 30.0589C79.196 11.3137 48.804 11.3137 30.0589 30.0589",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},das:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},dat:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 128C92.6538 128 64 99.3462 64 64C64 28.6538 92.6538 -1.54503e-06 128 0",stroke:0,fill:"none"},children:[]}]},dav:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M96 64C96 46.3269 81.6731 32 64 32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},deb:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 -6.35781e-07C64 35.3462 35.3462 64 0 64",stroke:0,fill:"none"},children:[]}]},dec:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"112",cy:"16",r:"11.5",fill:0,stroke:0},children:[]},{name:"circle",attributes:{cx:"112",cy:"16",r:"9",fill:1,stroke:1,"stroke-width":"2"},children:[]}]},def:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M0 128L128 0",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M0 94L94 0",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M0 64L64 0",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M0 32L32 0",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:0,stroke:0},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:1,stroke:1,"stroke-width":"2"},children:[]}]},deg:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 128C64 92.6538 35.3462 64 0 64",stroke:0,fill:"none"},children:[]}]},del:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},dem:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M64 -6.35781e-07C64 35.3462 35.3462 64 0 64",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},den:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M1.52575e-06 96C53.0193 96 96 53.0193 96 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-0.00280762 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},dep:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M32 128C32 101.492 42.7436 77.4939 60.1138 60.1216",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 128C64 110.328 71.1626 94.3287 82.7432 82.7471",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M95.6284 128C95.6284 119.164 99.2097 111.164 105 105.374",stroke:0,fill:"none"},children:[]}]},der:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 64L5.59506e-06 0L128 1.11901e-05V64C128 99.3462 99.3462 128 64 128C28.6538 128 -4.6351e-06 99.3462 0 64Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M96 128L96 0",stroke:0,fill:"none"},children:[]}]},des:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M96 0L96 128",stroke:0,fill:"none"},children:[]}]},det:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"15.9964",y1:"111.996",x2:"47.9964",y2:"79.9964",stroke:0,fill:"none"},children:[]}]},dev:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"96.5",y1:"3.07317e-08",x2:"96.5",y2:"128",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"32.5",y1:"3.07317e-08",x2:"32.5",y2:"128",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},dex:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},dib:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"8.74228e-08",y1:"64",x2:"128",y2:"64",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"5.25874e-08",y1:"32",x2:"128",y2:"32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},dif:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M60.1244 67.3837C41.5063 48.7657 32.1342 24.4031 32.0079 0.00145601M82.7518 44.7563C70.3822 32.3867 64.1344 16.2134 64.0086 0.00145196M105.379 22.1289C99.258 16.0077 96.1351 8.02351 96.0105 0.00145196",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"16",cy:"16",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"16",cy:"16",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:0,stroke:0},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:1,stroke:1,"stroke-width":"2"},children:[]}]},dig:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64.5",y1:"-0.5",x2:"64.5",y2:"127.5",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"16.0035",y1:"15.9965",x2:"48.0035",y2:"47.9965",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},dil:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"80.0036",y1:"79.9964",x2:"112.004",y2:"111.996",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},din:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"96",y1:"2.18557e-08",x2:"96",y2:"128",stroke:0,fill:"none"},children:[]}]},dir:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M96 64C96 81.6731 81.6731 96 64 96",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"16.0035",y1:"15.9965",x2:"48.0035",y2:"47.9965",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},dis:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.0029152 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},div:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-4.19629e-06 96C70.6924 96 128 53.0193 128 5.59506e-06",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-2.79753e-06 64C70.6924 64 128 35.3462 128 5.59506e-06",stroke:0,fill:"none"},children:[]}]},doc:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M127.997 0L-0.00291443 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M86.6274 41.3726C74.1306 28.8758 53.8694 28.8758 41.3726 41.3726C28.8758 53.8694 28.8758 74.1306 41.3726 86.6274",stroke:0,fill:"none"},children:[]}]},dol:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-4.19629e-06 16C26.5097 16 48 37.4903 48 64C48 90.5097 26.5097 112 0 112",stroke:0,fill:"none"},children:[]}]},don:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-3.8147e-06 128C-7.24632e-07 92.6538 28.6538 64 64 64C99.3462 64 128 92.6538 128 128",stroke:0,fill:"none"},children:[]}]},dop:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 112C90.5097 112 112 90.5097 112 64C112 37.4903 90.5097 16 64 16",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},dor:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{y1:"63.5",x2:"128",y2:"63.5",stroke:0,fill:"none"},children:[]}]},dos:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M86.6274 86.6274C99.1242 74.1306 99.1242 53.8693 86.6274 41.3725C74.1306 28.8758 53.8694 28.8758 41.3726 41.3725",stroke:0,fill:"none"},children:[]}]},dot:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},dov:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M-0.701724 31.9914C25.6281 31.9914 49.4822 42.5913 66.8261 59.7565M-0.701723 63.9914C16.7916 63.9914 32.6456 71.0098 44.1982 82.3844M-0.701722 95.9914C7.955 95.9914 15.8089 99.4288 21.5694 105.013",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M0 0C35.3511 0 67.3551 14.3309 90.5193 37.5",stroke:0,fill:"none"},children:[]}]},doz:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 128L0 0",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M30.0589 30.0589C48.804 11.3137 79.196 11.3137 97.9411 30.0589C116.686 48.804 116.686 79.196 97.9411 97.9411",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M52.6863 52.6863C58.9347 46.4379 69.0653 46.4379 75.3137 52.6863C81.5621 58.9347 81.5621 69.0653 75.3137 75.3137",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M41.3726 41.3726C53.8694 28.8758 74.1306 28.8758 86.6274 41.3726C99.1242 53.8694 99.1242 74.1306 86.6274 86.6274",stroke:0,fill:"none"},children:[]}]},duc:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 32L0 32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},dul:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 16C90.5097 16 112 37.4903 112 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 64L64 128",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},dun:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M112 64C112 37.4903 90.5097 16 64 16",stroke:0,fill:"none"},children:[]}]},dur:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 64L5.59506e-06 0L128 1.11901e-05V64C128 99.3462 99.3462 128 64 128C28.6538 128 -4.6351e-06 99.3462 0 64Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]}]},dus:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M32 -3.05151e-06C32 53.0193 74.9807 96 128 96",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},dut:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},dux:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-2.79795e-06 -3.55988e-06C70.6924 -4.40288e-06 128 57.3075 128 128",stroke:0,fill:"none"},children:[]}]},dyl:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M2.03434e-06 128C70.6924 128 128 70.6925 128 0",stroke:0,fill:"none"},children:[]}]},dyn:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 32L0 32",stroke:0,fill:"none"},children:[]}]},dyr:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},dys:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-3.8147e-06 1.11901e-05C-7.24633e-07 35.3462 28.6538 64 64 64C99.3462 64 128 35.3462 128 0",stroke:0,fill:"none"},children:[]}]},dyt:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},fab:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:0,stroke:0},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:1,stroke:1,"stroke-width":"2"},children:[]}]},fad:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},fal:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M0 128L128 0",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M0 0C35.3511 0 67.3551 14.3309 90.5193 37.5",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M0 32C26.5077 32 50.5061 42.7436 67.8783 60.1138",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M0 64C17.6721 64 33.6713 71.1626 45.2529 82.7432",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M0 95.6284C8.83603 95.6284 16.8356 99.2097 22.6264 105",stroke:0,fill:"none"},children:[]}]},fam:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"128",y1:"64",x2:"-4.37114e-08",y2:"64",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},fan:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},fas:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},feb:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M7.37542e-06 -3.56072e-06C1.19529e-06 70.6924 57.3075 128 128 128",stroke:0,fill:"none"},children:[]}]},fed:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 32L0 32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},fel:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{y1:"-0.5",x2:"45.2548",y2:"-0.5",transform:"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.6499)",stroke:0,fill:"none"},children:[]}]},fen:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00280762 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M0 128C4.63574e-06 92.6489 14.3309 60.6449 37.5 37.4807",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32 128C32 101.492 42.7436 77.4939 60.1138 60.1217",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 128C64 110.328 71.1626 94.3287 82.7432 82.7471",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M95.6284 128C95.6284 119.164 99.2097 111.164 105 105.374",stroke:0,fill:"none"},children:[]}]},fep:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},fer:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]}]},fes:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M32 0L32 128",stroke:0,fill:"none"},children:[]}]},fet:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},fex:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{y1:"-0.5",x2:"45.2548",y2:"-0.5",transform:"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.6499 47.6499)",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},fid:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00291443 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},fig:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},fil:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"128",y1:"64",x2:"-4.37114e-08",y2:"64",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"32",y1:"2.18557e-08",x2:"32",y2:"128",stroke:0,fill:"none"},children:[]}]},fin:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"98",y1:"2.18557e-08",x2:"98",y2:"128",stroke:0,fill:"none"},children:[]}]},fip:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},fir:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{y1:"-0.5",x2:"45.2548",y2:"-0.5",transform:"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.6499)",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"80.0036",y1:"79.9965",x2:"112.004",y2:"111.997",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"16.0035",y1:"15.9965",x2:"48.0035",y2:"47.9965",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},fit:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},fod:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},fog:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M86.6274 86.6274C99.1242 74.1306 99.1242 53.8694 86.6274 41.3726C74.1306 28.8758 53.8694 28.8758 41.3726 41.3726",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},fol:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"128",y1:"64",x2:"-4.37114e-08",y2:"64",stroke:0,fill:"none"},children:[]}]},fon:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},fop:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M16 64C16 90.5097 37.4903 112 64 112",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"16",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"16",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},fos:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M96 0C96 53.0193 53.0193 96 0 96",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 0C64 35.3462 35.3462 64 0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32 0C32 17.6731 17.6731 32 0 32",stroke:0,fill:"none"},children:[]}]},fot:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"15.9964",y1:"111.997",x2:"47.9964",y2:"79.9965",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},ful:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 96C81.6731 96 96 81.6731 96 64C96 46.3269 81.6731 32 64 32",stroke:0,fill:"none"},children:[]}]},fun:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 64V128H0L2.79753e-06 64C4.34256e-06 28.6538 28.6538 -1.54503e-06 64 0C99.3462 1.54503e-06 128 28.6538 128 64Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"15.9964",y1:"111.997",x2:"47.9964",y2:"79.9965",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-0.00280762 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},fur:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M86.8823 41.6275C74.3855 29.1307 54.1242 29.1307 41.6274 41.6275C29.1307 54.1243 29.1307 74.3855 41.6274 86.8823",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},fus:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M32 128C32 110.327 17.6731 96 0 96",stroke:0,fill:"none"},children:[]}]},fyl:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M22.1288 22.6299C16.0075 28.7511 8.0234 31.874 0.00134547 31.9986M44.7562 45.2573C32.3866 57.6269 16.2133 63.8747 0.00134277 64.0005M67.3836 67.8847C48.7656 86.5027 24.403 95.8749 0.00134412 96.0012",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-0.00280762 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},fyn:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},fyr:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00268555 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"line",attributes:{y1:"-0.5",x2:"45.2548",y2:"-0.5",transform:"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.6499 47.6499)",stroke:0,fill:"none"},children:[]}]},hab:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M60.1244 67.3837C41.5063 48.7657 32.1342 24.4031 32.0079 0.00145601M82.7518 44.7563C70.3822 32.3867 64.1344 16.2134 64.0086 0.00145196M105.379 22.1289C99.258 16.0077 96.1351 8.02351 96.0105 0.00145196",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:0,stroke:0},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:1,stroke:1,"stroke-width":"2"},children:[]}]},hac:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},had:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},hal:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64.5",y1:"-0.5",x2:"64.5",y2:"127.5",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M16 64C16 90.5097 37.4903 112 64 112",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M112 64C112 37.4903 90.5097 16 64 16",stroke:0,fill:"none"},children:[]}]},han:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]}]},hap:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"48",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},har:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},has:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},hat:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"16",cy:"16",r:"8",fill:1,stroke:1},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M48 32C48 40.8366 40.8366 48 32 48C23.1634 48 16 40.8366 16 32C16 23.1634 23.1634 16 32 16C40.8366 16 48 23.1634 48 32ZM32 40C36.4183 40 40 36.4183 40 32C40 27.5817 36.4183 24 32 24C27.5817 24 24 27.5817 24 32C24 36.4183 27.5817 40 32 40Z",fill:0},children:[]}]},hav:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"96",y1:"2.18557e-08",x2:"96",y2:"128",stroke:0,fill:"none"},children:[]}]},heb:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M2.03434e-06 128C70.6924 128 128 70.6925 128 0",stroke:0,fill:"none"},children:[]}]},hec:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},hep:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.00285417",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},hes:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M32 0L32 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M48 96C48 104.837 40.8366 112 32 112C23.1634 112 16 104.837 16 96C16 87.1634 23.1634 80 32 80C40.8366 80 48 87.1634 48 96ZM32 104C36.4183 104 40 100.418 40 96C40 91.5817 36.4183 88 32 88C27.5817 88 24 91.5817 24 96C24 100.418 27.5817 104 32 104Z",fill:0},children:[]}]},het:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M96 128L96 0",stroke:0,fill:"none"},children:[]}]},hex:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},hid:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M2.03434e-06 128C70.6924 128 128 70.6925 128 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M1.52575e-06 96C53.0193 96 96 53.0193 96 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M1.01717e-06 64C35.3462 64 64 35.3462 64 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M5.08584e-07 32C17.6731 32 32 17.6731 32 0",stroke:0,fill:"none"},children:[]}]},hil:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"8.74228e-08",y1:"64",x2:"128",y2:"64",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]}]},hin:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"32",y1:"2.18557e-08",x2:"32",y2:"128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M48 64C48 72.8366 40.8366 80 32 80C23.1634 80 16 72.8366 16 64C16 55.1634 23.1634 48 32 48C40.8366 48 48 55.1634 48 64ZM32 72C36.4183 72 40 68.4183 40 64C40 59.5817 36.4183 56 32 56C27.5817 56 24 59.5817 24 64C24 68.4183 27.5817 72 32 72Z",fill:0},children:[]}]},hob:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 64V128H0L2.79753e-06 64C4.34256e-06 28.6538 28.6538 -1.54503e-06 64 0C99.3462 1.54503e-06 128 28.6538 128 64Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"128",y1:"64",x2:"-4.37114e-08",y2:"64",stroke:0,fill:"none"},children:[]}]},hoc:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{y1:"-0.5",x2:"45.2548",y2:"-0.5",transform:"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.6499)",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},hod:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M32 0L32 128",stroke:0,fill:"none"},children:[]}]},hol:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"128",y1:"64",x2:"-4.37114e-08",y2:"64",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},hop:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 96C81.6731 96 96 81.6731 96 64C96 46.3269 81.6731 32 64 32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},hos:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"80.0036",y1:"79.9965",x2:"112.004",y2:"111.997",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"16.0036",y1:"15.9965",x2:"48.0036",y2:"47.9965",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"48",cy:"48",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"48",cy:"48",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"80",cy:"47",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"80",cy:"47",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"80",cy:"81",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"80",cy:"81",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"48",cy:"80",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"48",cy:"80",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},hul:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"48",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"48",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},hus:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M64 96C46.3269 96 32 81.6731 32 64",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},hut:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"48",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},lab:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"line",attributes:{y1:"-0.5",x2:"45.2548",y2:"-0.5",transform:"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.6499)",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"15.9964",y1:"111.997",x2:"47.9964",y2:"79.9965",stroke:0,fill:"none"},children:[]}]},lac:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 -9.40976e-06C64 70.6924 92.6538 128 128 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32 -7.63193e-07C32 70.6924 74.9807 128 128 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]}]},lad:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"95.35",y1:"32.7071",x2:"32.0571",y2:"96",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},lag:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 112C90.5097 112 112 90.5097 112 64",stroke:0,fill:"none"},children:[]}]},lan:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"32",y1:"2.18557e-08",x2:"32",y2:"128",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},lap:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M112 64C112 37.4903 90.5097 16 64 16",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"112",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"112",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},lar:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"2.78181e-08",y1:"64",x2:"128",y2:"64",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},las:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"48",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"16",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"16",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},lat:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M2.03434e-06 128C70.6924 128 128 70.6925 128 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M1.52575e-06 96C53.0193 96 96 53.0193 96 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M1.01717e-06 64C35.3462 64 64 35.3462 64 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M5.08584e-07 32C17.6731 32 32 17.6731 32 0",stroke:0,fill:"none"},children:[]}]},lav:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 128C92.6489 128 60.6449 113.669 37.4807 90.5",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 96C101.492 96 77.4939 85.2564 60.1217 67.8862",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64C110.328 64 94.3287 56.8374 82.7471 45.2568",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 32.3716C119.164 32.3716 111.164 28.7903 105.374 23",stroke:0,fill:"none"},children:[]}]},leb:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-1.64036e-05 32C53.0193 32 96 74.9807 96 128",stroke:0,fill:"none"},children:[]}]},lec:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},led:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},leg:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M7.63192e-07 32C17.6731 32 32 46.3269 32 64C32 81.6731 17.6731 96 0 96",stroke:0,fill:"none"},children:[]}]},len:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"48",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},lep:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 96C110.327 96 96 110.327 96 128",stroke:0,fill:"none"},children:[]}]},ler:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M32 0L32 128",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},lev:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},lex:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"line",attributes:{x1:"15.9965",y1:"111.997",x2:"47.9965",y2:"79.9965",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},lib:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64C92.6538 64 64 92.6538 64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]}]},lid:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"16.0036",y1:"15.9965",x2:"48.0036",y2:"47.9965",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},lig:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"48",stroke:0,fill:"none"},children:[]}]},lin:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64",y1:"128",x2:"64",y2:"-6.55671e-08",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"80",cy:"64",r:"8",fill:0},children:[]}]},lis:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-4.70488e-06 64C35.3462 64 64 35.3462 64 0",stroke:0,fill:"none"},children:[]}]},lit:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00286865 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M128 0C128 35.3511 113.669 67.3551 90.5 90.5193",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M96 0C96 26.5077 85.2564 50.5061 67.8862 67.8783",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 0C64 17.6721 56.8374 33.6713 45.2568 45.2529",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32.3716 0C32.3716 8.83603 28.7903 16.8356 23 22.6264",stroke:0,fill:"none"},children:[]}]},liv:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-5.21346e-06 32C70.6924 32 128 17.6731 128 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M3.4331e-06 96C70.6924 96 128 53.0193 128 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]}]},loc:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 96C74.9807 96 32 53.0193 32 -4.19629e-06",stroke:0,fill:"none"},children:[]}]},lod:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M16 64C16 90.5097 37.4903 112 64 112",stroke:0,fill:"none"},children:[]}]},lom:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},lon:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M2.03434e-06 128C70.6924 128 128 70.6925 128 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M1.52575e-06 96C53.0193 96 96 53.0193 96 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M1.01717e-06 64C35.3462 64 64 35.3462 64 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M5.08584e-07 32C17.6731 32 32 17.6731 32 0",stroke:0,fill:"none"},children:[]}]},lop:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"128",y1:"64",x2:"-8.87604e-09",y2:"64",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"128",y1:"32",x2:"-8.87604e-09",y2:"32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},lor:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]}]},los:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},luc:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"128",y1:"64",x2:"-8.87604e-09",y2:"64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 96L0 96",stroke:0,fill:"none"},children:[]}]},lud:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32 0L32 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M96 0L96 128",stroke:0,fill:"none"},children:[]}]},lug:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 -7.62939e-06L64 -2.03434e-06C99.3462 1.05573e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]}]},lun:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]}]},lup:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 -7.62939e-06L64 -2.03434e-06C99.3462 1.05573e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 16C90.5097 16 112 37.4903 112 64C112 90.5097 90.5097 112 64 112",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"128",y1:"64",x2:"-8.87604e-09",y2:"64",stroke:0,fill:"none"},children:[]}]},lur:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M96 0L96 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32 0L32 128",stroke:0,fill:"none"},children:[]}]},lus:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},lut:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},lux:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},lyd:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00280762 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},lyn:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M32 0L32 128",stroke:0,fill:"none"},children:[]}]},lyr:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00268555 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"80",cy:"48",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"80",cy:"48",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},lys:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},lyt:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"line",attributes:{x1:"80.0035",y1:"79.9965",x2:"112.003",y2:"111.997",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},lyx:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},mac:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:0,stroke:0},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:1,stroke:1,"stroke-width":"2"},children:[]}]},mag:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},mal:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"80.0035",y1:"79.9964",x2:"112.004",y2:"111.996",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:0,stroke:0},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:1,stroke:1,"stroke-width":"2"},children:[]}]},map:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"80.0036",y1:"79.9965",x2:"112.004",y2:"111.997",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},mar:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.0029152 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M64 64L64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M86.6274 86.6274C99.1242 74.1307 99.1242 53.8694 86.6274 41.3726C74.1306 28.8758 53.8694 28.8758 41.3726 41.3726",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M75.3137 75.3137C81.5621 69.0653 81.5621 58.9347 75.3137 52.6863C69.0653 46.4379 58.9347 46.4379 52.6863 52.6863",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M97.9411 97.9411C116.686 79.1959 116.686 48.804 97.9411 30.0589C79.196 11.3137 48.804 11.3137 30.0589 30.0589",stroke:0,fill:"none"},children:[]}]},mas:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},mat:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 32C110.327 32 96 17.6731 96 0",stroke:0,fill:"none"},children:[]}]},meb:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M32 -3.05151e-06C32 53.0193 74.9807 96 128 96",stroke:0,fill:"none"},children:[]}]},mec:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"80.0035",y1:"79.9965",x2:"112.003",y2:"111.997",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},med:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"96",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},meg:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64C92.6538 64 64 92.6538 64 128",stroke:0,fill:"none"},children:[]}]},mel:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"15.9964",y1:"111.997",x2:"47.9964",y2:"79.9965",stroke:0,fill:"none"},children:[]}]},mep:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 96L0 96",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 32L0 32",stroke:0,fill:"none"},children:[]}]},mer:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M32 0L32 128",stroke:0,fill:"none"},children:[]}]},mes:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00280762 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"line",attributes:{x1:"15.9964",y1:"111.996",x2:"47.9964",y2:"79.9964",stroke:0,fill:"none"},children:[]}]},met:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M32 128L32 0",stroke:0,fill:"none"},children:[]}]},mev:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},mex:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},mic:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-2.09815e-06 80C26.5097 80 48 101.49 48 128",stroke:0,fill:"none"},children:[]}]},mid:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"128",y1:"64",x2:"-4.37114e-08",y2:"64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64C92.6538 64 64 92.6538 64 128",stroke:0,fill:"none"},children:[]}]},mig:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"80.0036",y1:"79.9965",x2:"112.004",y2:"111.997",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},mil:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"128",y1:"64",x2:"-4.37114e-08",y2:"64",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"128",y1:"32",x2:"-4.37114e-08",y2:"32",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"128",y1:"96",x2:"-4.37114e-08",y2:"96",stroke:0,fill:"none"},children:[]}]},min:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},mip:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 128C92.6538 128 64 99.3462 64 64C64 28.6538 92.6538 4.215e-07 128 0",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},mir:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"16.0036",y1:"15.9964",x2:"48.0036",y2:"47.9964",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M96 64C96 46.3269 81.6731 32 64 32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},mis:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64C92.6538 64 64 92.6538 64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-0.00286865 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},mit:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},moc:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 96L0 96",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 32L0 32",stroke:0,fill:"none"},children:[]}]},mod:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M0 96L128 96",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"16.0035",y1:"15.9965",x2:"48.0035",y2:"47.9965",stroke:0,fill:"none"},children:[]}]},mog:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},mol:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"128",y1:"64",x2:"-4.37114e-08",y2:"64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M112 64C112 90.5097 90.5097 112 64 112C37.4903 112 16 90.5097 16 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M112 0C112 26.5097 90.5097 48 64 48C37.4903 48 16 26.5097 16 0",stroke:0,fill:"none"},children:[]}]},mon:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},mop:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},mor:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"16.0035",y1:"15.9964",x2:"48.0035",y2:"47.9964",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"15.9964",y1:"111.996",x2:"47.9964",y2:"79.9964",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},mos:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},mot:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 96C110.327 96 96 81.6731 96 64C96 46.3269 110.327 32 128 32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},mud:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"80",cy:"80",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"80",cy:"80",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},mug:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 96C81.6731 96 96 81.6731 96 64C96 46.3269 81.6731 32 64 32",stroke:0,fill:"none"},children:[]}]},mul:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"80.0035",y1:"79.9964",x2:"112.003",y2:"111.996",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M112 64C112 37.4903 90.5097 16 64 16",stroke:0,fill:"none"},children:[]}]},mun:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64C92.6538 64 64 35.3462 64 0",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},mur:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},mus:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M96 128C96 74.9807 53.0193 32 0 32",stroke:0,fill:"none"},children:[]}]},mut:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},myl:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"16.0035",y1:"15.9965",x2:"48.0035",y2:"47.9965",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"16",cy:"16",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"16",cy:"16",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},myn:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 1.52638e-06C57.3076 -7.74381e-06 9.2702e-06 57.3075 0 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 32C74.9807 32 32 74.9807 32 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64C92.6538 64 64 92.6538 64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 96C110.327 96 96 110.327 96 128",stroke:0,fill:"none"},children:[]}]},myr:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},nac:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:0,stroke:0},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:1,stroke:1,"stroke-width":"2"},children:[]}]},nal:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M2.82114e-06 110C60.7513 110 110 60.7513 110 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-5.09828e-06 73C40.3168 73 73 40.3168 73 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-6.63647e-07 37C20.4345 37 37 20.4345 37 0",stroke:0,fill:"none"},children:[]}]},nam:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"8.74228e-08",y1:"64",x2:"128",y2:"64",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"112",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"112",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},nap:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},nar:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"8",stroke:0,fill:"none"},children:[]}]},nat:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-1.52588e-05 128C-9.07866e-06 57.3075 57.3076 1.44926e-06 128 7.62939e-06",stroke:0,fill:"none"},children:[]}]},nav:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 96C101.492 96 77.4939 85.2564 60.1217 67.8862",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64C110.328 64 94.3287 56.8374 82.7471 45.2568",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 32.3716C119.164 32.3716 111.164 28.7903 105.374 23",stroke:0,fill:"none"},children:[]}]},neb:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 32C74.9807 32 32 74.9807 32 128",stroke:0,fill:"none"},children:[]}]},nec:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]}]},ned:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},nel:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00268555 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M96 1.90735e-06C96 53.0193 53.0193 96 0 96",stroke:0,fill:"none"},children:[]}]},nem:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64C92.6538 64 64 92.6538 64 128",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},nep:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 128C57.3076 128 3.09007e-06 70.6925 0 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 96C74.9807 96 32 53.0193 32 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64C92.6538 64 64 35.3462 64 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 32C110.327 32 96 17.6731 96 0",stroke:0,fill:"none"},children:[]}]},ner:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"15.9965",y1:"111.997",x2:"47.9965",y2:"79.9965",stroke:0,fill:"none"},children:[]}]},nes:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]}]},net:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 64L64 128",stroke:0,fill:"none"},children:[]}]},nev:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},nex:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 -7.62939e-06L64 -2.03434e-06C99.3462 1.05573e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"80.0035",y1:"79.9964",x2:"112.003",y2:"111.996",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},nib:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 96L0 96",stroke:0,fill:"none"},children:[]}]},nid:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 128C92.6538 128 64 70.6925 64 7.63192e-07",stroke:0,fill:"none"},children:[]}]},nil:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"128",y1:"64",x2:"-8.87604e-09",y2:"64",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"128",y1:"32",x2:"-8.87604e-09",y2:"32",stroke:0,fill:"none"},children:[]}]},nim:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 64V128H0L2.79753e-06 64C4.34256e-06 28.6538 28.6538 -1.54503e-06 64 0C99.3462 1.54503e-06 128 28.6538 128 64Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]}]},nis:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 32C74.9807 32 32 74.9807 32 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-0.00285435 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},noc:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},nod:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"96",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},nol:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"128",y1:"64",x2:"1.51277e-05",y2:"64",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},nom:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},nop:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"line",attributes:{y1:"-0.5",x2:"45.2548",y2:"-0.5",transform:"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.65)",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},nor:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 96C46.3269 96 32 81.6731 32 64",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},nos:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},nov:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M2.03434e-06 128C70.6924 128 128 70.6925 128 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M1.52575e-06 96C53.0193 96 96 53.0193 96 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M1.01717e-06 64C35.3462 64 64 35.3462 64 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M5.08584e-07 32C17.6731 32 32 17.6731 32 0",stroke:0,fill:"none"},children:[]}]},nub:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]}]},nul:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},num:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},nup:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 -7.62939e-06L64 -2.03434e-06C99.3462 1.05573e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 16C90.5097 16 112 37.4903 112 64C112 90.5097 90.5097 112 64 112",stroke:0,fill:"none"},children:[]}]},nus:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00280762 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M0.000105172 128C35.3582 128 67.3679 113.664 90.5332 90.4863",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"31",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"31",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},nut:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"80.0035",y1:"79.9964",x2:"112.003",y2:"111.996",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{y1:"-0.5",x2:"45.2548",y2:"-0.5",transform:"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.6499 47.6499)",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},nux:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 96L0 96",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 32L0 32",stroke:0,fill:"none"},children:[]}]},nyd:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},nyl:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M0 128C4.63574e-06 92.6489 14.3309 60.6449 37.5 37.4807",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32 128C32 101.492 42.7436 77.4939 60.1138 60.1217",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 128C64 110.328 71.1626 94.3287 82.7432 82.7471",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M95.6284 128C95.6284 119.164 99.2097 111.164 105 105.374",stroke:0,fill:"none"},children:[]}]},nym:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M96 0L96 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32 0L32 128",stroke:0,fill:"none"},children:[]}]},nyr:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00268555 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M95.9984 0C95.9984 26.3298 85.3985 50.1839 68.2332 67.5278M63.9983 0C63.9983 17.4933 56.9799 33.3473 45.6054 44.8999M31.9983 0C31.9983 8.65672 28.5609 16.5106 22.9766 22.2711",stroke:0,fill:"none"},children:[]}]},nys:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},nyt:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 32C81.6731 32 96 46.3269 96 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 16C90.5097 16 112 37.4903 112 64",stroke:0,fill:"none"},children:[]}]},nyx:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},pac:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},pad:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},pag:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"15.9964",y1:"111.997",x2:"47.9964",y2:"79.9965",stroke:0,fill:"none"},children:[]}]},pal:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M128 96C101.492 96 77.4939 85.2564 60.1217 67.8862",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64C110.328 64 94.3287 56.8374 82.7471 45.2568",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 32.3716C119.164 32.3716 111.164 28.7903 105.374 23",stroke:0,fill:"none"},children:[]}]},pan:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M41.3726 86.6274C28.8758 74.1306 28.8758 53.8693 41.3726 41.3725C53.8694 28.8758 74.1306 28.8758 86.6274 41.3725",stroke:0,fill:"none"},children:[]}]},par:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.693 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},pas:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M32 0L32 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M96 0L96 128",stroke:0,fill:"none"},children:[]}]},pat:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M32 -2.67054e-06C32 53.0193 74.9807 96 128 96",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 -1.78036e-06C64 35.3462 92.6538 64 128 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M96 -8.9018e-07C96 17.6731 110.327 32 128 32",stroke:0,fill:"none"},children:[]}]},pec:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},ped:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},peg:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M96 0C96 17.6731 81.6731 32 64 32C46.3269 32 32 17.6731 32 0",stroke:0,fill:"none"},children:[]}]},pel:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M112 64C112 37.4903 90.5097 16 64 16",stroke:0,fill:"none"},children:[]}]},pem:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00280762 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M64 128C64 92.6538 35.3462 64 0 64",stroke:0,fill:"none"},children:[]}]},pen:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M96 0C96 17.6731 81.6731 32 64 32C46.3269 32 32 17.6731 32 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},per:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 64L5.59506e-06 0L128 1.11901e-05V64C128 99.3462 99.3462 128 64 128C28.6538 128 -4.6351e-06 99.3462 0 64Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]}]},pes:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 112C90.5097 112 112 90.5097 112 64",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"-0.00285417",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},pet:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"80.0035",y1:"79.9964",x2:"112.003",y2:"111.996",stroke:0,fill:"none"},children:[]}]},pex:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},pic:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M96 128C96 74.9807 53.0193 32 0 32",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 128C64 92.6538 35.3462 64 0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32 128C32 110.327 17.6731 96 0 96",stroke:0,fill:"none"},children:[]}]},pid:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:0,stroke:0},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:1,stroke:1,"stroke-width":"2"},children:[]}]},pil:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},pin:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M32 0L32 128",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},pit:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:0,stroke:0},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:1,stroke:1,"stroke-width":"2"},children:[]}]},poc:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64.5",y1:"-0.5",x2:"64.5",y2:"127.5",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"96.5",y1:"-0.5",x2:"96.5",y2:"127.5",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"32.5",y1:"-0.5",x2:"32.5",y2:"127.5",stroke:0,fill:"none"},children:[]}]},pod:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"128",y1:"96",x2:"-8.87604e-09",y2:"96",stroke:0,fill:"none"},children:[]}]},pol:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"48",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"128",y1:"32",x2:"-8.87604e-09",y2:"32",stroke:0,fill:"none"},children:[]}]},pon:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]}]},pos:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},pub:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M32 0L32 128",stroke:0,fill:"none"},children:[]}]},pun:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M112 64C112 37.4903 90.5097 16 64 16",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M96 64C96 46.3269 81.6731 32 64 32",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M80 64C80 55.1634 72.8366 48 64 48",stroke:0,fill:"none"},children:[]}]},pur:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M3.73284e-05 64C17.6633 64 33.6554 56.8445 45.2356 45.2741",stroke:0,fill:"none"},children:[]}]},put:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},pyl:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-5.59506e-06 128C35.3462 128 64 99.3462 64 64C64 28.6538 35.3462 1.54503e-06 0 0",stroke:0,fill:"none"},children:[]}]},pyx:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},rab:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"line",attributes:{x1:"15.9965",y1:"111.997",x2:"47.9964",y2:"79.9965",stroke:0,fill:"none"},children:[]}]},rac:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:0,stroke:0},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:1,stroke:1,"stroke-width":"2"},children:[]}]},rad:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},rag:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"16.0036",y1:"15.9965",x2:"48.0036",y2:"47.9965",stroke:0,fill:"none"},children:[]}]},ral:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},ram:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},ran:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-0.00291443 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},rap:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64",y1:"-1.29797e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},rav:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 32L0 32",stroke:0,fill:"none"},children:[]}]},reb:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 -9.40976e-06C57.3075 -6.31969e-06 -3.09007e-06 57.3075 0 128",stroke:0,fill:"none"},children:[]}]},rec:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},red:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},ref:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:0,stroke:0},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:1,stroke:1,"stroke-width":"2"},children:[]}]},reg:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 96C110.327 96 96 81.6731 96 64C96 46.3269 110.327 32 128 32",stroke:0,fill:"none"},children:[]}]},rel:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 96L0 96",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 32L0 32",stroke:0,fill:"none"},children:[]}]},rem:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64C92.6538 64 64 35.3462 64 0",stroke:0,fill:"none"},children:[]}]},ren:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"80.0035",y1:"79.9965",x2:"112.003",y2:"111.997",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},rep:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M32 128C32 74.9807 74.9807 32 128 32",stroke:0,fill:"none"},children:[]}]},res:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"80.0035",y1:"79.9965",x2:"112.003",y2:"111.997",stroke:0,fill:"none"},children:[]}]},ret:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]}]},rev:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"15.9965",y1:"111.997",x2:"53.9965",y2:"73.9965",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},rex:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},rib:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"8.74228e-08",y1:"64",x2:"128",y2:"64",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]}]},ric:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M96 128C96 74.9807 53.0193 32 0 32",stroke:0,fill:"none"},children:[]}]},rid:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M96 0L96 128",stroke:0,fill:"none"},children:[]}]},rig:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"64",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},ril:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.693 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},rin:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"32",y1:"2.18557e-08",x2:"32",y2:"128",stroke:0,fill:"none"},children:[]}]},rip:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M96 64C96 46.3269 81.6731 32 64 32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},ris:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M128 0C128 35.3511 113.669 67.3551 90.5 90.5193",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M96 0C96 26.5077 85.2564 50.5061 67.8862 67.8783",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 0C64 17.6721 56.8374 33.6713 45.2568 45.2529",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32.3716 0C32.3716 8.83603 28.7903 16.8356 23 22.6264",stroke:0,fill:"none"},children:[]}]},rit:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},riv:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"48",stroke:0,fill:"none"},children:[]}]},roc:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:0,stroke:0},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:1,stroke:1,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"112",cy:"16",r:"11.5",fill:0,stroke:0},children:[]},{name:"circle",attributes:{cx:"112",cy:"16",r:"9",fill:1,stroke:1,"stroke-width":"2"},children:[]}]},rol:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 16C90.5097 16 112 37.4903 112 64C112 90.5097 90.5097 112 64 112",stroke:0,fill:"none"},children:[]}]},ron:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0C128 70.6924 70.6925 128 0 128",stroke:0,fill:"none"},children:[]}]},rop:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M112 64C112 37.4903 90.5097 16 64 16",stroke:0,fill:"none"},children:[]}]},ros:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},rov:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M128 0C128 35.3511 113.669 67.3551 90.5 90.5193",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M96 0C96 26.5077 85.2564 50.5061 67.8862 67.8783",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 0C64 17.6721 56.8374 33.6713 45.2568 45.2529",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32.3716 0C32.3716 8.83603 28.7903 16.8356 23 22.6264",stroke:0,fill:"none"},children:[]}]},ruc:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 32L0 32",stroke:0,fill:"none"},children:[]}]},rud:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32 0L32 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]}]},rul:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"80.0035",y1:"79.9964",x2:"112.003",y2:"111.996",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},rum:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M5.08584e-07 32C17.6731 32 32 17.6731 32 0",stroke:0,fill:"none"},children:[]}]},run:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M96 0L96 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32 0L32 128",stroke:0,fill:"none"},children:[]}]},rup:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 112C90.5097 112 112 90.5097 112 64C112 37.4903 90.5097 16 64 16",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]}]},rus:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M64 128C64 92.6538 35.3462 64 0 64",stroke:0,fill:"none"},children:[]}]},rut:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},rux:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32 64C32 81.6731 46.3269 96 64 96",stroke:0,fill:"none"},children:[]}]},ryc:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 96L0 96",stroke:0,fill:"none"},children:[]}]},ryd:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00280762 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M96 64C96 81.6731 81.6731 96 64 96",stroke:0,fill:"none"},children:[]}]},ryg:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-2.79795e-06 -3.55988e-06C70.6924 -4.40288e-06 128 57.3075 128 128",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"16.0035",y1:"15.9965",x2:"48.0035",y2:"47.9965",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},ryl:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M128 128C92.6489 128 60.6449 113.669 37.4807 90.5",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 96C101.492 96 77.4939 85.2564 60.1217 67.8862",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64C110.328 64 94.3287 56.8374 82.7471 45.2568",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 32.3716C119.164 32.3716 111.164 28.7903 105.374 23",stroke:0,fill:"none"},children:[]}]},rym:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 96L0 96",stroke:0,fill:"none"},children:[]}]},ryn:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 128C57.3075 128 -3.09007e-06 70.6925 0 0",stroke:0,fill:"none"},children:[]}]},ryp:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},rys:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M1.52575e-06 96C53.0193 96 96 53.0193 96 0",stroke:0,fill:"none"},children:[]}]},ryt:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 -7.62939e-06L64 -2.03434e-06C99.3462 1.05573e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"48",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},ryx:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},sab:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"line",attributes:{y1:"-0.5",x2:"45.2548",y2:"-0.5",transform:"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.65)",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:0,stroke:0},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:1,stroke:1,"stroke-width":"2"},children:[]}]},sal:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M0 128L128 0",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M-0.701724 31.9914C25.6281 31.9914 49.4822 42.5913 66.8261 59.7565M-0.701723 63.9914C16.7916 63.9914 32.6456 71.0098 44.1982 82.3844M-0.701722 95.9914C7.955 95.9914 15.8089 99.4288 21.5694 105.013",stroke:0,fill:"none"},children:[]}]},sam:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"48",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},san:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},sap:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"128",y1:"64",x2:"-4.37114e-08",y2:"64",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"64",r:"8",fill:0},children:[]}]},sar:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"48",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"48",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]}]},sat:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 0 0 0",stroke:0,fill:"none"},children:[]}]},sav:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M96 64C96 46.3269 81.6731 32 64 32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},seb:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64C92.6538 64 64 35.3462 64 0",stroke:0,fill:"none"},children:[]}]},sec:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},sed:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"96",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},sef:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:0,stroke:0},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:1,stroke:1,"stroke-width":"2"},children:[]}]},seg:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M32 128C32 110.327 46.3269 96 64 96C81.6731 96 96 110.327 96 128",stroke:0,fill:"none"},children:[]}]},sel:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"8",stroke:0,fill:"none"},children:[]}]},sem:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M1.01717e-06 64C35.3462 64 64 35.3462 64 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},sen:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M96 128C96 110.327 81.6731 96 64 96C46.3269 96 32 110.327 32 128",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},sep:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 128L64 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32 128L32 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M96 128L96 0",stroke:0,fill:"none"},children:[]}]},ser:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 64L5.59506e-06 0L128 1.11901e-05V64C128 99.3462 99.3462 128 64 128C28.6538 128 -4.6351e-06 99.3462 0 64Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M32 0L32 128",stroke:0,fill:"none"},children:[]}]},set:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 64L128 64",stroke:0,fill:"none"},children:[]}]},sev:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"48",stroke:0,fill:"none"},children:[]}]},sib:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M64 9.40976e-06C64 35.3462 92.6538 64 128 64",stroke:0,fill:"none"},children:[]}]},sic:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},sid:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 128C110.327 128 96 113.673 96 96C96 78.3269 110.327 64 128 64",stroke:0,fill:"none"},children:[]}]},sig:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"96",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},sil:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"16.0036",y1:"15.9965",x2:"48.0036",y2:"47.9965",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},sim:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 64V128H0L2.79753e-06 64C4.34256e-06 28.6538 28.6538 -1.54503e-06 64 0C99.3462 1.54503e-06 128 28.6538 128 64Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32 0L32 128",stroke:0,fill:"none"},children:[]}]},sip:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M16 64C16 37.4903 37.4903 16 64 16",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"16",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"16",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},sit:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},siv:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 96L0 96",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},soc:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"16",cy:"16",r:"11.5",fill:0,stroke:0},children:[]},{name:"circle",attributes:{cx:"16",cy:"16",r:"9",fill:1,stroke:1,"stroke-width":"2"},children:[]}]},sog:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M64 96C81.6731 96 96 81.6731 96 64C96 46.3269 81.6731 32 64 32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},sol:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64L-5.96046e-08 64",stroke:0,fill:"none"},children:[]}]},som:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},son:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"127.553",y1:"128.224",x2:"63.5528",y2:"0.223598",stroke:0,fill:"none"},children:[]}]},sop:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},sor:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M128 0C128 35.3511 113.669 67.3551 90.5 90.5193",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M96 0C96 26.5077 85.2564 50.5061 67.8862 67.8783",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 0C64 17.6721 56.8374 33.6713 45.2568 45.2529",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32.3716 0C32.3716 8.83603 28.7903 16.8356 23 22.6264",stroke:0,fill:"none"},children:[]}]},sov:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M0 128L128 0",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M128 128C92.6489 128 60.6449 113.669 37.4807 90.5",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 96C101.492 96 77.4939 85.2564 60.1217 67.8862",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64C110.328 64 94.3287 56.8374 82.7471 45.2568",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 32.3716C119.164 32.3716 111.164 28.7903 105.374 23",stroke:0,fill:"none"},children:[]}]},sub:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]}]},sud:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"128",y1:"64",x2:"-8.87604e-09",y2:"64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},sug:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"16",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"16",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"80",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"80",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},sul:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 96C46.3269 96 32 81.6731 32 64C32 46.3269 46.3269 32 64 32",stroke:0,fill:"none"},children:[]}]},sum:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M1.01717e-06 64C35.3462 64 64 35.3462 64 0",stroke:0,fill:"none"},children:[]}]},sun:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1},children:[]},{name:"circle",attributes:{cx:"80",cy:"80",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"80",cy:"80",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"80",cy:"48",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"80",cy:"48",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"48",cy:"48",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"48",cy:"48",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"48",cy:"80",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"48",cy:"80",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},sup:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 112C90.5097 112 112 90.5097 112 64C112 37.4903 90.5097 16 64 16",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},sur:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M3.73284e-05 64.0001C17.6633 64.0001 33.6554 56.8446 45.2356 45.2742",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M0.000105172 128C35.3582 128 67.3679 113.664 90.5332 90.4863",stroke:0,fill:"none"},children:[]}]},sut:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},syd:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 16C37.4903 16 16 37.4903 16 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},syl:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},sym:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"96.5",y1:"3.07317e-08",x2:"96.5",y2:"128",stroke:0,fill:"none"},children:[]}]},syn:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M0 0C35.3511 0 67.3551 14.3309 90.5193 37.5",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M0 32C26.5077 32 50.5061 42.7436 67.8783 60.1138",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M0 64C17.6721 64 33.6713 71.1626 45.2529 82.7432",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M0 95.6284C8.83603 95.6284 16.8356 99.2097 22.6264 105",stroke:0,fill:"none"},children:[]}]},syp:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00280762 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M1.01717e-06 64C35.3462 64 64 35.3462 64 0",stroke:0,fill:"none"},children:[]}]},syr:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},syt:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"48",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},syx:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M0 128C4.63574e-06 92.6488 14.3309 60.6449 37.5 37.4807",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32 128C32 101.492 42.7436 77.4939 60.1138 60.1216",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 128C64 110.328 71.1626 94.3287 82.7432 82.7471",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M95.6284 128C95.6284 119.164 99.2097 111.164 105 105.374",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-0.00280762 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},tab:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"8",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:0,stroke:0},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:1,stroke:1,"stroke-width":"2"},children:[]}]},tac:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"96",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},tad:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},tag:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"80.0036",y1:"79.9964",x2:"112.004",y2:"111.996",stroke:0,fill:"none"},children:[]}]},tal:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"0.5",y1:"-0.5",x2:"181.5",y2:"-0.5",transform:"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M96 128C96 74.9807 53.0193 32 0 32",stroke:0,fill:"none"},children:[]}]},tam:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"128",y1:"96",x2:"-8.87604e-09",y2:"96",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"128",y1:"32",x2:"-8.87604e-09",y2:"32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},tan:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M96 128C96 74.9807 53.0193 32 0 32",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 128C64 92.6538 35.3462 64 0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M48 128C48 101.49 26.5097 80 0 80",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M32 128C32 110.327 17.6731 96 0 96",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M16 128C16 119.163 8.83656 112 0 112",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 128C128 57.3075 70.6925 0 0 0",stroke:0,fill:"none"},children:[]}]},tap:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"48",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"128",y1:"64",x2:"-8.87604e-09",y2:"64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 32C81.6731 32 96 46.3269 96 64C96 81.6731 81.6731 96 64 96",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},tar:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"48",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"16",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"16",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},tas:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M64 32C81.6731 32 96 46.3269 96 64C96 81.6731 81.6731 96 64 96",stroke:0,fill:"none"},children:[]}]},teb:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M1.52575e-06 96C53.0193 96 96 53.0193 96 0",stroke:0,fill:"none"},children:[]}]},tec:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"80.0035",y1:"79.9965",x2:"112.003",y2:"111.997",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},ted:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},teg:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 80C119.163 80 112 72.8366 112 64C112 55.1634 119.163 48 128 48",stroke:0,fill:"none"},children:[]}]},tel:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"15",cy:"112",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"15",cy:"112",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"path",attributes:{d:"M0 0L127.986 127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M32 0L128 96",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M64 0L128 64",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M96 0L128 32",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},tem:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64C92.6538 64 64 92.6538 64 128",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"-0.00285417",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},ten:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"48",cy:"48",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"48",cy:"48",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"80",cy:"48",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"80",cy:"48",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"80",cy:"80",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"80",cy:"80",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"48",cy:"80",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"48",cy:"80",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},tep:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M1.14479e-06 96C53.0193 96 96 53.0193 96 0",stroke:0,fill:"none"},children:[]}]},ter:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 64L5.59506e-06 0L128 1.11901e-05V64C128 99.3462 99.3462 128 64 128C28.6538 128 -4.6351e-06 99.3462 0 64Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"96.5",y1:"3.07317e-08",x2:"96.5",y2:"128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M1.01717e-06 64C35.3462 64 64 35.3462 64 0",stroke:0,fill:"none"},children:[]}]},tes:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]}]},tev:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]}]},tex:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"15.9965",y1:"111.997",x2:"47.9965",y2:"79.9965",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},tic:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 32C110.327 32 96 17.6731 96 -1.39876e-06",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},tid:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"96",y1:"2.18557e-08",x2:"96",y2:"128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M112 32C112 40.8366 104.837 48 96 48C87.1634 48 80 40.8366 80 32C80 23.1634 87.1634 16 96 16C104.837 16 112 23.1634 112 32ZM96 40C100.418 40 104 36.4183 104 32C104 27.5817 100.418 24 96 24C91.5817 24 88 27.5817 88 32C88 36.4183 91.5817 40 96 40Z",fill:0},children:[]}]},til:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"80.0036",y1:"79.9965",x2:"112.004",y2:"111.997",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},tim:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 64V128H0L2.79753e-06 64C4.34256e-06 28.6538 28.6538 -1.54503e-06 64 0C99.3462 1.54503e-06 128 28.6538 128 64Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00291443 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},tin:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"32",y1:"2.18557e-08",x2:"32",y2:"128",stroke:0,fill:"none"},children:[]}]},tip:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},tir:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]}]},tob:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 64V128H0L2.79753e-06 64C4.34256e-06 28.6538 28.6538 -1.54503e-06 64 0C99.3462 1.54503e-06 128 28.6538 128 64Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 96L0 96",stroke:0,fill:"none"},children:[]}]},toc:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"128",y1:"96",x2:"-8.87604e-09",y2:"96",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},tod:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},tog:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 96C46.3269 96 32 81.6731 32 64",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},tol:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"128",y1:"64",x2:"-4.37114e-08",y2:"64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M16 128C16 101.49 37.4903 80 64 80C90.5097 80 112 101.49 112 128",stroke:0,fill:"none"},children:[]}]},tom:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},ton:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 32C74.9807 32 32 74.9807 32 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64C92.6538 64 64 92.6538 64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 96C110.327 96 96 110.327 96 128",stroke:0,fill:"none"},children:[]}]},top:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"16",stroke:0,fill:"none"},children:[]}]},tor:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},tuc:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 96L0 96",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},tud:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},tug:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 32L0 32",stroke:0,fill:"none"},children:[]}]},tul:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},tun:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 64V128H0L2.79753e-06 64C4.34256e-06 28.6538 28.6538 -1.54503e-06 64 0C99.3462 1.54503e-06 128 28.6538 128 64Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"48",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},tus:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},tux:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},tyc:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},tyd:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00280762 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"line",attributes:{y1:"-0.5",x2:"45.2548",y2:"-0.5",transform:"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.6499)",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"15.9964",y1:"111.997",x2:"47.9964",y2:"79.9965",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},tyl:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M7.37542e-06 -3.56072e-06C1.19529e-06 70.6924 57.3075 128 128 128",stroke:0,fill:"none"},children:[]}]},tyn:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 -2.28831e-06C57.3076 -3.13131e-06 8.42999e-07 57.3075 0 128",stroke:0,fill:"none"},children:[]}]},typ:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M96 1.90735e-06C96 53.0193 53.0193 96 0 96",stroke:0,fill:"none"},children:[]}]},tyr:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M0 0L128 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64C92.6538 64 64 35.3462 64 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M0 64C35.3462 64 64 92.6538 64 128",stroke:0,fill:"none"},children:[]}]},tyv:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M256 0L128 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},wac:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"11.5",fill:0,stroke:0},children:[]},{name:"circle",attributes:{cx:"16",cy:"112",r:"9",fill:1,stroke:1,"stroke-width":"2"},children:[]}]},wal:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64.5",y1:"-0.5",x2:"64.5",y2:"127.5",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"32",y1:"2.18557e-08",x2:"32",y2:"128",stroke:0,fill:"none"},children:[]}]},wan:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]}]},wat:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},web:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 128C128 57.3075 70.6925 0 0 0",stroke:0,fill:"none"},children:[]}]},wed:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},weg:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M79.5254 0C79.5254 8.83656 72.3619 16 63.5254 16C54.6888 16 47.5254 8.83656 47.5254 0",stroke:0,fill:"none"},children:[]}]},wel:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 32C74.9807 32 32 74.9807 32 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 64C92.6538 64 64 92.6538 64 128",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 96C110.327 96 96 110.327 96 128",stroke:0,fill:"none"},children:[]}]},wen:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M1.01717e-06 64C35.3462 64 64 35.3462 64 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]}]},wep:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},wer:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 64L5.59506e-06 0L128 1.11901e-05V64C128 99.3462 99.3462 128 64 128C28.6538 128 -4.6351e-06 99.3462 0 64Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M32 0L32 128",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},wes:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"80.0035",y1:"79.9965",x2:"112.003",y2:"111.997",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"112",cy:"112",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"112",cy:"112",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},wet:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 64H0",stroke:0,fill:"none"},children:[]}]},wex:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},wic:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},wid:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"48.0035",y1:"80.0036",x2:"16.0035",y2:"112.004",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z",fill:0},children:[]}]},win:{name:"g",value:"",attributes:{},children:[{name:"rect",attributes:{width:"128",height:"128",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]}]},wis:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 0C0 70.6925 57.3075 128 128 128V0H0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 64L0 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 32L0 32",stroke:0,fill:"none"},children:[]}]},wit:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"64",y1:"2.18557e-08",x2:"64",y2:"128",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"32",y1:"2.18557e-08",x2:"32",y2:"128",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"96",y1:"2.18557e-08",x2:"96",y2:"128",stroke:0,fill:"none"},children:[]}]},wol:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M0 64L128 64",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M128 96C110.327 96 96 81.6731 96 64C96 46.3269 110.327 32 128 32",stroke:0,fill:"none"},children:[]}]},wor:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{y1:"-0.5",x2:"45.2548",y2:"-0.5",transform:"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.65)",stroke:0,fill:"none"},children:[]},{name:"line",attributes:{x1:"-0.0029152",x2:"127.983",y2:"127.986",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M64 96C46.3269 96 32 81.6731 32 64",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},wyc:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]}]},wyd:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"path",attributes:{d:"M32 64C32 46.3269 46.3269 32 64 32",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},wyl:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-3.8147e-06 128C-7.24633e-07 92.6538 28.6538 64 64 64C99.3462 64 128 92.6538 128 128",stroke:0,fill:"none"},children:[]}]},wyn:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M1.52575e-06 96C53.0193 96 96 53.0193 96 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M1.01717e-06 64C35.3462 64 64 35.3462 64 0",stroke:0,fill:"none"},children:[]},{name:"path",attributes:{d:"M5.08584e-07 32C17.6731 32 32 17.6731 32 0",stroke:0,fill:"none"},children:[]}]},wyt:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M128 0L0 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"48",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"16",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"16",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},wyx:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M-0.00292969 0L127.997 128",stroke:0,"stroke-linecap":"square",fill:"none"},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"96",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"32",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"96",cy:"32",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},zod:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]}]},for:{name:"g",value:"",attributes:{},children:[{name:"path",attributes:{d:"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"line",attributes:{x1:"96",y1:"2.18557e-08",x2:"96",y2:"128",stroke:0,fill:"none"},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"11.5",fill:1,stroke:1},children:[]},{name:"circle",attributes:{cx:"64",cy:"64",r:"9",fill:0,stroke:0,"stroke-width":"2"},children:[]}]},let:{name:"g",value:"",attributes:{},children:[{name:"circle",attributes:{cx:"64",cy:"64",r:"64",fill:1,stroke:0,"stroke-width":"0.5"},children:[]},{name:"path",attributes:{d:"M64 0L64 128",stroke:0,fill:"none"},children:[]}]}};const N=0,R={4:[{x:0,y:0},{x:128,y:0},{x:0,y:128},{x:128,y:128}],2:[{x:0,y:0},{x:128,y:0}],1:[{x:0,y:0}]},H={4:{x:2,y:2},2:{x:2,y:1},1:{x:1,y:1}},I=(e,t,n)=>(void 0!==e.attributes.fill&&"none"!==e.attributes.fill&&(e.attributes.fill=t[e.attributes.fill]),void 0!==e.attributes.stroke&&"none"!==e.attributes.stroke&&(e.attributes.stroke=t[e.attributes.stroke],e.attributes["stroke-width"]=n+"px",e.attributes["stroke-linecap"]="square",e.attributes["vector-effect"]="non-scaling-stroke"),{name:e.name,attributes:e.attributes,children:e.children.map(e=>I(e,t,n))});t.reactImageRenderer=e=>j.createElement(e.name,{style:{backgroundRepeat:"no-repeat",width:e.attributes.style.width,height:e.attributes.style.height,backgroundImage:`url(data:image/svg+xml;base64,${btoa(h(e))})`}}),t.reactRenderer=Y,t.sigil=e=>{e=o({},e);const t=P(e.colors)?["#000","#fff"]:e.colors;e.attributes=P(e.attributes)?{}:e.attributes,e.style=P(e.style)?{}:e.style,e.class=P(e.class)?"":e.class,e.size=P(e.size)?e.height:e.size,e.width=P(e.width)?e.size:e.width,e.height=P(e.height)?e.size:e.height,e.margin=!!P(e.margin)||e.margin,e.strokeScalingFunction=!P(e.strokeScalingFunction)&&e.strokeScalingFunction;let n=((e,t)=>{const n=new RegExp(`.{1,${t}}`,"g");return e.match(n)})(e.patp.replace(/[\^~-]/g,""),3);const r=1===n.length||2===n.length||4===n.length;let i;c(r,`urbit-sigil-js cannot render @p of length ${n.length}. Only lengths of 1 (galaxy), 2 (star), and 4 (planet) are supported at this time.`);const l=n.map(e=>{const t=A[e];if(!P(t))return i=!0,n=t,JSON.parse(JSON.stringify(n));var n;i=!1});c(i,"urbit-sigil-js needs a valid patp (point name). Patp field is invalid. Recieved "+e.patp);const u=4===l.length?4:2===l.length?2:1,d=R[u];for(let e=0;e({a:e.a*t.a+e.c*t.b,c:e.a*t.c+e.c*t.d,e:e.a*t.e+e.c*t.f+e.e,b:e.b*t.a+e.d*t.b,d:e.b*t.c+e.d*t.d,f:e.b*t.e+e.d*t.f+e.f});switch((t=Array.isArray(t[0])?t[0]:t).length){case 0:throw new Error("no matrices provided");case 1:return t[0];case 2:return n(t[0],t[1]);default:const[r,i,...o]=t;return e(n(r,i),...o)}}(a(m.x,m.y),(g=b,void 0===(y=b)&&(y=g),{a:g,c:0,e:0,b:0,d:y,f:0})))},children:l};void 0===e.style.width&&(e.style.width=e.width+"px"),void 0===e.style.height&&(e.style.height=e.height+"px");const _={name:"svg",attributes:o({style:o({display:"block"},e.style),viewBox:`0 0 ${e.width} ${e.height}`,version:"1.1",xmlns:"http://www.w3.org/2000/svg",class:e.class},e.attributes),children:[{name:"rect",attributes:{fill:N,width:e.width+"px",height:e.height+"px",x:0,y:0},children:[]},v]};let k;k=e.strokeScalingFunction?e.strokeScalingFunction(e.size):e.size/128+.33;const w=I(_,t,k);return void 0===e.renderer?w:e.renderer(w)},t.stringRenderer=h},function(e,t,n){"use strict";var r=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|inert|itemProp|itemScope|itemType|itemID|itemRef|on|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,i=function(e){var t={};return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}}((function(e){return r.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}));t.a=i},function(e,t,n){!function(e){"use strict";var t={autoSelfClosers:{area:!0,base:!0,br:!0,col:!0,command:!0,embed:!0,frame:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0,menuitem:!0},implicitlyClosed:{dd:!0,li:!0,optgroup:!0,option:!0,p:!0,rp:!0,rt:!0,tbody:!0,td:!0,tfoot:!0,th:!0,tr:!0},contextGrabbers:{dd:{dd:!0,dt:!0},dt:{dd:!0,dt:!0},li:{li:!0},option:{option:!0,optgroup:!0},optgroup:{optgroup:!0},p:{address:!0,article:!0,aside:!0,blockquote:!0,dir:!0,div:!0,dl:!0,fieldset:!0,footer:!0,form:!0,h1:!0,h2:!0,h3:!0,h4:!0,h5:!0,h6:!0,header:!0,hgroup:!0,hr:!0,menu:!0,nav:!0,ol:!0,p:!0,pre:!0,section:!0,table:!0,ul:!0},rp:{rp:!0,rt:!0},rt:{rp:!0,rt:!0},tbody:{tbody:!0,tfoot:!0},td:{td:!0,th:!0},tfoot:{tbody:!0},th:{td:!0,th:!0},thead:{tbody:!0,tfoot:!0},tr:{tr:!0}},doNotIndent:{pre:!0},allowUnquoted:!0,allowMissing:!0,caseFold:!0},n={autoSelfClosers:{},implicitlyClosed:{},contextGrabbers:{},doNotIndent:{},allowUnquoted:!1,allowMissing:!1,allowMissingTagName:!1,caseFold:!1};e.defineMode("xml",(function(r,i){var o,a,s=r.indentUnit,l={},c=i.htmlMode?t:n;for(var u in c)l[u]=c[u];for(var u in i)l[u]=i[u];function d(e,t){function n(n){return t.tokenize=n,n(e,t)}var r=e.next();return"<"==r?e.eat("!")?e.eat("[")?e.match("CDATA[")?n(h("atom","]]>")):null:e.match("--")?n(h("comment","--\x3e")):e.match("DOCTYPE",!0,!0)?(e.eatWhile(/[\w\._\-]/),n(function e(t){return function(n,r){for(var i;null!=(i=n.next());){if("<"==i)return r.tokenize=e(t+1),r.tokenize(n,r);if(">"==i){if(1==t){r.tokenize=d;break}return r.tokenize=e(t-1),r.tokenize(n,r)}}return"meta"}}(1))):null:e.eat("?")?(e.eatWhile(/[\w\._\-]/),t.tokenize=h("meta","?>"),"meta"):(o=e.eat("/")?"closeTag":"openTag",t.tokenize=f,"tag bracket"):"&"==r?(e.eat("#")?e.eat("x")?e.eatWhile(/[a-fA-F\d]/)&&e.eat(";"):e.eatWhile(/[\d]/)&&e.eat(";"):e.eatWhile(/[\w\.\-:]/)&&e.eat(";"))?"atom":"error":(e.eatWhile(/[^&<]/),null)}function f(e,t){var n,r,i=e.next();if(">"==i||"/"==i&&e.eat(">"))return t.tokenize=d,o=">"==i?"endTag":"selfcloseTag","tag bracket";if("="==i)return o="equals",null;if("<"==i){t.tokenize=d,t.state=g,t.tagName=t.tagStart=null;var a=t.tokenize(e,t);return a?a+" tag error":"tag error"}return/[\'\"]/.test(i)?(t.tokenize=(n=i,(r=function(e,t){for(;!e.eol();)if(e.next()==n){t.tokenize=f;break}return"string"}).isInAttribute=!0,r),t.stringStartCol=e.column(),t.tokenize(e,t)):(e.match(/^[^\s\u00a0=<>\"\']*[^\s\u00a0=<>\"\'\/]/),"word")}function h(e,t){return function(n,r){for(;!n.eol();){if(n.match(t)){r.tokenize=d;break}n.next()}return e}}function p(e,t,n){this.prev=e.context,this.tagName=t,this.indent=e.indented,this.startOfLine=n,(l.doNotIndent.hasOwnProperty(t)||e.context&&e.context.noIndent)&&(this.noIndent=!0)}function m(e){e.context&&(e.context=e.context.prev)}function b(e,t){for(var n;;){if(!e.context)return;if(n=e.context.tagName,!l.contextGrabbers.hasOwnProperty(n)||!l.contextGrabbers[n].hasOwnProperty(t))return;m(e)}}function g(e,t,n){return"openTag"==e?(n.tagStart=t.column(),y):"closeTag"==e?v:g}function y(e,t,n){return"word"==e?(n.tagName=t.current(),a="tag",w):l.allowMissingTagName&&"endTag"==e?(a="tag bracket",w(e,0,n)):(a="error",y)}function v(e,t,n){if("word"==e){var r=t.current();return n.context&&n.context.tagName!=r&&l.implicitlyClosed.hasOwnProperty(n.context.tagName)&&m(n),n.context&&n.context.tagName==r||!1===l.matchClosing?(a="tag",_):(a="tag error",k)}return l.allowMissingTagName&&"endTag"==e?(a="tag bracket",_(e,0,n)):(a="error",k)}function _(e,t,n){return"endTag"!=e?(a="error",_):(m(n),g)}function k(e,t,n){return a="error",_(e,0,n)}function w(e,t,n){if("word"==e)return a="attribute",x;if("endTag"==e||"selfcloseTag"==e){var r=n.tagName,i=n.tagStart;return n.tagName=n.tagStart=null,"selfcloseTag"==e||l.autoSelfClosers.hasOwnProperty(r)?b(n,r):(b(n,r),n.context=new p(n,r,i==n.indented)),g}return a="error",w}function x(e,t,n){return"equals"==e?M:(l.allowMissing||(a="error"),w(e,0,n))}function M(e,t,n){return"string"==e?S:"word"==e&&l.allowUnquoted?(a="string",w):(a="error",w(e,0,n))}function S(e,t,n){return"string"==e?S:w(e,0,n)}return d.isInText=!0,{startState:function(e){var t={tokenize:d,state:g,indented:e||0,tagName:null,tagStart:null,context:null};return null!=e&&(t.baseIndent=e),t},token:function(e,t){if(!t.tagName&&e.sol()&&(t.indented=e.indentation()),e.eatSpace())return null;o=null;var n=t.tokenize(e,t);return(n||o)&&"comment"!=n&&(a=null,t.state=t.state(o||n,e,t),a&&(n="error"==a?n+" error":a)),n},indent:function(t,n,r){var i=t.context;if(t.tokenize.isInAttribute)return t.tagStart==t.indented?t.stringStartCol+1:t.indented+s;if(i&&i.noIndent)return e.Pass;if(t.tokenize!=f&&t.tokenize!=d)return r?r.match(/^(\s*)/)[0].length:0;if(t.tagName)return!1!==l.multilineTagIndentPastTag?t.tagStart+t.tagName.length+2:t.tagStart+s*(l.multilineTagIndentFactor||1);if(l.alignCDATA&&/$/,blockCommentStart:"\x3c!--",blockCommentEnd:"--\x3e",configuration:l.htmlMode?"html":"xml",helperType:l.htmlMode?"html":"xml",skipAttribute:function(e){e.state==M&&(e.state=w)},xmlCurrentTag:function(e){return e.tagName?{name:e.tagName,close:"closeTag"==e.type}:null},xmlCurrentContext:function(e){for(var t=[],n=e.context;n;n=n.prev)n.tagName&&t.push(n.tagName);return t.reverse()}}})),e.defineMIME("text/xml","xml"),e.defineMIME("application/xml","xml"),e.mimeModes.hasOwnProperty("text/html")||e.defineMIME("text/html",{name:"xml",htmlMode:!0})}(n(11))},function(e,t,n){(function(e){function n(e,t){for(var n=0,r=e.length-1;r>=0;r--){var i=e[r];"."===i?e.splice(r,1):".."===i?(e.splice(r,1),n++):n&&(e.splice(r,1),n--)}if(t)for(;n--;n)e.unshift("..");return e}function r(e,t){if(e.filter)return e.filter(t);for(var n=[],r=0;r=-1&&!i;o--){var a=o>=0?arguments[o]:e.cwd();if("string"!=typeof a)throw new TypeError("Arguments to path.resolve must be strings");a&&(t=a+"/"+t,i="/"===a.charAt(0))}return(i?"/":"")+(t=n(r(t.split("/"),(function(e){return!!e})),!i).join("/"))||"."},t.normalize=function(e){var o=t.isAbsolute(e),a="/"===i(e,-1);return(e=n(r(e.split("/"),(function(e){return!!e})),!o).join("/"))||o||(e="."),e&&a&&(e+="/"),(o?"/":"")+e},t.isAbsolute=function(e){return"/"===e.charAt(0)},t.join=function(){var e=Array.prototype.slice.call(arguments,0);return t.normalize(r(e,(function(e,t){if("string"!=typeof e)throw new TypeError("Arguments to path.join must be strings");return e})).join("/"))},t.relative=function(e,n){function r(e){for(var t=0;t=0&&""===e[n];n--);return t>n?[]:e.slice(t,n-t+1)}e=t.resolve(e).substr(1),n=t.resolve(n).substr(1);for(var i=r(e.split("/")),o=r(n.split("/")),a=Math.min(i.length,o.length),s=a,l=0;l=1;--o)if(47===(t=e.charCodeAt(o))){if(!i){r=o;break}}else i=!1;return-1===r?n?"/":".":n&&1===r?"/":e.slice(0,r)},t.basename=function(e,t){var n=function(e){"string"!=typeof e&&(e+="");var t,n=0,r=-1,i=!0;for(t=e.length-1;t>=0;--t)if(47===e.charCodeAt(t)){if(!i){n=t+1;break}}else-1===r&&(i=!1,r=t+1);return-1===r?"":e.slice(n,r)}(e);return t&&n.substr(-1*t.length)===t&&(n=n.substr(0,n.length-t.length)),n},t.extname=function(e){"string"!=typeof e&&(e+="");for(var t=-1,n=0,r=-1,i=!0,o=0,a=e.length-1;a>=0;--a){var s=e.charCodeAt(a);if(47!==s)-1===r&&(i=!1,r=a+1),46===s?-1===t?t=a:1!==o&&(o=1):-1!==t&&(o=-1);else if(!i){n=a+1;break}}return-1===t||-1===r||0===o||1===o&&t===r-1&&t===n+1?"":e.slice(t,r)};var i="b"==="ab".substr(-1)?function(e,t,n){return e.substr(t,n)}:function(e,t,n){return t<0&&(t=e.length+t),e.substr(t,n)}}).call(this,n(36))},function(e,t,n){"use strict";e.exports=function(e){var t="string"==typeof e?e.charCodeAt(0):e;return t>=97&&t<=122||t>=65&&t<=90}},function(e,t,n){"use strict";e.exports={position:!0,gfm:!0,commonmark:!1,footnotes:!1,pedantic:!1,blocks:n(272)}},function(e,t,n){"use strict";e.exports=function(e){var t,n=0,i=0,o=e.charAt(n),a={};for(;o in r;)i+=t=r[o],t>1&&(i=Math.floor(i/t)*t),a[i]=n,o=e.charAt(++n);return{indent:i,stops:a}};var r={" ":1,"\t":4}},function(e,t,n){"use strict";var r="<[A-Za-z][A-Za-z0-9\\-]*(?:\\s+[a-zA-Z_:][a-zA-Z0-9:._-]*(?:\\s*=\\s*(?:[^\"'=<>`\\u0000-\\u0020]+|'[^']*'|\"[^\"]*\"))?)*\\s*\\/?>",i="<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>";t.openCloseTag=new RegExp("^(?:"+r+"|"+i+")"),t.tag=new RegExp("^(?:"+r+"|"+i+"|\x3c!----\x3e|\x3c!--(?:-?[^>-])(?:-?[^-])*--\x3e|<[?].*?[?]>|]*>|)")},function(e,t,n){"use strict";e.exports=function(e,t){return e.indexOf("<",t)}},function(e,t,n){"use strict";e.exports=function(e,t){var n=e.indexOf("[",t),r=e.indexOf("![",t);if(-1===r)return n;return n=0;)i(t=s[n],e)&&!c(r,t)&&(r[r.length]=t),n-=1;return r})):r((function(e){return Object(e)!==e?[]:Object.keys(e)}));e.exports=u},function(e,t,n){var r=n(48),i=n(20),o=n(9),a=n(343),s=o((function(e,t){return 1===e?i(t):r(e,a(e,[],t))}));e.exports=s},function(e,t,n){"use strict";var r,i=this&&this.__extends||(r=function(e,t){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}r(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}),o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var a=o(n(72)),s=n(349),l=new Set(["input","option","optgroup","select","button","datalist","textarea"]),c=new Set(["p"]),u={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:c,h1:c,h2:c,h3:c,h4:c,h5:c,h6:c,select:l,input:l,output:l,button:l,datalist:l,textarea:l,option:new Set(["option"]),optgroup:new Set(["optgroup","option"]),dd:new Set(["dt","dd"]),dt:new Set(["dt","dd"]),address:c,article:c,aside:c,blockquote:c,details:c,div:c,dl:c,fieldset:c,figcaption:c,figure:c,footer:c,form:c,header:c,hr:c,main:c,nav:c,ol:c,pre:c,section:c,table:c,ul:c,rt:new Set(["rt","rp"]),rp:new Set(["rt","rp"]),tbody:new Set(["thead","tbody"]),tfoot:new Set(["thead","tbody"])},d=new Set(["area","base","basefont","br","col","command","embed","frame","hr","img","input","isindex","keygen","link","meta","param","source","track","wbr"]),f=new Set(["math","svg"]),h=new Set(["mi","mo","mn","ms","mtext","annotation-xml","foreignObject","desc","title"]),p=/\s|\//,m=function(e){function t(n,r){var i=e.call(this)||this;return i._tagname="",i._attribname="",i._attribvalue="",i._attribs=null,i._stack=[],i._foreignContext=[],i.startIndex=0,i.endIndex=null,i.parseChunk=t.prototype.write,i.done=t.prototype.end,i._options=r||{},i._cbs=n||{},i._tagname="",i._attribname="",i._attribvalue="",i._attribs=null,i._stack=[],i._foreignContext=[],i.startIndex=0,i.endIndex=null,i._lowerCaseTagNames="lowerCaseTags"in i._options?!!i._options.lowerCaseTags:!i._options.xmlMode,i._lowerCaseAttributeNames="lowerCaseAttributeNames"in i._options?!!i._options.lowerCaseAttributeNames:!i._options.xmlMode,i._tokenizer=new(i._options.Tokenizer||a.default)(i._options,i),i._cbs.onparserinit&&i._cbs.onparserinit(i),i}return i(t,e),t.prototype._updatePosition=function(e){null===this.endIndex?this._tokenizer._sectionStart<=e?this.startIndex=0:this.startIndex=this._tokenizer._sectionStart-e:this.startIndex=this.endIndex+1,this.endIndex=this._tokenizer.getAbsoluteIndex()},t.prototype.ontext=function(e){this._updatePosition(1),this.endIndex--,this._cbs.ontext&&this._cbs.ontext(e)},t.prototype.onopentagname=function(e){if(this._lowerCaseTagNames&&(e=e.toLowerCase()),this._tagname=e,!this._options.xmlMode&&Object.prototype.hasOwnProperty.call(u,e))for(var t=void 0;u[e].has(t=this._stack[this._stack.length-1]);this.onclosetag(t));!this._options.xmlMode&&d.has(e)||(this._stack.push(e),f.has(e)?this._foreignContext.push(!0):h.has(e)&&this._foreignContext.push(!1)),this._cbs.onopentagname&&this._cbs.onopentagname(e),this._cbs.onopentag&&(this._attribs={})},t.prototype.onopentagend=function(){this._updatePosition(1),this._attribs&&(this._cbs.onopentag&&this._cbs.onopentag(this._tagname,this._attribs),this._attribs=null),!this._options.xmlMode&&this._cbs.onclosetag&&d.has(this._tagname)&&this._cbs.onclosetag(this._tagname),this._tagname=""},t.prototype.onclosetag=function(e){if(this._updatePosition(1),this._lowerCaseTagNames&&(e=e.toLowerCase()),(f.has(e)||h.has(e))&&this._foreignContext.pop(),!this._stack.length||!this._options.xmlMode&&d.has(e))this._options.xmlMode||"br"!==e&&"p"!==e||(this.onopentagname(e),this._closeCurrentTag());else{var t=this._stack.lastIndexOf(e);if(-1!==t)if(this._cbs.onclosetag)for(t=this._stack.length-t;t--;)this._cbs.onclosetag(this._stack.pop());else this._stack.length=t;else"p"!==e||this._options.xmlMode||(this.onopentagname(e),this._closeCurrentTag())}},t.prototype.onselfclosingtag=function(){this._options.xmlMode||this._options.recognizeSelfClosing||this._foreignContext[this._foreignContext.length-1]?this._closeCurrentTag():this.onopentagend()},t.prototype._closeCurrentTag=function(){var e=this._tagname;this.onopentagend(),this._stack[this._stack.length-1]===e&&(this._cbs.onclosetag&&this._cbs.onclosetag(e),this._stack.pop())},t.prototype.onattribname=function(e){this._lowerCaseAttributeNames&&(e=e.toLowerCase()),this._attribname=e},t.prototype.onattribdata=function(e){this._attribvalue+=e},t.prototype.onattribend=function(){this._cbs.onattribute&&this._cbs.onattribute(this._attribname,this._attribvalue),this._attribs&&!Object.prototype.hasOwnProperty.call(this._attribs,this._attribname)&&(this._attribs[this._attribname]=this._attribvalue),this._attribname="",this._attribvalue=""},t.prototype._getInstructionName=function(e){var t=e.search(p),n=t<0?e:e.substr(0,t);return this._lowerCaseTagNames&&(n=n.toLowerCase()),n},t.prototype.ondeclaration=function(e){if(this._cbs.onprocessinginstruction){var t=this._getInstructionName(e);this._cbs.onprocessinginstruction("!"+t,"!"+e)}},t.prototype.onprocessinginstruction=function(e){if(this._cbs.onprocessinginstruction){var t=this._getInstructionName(e);this._cbs.onprocessinginstruction("?"+t,"?"+e)}},t.prototype.oncomment=function(e){this._updatePosition(4),this._cbs.oncomment&&this._cbs.oncomment(e),this._cbs.oncommentend&&this._cbs.oncommentend()},t.prototype.oncdata=function(e){this._updatePosition(1),this._options.xmlMode||this._options.recognizeCDATA?(this._cbs.oncdatastart&&this._cbs.oncdatastart(),this._cbs.ontext&&this._cbs.ontext(e),this._cbs.oncdataend&&this._cbs.oncdataend()):this.oncomment("[CDATA["+e+"]]")},t.prototype.onerror=function(e){this._cbs.onerror&&this._cbs.onerror(e)},t.prototype.onend=function(){if(this._cbs.onclosetag)for(var e=this._stack.length;e>0;this._cbs.onclosetag(this._stack[--e]));this._cbs.onend&&this._cbs.onend()},t.prototype.reset=function(){this._cbs.onreset&&this._cbs.onreset(),this._tokenizer.reset(),this._tagname="",this._attribname="",this._attribs=null,this._stack=[],this._cbs.onparserinit&&this._cbs.onparserinit(this)},t.prototype.parseComplete=function(e){this.reset(),this.end(e)},t.prototype.write=function(e){this._tokenizer.write(e)},t.prototype.end=function(e){this._tokenizer.end(e)},t.prototype.pause=function(){this._tokenizer.pause()},t.prototype.resume=function(){this._tokenizer.resume()},t}(s.EventEmitter);t.Parser=m},function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=r(n(73)),o=r(n(50)),a=r(n(74)),s=r(n(51));function l(e){return" "===e||"\n"===e||"\t"===e||"\f"===e||"\r"===e}function c(e,t,n){var r=e.toLowerCase();return e===r?function(e,i){i===r?e._state=t:(e._state=n,e._index--)}:function(i,o){o===r||o===e?i._state=t:(i._state=n,i._index--)}}function u(e,t){var n=e.toLowerCase();return function(r,i){i===n||i===e?r._state=t:(r._state=3,r._index--)}}var d=c("C",23,16),f=c("D",24,16),h=c("A",25,16),p=c("T",26,16),m=c("A",27,16),b=u("R",34),g=u("I",35),y=u("P",36),v=u("T",37),_=c("R",39,1),k=c("I",40,1),w=c("P",41,1),x=c("T",42,1),M=u("Y",44),S=u("L",45),L=u("E",46),C=c("Y",48,1),E=c("L",49,1),T=c("E",50,1),O=c("#",52,53),D=c("X",55,54),j=function(){function e(e,t){this._state=1,this._buffer="",this._sectionStart=0,this._index=0,this._bufferOffset=0,this._baseState=1,this._special=1,this._running=!0,this._ended=!1,this._cbs=t,this._xmlMode=!(!e||!e.xmlMode),this._decodeEntities=!(!e||!e.decodeEntities)}return e.prototype.reset=function(){this._state=1,this._buffer="",this._sectionStart=0,this._index=0,this._bufferOffset=0,this._baseState=1,this._special=1,this._running=!0,this._ended=!1},e.prototype._stateText=function(e){"<"===e?(this._index>this._sectionStart&&this._cbs.ontext(this._getSection()),this._state=2,this._sectionStart=this._index):this._decodeEntities&&1===this._special&&"&"===e&&(this._index>this._sectionStart&&this._cbs.ontext(this._getSection()),this._baseState=1,this._state=51,this._sectionStart=this._index)},e.prototype._stateBeforeTagName=function(e){"/"===e?this._state=5:"<"===e?(this._cbs.ontext(this._getSection()),this._sectionStart=this._index):">"===e||1!==this._special||l(e)?this._state=1:"!"===e?(this._state=15,this._sectionStart=this._index+1):"?"===e?(this._state=17,this._sectionStart=this._index+1):(this._state=this._xmlMode||"s"!==e&&"S"!==e?3:31,this._sectionStart=this._index)},e.prototype._stateInTagName=function(e){("/"===e||">"===e||l(e))&&(this._emitToken("onopentagname"),this._state=8,this._index--)},e.prototype._stateBeforeClosingTagName=function(e){l(e)||(">"===e?this._state=1:1!==this._special?"s"===e||"S"===e?this._state=32:(this._state=1,this._index--):(this._state=6,this._sectionStart=this._index))},e.prototype._stateInClosingTagName=function(e){(">"===e||l(e))&&(this._emitToken("onclosetag"),this._state=7,this._index--)},e.prototype._stateAfterClosingTagName=function(e){">"===e&&(this._state=1,this._sectionStart=this._index+1)},e.prototype._stateBeforeAttributeName=function(e){">"===e?(this._cbs.onopentagend(),this._state=1,this._sectionStart=this._index+1):"/"===e?this._state=4:l(e)||(this._state=9,this._sectionStart=this._index)},e.prototype._stateInSelfClosingTag=function(e){">"===e?(this._cbs.onselfclosingtag(),this._state=1,this._sectionStart=this._index+1):l(e)||(this._state=8,this._index--)},e.prototype._stateInAttributeName=function(e){("="===e||"/"===e||">"===e||l(e))&&(this._cbs.onattribname(this._getSection()),this._sectionStart=-1,this._state=10,this._index--)},e.prototype._stateAfterAttributeName=function(e){"="===e?this._state=11:"/"===e||">"===e?(this._cbs.onattribend(),this._state=8,this._index--):l(e)||(this._cbs.onattribend(),this._state=9,this._sectionStart=this._index)},e.prototype._stateBeforeAttributeValue=function(e){'"'===e?(this._state=12,this._sectionStart=this._index+1):"'"===e?(this._state=13,this._sectionStart=this._index+1):l(e)||(this._state=14,this._sectionStart=this._index,this._index--)},e.prototype._stateInAttributeValueDoubleQuotes=function(e){'"'===e?(this._emitToken("onattribdata"),this._cbs.onattribend(),this._state=8):this._decodeEntities&&"&"===e&&(this._emitToken("onattribdata"),this._baseState=this._state,this._state=51,this._sectionStart=this._index)},e.prototype._stateInAttributeValueSingleQuotes=function(e){"'"===e?(this._emitToken("onattribdata"),this._cbs.onattribend(),this._state=8):this._decodeEntities&&"&"===e&&(this._emitToken("onattribdata"),this._baseState=this._state,this._state=51,this._sectionStart=this._index)},e.prototype._stateInAttributeValueNoQuotes=function(e){l(e)||">"===e?(this._emitToken("onattribdata"),this._cbs.onattribend(),this._state=8,this._index--):this._decodeEntities&&"&"===e&&(this._emitToken("onattribdata"),this._baseState=this._state,this._state=51,this._sectionStart=this._index)},e.prototype._stateBeforeDeclaration=function(e){this._state="["===e?22:"-"===e?18:16},e.prototype._stateInDeclaration=function(e){">"===e&&(this._cbs.ondeclaration(this._getSection()),this._state=1,this._sectionStart=this._index+1)},e.prototype._stateInProcessingInstruction=function(e){">"===e&&(this._cbs.onprocessinginstruction(this._getSection()),this._state=1,this._sectionStart=this._index+1)},e.prototype._stateBeforeComment=function(e){"-"===e?(this._state=19,this._sectionStart=this._index+1):this._state=16},e.prototype._stateInComment=function(e){"-"===e&&(this._state=20)},e.prototype._stateAfterComment1=function(e){this._state="-"===e?21:19},e.prototype._stateAfterComment2=function(e){">"===e?(this._cbs.oncomment(this._buffer.substring(this._sectionStart,this._index-2)),this._state=1,this._sectionStart=this._index+1):"-"!==e&&(this._state=19)},e.prototype._stateBeforeCdata6=function(e){"["===e?(this._state=28,this._sectionStart=this._index+1):(this._state=16,this._index--)},e.prototype._stateInCdata=function(e){"]"===e&&(this._state=29)},e.prototype._stateAfterCdata1=function(e){this._state="]"===e?30:28},e.prototype._stateAfterCdata2=function(e){">"===e?(this._cbs.oncdata(this._buffer.substring(this._sectionStart,this._index-2)),this._state=1,this._sectionStart=this._index+1):"]"!==e&&(this._state=28)},e.prototype._stateBeforeSpecial=function(e){"c"===e||"C"===e?this._state=33:"t"===e||"T"===e?this._state=43:(this._state=3,this._index--)},e.prototype._stateBeforeSpecialEnd=function(e){2!==this._special||"c"!==e&&"C"!==e?3!==this._special||"t"!==e&&"T"!==e?this._state=1:this._state=47:this._state=38},e.prototype._stateBeforeScript5=function(e){("/"===e||">"===e||l(e))&&(this._special=2),this._state=3,this._index--},e.prototype._stateAfterScript5=function(e){">"===e||l(e)?(this._special=1,this._state=6,this._sectionStart=this._index-6,this._index--):this._state=1},e.prototype._stateBeforeStyle4=function(e){("/"===e||">"===e||l(e))&&(this._special=3),this._state=3,this._index--},e.prototype._stateAfterStyle4=function(e){">"===e||l(e)?(this._special=1,this._state=6,this._sectionStart=this._index-5,this._index--):this._state=1},e.prototype._parseNamedEntityStrict=function(){if(this._sectionStart+16&&(t=6);t>=2;){var n=this._buffer.substr(e,t);if(Object.prototype.hasOwnProperty.call(a.default,n))return this._emitPartial(a.default[n]),void(this._sectionStart+=t+1);t--}},e.prototype._stateInNamedEntity=function(e){";"===e?(this._parseNamedEntityStrict(),this._sectionStart+1"z")&&(e<"A"||e>"Z")&&(e<"0"||e>"9")&&(this._xmlMode||this._sectionStart+1===this._index||(1!==this._baseState?"="!==e&&this._parseNamedEntityStrict():this._parseLegacyEntity()),this._state=this._baseState,this._index--)},e.prototype._decodeNumericEntity=function(e,t){var n=this._sectionStart+e;if(n!==this._index){var r=this._buffer.substring(n,this._index),o=parseInt(r,t);this._emitPartial(i.default(o)),this._sectionStart=this._index}else this._sectionStart--;this._state=this._baseState},e.prototype._stateInNumericEntity=function(e){";"===e?(this._decodeNumericEntity(2,10),this._sectionStart++):(e<"0"||e>"9")&&(this._xmlMode?this._state=this._baseState:this._decodeNumericEntity(2,10),this._index--)},e.prototype._stateInHexEntity=function(e){";"===e?(this._decodeNumericEntity(3,16),this._sectionStart++):(e<"a"||e>"f")&&(e<"A"||e>"F")&&(e<"0"||e>"9")&&(this._xmlMode?this._state=this._baseState:this._decodeNumericEntity(3,16),this._index--)},e.prototype._cleanup=function(){this._sectionStart<0?(this._buffer="",this._bufferOffset+=this._index,this._index=0):this._running&&(1===this._state?(this._sectionStart!==this._index&&this._cbs.ontext(this._buffer.substr(this._sectionStart)),this._buffer="",this._bufferOffset+=this._index,this._index=0):this._sectionStart===this._index?(this._buffer="",this._bufferOffset+=this._index,this._index=0):(this._buffer=this._buffer.substr(this._sectionStart),this._index-=this._sectionStart,this._bufferOffset+=this._sectionStart),this._sectionStart=0)},e.prototype.write=function(e){this._ended&&this._cbs.onerror(Error(".write() after done!")),this._buffer+=e,this._parse()},e.prototype._parse=function(){for(;this._index=55296&&e<=57343||e>1114111)return"�";e in i.default&&(e=i.default[e]);var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)}},function(e){e.exports=JSON.parse('{"Aacute":"Á","aacute":"á","Acirc":"Â","acirc":"â","acute":"´","AElig":"Æ","aelig":"æ","Agrave":"À","agrave":"à","amp":"&","AMP":"&","Aring":"Å","aring":"å","Atilde":"Ã","atilde":"ã","Auml":"Ä","auml":"ä","brvbar":"¦","Ccedil":"Ç","ccedil":"ç","cedil":"¸","cent":"¢","copy":"©","COPY":"©","curren":"¤","deg":"°","divide":"÷","Eacute":"É","eacute":"é","Ecirc":"Ê","ecirc":"ê","Egrave":"È","egrave":"è","ETH":"Ð","eth":"ð","Euml":"Ë","euml":"ë","frac12":"½","frac14":"¼","frac34":"¾","gt":">","GT":">","Iacute":"Í","iacute":"í","Icirc":"Î","icirc":"î","iexcl":"¡","Igrave":"Ì","igrave":"ì","iquest":"¿","Iuml":"Ï","iuml":"ï","laquo":"«","lt":"<","LT":"<","macr":"¯","micro":"µ","middot":"·","nbsp":" ","not":"¬","Ntilde":"Ñ","ntilde":"ñ","Oacute":"Ó","oacute":"ó","Ocirc":"Ô","ocirc":"ô","Ograve":"Ò","ograve":"ò","ordf":"ª","ordm":"º","Oslash":"Ø","oslash":"ø","Otilde":"Õ","otilde":"õ","Ouml":"Ö","ouml":"ö","para":"¶","plusmn":"±","pound":"£","quot":"\\"","QUOT":"\\"","raquo":"»","reg":"®","REG":"®","sect":"§","shy":"­","sup1":"¹","sup2":"²","sup3":"³","szlig":"ß","THORN":"Þ","thorn":"þ","times":"×","Uacute":"Ú","uacute":"ú","Ucirc":"Û","ucirc":"û","Ugrave":"Ù","ugrave":"ù","uml":"¨","Uuml":"Ü","uuml":"ü","Yacute":"Ý","yacute":"ý","yen":"¥","yuml":"ÿ"}')},function(e,t,n){"use strict";var r,i=this&&this.__extends||(r=function(e,t){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}r(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}),o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}},a=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t};Object.defineProperty(t,"__esModule",{value:!0});var s=o(n(52)),l=a(n(76)),c=n(71),u=function(e){function t(t,n){return"object"==typeof t&&null!==t&&(n=t=void 0),e.call(this,t,n)||this}return i(t,e),t.prototype.onend=function(){var e={},t=f(b,this.dom);if(t)if("feed"===t.name){var n=t.children;e.type="atom",m(e,"id","id",n),m(e,"title","title",n);var r=p("href",f("link",n));r&&(e.link=r),m(e,"description","subtitle",n),(i=h("updated",n))&&(e.updated=new Date(i)),m(e,"author","email",n,!0),e.items=d("entry",n).map((function(e){var t={},n=e.children;m(t,"id","id",n),m(t,"title","title",n);var r=p("href",f("link",n));r&&(t.link=r);var i=h("summary",n)||h("content",n);i&&(t.description=i);var o=h("updated",n);return o&&(t.pubDate=new Date(o)),t}))}else{var i;n=f("channel",t.children).children;e.type=t.name.substr(0,3),e.id="",m(e,"title","title",n),m(e,"link","link",n),m(e,"description","description",n),(i=h("lastBuildDate",n))&&(e.updated=new Date(i)),m(e,"author","managingEditor",n,!0),e.items=d("item",t.children).map((function(e){var t={},n=e.children;m(t,"id","guid",n),m(t,"title","title",n),m(t,"link","link",n),m(t,"description","description",n);var r=h("pubDate",n);return r&&(t.pubDate=new Date(r)),t}))}this.feed=e,this.handleCallback(t?null:Error("couldn't find root of feed"))},t}(s.default);function d(e,t){return l.getElementsByTagName(e,t,!0)}function f(e,t){return l.getElementsByTagName(e,t,!0,1)[0]}function h(e,t,n){return void 0===n&&(n=!1),l.getText(l.getElementsByTagName(e,t,n,1)).trim()}function p(e,t){return t?t.attribs[e]:null}function m(e,t,n,r,i){void 0===i&&(i=!1);var o=h(n,r,i);o&&(e[t]=o)}function b(e){return"rss"===e||"feed"===e||"rdf:RDF"===e}t.FeedHandler=u;var g={xmlMode:!0};t.parseFeed=function(e,t){void 0===t&&(t=g);var n=new u(t);return new c.Parser(n,t).end(e),n.feed}},function(e,t,n){"use strict";function r(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}Object.defineProperty(t,"__esModule",{value:!0}),r(n(351)),r(n(355)),r(n(356)),r(n(79)),r(n(357)),r(n(358)),r(n(26))},function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=r(n(50)),o=r(n(74)),a=r(n(51)),s=r(n(73));function l(e){var t=Object.keys(e).join("|"),n=u(e),r=new RegExp("&(?:"+(t+="|#[xX][\\da-fA-F]+|#\\d+")+");","g");return function(e){return String(e).replace(r,n)}}t.decodeXML=l(a.default),t.decodeHTMLStrict=l(i.default);var c=function(e,t){return e0){var c=i(e,l.children,n,o);if(a=a.concat(c),(o-=c.length)<=0)break}}return a}t.filter=function(e,t,n,r){return void 0===n&&(n=!0),void 0===r&&(r=1/0),Array.isArray(t)||(t=[t]),i(e,t,n,r)},t.find=i,t.findOneChild=function(e,t){for(var n=0;n0&&(o=e(t,s.children)))}return o},t.existsOne=function e(t,n){for(var i=0;i0&&e(t,o.children)))return!0}return!1},t.findAll=function(e,t){for(var n=[],i=t.slice();i.length;){var o=i.shift();o&&r.isTag(o)&&(o.children&&o.children.length>0&&i.unshift.apply(i,o.children),e(o)&&n.push(o))}return n}},function(e,t,n){"use strict";var r=n(362),i=n(81);e.exports=function(){var e=new i;return{defaultProcessingInstructions:[{shouldProcessNode:r.shouldProcessEveryNode,processNode:e.processDefaultNode}]}}},function(e,t,n){"use strict";var r=n(82),i=["area","base","br","col","embed","hr","img","input","keygen","link","meta","param","source","track","wbr","menuitem","textarea"];e.exports=function(){return{processDefaultNode:function(e,t,n){return"text"===e.type?e.data:"comment"!==e.type&&(i.indexOf(e.name)>-1?r.createElement(e,n):r.createElement(e,n,e.data,t))}}}},function(e,t,n){"use strict";var r=n(363),i=n(364),o=n(365),a=n(0),s=n(367);e.exports={createElement:function(e,t,n,l){var c={key:t};e.attribs&&(c=o((function(e,t){var n=t[0],i=t[1];return"style"===(n=s[n.replace(/[-:]/,"")]||n)?i=function(e){for(var t,n,i,o=(e=e||"").split(/;(?!base64)/),a={},s=0;s2&&(t[1]=t.slice(1).join(":")),n=t[0],"string"==typeof(i=t[1])&&(i=i.trim()),null!=n&&null!=i&&n.length>0&&i.length>0&&(a[r(n)]=i);return a}(i):"class"===n?n="className":"for"===n&&(n="htmlFor"),e[n]=i||n,e}),c,i(e.attribs))),l=l||[];var u=null!=n?[n].concat(l):l;return a.createElement.apply(null,[e.name,c].concat(u))}}},function(e,t,n){"use strict";e.exports={alwaysValid:function(){return!0}}},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("af",{months:"Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des".split("_"),weekdays:"Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag".split("_"),weekdaysShort:"Son_Maa_Din_Woe_Don_Vry_Sat".split("_"),weekdaysMin:"So_Ma_Di_Wo_Do_Vr_Sa".split("_"),meridiemParse:/vm|nm/i,isPM:function(e){return/^nm$/i.test(e)},meridiem:function(e,t,n){return e<12?n?"vm":"VM":n?"nm":"NM"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Vandag om] LT",nextDay:"[Môre om] LT",nextWeek:"dddd [om] LT",lastDay:"[Gister om] LT",lastWeek:"[Laas] dddd [om] LT",sameElse:"L"},relativeTime:{future:"oor %s",past:"%s gelede",s:"'n paar sekondes",ss:"%d sekondes",m:"'n minuut",mm:"%d minute",h:"'n uur",hh:"%d ure",d:"'n dag",dd:"%d dae",M:"'n maand",MM:"%d maande",y:"'n jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},n={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"},r=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},i={s:["أقل من ثانية","ثانية واحدة",["ثانيتان","ثانيتين"],"%d ثوان","%d ثانية","%d ثانية"],m:["أقل من دقيقة","دقيقة واحدة",["دقيقتان","دقيقتين"],"%d دقائق","%d دقيقة","%d دقيقة"],h:["أقل من ساعة","ساعة واحدة",["ساعتان","ساعتين"],"%d ساعات","%d ساعة","%d ساعة"],d:["أقل من يوم","يوم واحد",["يومان","يومين"],"%d أيام","%d يومًا","%d يوم"],M:["أقل من شهر","شهر واحد",["شهران","شهرين"],"%d أشهر","%d شهرا","%d شهر"],y:["أقل من عام","عام واحد",["عامان","عامين"],"%d أعوام","%d عامًا","%d عام"]},o=function(e){return function(t,n,o,a){var s=r(t),l=i[e][r(t)];return 2===s&&(l=l[n?0:1]),l.replace(/%d/i,t)}},a=["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"];e.defineLocale("ar",{months:a,monthsShort:a,weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/‏M/‏YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(e){return"م"===e},meridiem:function(e,t,n){return e<12?"ص":"م"},calendar:{sameDay:"[اليوم عند الساعة] LT",nextDay:"[غدًا عند الساعة] LT",nextWeek:"dddd [عند الساعة] LT",lastDay:"[أمس عند الساعة] LT",lastWeek:"dddd [عند الساعة] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"منذ %s",s:o("s"),ss:o("s"),m:o("m"),mm:o("m"),h:o("h"),hh:o("h"),d:o("d"),dd:o("d"),M:o("M"),MM:o("M"),y:o("y"),yy:o("y")},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,(function(e){return n[e]})).replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]})).replace(/,/g,"،")},week:{dow:6,doy:12}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("ar-dz",{months:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"أح_إث_ثلا_أر_خم_جم_سب".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:0,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("ar-kw",{months:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdays:"الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:0,doy:12}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",0:"0"},n=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},r={s:["أقل من ثانية","ثانية واحدة",["ثانيتان","ثانيتين"],"%d ثوان","%d ثانية","%d ثانية"],m:["أقل من دقيقة","دقيقة واحدة",["دقيقتان","دقيقتين"],"%d دقائق","%d دقيقة","%d دقيقة"],h:["أقل من ساعة","ساعة واحدة",["ساعتان","ساعتين"],"%d ساعات","%d ساعة","%d ساعة"],d:["أقل من يوم","يوم واحد",["يومان","يومين"],"%d أيام","%d يومًا","%d يوم"],M:["أقل من شهر","شهر واحد",["شهران","شهرين"],"%d أشهر","%d شهرا","%d شهر"],y:["أقل من عام","عام واحد",["عامان","عامين"],"%d أعوام","%d عامًا","%d عام"]},i=function(e){return function(t,i,o,a){var s=n(t),l=r[e][n(t)];return 2===s&&(l=l[i?0:1]),l.replace(/%d/i,t)}},o=["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"];e.defineLocale("ar-ly",{months:o,monthsShort:o,weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/‏M/‏YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(e){return"م"===e},meridiem:function(e,t,n){return e<12?"ص":"م"},calendar:{sameDay:"[اليوم عند الساعة] LT",nextDay:"[غدًا عند الساعة] LT",nextWeek:"dddd [عند الساعة] LT",lastDay:"[أمس عند الساعة] LT",lastWeek:"dddd [عند الساعة] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"منذ %s",s:i("s"),ss:i("s"),m:i("m"),mm:i("m"),h:i("h"),hh:i("h"),d:i("d"),dd:i("d"),M:i("M"),MM:i("M"),y:i("y"),yy:i("y")},preparse:function(e){return e.replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]})).replace(/,/g,"،")},week:{dow:6,doy:12}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("ar-ma",{months:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:6,doy:12}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},n={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"};e.defineLocale("ar-sa",{months:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(e){return"م"===e},meridiem:function(e,t,n){return e<12?"ص":"م"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,(function(e){return n[e]})).replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]})).replace(/,/g,"،")},week:{dow:0,doy:6}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("ar-tn",{months:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={1:"-inci",5:"-inci",8:"-inci",70:"-inci",80:"-inci",2:"-nci",7:"-nci",20:"-nci",50:"-nci",3:"-üncü",4:"-üncü",100:"-üncü",6:"-ncı",9:"-uncu",10:"-uncu",30:"-uncu",60:"-ıncı",90:"-ıncı"};e.defineLocale("az",{months:"yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr".split("_"),monthsShort:"yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek".split("_"),weekdays:"Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə".split("_"),weekdaysShort:"Baz_BzE_ÇAx_Çər_CAx_Cüm_Şən".split("_"),weekdaysMin:"Bz_BE_ÇA_Çə_CA_Cü_Şə".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugün saat] LT",nextDay:"[sabah saat] LT",nextWeek:"[gələn həftə] dddd [saat] LT",lastDay:"[dünən] LT",lastWeek:"[keçən həftə] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s əvvəl",s:"birneçə saniyə",ss:"%d saniyə",m:"bir dəqiqə",mm:"%d dəqiqə",h:"bir saat",hh:"%d saat",d:"bir gün",dd:"%d gün",M:"bir ay",MM:"%d ay",y:"bir il",yy:"%d il"},meridiemParse:/gecə|səhər|gündüz|axşam/,isPM:function(e){return/^(gündüz|axşam)$/.test(e)},meridiem:function(e,t,n){return e<4?"gecə":e<12?"səhər":e<17?"gündüz":"axşam"},dayOfMonthOrdinalParse:/\d{1,2}-(ıncı|inci|nci|üncü|ncı|uncu)/,ordinal:function(e){if(0===e)return e+"-ıncı";var n=e%10;return e+(t[n]||t[e%100-n]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -function t(e,t,n){var r,i;return"m"===n?t?"хвіліна":"хвіліну":"h"===n?t?"гадзіна":"гадзіну":e+" "+(r=+e,i={ss:t?"секунда_секунды_секунд":"секунду_секунды_секунд",mm:t?"хвіліна_хвіліны_хвілін":"хвіліну_хвіліны_хвілін",hh:t?"гадзіна_гадзіны_гадзін":"гадзіну_гадзіны_гадзін",dd:"дзень_дні_дзён",MM:"месяц_месяцы_месяцаў",yy:"год_гады_гадоў"}[n].split("_"),r%10==1&&r%100!=11?i[0]:r%10>=2&&r%10<=4&&(r%100<10||r%100>=20)?i[1]:i[2])}e.defineLocale("be",{months:{format:"студзеня_лютага_сакавіка_красавіка_траўня_чэрвеня_ліпеня_жніўня_верасня_кастрычніка_лістапада_снежня".split("_"),standalone:"студзень_люты_сакавік_красавік_травень_чэрвень_ліпень_жнівень_верасень_кастрычнік_лістапад_снежань".split("_")},monthsShort:"студ_лют_сак_крас_трав_чэрв_ліп_жнів_вер_каст_ліст_снеж".split("_"),weekdays:{format:"нядзелю_панядзелак_аўторак_сераду_чацвер_пятніцу_суботу".split("_"),standalone:"нядзеля_панядзелак_аўторак_серада_чацвер_пятніца_субота".split("_"),isFormat:/\[ ?[Ууў] ?(?:мінулую|наступную)? ?\] ?dddd/},weekdaysShort:"нд_пн_ат_ср_чц_пт_сб".split("_"),weekdaysMin:"нд_пн_ат_ср_чц_пт_сб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., HH:mm",LLLL:"dddd, D MMMM YYYY г., HH:mm"},calendar:{sameDay:"[Сёння ў] LT",nextDay:"[Заўтра ў] LT",lastDay:"[Учора ў] LT",nextWeek:function(){return"[У] dddd [ў] LT"},lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return"[У мінулую] dddd [ў] LT";case 1:case 2:case 4:return"[У мінулы] dddd [ў] LT"}},sameElse:"L"},relativeTime:{future:"праз %s",past:"%s таму",s:"некалькі секунд",m:t,mm:t,h:t,hh:t,d:"дзень",dd:t,M:"месяц",MM:t,y:"год",yy:t},meridiemParse:/ночы|раніцы|дня|вечара/,isPM:function(e){return/^(дня|вечара)$/.test(e)},meridiem:function(e,t,n){return e<4?"ночы":e<12?"раніцы":e<17?"дня":"вечара"},dayOfMonthOrdinalParse:/\d{1,2}-(і|ы|га)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":case"w":case"W":return e%10!=2&&e%10!=3||e%100==12||e%100==13?e+"-ы":e+"-і";case"D":return e+"-га";default:return e}},week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("bg",{months:"януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември".split("_"),monthsShort:"яну_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек".split("_"),weekdays:"неделя_понеделник_вторник_сряда_четвъртък_петък_събота".split("_"),weekdaysShort:"нед_пон_вто_сря_чет_пет_съб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Днес в] LT",nextDay:"[Утре в] LT",nextWeek:"dddd [в] LT",lastDay:"[Вчера в] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[Миналата] dddd [в] LT";case 1:case 2:case 4:case 5:return"[Миналия] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"след %s",past:"преди %s",s:"няколко секунди",ss:"%d секунди",m:"минута",mm:"%d минути",h:"час",hh:"%d часа",d:"ден",dd:"%d дена",M:"месец",MM:"%d месеца",y:"година",yy:"%d години"},dayOfMonthOrdinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+"-ев":0===n?e+"-ен":n>10&&n<20?e+"-ти":1===t?e+"-ви":2===t?e+"-ри":7===t||8===t?e+"-ми":e+"-ти"},week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("bm",{months:"Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_Mɛkalo_Zuwɛnkalo_Zuluyekalo_Utikalo_Sɛtanburukalo_ɔkutɔburukalo_Nowanburukalo_Desanburukalo".split("_"),monthsShort:"Zan_Few_Mar_Awi_Mɛ_Zuw_Zul_Uti_Sɛt_ɔku_Now_Des".split("_"),weekdays:"Kari_Ntɛnɛn_Tarata_Araba_Alamisa_Juma_Sibiri".split("_"),weekdaysShort:"Kar_Ntɛ_Tar_Ara_Ala_Jum_Sib".split("_"),weekdaysMin:"Ka_Nt_Ta_Ar_Al_Ju_Si".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"MMMM [tile] D [san] YYYY",LLL:"MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm",LLLL:"dddd MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm"},calendar:{sameDay:"[Bi lɛrɛ] LT",nextDay:"[Sini lɛrɛ] LT",nextWeek:"dddd [don lɛrɛ] LT",lastDay:"[Kunu lɛrɛ] LT",lastWeek:"dddd [tɛmɛnen lɛrɛ] LT",sameElse:"L"},relativeTime:{future:"%s kɔnɔ",past:"a bɛ %s bɔ",s:"sanga dama dama",ss:"sekondi %d",m:"miniti kelen",mm:"miniti %d",h:"lɛrɛ kelen",hh:"lɛrɛ %d",d:"tile kelen",dd:"tile %d",M:"kalo kelen",MM:"kalo %d",y:"san kelen",yy:"san %d"},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={1:"১",2:"২",3:"৩",4:"৪",5:"৫",6:"৬",7:"৭",8:"৮",9:"৯",0:"০"},n={"১":"1","২":"2","৩":"3","৪":"4","৫":"5","৬":"6","৭":"7","৮":"8","৯":"9","০":"0"};e.defineLocale("bn",{months:"জানুয়ারি_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর".split("_"),monthsShort:"জানু_ফেব্রু_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্ট_অক্টো_নভে_ডিসে".split("_"),weekdays:"রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার".split("_"),weekdaysShort:"রবি_সোম_মঙ্গল_বুধ_বৃহস্পতি_শুক্র_শনি".split("_"),weekdaysMin:"রবি_সোম_মঙ্গল_বুধ_বৃহ_শুক্র_শনি".split("_"),longDateFormat:{LT:"A h:mm সময়",LTS:"A h:mm:ss সময়",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm সময়",LLLL:"dddd, D MMMM YYYY, A h:mm সময়"},calendar:{sameDay:"[আজ] LT",nextDay:"[আগামীকাল] LT",nextWeek:"dddd, LT",lastDay:"[গতকাল] LT",lastWeek:"[গত] dddd, LT",sameElse:"L"},relativeTime:{future:"%s পরে",past:"%s আগে",s:"কয়েক সেকেন্ড",ss:"%d সেকেন্ড",m:"এক মিনিট",mm:"%d মিনিট",h:"এক ঘন্টা",hh:"%d ঘন্টা",d:"এক দিন",dd:"%d দিন",M:"এক মাস",MM:"%d মাস",y:"এক বছর",yy:"%d বছর"},preparse:function(e){return e.replace(/[১২৩৪৫৬৭৮৯০]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]}))},meridiemParse:/রাত|সকাল|দুপুর|বিকাল|রাত/,meridiemHour:function(e,t){return 12===e&&(e=0),"রাত"===t&&e>=4||"দুপুর"===t&&e<5||"বিকাল"===t?e+12:e},meridiem:function(e,t,n){return e<4?"রাত":e<10?"সকাল":e<17?"দুপুর":e<20?"বিকাল":"রাত"},week:{dow:0,doy:6}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={1:"༡",2:"༢",3:"༣",4:"༤",5:"༥",6:"༦",7:"༧",8:"༨",9:"༩",0:"༠"},n={"༡":"1","༢":"2","༣":"3","༤":"4","༥":"5","༦":"6","༧":"7","༨":"8","༩":"9","༠":"0"};e.defineLocale("bo",{months:"ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ".split("_"),monthsShort:"ཟླ་1_ཟླ་2_ཟླ་3_ཟླ་4_ཟླ་5_ཟླ་6_ཟླ་7_ཟླ་8_ཟླ་9_ཟླ་10_ཟླ་11_ཟླ་12".split("_"),monthsShortRegex:/^(ཟླ་\d{1,2})/,monthsParseExact:!0,weekdays:"གཟའ་ཉི་མ་_གཟའ་ཟླ་བ་_གཟའ་མིག་དམར་_གཟའ་ལྷག་པ་_གཟའ་ཕུར་བུ_གཟའ་པ་སངས་_གཟའ་སྤེན་པ་".split("_"),weekdaysShort:"ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་".split("_"),weekdaysMin:"ཉི_ཟླ_མིག_ལྷག_ཕུར_སངས_སྤེན".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[དི་རིང] LT",nextDay:"[སང་ཉིན] LT",nextWeek:"[བདུན་ཕྲག་རྗེས་མ], LT",lastDay:"[ཁ་སང] LT",lastWeek:"[བདུན་ཕྲག་མཐའ་མ] dddd, LT",sameElse:"L"},relativeTime:{future:"%s ལ་",past:"%s སྔན་ལ",s:"ལམ་སང",ss:"%d སྐར་ཆ།",m:"སྐར་མ་གཅིག",mm:"%d སྐར་མ",h:"ཆུ་ཚོད་གཅིག",hh:"%d ཆུ་ཚོད",d:"ཉིན་གཅིག",dd:"%d ཉིན་",M:"ཟླ་བ་གཅིག",MM:"%d ཟླ་བ",y:"ལོ་གཅིག",yy:"%d ལོ"},preparse:function(e){return e.replace(/[༡༢༣༤༥༦༧༨༩༠]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]}))},meridiemParse:/མཚན་མོ|ཞོགས་ཀས|ཉིན་གུང|དགོང་དག|མཚན་མོ/,meridiemHour:function(e,t){return 12===e&&(e=0),"མཚན་མོ"===t&&e>=4||"ཉིན་གུང"===t&&e<5||"དགོང་དག"===t?e+12:e},meridiem:function(e,t,n){return e<4?"མཚན་མོ":e<10?"ཞོགས་ཀས":e<17?"ཉིན་གུང":e<20?"དགོང་དག":"མཚན་མོ"},week:{dow:0,doy:6}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -function t(e,t,n){return e+" "+function(e,t){return 2===t?function(e){var t={m:"v",b:"v",d:"z"};return void 0===t[e.charAt(0)]?e:t[e.charAt(0)]+e.substring(1)}(e):e}({mm:"munutenn",MM:"miz",dd:"devezh"}[n],e)}e.defineLocale("br",{months:"Genver_C'hwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu".split("_"),monthsShort:"Gen_C'hwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker".split("_"),weekdays:"Sul_Lun_Meurzh_Merc'her_Yaou_Gwener_Sadorn".split("_"),weekdaysShort:"Sul_Lun_Meu_Mer_Yao_Gwe_Sad".split("_"),weekdaysMin:"Su_Lu_Me_Mer_Ya_Gw_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [a viz] MMMM YYYY",LLL:"D [a viz] MMMM YYYY HH:mm",LLLL:"dddd, D [a viz] MMMM YYYY HH:mm"},calendar:{sameDay:"[Hiziv da] LT",nextDay:"[Warc'hoazh da] LT",nextWeek:"dddd [da] LT",lastDay:"[Dec'h da] LT",lastWeek:"dddd [paset da] LT",sameElse:"L"},relativeTime:{future:"a-benn %s",past:"%s 'zo",s:"un nebeud segondennoù",ss:"%d eilenn",m:"ur vunutenn",mm:t,h:"un eur",hh:"%d eur",d:"un devezh",dd:t,M:"ur miz",MM:t,y:"ur bloaz",yy:function(e){switch(function e(t){return t>9?e(t%10):t}(e)){case 1:case 3:case 4:case 5:case 9:return e+" bloaz";default:return e+" vloaz"}}},dayOfMonthOrdinalParse:/\d{1,2}(añ|vet)/,ordinal:function(e){return e+(1===e?"añ":"vet")},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -function t(e,t,n){var r=e+" ";switch(n){case"ss":return r+=1===e?"sekunda":2===e||3===e||4===e?"sekunde":"sekundi";case"m":return t?"jedna minuta":"jedne minute";case"mm":return r+=1===e?"minuta":2===e||3===e||4===e?"minute":"minuta";case"h":return t?"jedan sat":"jednog sata";case"hh":return r+=1===e?"sat":2===e||3===e||4===e?"sata":"sati";case"dd":return r+=1===e?"dan":"dana";case"MM":return r+=1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci";case"yy":return r+=1===e?"godina":2===e||3===e||4===e?"godine":"godina"}}e.defineLocale("bs",{months:"januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[jučer u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[prošlu] dddd [u] LT";case 6:return"[prošle] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[prošli] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:t,m:t,mm:t,h:t,hh:t,d:"dan",dd:t,M:"mjesec",MM:t,y:"godinu",yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("ca",{months:{standalone:"gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre".split("_"),format:"de gener_de febrer_de març_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre".split("_"),isFormat:/D[oD]?(\s)+MMMM/},monthsShort:"gen._febr._març_abr._maig_juny_jul._ag._set._oct._nov._des.".split("_"),monthsParseExact:!0,weekdays:"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dt._dc._dj._dv._ds.".split("_"),weekdaysMin:"dg_dl_dt_dc_dj_dv_ds".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [de] YYYY",ll:"D MMM YYYY",LLL:"D MMMM [de] YYYY [a les] H:mm",lll:"D MMM YYYY, H:mm",LLLL:"dddd D MMMM [de] YYYY [a les] H:mm",llll:"ddd D MMM YYYY, H:mm"},calendar:{sameDay:function(){return"[avui a "+(1!==this.hours()?"les":"la")+"] LT"},nextDay:function(){return"[demà a "+(1!==this.hours()?"les":"la")+"] LT"},nextWeek:function(){return"dddd [a "+(1!==this.hours()?"les":"la")+"] LT"},lastDay:function(){return"[ahir a "+(1!==this.hours()?"les":"la")+"] LT"},lastWeek:function(){return"[el] dddd [passat a "+(1!==this.hours()?"les":"la")+"] LT"},sameElse:"L"},relativeTime:{future:"d'aquí %s",past:"fa %s",s:"uns segons",ss:"%d segons",m:"un minut",mm:"%d minuts",h:"una hora",hh:"%d hores",d:"un dia",dd:"%d dies",M:"un mes",MM:"%d mesos",y:"un any",yy:"%d anys"},dayOfMonthOrdinalParse:/\d{1,2}(r|n|t|è|a)/,ordinal:function(e,t){var n=1===e?"r":2===e?"n":3===e?"r":4===e?"t":"è";return"w"!==t&&"W"!==t||(n="a"),e+n},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t="leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec".split("_"),n="led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro".split("_"),r=[/^led/i,/^úno/i,/^bře/i,/^dub/i,/^kvě/i,/^(čvn|červen$|června)/i,/^(čvc|červenec|července)/i,/^srp/i,/^zář/i,/^říj/i,/^lis/i,/^pro/i],i=/^(leden|únor|březen|duben|květen|červenec|července|červen|června|srpen|září|říjen|listopad|prosinec|led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i;function o(e){return e>1&&e<5&&1!=~~(e/10)}function a(e,t,n,r){var i=e+" ";switch(n){case"s":return t||r?"pár sekund":"pár sekundami";case"ss":return t||r?i+(o(e)?"sekundy":"sekund"):i+"sekundami";case"m":return t?"minuta":r?"minutu":"minutou";case"mm":return t||r?i+(o(e)?"minuty":"minut"):i+"minutami";case"h":return t?"hodina":r?"hodinu":"hodinou";case"hh":return t||r?i+(o(e)?"hodiny":"hodin"):i+"hodinami";case"d":return t||r?"den":"dnem";case"dd":return t||r?i+(o(e)?"dny":"dní"):i+"dny";case"M":return t||r?"měsíc":"měsícem";case"MM":return t||r?i+(o(e)?"měsíce":"měsíců"):i+"měsíci";case"y":return t||r?"rok":"rokem";case"yy":return t||r?i+(o(e)?"roky":"let"):i+"lety"}}e.defineLocale("cs",{months:t,monthsShort:n,monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(leden|ledna|února|únor|březen|března|duben|dubna|květen|května|červenec|července|červen|června|srpen|srpna|září|říjen|října|listopadu|listopad|prosinec|prosince)/i,monthsShortStrictRegex:/^(led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:"neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota".split("_"),weekdaysShort:"ne_po_út_st_čt_pá_so".split("_"),weekdaysMin:"ne_po_út_st_čt_pá_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm",l:"D. M. YYYY"},calendar:{sameDay:"[dnes v] LT",nextDay:"[zítra v] LT",nextWeek:function(){switch(this.day()){case 0:return"[v neděli v] LT";case 1:case 2:return"[v] dddd [v] LT";case 3:return"[ve středu v] LT";case 4:return"[ve čtvrtek v] LT";case 5:return"[v pátek v] LT";case 6:return"[v sobotu v] LT"}},lastDay:"[včera v] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulou neděli v] LT";case 1:case 2:return"[minulé] dddd [v] LT";case 3:return"[minulou středu v] LT";case 4:case 5:return"[minulý] dddd [v] LT";case 6:return"[minulou sobotu v] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"před %s",s:a,ss:a,m:a,mm:a,h:a,hh:a,d:a,dd:a,M:a,MM:a,y:a,yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("cv",{months:"кӑрлач_нарӑс_пуш_ака_май_ҫӗртме_утӑ_ҫурла_авӑн_юпа_чӳк_раштав".split("_"),monthsShort:"кӑр_нар_пуш_ака_май_ҫӗр_утӑ_ҫур_авн_юпа_чӳк_раш".split("_"),weekdays:"вырсарникун_тунтикун_ытларикун_юнкун_кӗҫнерникун_эрнекун_шӑматкун".split("_"),weekdaysShort:"выр_тун_ытл_юн_кӗҫ_эрн_шӑм".split("_"),weekdaysMin:"вр_тн_ыт_юн_кҫ_эр_шм".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ]",LLL:"YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm",LLLL:"dddd, YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm"},calendar:{sameDay:"[Паян] LT [сехетре]",nextDay:"[Ыран] LT [сехетре]",lastDay:"[Ӗнер] LT [сехетре]",nextWeek:"[Ҫитес] dddd LT [сехетре]",lastWeek:"[Иртнӗ] dddd LT [сехетре]",sameElse:"L"},relativeTime:{future:function(e){return e+(/сехет$/i.exec(e)?"рен":/ҫул$/i.exec(e)?"тан":"ран")},past:"%s каялла",s:"пӗр-ик ҫеккунт",ss:"%d ҫеккунт",m:"пӗр минут",mm:"%d минут",h:"пӗр сехет",hh:"%d сехет",d:"пӗр кун",dd:"%d кун",M:"пӗр уйӑх",MM:"%d уйӑх",y:"пӗр ҫул",yy:"%d ҫул"},dayOfMonthOrdinalParse:/\d{1,2}-мӗш/,ordinal:"%d-мӗш",week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("cy",{months:"Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr".split("_"),monthsShort:"Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag".split("_"),weekdays:"Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn".split("_"),weekdaysShort:"Sul_Llun_Maw_Mer_Iau_Gwe_Sad".split("_"),weekdaysMin:"Su_Ll_Ma_Me_Ia_Gw_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Heddiw am] LT",nextDay:"[Yfory am] LT",nextWeek:"dddd [am] LT",lastDay:"[Ddoe am] LT",lastWeek:"dddd [diwethaf am] LT",sameElse:"L"},relativeTime:{future:"mewn %s",past:"%s yn ôl",s:"ychydig eiliadau",ss:"%d eiliad",m:"munud",mm:"%d munud",h:"awr",hh:"%d awr",d:"diwrnod",dd:"%d diwrnod",M:"mis",MM:"%d mis",y:"blwyddyn",yy:"%d flynedd"},dayOfMonthOrdinalParse:/\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,ordinal:function(e){var t="";return e>20?t=40===e||50===e||60===e||80===e||100===e?"fed":"ain":e>0&&(t=["","af","il","ydd","ydd","ed","ed","ed","fed","fed","fed","eg","fed","eg","eg","fed","eg","eg","fed","eg","fed"][e]),e+t},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("da",{months:"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"søn_man_tir_ons_tor_fre_lør".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd [d.] D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"på dddd [kl.] LT",lastDay:"[i går kl.] LT",lastWeek:"[i] dddd[s kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"få sekunder",ss:"%d sekunder",m:"et minut",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dage",M:"en måned",MM:"%d måneder",y:"et år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -function t(e,t,n,r){var i={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return t?i[n][0]:i[n][1]}e.defineLocale("de",{months:"Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:t,mm:"%d Minuten",h:t,hh:"%d Stunden",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -function t(e,t,n,r){var i={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return t?i[n][0]:i[n][1]}e.defineLocale("de-at",{months:"Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jän._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:t,mm:"%d Minuten",h:t,hh:"%d Stunden",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -function t(e,t,n,r){var i={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return t?i[n][0]:i[n][1]}e.defineLocale("de-ch",{months:"Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:t,mm:"%d Minuten",h:t,hh:"%d Stunden",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t=["ޖެނުއަރީ","ފެބްރުއަރީ","މާރިޗު","އޭޕްރީލު","މޭ","ޖޫން","ޖުލައި","އޯގަސްޓު","ސެޕްޓެމްބަރު","އޮކްޓޯބަރު","ނޮވެމްބަރު","ޑިސެމްބަރު"],n=["އާދިއްތަ","ހޯމަ","އަންގާރަ","ބުދަ","ބުރާސްފަތި","ހުކުރު","ހޮނިހިރު"];e.defineLocale("dv",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:"އާދި_ހޯމަ_އަން_ބުދަ_ބުރާ_ހުކު_ހޮނި".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/M/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/މކ|މފ/,isPM:function(e){return"މފ"===e},meridiem:function(e,t,n){return e<12?"މކ":"މފ"},calendar:{sameDay:"[މިއަދު] LT",nextDay:"[މާދަމާ] LT",nextWeek:"dddd LT",lastDay:"[އިއްޔެ] LT",lastWeek:"[ފާއިތުވި] dddd LT",sameElse:"L"},relativeTime:{future:"ތެރޭގައި %s",past:"ކުރިން %s",s:"ސިކުންތުކޮޅެއް",ss:"d% ސިކުންތު",m:"މިނިޓެއް",mm:"މިނިޓު %d",h:"ގަޑިއިރެއް",hh:"ގަޑިއިރު %d",d:"ދުވަހެއް",dd:"ދުވަސް %d",M:"މަހެއް",MM:"މަސް %d",y:"އަހަރެއް",yy:"އަހަރު %d"},preparse:function(e){return e.replace(/،/g,",")},postformat:function(e){return e.replace(/,/g,"،")},week:{dow:7,doy:12}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("el",{monthsNominativeEl:"Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος".split("_"),monthsGenitiveEl:"Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου".split("_"),months:function(e,t){return e?"string"==typeof t&&/D/.test(t.substring(0,t.indexOf("MMMM")))?this._monthsGenitiveEl[e.month()]:this._monthsNominativeEl[e.month()]:this._monthsNominativeEl},monthsShort:"Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ".split("_"),weekdays:"Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο".split("_"),weekdaysShort:"Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ".split("_"),weekdaysMin:"Κυ_Δε_Τρ_Τε_Πε_Πα_Σα".split("_"),meridiem:function(e,t,n){return e>11?n?"μμ":"ΜΜ":n?"πμ":"ΠΜ"},isPM:function(e){return"μ"===(e+"").toLowerCase()[0]},meridiemParse:/[ΠΜ]\.?Μ?\.?/i,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendarEl:{sameDay:"[Σήμερα {}] LT",nextDay:"[Αύριο {}] LT",nextWeek:"dddd [{}] LT",lastDay:"[Χθες {}] LT",lastWeek:function(){switch(this.day()){case 6:return"[το προηγούμενο] dddd [{}] LT";default:return"[την προηγούμενη] dddd [{}] LT"}},sameElse:"L"},calendar:function(e,t){var n,r=this._calendarEl[e],i=t&&t.hours();return n=r,("undefined"!=typeof Function&&n instanceof Function||"[object Function]"===Object.prototype.toString.call(n))&&(r=r.apply(t)),r.replace("{}",i%12==1?"στη":"στις")},relativeTime:{future:"σε %s",past:"%s πριν",s:"λίγα δευτερόλεπτα",ss:"%d δευτερόλεπτα",m:"ένα λεπτό",mm:"%d λεπτά",h:"μία ώρα",hh:"%d ώρες",d:"μία μέρα",dd:"%d μέρες",M:"ένας μήνας",MM:"%d μήνες",y:"ένας χρόνος",yy:"%d χρόνια"},dayOfMonthOrdinalParse:/\d{1,2}η/,ordinal:"%dη",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("en-au",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("en-ca",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"YYYY-MM-DD",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("en-gb",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("en-ie",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("en-il",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("en-in",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("en-nz",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("en-sg",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("eo",{months:"januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro".split("_"),monthsShort:"jan_feb_mart_apr_maj_jun_jul_aŭg_sept_okt_nov_dec".split("_"),weekdays:"dimanĉo_lundo_mardo_merkredo_ĵaŭdo_vendredo_sabato".split("_"),weekdaysShort:"dim_lun_mard_merk_ĵaŭ_ven_sab".split("_"),weekdaysMin:"di_lu_ma_me_ĵa_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"[la] D[-an de] MMMM, YYYY",LLL:"[la] D[-an de] MMMM, YYYY HH:mm",LLLL:"dddd[n], [la] D[-an de] MMMM, YYYY HH:mm",llll:"ddd, [la] D[-an de] MMM, YYYY HH:mm"},meridiemParse:/[ap]\.t\.m/i,isPM:function(e){return"p"===e.charAt(0).toLowerCase()},meridiem:function(e,t,n){return e>11?n?"p.t.m.":"P.T.M.":n?"a.t.m.":"A.T.M."},calendar:{sameDay:"[Hodiaŭ je] LT",nextDay:"[Morgaŭ je] LT",nextWeek:"dddd[n je] LT",lastDay:"[Hieraŭ je] LT",lastWeek:"[pasintan] dddd[n je] LT",sameElse:"L"},relativeTime:{future:"post %s",past:"antaŭ %s",s:"kelkaj sekundoj",ss:"%d sekundoj",m:"unu minuto",mm:"%d minutoj",h:"unu horo",hh:"%d horoj",d:"unu tago",dd:"%d tagoj",M:"unu monato",MM:"%d monatoj",y:"unu jaro",yy:"%d jaroj"},dayOfMonthOrdinalParse:/\d{1,2}a/,ordinal:"%da",week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),n="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),r=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],i=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;e.defineLocale("es",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4},invalidDate:"Fecha invalida"})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),n="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),r=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],i=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;e.defineLocale("es-do",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),n="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),r=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],i=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;e.defineLocale("es-us",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"MM/DD/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:0,doy:6}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -function t(e,t,n,r){var i={s:["mõne sekundi","mõni sekund","paar sekundit"],ss:[e+"sekundi",e+"sekundit"],m:["ühe minuti","üks minut"],mm:[e+" minuti",e+" minutit"],h:["ühe tunni","tund aega","üks tund"],hh:[e+" tunni",e+" tundi"],d:["ühe päeva","üks päev"],M:["kuu aja","kuu aega","üks kuu"],MM:[e+" kuu",e+" kuud"],y:["ühe aasta","aasta","üks aasta"],yy:[e+" aasta",e+" aastat"]};return t?i[n][2]?i[n][2]:i[n][1]:r?i[n][0]:i[n][1]}e.defineLocale("et",{months:"jaanuar_veebruar_märts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember".split("_"),monthsShort:"jaan_veebr_märts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets".split("_"),weekdays:"pühapäev_esmaspäev_teisipäev_kolmapäev_neljapäev_reede_laupäev".split("_"),weekdaysShort:"P_E_T_K_N_R_L".split("_"),weekdaysMin:"P_E_T_K_N_R_L".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[Täna,] LT",nextDay:"[Homme,] LT",nextWeek:"[Järgmine] dddd LT",lastDay:"[Eile,] LT",lastWeek:"[Eelmine] dddd LT",sameElse:"L"},relativeTime:{future:"%s pärast",past:"%s tagasi",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:"%d päeva",M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("eu",{months:"urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua".split("_"),monthsShort:"urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.".split("_"),monthsParseExact:!0,weekdays:"igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata".split("_"),weekdaysShort:"ig._al._ar._az._og._ol._lr.".split("_"),weekdaysMin:"ig_al_ar_az_og_ol_lr".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY[ko] MMMM[ren] D[a]",LLL:"YYYY[ko] MMMM[ren] D[a] HH:mm",LLLL:"dddd, YYYY[ko] MMMM[ren] D[a] HH:mm",l:"YYYY-M-D",ll:"YYYY[ko] MMM D[a]",lll:"YYYY[ko] MMM D[a] HH:mm",llll:"ddd, YYYY[ko] MMM D[a] HH:mm"},calendar:{sameDay:"[gaur] LT[etan]",nextDay:"[bihar] LT[etan]",nextWeek:"dddd LT[etan]",lastDay:"[atzo] LT[etan]",lastWeek:"[aurreko] dddd LT[etan]",sameElse:"L"},relativeTime:{future:"%s barru",past:"duela %s",s:"segundo batzuk",ss:"%d segundo",m:"minutu bat",mm:"%d minutu",h:"ordu bat",hh:"%d ordu",d:"egun bat",dd:"%d egun",M:"hilabete bat",MM:"%d hilabete",y:"urte bat",yy:"%d urte"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={1:"۱",2:"۲",3:"۳",4:"۴",5:"۵",6:"۶",7:"۷",8:"۸",9:"۹",0:"۰"},n={"۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9","۰":"0"};e.defineLocale("fa",{months:"ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"),monthsShort:"ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"),weekdays:"یک‌شنبه_دوشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"),weekdaysShort:"یک‌شنبه_دوشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"),weekdaysMin:"ی_د_س_چ_پ_ج_ش".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/قبل از ظهر|بعد از ظهر/,isPM:function(e){return/بعد از ظهر/.test(e)},meridiem:function(e,t,n){return e<12?"قبل از ظهر":"بعد از ظهر"},calendar:{sameDay:"[امروز ساعت] LT",nextDay:"[فردا ساعت] LT",nextWeek:"dddd [ساعت] LT",lastDay:"[دیروز ساعت] LT",lastWeek:"dddd [پیش] [ساعت] LT",sameElse:"L"},relativeTime:{future:"در %s",past:"%s پیش",s:"چند ثانیه",ss:"%d ثانیه",m:"یک دقیقه",mm:"%d دقیقه",h:"یک ساعت",hh:"%d ساعت",d:"یک روز",dd:"%d روز",M:"یک ماه",MM:"%d ماه",y:"یک سال",yy:"%d سال"},preparse:function(e){return e.replace(/[۰-۹]/g,(function(e){return n[e]})).replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]})).replace(/,/g,"،")},dayOfMonthOrdinalParse:/\d{1,2}م/,ordinal:"%dم",week:{dow:6,doy:12}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t="nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän".split(" "),n=["nolla","yhden","kahden","kolmen","neljän","viiden","kuuden",t[7],t[8],t[9]];function r(e,r,i,o){var a="";switch(i){case"s":return o?"muutaman sekunnin":"muutama sekunti";case"ss":return o?"sekunnin":"sekuntia";case"m":return o?"minuutin":"minuutti";case"mm":a=o?"minuutin":"minuuttia";break;case"h":return o?"tunnin":"tunti";case"hh":a=o?"tunnin":"tuntia";break;case"d":return o?"päivän":"päivä";case"dd":a=o?"päivän":"päivää";break;case"M":return o?"kuukauden":"kuukausi";case"MM":a=o?"kuukauden":"kuukautta";break;case"y":return o?"vuoden":"vuosi";case"yy":a=o?"vuoden":"vuotta"}return a=function(e,r){return e<10?r?n[e]:t[e]:e}(e,o)+" "+a}e.defineLocale("fi",{months:"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu".split("_"),monthsShort:"tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu".split("_"),weekdays:"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai".split("_"),weekdaysShort:"su_ma_ti_ke_to_pe_la".split("_"),weekdaysMin:"su_ma_ti_ke_to_pe_la".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"Do MMMM[ta] YYYY",LLL:"Do MMMM[ta] YYYY, [klo] HH.mm",LLLL:"dddd, Do MMMM[ta] YYYY, [klo] HH.mm",l:"D.M.YYYY",ll:"Do MMM YYYY",lll:"Do MMM YYYY, [klo] HH.mm",llll:"ddd, Do MMM YYYY, [klo] HH.mm"},calendar:{sameDay:"[tänään] [klo] LT",nextDay:"[huomenna] [klo] LT",nextWeek:"dddd [klo] LT",lastDay:"[eilen] [klo] LT",lastWeek:"[viime] dddd[na] [klo] LT",sameElse:"L"},relativeTime:{future:"%s päästä",past:"%s sitten",s:r,ss:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("fil",{months:"Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre".split("_"),monthsShort:"Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis".split("_"),weekdays:"Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado".split("_"),weekdaysShort:"Lin_Lun_Mar_Miy_Huw_Biy_Sab".split("_"),weekdaysMin:"Li_Lu_Ma_Mi_Hu_Bi_Sab".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"MM/D/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY HH:mm",LLLL:"dddd, MMMM DD, YYYY HH:mm"},calendar:{sameDay:"LT [ngayong araw]",nextDay:"[Bukas ng] LT",nextWeek:"LT [sa susunod na] dddd",lastDay:"LT [kahapon]",lastWeek:"LT [noong nakaraang] dddd",sameElse:"L"},relativeTime:{future:"sa loob ng %s",past:"%s ang nakalipas",s:"ilang segundo",ss:"%d segundo",m:"isang minuto",mm:"%d minuto",h:"isang oras",hh:"%d oras",d:"isang araw",dd:"%d araw",M:"isang buwan",MM:"%d buwan",y:"isang taon",yy:"%d taon"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("fo",{months:"januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),weekdays:"sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur".split("_"),weekdaysShort:"sun_mán_týs_mik_hós_frí_ley".split("_"),weekdaysMin:"su_má_tý_mi_hó_fr_le".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D. MMMM, YYYY HH:mm"},calendar:{sameDay:"[Í dag kl.] LT",nextDay:"[Í morgin kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[Í gjár kl.] LT",lastWeek:"[síðstu] dddd [kl] LT",sameElse:"L"},relativeTime:{future:"um %s",past:"%s síðani",s:"fá sekund",ss:"%d sekundir",m:"ein minuttur",mm:"%d minuttir",h:"ein tími",hh:"%d tímar",d:"ein dagur",dd:"%d dagar",M:"ein mánaður",MM:"%d mánaðir",y:"eitt ár",yy:"%d ár"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("fr",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd’hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|)/,ordinal:function(e,t){switch(t){case"D":return e+(1===e?"er":"");default:case"M":case"Q":case"DDD":case"d":return e+(1===e?"er":"e");case"w":case"W":return e+(1===e?"re":"e")}},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("fr-ca",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd’hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case"M":case"Q":case"D":case"DDD":case"d":return e+(1===e?"er":"e");case"w":case"W":return e+(1===e?"re":"e")}}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("fr-ch",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd’hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case"M":case"Q":case"D":case"DDD":case"d":return e+(1===e?"er":"e");case"w":case"W":return e+(1===e?"re":"e")}},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t="jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.".split("_"),n="jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_");e.defineLocale("fy",{months:"jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber".split("_"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsParseExact:!0,weekdays:"snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon".split("_"),weekdaysShort:"si._mo._ti._wo._to._fr._so.".split("_"),weekdaysMin:"Si_Mo_Ti_Wo_To_Fr_So".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[hjoed om] LT",nextDay:"[moarn om] LT",nextWeek:"dddd [om] LT",lastDay:"[juster om] LT",lastWeek:"[ôfrûne] dddd [om] LT",sameElse:"L"},relativeTime:{future:"oer %s",past:"%s lyn",s:"in pear sekonden",ss:"%d sekonden",m:"ien minút",mm:"%d minuten",h:"ien oere",hh:"%d oeren",d:"ien dei",dd:"%d dagen",M:"ien moanne",MM:"%d moannen",y:"ien jier",yy:"%d jierren"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("ga",{months:["Eanáir","Feabhra","Márta","Aibreán","Bealtaine","Meitheamh","Iúil","Lúnasa","Meán Fómhair","Deireadh Fómhair","Samhain","Nollaig"],monthsShort:["Ean","Feabh","Márt","Aib","Beal","Meith","Iúil","Lún","M.F.","D.F.","Samh","Noll"],monthsParseExact:!0,weekdays:["Dé Domhnaigh","Dé Luain","Dé Máirt","Dé Céadaoin","Déardaoin","Dé hAoine","Dé Sathairn"],weekdaysShort:["Domh","Luan","Máirt","Céad","Déar","Aoine","Sath"],weekdaysMin:["Do","Lu","Má","Cé","Dé","A","Sa"],longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Inniu ag] LT",nextDay:"[Amárach ag] LT",nextWeek:"dddd [ag] LT",lastDay:"[Inné ag] LT",lastWeek:"dddd [seo caite] [ag] LT",sameElse:"L"},relativeTime:{future:"i %s",past:"%s ó shin",s:"cúpla soicind",ss:"%d soicind",m:"nóiméad",mm:"%d nóiméad",h:"uair an chloig",hh:"%d uair an chloig",d:"lá",dd:"%d lá",M:"mí",MM:"%d míonna",y:"bliain",yy:"%d bliain"},dayOfMonthOrdinalParse:/\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?"d":e%10==2?"na":"mh")},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("gd",{months:["Am Faoilleach","An Gearran","Am Màrt","An Giblean","An Cèitean","An t-Ògmhios","An t-Iuchar","An Lùnastal","An t-Sultain","An Dàmhair","An t-Samhain","An Dùbhlachd"],monthsShort:["Faoi","Gear","Màrt","Gibl","Cèit","Ògmh","Iuch","Lùn","Sult","Dàmh","Samh","Dùbh"],monthsParseExact:!0,weekdays:["Didòmhnaich","Diluain","Dimàirt","Diciadain","Diardaoin","Dihaoine","Disathairne"],weekdaysShort:["Did","Dil","Dim","Dic","Dia","Dih","Dis"],weekdaysMin:["Dò","Lu","Mà","Ci","Ar","Ha","Sa"],longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[An-diugh aig] LT",nextDay:"[A-màireach aig] LT",nextWeek:"dddd [aig] LT",lastDay:"[An-dè aig] LT",lastWeek:"dddd [seo chaidh] [aig] LT",sameElse:"L"},relativeTime:{future:"ann an %s",past:"bho chionn %s",s:"beagan diogan",ss:"%d diogan",m:"mionaid",mm:"%d mionaidean",h:"uair",hh:"%d uairean",d:"latha",dd:"%d latha",M:"mìos",MM:"%d mìosan",y:"bliadhna",yy:"%d bliadhna"},dayOfMonthOrdinalParse:/\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?"d":e%10==2?"na":"mh")},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("gl",{months:"xaneiro_febreiro_marzo_abril_maio_xuño_xullo_agosto_setembro_outubro_novembro_decembro".split("_"),monthsShort:"xan._feb._mar._abr._mai._xuñ._xul._ago._set._out._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"domingo_luns_martes_mércores_xoves_venres_sábado".split("_"),weekdaysShort:"dom._lun._mar._mér._xov._ven._sáb.".split("_"),weekdaysMin:"do_lu_ma_mé_xo_ve_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoxe "+(1!==this.hours()?"ás":"á")+"] LT"},nextDay:function(){return"[mañá "+(1!==this.hours()?"ás":"á")+"] LT"},nextWeek:function(){return"dddd ["+(1!==this.hours()?"ás":"a")+"] LT"},lastDay:function(){return"[onte "+(1!==this.hours()?"á":"a")+"] LT"},lastWeek:function(){return"[o] dddd [pasado "+(1!==this.hours()?"ás":"a")+"] LT"},sameElse:"L"},relativeTime:{future:function(e){return 0===e.indexOf("un")?"n"+e:"en "+e},past:"hai %s",s:"uns segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"unha hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -function t(e,t,n,r){var i={s:["थोडया सॅकंडांनी","थोडे सॅकंड"],ss:[e+" सॅकंडांनी",e+" सॅकंड"],m:["एका मिणटान","एक मिनूट"],mm:[e+" मिणटांनी",e+" मिणटां"],h:["एका वरान","एक वर"],hh:[e+" वरांनी",e+" वरां"],d:["एका दिसान","एक दीस"],dd:[e+" दिसांनी",e+" दीस"],M:["एका म्हयन्यान","एक म्हयनो"],MM:[e+" म्हयन्यानी",e+" म्हयने"],y:["एका वर्सान","एक वर्स"],yy:[e+" वर्सांनी",e+" वर्सां"]};return r?i[n][0]:i[n][1]}e.defineLocale("gom-deva",{months:{standalone:"जानेवारी_फेब्रुवारी_मार्च_एप्रील_मे_जून_जुलय_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर".split("_"),format:"जानेवारीच्या_फेब्रुवारीच्या_मार्चाच्या_एप्रीलाच्या_मेयाच्या_जूनाच्या_जुलयाच्या_ऑगस्टाच्या_सप्टेंबराच्या_ऑक्टोबराच्या_नोव्हेंबराच्या_डिसेंबराच्या".split("_"),isFormat:/MMMM(\s)+D[oD]?/},monthsShort:"जाने._फेब्रु._मार्च_एप्री._मे_जून_जुल._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.".split("_"),monthsParseExact:!0,weekdays:"आयतार_सोमार_मंगळार_बुधवार_बिरेस्तार_सुक्रार_शेनवार".split("_"),weekdaysShort:"आयत._सोम._मंगळ._बुध._ब्रेस्त._सुक्र._शेन.".split("_"),weekdaysMin:"आ_सो_मं_बु_ब्रे_सु_शे".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"A h:mm [वाजतां]",LTS:"A h:mm:ss [वाजतां]",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY A h:mm [वाजतां]",LLLL:"dddd, MMMM Do, YYYY, A h:mm [वाजतां]",llll:"ddd, D MMM YYYY, A h:mm [वाजतां]"},calendar:{sameDay:"[आयज] LT",nextDay:"[फाल्यां] LT",nextWeek:"[फुडलो] dddd[,] LT",lastDay:"[काल] LT",lastWeek:"[फाटलो] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%s",past:"%s आदीं",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}(वेर)/,ordinal:function(e,t){switch(t){case"D":return e+"वेर";default:case"M":case"Q":case"DDD":case"d":case"w":case"W":return e}},week:{dow:1,doy:4},meridiemParse:/राती|सकाळीं|दनपारां|सांजे/,meridiemHour:function(e,t){return 12===e&&(e=0),"राती"===t?e<4?e:e+12:"सकाळीं"===t?e:"दनपारां"===t?e>12?e:e+12:"सांजे"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"राती":e<12?"सकाळीं":e<16?"दनपारां":e<20?"सांजे":"राती"}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -function t(e,t,n,r){var i={s:["thoddea sekondamni","thodde sekond"],ss:[e+" sekondamni",e+" sekond"],m:["eka mintan","ek minut"],mm:[e+" mintamni",e+" mintam"],h:["eka voran","ek vor"],hh:[e+" voramni",e+" voram"],d:["eka disan","ek dis"],dd:[e+" disamni",e+" dis"],M:["eka mhoinean","ek mhoino"],MM:[e+" mhoineamni",e+" mhoine"],y:["eka vorsan","ek voros"],yy:[e+" vorsamni",e+" vorsam"]};return r?i[n][0]:i[n][1]}e.defineLocale("gom-latn",{months:{standalone:"Janer_Febrer_Mars_Abril_Mai_Jun_Julai_Agost_Setembr_Otubr_Novembr_Dezembr".split("_"),format:"Janerachea_Febrerachea_Marsachea_Abrilachea_Maiachea_Junachea_Julaiachea_Agostachea_Setembrachea_Otubrachea_Novembrachea_Dezembrachea".split("_"),isFormat:/MMMM(\s)+D[oD]?/},monthsShort:"Jan._Feb._Mars_Abr._Mai_Jun_Jul._Ago._Set._Otu._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Aitar_Somar_Mongllar_Budhvar_Birestar_Sukrar_Son'var".split("_"),weekdaysShort:"Ait._Som._Mon._Bud._Bre._Suk._Son.".split("_"),weekdaysMin:"Ai_Sm_Mo_Bu_Br_Su_Sn".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"A h:mm [vazta]",LTS:"A h:mm:ss [vazta]",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY A h:mm [vazta]",LLLL:"dddd, MMMM Do, YYYY, A h:mm [vazta]",llll:"ddd, D MMM YYYY, A h:mm [vazta]"},calendar:{sameDay:"[Aiz] LT",nextDay:"[Faleam] LT",nextWeek:"[Fuddlo] dddd[,] LT",lastDay:"[Kal] LT",lastWeek:"[Fattlo] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%s",past:"%s adim",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}(er)/,ordinal:function(e,t){switch(t){case"D":return e+"er";default:case"M":case"Q":case"DDD":case"d":case"w":case"W":return e}},week:{dow:1,doy:4},meridiemParse:/rati|sokallim|donparam|sanje/,meridiemHour:function(e,t){return 12===e&&(e=0),"rati"===t?e<4?e:e+12:"sokallim"===t?e:"donparam"===t?e>12?e:e+12:"sanje"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"rati":e<12?"sokallim":e<16?"donparam":e<20?"sanje":"rati"}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={1:"૧",2:"૨",3:"૩",4:"૪",5:"૫",6:"૬",7:"૭",8:"૮",9:"૯",0:"૦"},n={"૧":"1","૨":"2","૩":"3","૪":"4","૫":"5","૬":"6","૭":"7","૮":"8","૯":"9","૦":"0"};e.defineLocale("gu",{months:"જાન્યુઆરી_ફેબ્રુઆરી_માર્ચ_એપ્રિલ_મે_જૂન_જુલાઈ_ઑગસ્ટ_સપ્ટેમ્બર_ઑક્ટ્બર_નવેમ્બર_ડિસેમ્બર".split("_"),monthsShort:"જાન્યુ._ફેબ્રુ._માર્ચ_એપ્રિ._મે_જૂન_જુલા._ઑગ._સપ્ટે._ઑક્ટ્._નવે._ડિસે.".split("_"),monthsParseExact:!0,weekdays:"રવિવાર_સોમવાર_મંગળવાર_બુધ્વાર_ગુરુવાર_શુક્રવાર_શનિવાર".split("_"),weekdaysShort:"રવિ_સોમ_મંગળ_બુધ્_ગુરુ_શુક્ર_શનિ".split("_"),weekdaysMin:"ર_સો_મં_બુ_ગુ_શુ_શ".split("_"),longDateFormat:{LT:"A h:mm વાગ્યે",LTS:"A h:mm:ss વાગ્યે",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm વાગ્યે",LLLL:"dddd, D MMMM YYYY, A h:mm વાગ્યે"},calendar:{sameDay:"[આજ] LT",nextDay:"[કાલે] LT",nextWeek:"dddd, LT",lastDay:"[ગઇકાલે] LT",lastWeek:"[પાછલા] dddd, LT",sameElse:"L"},relativeTime:{future:"%s મા",past:"%s પેહલા",s:"અમુક પળો",ss:"%d સેકંડ",m:"એક મિનિટ",mm:"%d મિનિટ",h:"એક કલાક",hh:"%d કલાક",d:"એક દિવસ",dd:"%d દિવસ",M:"એક મહિનો",MM:"%d મહિનો",y:"એક વર્ષ",yy:"%d વર્ષ"},preparse:function(e){return e.replace(/[૧૨૩૪૫૬૭૮૯૦]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]}))},meridiemParse:/રાત|બપોર|સવાર|સાંજ/,meridiemHour:function(e,t){return 12===e&&(e=0),"રાત"===t?e<4?e:e+12:"સવાર"===t?e:"બપોર"===t?e>=10?e:e+12:"સાંજ"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"રાત":e<10?"સવાર":e<17?"બપોર":e<20?"સાંજ":"રાત"},week:{dow:0,doy:6}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("he",{months:"ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר".split("_"),monthsShort:"ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳".split("_"),weekdays:"ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת".split("_"),weekdaysShort:"א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳".split("_"),weekdaysMin:"א_ב_ג_ד_ה_ו_ש".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [ב]MMMM YYYY",LLL:"D [ב]MMMM YYYY HH:mm",LLLL:"dddd, D [ב]MMMM YYYY HH:mm",l:"D/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[היום ב־]LT",nextDay:"[מחר ב־]LT",nextWeek:"dddd [בשעה] LT",lastDay:"[אתמול ב־]LT",lastWeek:"[ביום] dddd [האחרון בשעה] LT",sameElse:"L"},relativeTime:{future:"בעוד %s",past:"לפני %s",s:"מספר שניות",ss:"%d שניות",m:"דקה",mm:"%d דקות",h:"שעה",hh:function(e){return 2===e?"שעתיים":e+" שעות"},d:"יום",dd:function(e){return 2===e?"יומיים":e+" ימים"},M:"חודש",MM:function(e){return 2===e?"חודשיים":e+" חודשים"},y:"שנה",yy:function(e){return 2===e?"שנתיים":e%10==0&&10!==e?e+" שנה":e+" שנים"}},meridiemParse:/אחה"צ|לפנה"צ|אחרי הצהריים|לפני הצהריים|לפנות בוקר|בבוקר|בערב/i,isPM:function(e){return/^(אחה"צ|אחרי הצהריים|בערב)$/.test(e)},meridiem:function(e,t,n){return e<5?"לפנות בוקר":e<10?"בבוקר":e<12?n?'לפנה"צ':"לפני הצהריים":e<18?n?'אחה"צ':"אחרי הצהריים":"בערב"}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={1:"१",2:"२",3:"३",4:"४",5:"५",6:"६",7:"७",8:"८",9:"९",0:"०"},n={"१":"1","२":"2","३":"3","४":"4","५":"5","६":"6","७":"7","८":"8","९":"9","०":"0"};e.defineLocale("hi",{months:"जनवरी_फ़रवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर".split("_"),monthsShort:"जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.".split("_"),monthsParseExact:!0,weekdays:"रविवार_सोमवार_मंगलवार_बुधवार_गुरूवार_शुक्रवार_शनिवार".split("_"),weekdaysShort:"रवि_सोम_मंगल_बुध_गुरू_शुक्र_शनि".split("_"),weekdaysMin:"र_सो_मं_बु_गु_शु_श".split("_"),longDateFormat:{LT:"A h:mm बजे",LTS:"A h:mm:ss बजे",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm बजे",LLLL:"dddd, D MMMM YYYY, A h:mm बजे"},calendar:{sameDay:"[आज] LT",nextDay:"[कल] LT",nextWeek:"dddd, LT",lastDay:"[कल] LT",lastWeek:"[पिछले] dddd, LT",sameElse:"L"},relativeTime:{future:"%s में",past:"%s पहले",s:"कुछ ही क्षण",ss:"%d सेकंड",m:"एक मिनट",mm:"%d मिनट",h:"एक घंटा",hh:"%d घंटे",d:"एक दिन",dd:"%d दिन",M:"एक महीने",MM:"%d महीने",y:"एक वर्ष",yy:"%d वर्ष"},preparse:function(e){return e.replace(/[१२३४५६७८९०]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]}))},meridiemParse:/रात|सुबह|दोपहर|शाम/,meridiemHour:function(e,t){return 12===e&&(e=0),"रात"===t?e<4?e:e+12:"सुबह"===t?e:"दोपहर"===t?e>=10?e:e+12:"शाम"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"रात":e<10?"सुबह":e<17?"दोपहर":e<20?"शाम":"रात"},week:{dow:0,doy:6}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -function t(e,t,n){var r=e+" ";switch(n){case"ss":return r+=1===e?"sekunda":2===e||3===e||4===e?"sekunde":"sekundi";case"m":return t?"jedna minuta":"jedne minute";case"mm":return r+=1===e?"minuta":2===e||3===e||4===e?"minute":"minuta";case"h":return t?"jedan sat":"jednog sata";case"hh":return r+=1===e?"sat":2===e||3===e||4===e?"sata":"sati";case"dd":return r+=1===e?"dan":"dana";case"MM":return r+=1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci";case"yy":return r+=1===e?"godina":2===e||3===e||4===e?"godine":"godina"}}e.defineLocale("hr",{months:{format:"siječnja_veljače_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca".split("_"),standalone:"siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac".split("_")},monthsShort:"sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"Do MMMM YYYY",LLL:"Do MMMM YYYY H:mm",LLLL:"dddd, Do MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[jučer u] LT",lastWeek:function(){switch(this.day()){case 0:return"[prošlu] [nedjelju] [u] LT";case 3:return"[prošlu] [srijedu] [u] LT";case 6:return"[prošle] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[prošli] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:t,m:t,mm:t,h:t,hh:t,d:"dan",dd:t,M:"mjesec",MM:t,y:"godinu",yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t="vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton".split(" ");function n(e,t,n,r){var i=e;switch(n){case"s":return r||t?"néhány másodperc":"néhány másodperce";case"ss":return i+(r||t)?" másodperc":" másodperce";case"m":return"egy"+(r||t?" perc":" perce");case"mm":return i+(r||t?" perc":" perce");case"h":return"egy"+(r||t?" óra":" órája");case"hh":return i+(r||t?" óra":" órája");case"d":return"egy"+(r||t?" nap":" napja");case"dd":return i+(r||t?" nap":" napja");case"M":return"egy"+(r||t?" hónap":" hónapja");case"MM":return i+(r||t?" hónap":" hónapja");case"y":return"egy"+(r||t?" év":" éve");case"yy":return i+(r||t?" év":" éve")}return""}function r(e){return(e?"":"[múlt] ")+"["+t[this.day()]+"] LT[-kor]"}e.defineLocale("hu",{months:"január_február_március_április_május_június_július_augusztus_szeptember_október_november_december".split("_"),monthsShort:"jan_feb_márc_ápr_máj_jún_júl_aug_szept_okt_nov_dec".split("_"),weekdays:"vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat".split("_"),weekdaysShort:"vas_hét_kedd_sze_csüt_pén_szo".split("_"),weekdaysMin:"v_h_k_sze_cs_p_szo".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY. MMMM D.",LLL:"YYYY. MMMM D. H:mm",LLLL:"YYYY. MMMM D., dddd H:mm"},meridiemParse:/de|du/i,isPM:function(e){return"u"===e.charAt(1).toLowerCase()},meridiem:function(e,t,n){return e<12?!0===n?"de":"DE":!0===n?"du":"DU"},calendar:{sameDay:"[ma] LT[-kor]",nextDay:"[holnap] LT[-kor]",nextWeek:function(){return r.call(this,!0)},lastDay:"[tegnap] LT[-kor]",lastWeek:function(){return r.call(this,!1)},sameElse:"L"},relativeTime:{future:"%s múlva",past:"%s",s:n,ss:n,m:n,mm:n,h:n,hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("hy-am",{months:{format:"հունվարի_փետրվարի_մարտի_ապրիլի_մայիսի_հունիսի_հուլիսի_օգոստոսի_սեպտեմբերի_հոկտեմբերի_նոյեմբերի_դեկտեմբերի".split("_"),standalone:"հունվար_փետրվար_մարտ_ապրիլ_մայիս_հունիս_հուլիս_օգոստոս_սեպտեմբեր_հոկտեմբեր_նոյեմբեր_դեկտեմբեր".split("_")},monthsShort:"հնվ_փտր_մրտ_ապր_մյս_հնս_հլս_օգս_սպտ_հկտ_նմբ_դկտ".split("_"),weekdays:"կիրակի_երկուշաբթի_երեքշաբթի_չորեքշաբթի_հինգշաբթի_ուրբաթ_շաբաթ".split("_"),weekdaysShort:"կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ".split("_"),weekdaysMin:"կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY թ.",LLL:"D MMMM YYYY թ., HH:mm",LLLL:"dddd, D MMMM YYYY թ., HH:mm"},calendar:{sameDay:"[այսօր] LT",nextDay:"[վաղը] LT",lastDay:"[երեկ] LT",nextWeek:function(){return"dddd [օրը ժամը] LT"},lastWeek:function(){return"[անցած] dddd [օրը ժամը] LT"},sameElse:"L"},relativeTime:{future:"%s հետո",past:"%s առաջ",s:"մի քանի վայրկյան",ss:"%d վայրկյան",m:"րոպե",mm:"%d րոպե",h:"ժամ",hh:"%d ժամ",d:"օր",dd:"%d օր",M:"ամիս",MM:"%d ամիս",y:"տարի",yy:"%d տարի"},meridiemParse:/գիշերվա|առավոտվա|ցերեկվա|երեկոյան/,isPM:function(e){return/^(ցերեկվա|երեկոյան)$/.test(e)},meridiem:function(e){return e<4?"գիշերվա":e<12?"առավոտվա":e<17?"ցերեկվա":"երեկոյան"},dayOfMonthOrdinalParse:/\d{1,2}|\d{1,2}-(ին|րդ)/,ordinal:function(e,t){switch(t){case"DDD":case"w":case"W":case"DDDo":return 1===e?e+"-ին":e+"-րդ";default:return e}},week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("id",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des".split("_"),weekdays:"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu".split("_"),weekdaysShort:"Min_Sen_Sel_Rab_Kam_Jum_Sab".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),"pagi"===t?e:"siang"===t?e>=11?e:e+12:"sore"===t||"malam"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?"pagi":e<15?"siang":e<19?"sore":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Besok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kemarin pukul] LT",lastWeek:"dddd [lalu pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lalu",s:"beberapa detik",ss:"%d detik",m:"semenit",mm:"%d menit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -function t(e){return e%100==11||e%10!=1}function n(e,n,r,i){var o=e+" ";switch(r){case"s":return n||i?"nokkrar sekúndur":"nokkrum sekúndum";case"ss":return t(e)?o+(n||i?"sekúndur":"sekúndum"):o+"sekúnda";case"m":return n?"mínúta":"mínútu";case"mm":return t(e)?o+(n||i?"mínútur":"mínútum"):n?o+"mínúta":o+"mínútu";case"hh":return t(e)?o+(n||i?"klukkustundir":"klukkustundum"):o+"klukkustund";case"d":return n?"dagur":i?"dag":"degi";case"dd":return t(e)?n?o+"dagar":o+(i?"daga":"dögum"):n?o+"dagur":o+(i?"dag":"degi");case"M":return n?"mánuður":i?"mánuð":"mánuði";case"MM":return t(e)?n?o+"mánuðir":o+(i?"mánuði":"mánuðum"):n?o+"mánuður":o+(i?"mánuð":"mánuði");case"y":return n||i?"ár":"ári";case"yy":return t(e)?o+(n||i?"ár":"árum"):o+(n||i?"ár":"ári")}}e.defineLocale("is",{months:"janúar_febrúar_mars_apríl_maí_júní_júlí_ágúst_september_október_nóvember_desember".split("_"),monthsShort:"jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des".split("_"),weekdays:"sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur".split("_"),weekdaysShort:"sun_mán_þri_mið_fim_fös_lau".split("_"),weekdaysMin:"Su_Má_Þr_Mi_Fi_Fö_La".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd, D. MMMM YYYY [kl.] H:mm"},calendar:{sameDay:"[í dag kl.] LT",nextDay:"[á morgun kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[í gær kl.] LT",lastWeek:"[síðasta] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"eftir %s",past:"fyrir %s síðan",s:n,ss:n,m:n,mm:n,h:"klukkustund",hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("it",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato".split("_"),weekdaysShort:"dom_lun_mar_mer_gio_ven_sab".split("_"),weekdaysMin:"do_lu_ma_me_gi_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:function(){return"[Oggi a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},nextDay:function(){return"[Domani a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},nextWeek:function(){return"dddd [a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},lastDay:function(){return"[Ieri a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},lastWeek:function(){switch(this.day()){case 0:return"[La scorsa] dddd [a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT";default:return"[Lo scorso] dddd [a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"}},sameElse:"L"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?"tra":"in")+" "+e},past:"%s fa",s:"alcuni secondi",ss:"%d secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("it-ch",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato".split("_"),weekdaysShort:"dom_lun_mar_mer_gio_ven_sab".split("_"),weekdaysMin:"do_lu_ma_me_gi_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Oggi alle] LT",nextDay:"[Domani alle] LT",nextWeek:"dddd [alle] LT",lastDay:"[Ieri alle] LT",lastWeek:function(){switch(this.day()){case 0:return"[la scorsa] dddd [alle] LT";default:return"[lo scorso] dddd [alle] LT"}},sameElse:"L"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?"tra":"in")+" "+e},past:"%s fa",s:"alcuni secondi",ss:"%d secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("ja",{eras:[{since:"2019-05-01",offset:1,name:"令和",narrow:"㋿",abbr:"R"},{since:"1989-01-08",until:"2019-04-30",offset:1,name:"平成",narrow:"㍻",abbr:"H"},{since:"1926-12-25",until:"1989-01-07",offset:1,name:"昭和",narrow:"㍼",abbr:"S"},{since:"1912-07-30",until:"1926-12-24",offset:1,name:"大正",narrow:"㍽",abbr:"T"},{since:"1873-01-01",until:"1912-07-29",offset:6,name:"明治",narrow:"㍾",abbr:"M"},{since:"0001-01-01",until:"1873-12-31",offset:1,name:"西暦",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"紀元前",narrow:"BC",abbr:"BC"}],eraYearOrdinalRegex:/(元|\d+)年/,eraYearOrdinalParse:function(e,t){return"元"===t[1]?1:parseInt(t[1]||e,10)},months:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日".split("_"),weekdaysShort:"日_月_火_水_木_金_土".split("_"),weekdaysMin:"日_月_火_水_木_金_土".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日 HH:mm",LLLL:"YYYY年M月D日 dddd HH:mm",l:"YYYY/MM/DD",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日(ddd) HH:mm"},meridiemParse:/午前|午後/i,isPM:function(e){return"午後"===e},meridiem:function(e,t,n){return e<12?"午前":"午後"},calendar:{sameDay:"[今日] LT",nextDay:"[明日] LT",nextWeek:function(e){return e.week()!==this.week()?"[来週]dddd LT":"dddd LT"},lastDay:"[昨日] LT",lastWeek:function(e){return this.week()!==e.week()?"[先週]dddd LT":"dddd LT"},sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}日/,ordinal:function(e,t){switch(t){case"y":return 1===e?"元年":e+"年";case"d":case"D":case"DDD":return e+"日";default:return e}},relativeTime:{future:"%s後",past:"%s前",s:"数秒",ss:"%d秒",m:"1分",mm:"%d分",h:"1時間",hh:"%d時間",d:"1日",dd:"%d日",M:"1ヶ月",MM:"%dヶ月",y:"1年",yy:"%d年"}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("jv",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des".split("_"),weekdays:"Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu".split("_"),weekdaysShort:"Min_Sen_Sel_Reb_Kem_Jem_Sep".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sp".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/enjing|siyang|sonten|ndalu/,meridiemHour:function(e,t){return 12===e&&(e=0),"enjing"===t?e:"siyang"===t?e>=11?e:e+12:"sonten"===t||"ndalu"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?"enjing":e<15?"siyang":e<19?"sonten":"ndalu"},calendar:{sameDay:"[Dinten puniko pukul] LT",nextDay:"[Mbenjang pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kala wingi pukul] LT",lastWeek:"dddd [kepengker pukul] LT",sameElse:"L"},relativeTime:{future:"wonten ing %s",past:"%s ingkang kepengker",s:"sawetawis detik",ss:"%d detik",m:"setunggal menit",mm:"%d menit",h:"setunggal jam",hh:"%d jam",d:"sedinten",dd:"%d dinten",M:"sewulan",MM:"%d wulan",y:"setaun",yy:"%d taun"},week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("ka",{months:"იანვარი_თებერვალი_მარტი_აპრილი_მაისი_ივნისი_ივლისი_აგვისტო_სექტემბერი_ოქტომბერი_ნოემბერი_დეკემბერი".split("_"),monthsShort:"იან_თებ_მარ_აპრ_მაი_ივნ_ივლ_აგვ_სექ_ოქტ_ნოე_დეკ".split("_"),weekdays:{standalone:"კვირა_ორშაბათი_სამშაბათი_ოთხშაბათი_ხუთშაბათი_პარასკევი_შაბათი".split("_"),format:"კვირას_ორშაბათს_სამშაბათს_ოთხშაბათს_ხუთშაბათს_პარასკევს_შაბათს".split("_"),isFormat:/(წინა|შემდეგ)/},weekdaysShort:"კვი_ორშ_სამ_ოთხ_ხუთ_პარ_შაბ".split("_"),weekdaysMin:"კვ_ორ_სა_ოთ_ხუ_პა_შა".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[დღეს] LT[-ზე]",nextDay:"[ხვალ] LT[-ზე]",lastDay:"[გუშინ] LT[-ზე]",nextWeek:"[შემდეგ] dddd LT[-ზე]",lastWeek:"[წინა] dddd LT-ზე",sameElse:"L"},relativeTime:{future:function(e){return e.replace(/(წამ|წუთ|საათ|წელ|დღ|თვ)(ი|ე)/,(function(e,t,n){return"ი"===n?t+"ში":t+n+"ში"}))},past:function(e){return/(წამი|წუთი|საათი|დღე|თვე)/.test(e)?e.replace(/(ი|ე)$/,"ის წინ"):/წელი/.test(e)?e.replace(/წელი$/,"წლის წინ"):e},s:"რამდენიმე წამი",ss:"%d წამი",m:"წუთი",mm:"%d წუთი",h:"საათი",hh:"%d საათი",d:"დღე",dd:"%d დღე",M:"თვე",MM:"%d თვე",y:"წელი",yy:"%d წელი"},dayOfMonthOrdinalParse:/0|1-ლი|მე-\d{1,2}|\d{1,2}-ე/,ordinal:function(e){return 0===e?e:1===e?e+"-ლი":e<20||e<=100&&e%20==0||e%100==0?"მე-"+e:e+"-ე"},week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={0:"-ші",1:"-ші",2:"-ші",3:"-ші",4:"-ші",5:"-ші",6:"-шы",7:"-ші",8:"-ші",9:"-шы",10:"-шы",20:"-шы",30:"-шы",40:"-шы",50:"-ші",60:"-шы",70:"-ші",80:"-ші",90:"-шы",100:"-ші"};e.defineLocale("kk",{months:"қаңтар_ақпан_наурыз_сәуір_мамыр_маусым_шілде_тамыз_қыркүйек_қазан_қараша_желтоқсан".split("_"),monthsShort:"қаң_ақп_нау_сәу_мам_мау_шіл_там_қыр_қаз_қар_жел".split("_"),weekdays:"жексенбі_дүйсенбі_сейсенбі_сәрсенбі_бейсенбі_жұма_сенбі".split("_"),weekdaysShort:"жек_дүй_сей_сәр_бей_жұм_сен".split("_"),weekdaysMin:"жк_дй_сй_ср_бй_жм_сн".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Бүгін сағат] LT",nextDay:"[Ертең сағат] LT",nextWeek:"dddd [сағат] LT",lastDay:"[Кеше сағат] LT",lastWeek:"[Өткен аптаның] dddd [сағат] LT",sameElse:"L"},relativeTime:{future:"%s ішінде",past:"%s бұрын",s:"бірнеше секунд",ss:"%d секунд",m:"бір минут",mm:"%d минут",h:"бір сағат",hh:"%d сағат",d:"бір күн",dd:"%d күн",M:"бір ай",MM:"%d ай",y:"бір жыл",yy:"%d жыл"},dayOfMonthOrdinalParse:/\d{1,2}-(ші|шы)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={1:"១",2:"២",3:"៣",4:"៤",5:"៥",6:"៦",7:"៧",8:"៨",9:"៩",0:"០"},n={"១":"1","២":"2","៣":"3","៤":"4","៥":"5","៦":"6","៧":"7","៨":"8","៩":"9","០":"0"};e.defineLocale("km",{months:"មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ".split("_"),monthsShort:"មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ".split("_"),weekdays:"អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍".split("_"),weekdaysShort:"អា_ច_អ_ព_ព្រ_សុ_ស".split("_"),weekdaysMin:"អា_ច_អ_ព_ព្រ_សុ_ស".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/ព្រឹក|ល្ងាច/,isPM:function(e){return"ល្ងាច"===e},meridiem:function(e,t,n){return e<12?"ព្រឹក":"ល្ងាច"},calendar:{sameDay:"[ថ្ងៃនេះ ម៉ោង] LT",nextDay:"[ស្អែក ម៉ោង] LT",nextWeek:"dddd [ម៉ោង] LT",lastDay:"[ម្សិលមិញ ម៉ោង] LT",lastWeek:"dddd [សប្តាហ៍មុន] [ម៉ោង] LT",sameElse:"L"},relativeTime:{future:"%sទៀត",past:"%sមុន",s:"ប៉ុន្មានវិនាទី",ss:"%d វិនាទី",m:"មួយនាទី",mm:"%d នាទី",h:"មួយម៉ោង",hh:"%d ម៉ោង",d:"មួយថ្ងៃ",dd:"%d ថ្ងៃ",M:"មួយខែ",MM:"%d ខែ",y:"មួយឆ្នាំ",yy:"%d ឆ្នាំ"},dayOfMonthOrdinalParse:/ទី\d{1,2}/,ordinal:"ទី%d",preparse:function(e){return e.replace(/[១២៣៤៥៦៧៨៩០]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={1:"೧",2:"೨",3:"೩",4:"೪",5:"೫",6:"೬",7:"೭",8:"೮",9:"೯",0:"೦"},n={"೧":"1","೨":"2","೩":"3","೪":"4","೫":"5","೬":"6","೭":"7","೮":"8","೯":"9","೦":"0"};e.defineLocale("kn",{months:"ಜನವರಿ_ಫೆಬ್ರವರಿ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂಬರ್_ಅಕ್ಟೋಬರ್_ನವೆಂಬರ್_ಡಿಸೆಂಬರ್".split("_"),monthsShort:"ಜನ_ಫೆಬ್ರ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂ_ಅಕ್ಟೋ_ನವೆಂ_ಡಿಸೆಂ".split("_"),monthsParseExact:!0,weekdays:"ಭಾನುವಾರ_ಸೋಮವಾರ_ಮಂಗಳವಾರ_ಬುಧವಾರ_ಗುರುವಾರ_ಶುಕ್ರವಾರ_ಶನಿವಾರ".split("_"),weekdaysShort:"ಭಾನು_ಸೋಮ_ಮಂಗಳ_ಬುಧ_ಗುರು_ಶುಕ್ರ_ಶನಿ".split("_"),weekdaysMin:"ಭಾ_ಸೋ_ಮಂ_ಬು_ಗು_ಶು_ಶ".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[ಇಂದು] LT",nextDay:"[ನಾಳೆ] LT",nextWeek:"dddd, LT",lastDay:"[ನಿನ್ನೆ] LT",lastWeek:"[ಕೊನೆಯ] dddd, LT",sameElse:"L"},relativeTime:{future:"%s ನಂತರ",past:"%s ಹಿಂದೆ",s:"ಕೆಲವು ಕ್ಷಣಗಳು",ss:"%d ಸೆಕೆಂಡುಗಳು",m:"ಒಂದು ನಿಮಿಷ",mm:"%d ನಿಮಿಷ",h:"ಒಂದು ಗಂಟೆ",hh:"%d ಗಂಟೆ",d:"ಒಂದು ದಿನ",dd:"%d ದಿನ",M:"ಒಂದು ತಿಂಗಳು",MM:"%d ತಿಂಗಳು",y:"ಒಂದು ವರ್ಷ",yy:"%d ವರ್ಷ"},preparse:function(e){return e.replace(/[೧೨೩೪೫೬೭೮೯೦]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]}))},meridiemParse:/ರಾತ್ರಿ|ಬೆಳಿಗ್ಗೆ|ಮಧ್ಯಾಹ್ನ|ಸಂಜೆ/,meridiemHour:function(e,t){return 12===e&&(e=0),"ರಾತ್ರಿ"===t?e<4?e:e+12:"ಬೆಳಿಗ್ಗೆ"===t?e:"ಮಧ್ಯಾಹ್ನ"===t?e>=10?e:e+12:"ಸಂಜೆ"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"ರಾತ್ರಿ":e<10?"ಬೆಳಿಗ್ಗೆ":e<17?"ಮಧ್ಯಾಹ್ನ":e<20?"ಸಂಜೆ":"ರಾತ್ರಿ"},dayOfMonthOrdinalParse:/\d{1,2}(ನೇ)/,ordinal:function(e){return e+"ನೇ"},week:{dow:0,doy:6}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("ko",{months:"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),monthsShort:"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),weekdays:"일요일_월요일_화요일_수요일_목요일_금요일_토요일".split("_"),weekdaysShort:"일_월_화_수_목_금_토".split("_"),weekdaysMin:"일_월_화_수_목_금_토".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY년 MMMM D일",LLL:"YYYY년 MMMM D일 A h:mm",LLLL:"YYYY년 MMMM D일 dddd A h:mm",l:"YYYY.MM.DD.",ll:"YYYY년 MMMM D일",lll:"YYYY년 MMMM D일 A h:mm",llll:"YYYY년 MMMM D일 dddd A h:mm"},calendar:{sameDay:"오늘 LT",nextDay:"내일 LT",nextWeek:"dddd LT",lastDay:"어제 LT",lastWeek:"지난주 dddd LT",sameElse:"L"},relativeTime:{future:"%s 후",past:"%s 전",s:"몇 초",ss:"%d초",m:"1분",mm:"%d분",h:"한 시간",hh:"%d시간",d:"하루",dd:"%d일",M:"한 달",MM:"%d달",y:"일 년",yy:"%d년"},dayOfMonthOrdinalParse:/\d{1,2}(일|월|주)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"일";case"M":return e+"월";case"w":case"W":return e+"주";default:return e}},meridiemParse:/오전|오후/,isPM:function(e){return"오후"===e},meridiem:function(e,t,n){return e<12?"오전":"오후"}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},n={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"},r=["کانونی دووەم","شوبات","ئازار","نیسان","ئایار","حوزەیران","تەمموز","ئاب","ئەیلوول","تشرینی یەكەم","تشرینی دووەم","كانونی یەکەم"];e.defineLocale("ku",{months:r,monthsShort:r,weekdays:"یه‌كشه‌ممه‌_دووشه‌ممه‌_سێشه‌ممه‌_چوارشه‌ممه‌_پێنجشه‌ممه‌_هه‌ینی_شه‌ممه‌".split("_"),weekdaysShort:"یه‌كشه‌م_دووشه‌م_سێشه‌م_چوارشه‌م_پێنجشه‌م_هه‌ینی_شه‌ممه‌".split("_"),weekdaysMin:"ی_د_س_چ_پ_ه_ش".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/ئێواره‌|به‌یانی/,isPM:function(e){return/ئێواره‌/.test(e)},meridiem:function(e,t,n){return e<12?"به‌یانی":"ئێواره‌"},calendar:{sameDay:"[ئه‌مرۆ كاتژمێر] LT",nextDay:"[به‌یانی كاتژمێر] LT",nextWeek:"dddd [كاتژمێر] LT",lastDay:"[دوێنێ كاتژمێر] LT",lastWeek:"dddd [كاتژمێر] LT",sameElse:"L"},relativeTime:{future:"له‌ %s",past:"%s",s:"چه‌ند چركه‌یه‌ك",ss:"چركه‌ %d",m:"یه‌ك خوله‌ك",mm:"%d خوله‌ك",h:"یه‌ك كاتژمێر",hh:"%d كاتژمێر",d:"یه‌ك ڕۆژ",dd:"%d ڕۆژ",M:"یه‌ك مانگ",MM:"%d مانگ",y:"یه‌ك ساڵ",yy:"%d ساڵ"},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,(function(e){return n[e]})).replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]})).replace(/,/g,"،")},week:{dow:6,doy:12}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={0:"-чү",1:"-чи",2:"-чи",3:"-чү",4:"-чү",5:"-чи",6:"-чы",7:"-чи",8:"-чи",9:"-чу",10:"-чу",20:"-чы",30:"-чу",40:"-чы",50:"-чү",60:"-чы",70:"-чи",80:"-чи",90:"-чу",100:"-чү"};e.defineLocale("ky",{months:"январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь".split("_"),monthsShort:"янв_фев_март_апр_май_июнь_июль_авг_сен_окт_ноя_дек".split("_"),weekdays:"Жекшемби_Дүйшөмбү_Шейшемби_Шаршемби_Бейшемби_Жума_Ишемби".split("_"),weekdaysShort:"Жек_Дүй_Шей_Шар_Бей_Жум_Ише".split("_"),weekdaysMin:"Жк_Дй_Шй_Шр_Бй_Жм_Иш".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Бүгүн саат] LT",nextDay:"[Эртең саат] LT",nextWeek:"dddd [саат] LT",lastDay:"[Кечээ саат] LT",lastWeek:"[Өткөн аптанын] dddd [күнү] [саат] LT",sameElse:"L"},relativeTime:{future:"%s ичинде",past:"%s мурун",s:"бирнече секунд",ss:"%d секунд",m:"бир мүнөт",mm:"%d мүнөт",h:"бир саат",hh:"%d саат",d:"бир күн",dd:"%d күн",M:"бир ай",MM:"%d ай",y:"бир жыл",yy:"%d жыл"},dayOfMonthOrdinalParse:/\d{1,2}-(чи|чы|чү|чу)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -function t(e,t,n,r){var i={m:["eng Minutt","enger Minutt"],h:["eng Stonn","enger Stonn"],d:["een Dag","engem Dag"],M:["ee Mount","engem Mount"],y:["ee Joer","engem Joer"]};return t?i[n][0]:i[n][1]}function n(e){if(e=parseInt(e,10),isNaN(e))return!1;if(e<0)return!0;if(e<10)return 4<=e&&e<=7;if(e<100){var t=e%10;return n(0===t?e/10:t)}if(e<1e4){for(;e>=10;)e/=10;return n(e)}return n(e/=1e3)}e.defineLocale("lb",{months:"Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg".split("_"),weekdaysShort:"So._Mé._Dë._Më._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mé_Dë_Më_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm [Auer]",LTS:"H:mm:ss [Auer]",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm [Auer]",LLLL:"dddd, D. MMMM YYYY H:mm [Auer]"},calendar:{sameDay:"[Haut um] LT",sameElse:"L",nextDay:"[Muer um] LT",nextWeek:"dddd [um] LT",lastDay:"[Gëschter um] LT",lastWeek:function(){switch(this.day()){case 2:case 4:return"[Leschten] dddd [um] LT";default:return"[Leschte] dddd [um] LT"}}},relativeTime:{future:function(e){return n(e.substr(0,e.indexOf(" ")))?"a "+e:"an "+e},past:function(e){return n(e.substr(0,e.indexOf(" ")))?"viru "+e:"virun "+e},s:"e puer Sekonnen",ss:"%d Sekonnen",m:t,mm:"%d Minutten",h:t,hh:"%d Stonnen",d:t,dd:"%d Deeg",M:t,MM:"%d Méint",y:t,yy:"%d Joer"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("lo",{months:"ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ".split("_"),monthsShort:"ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ".split("_"),weekdays:"ອາທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ".split("_"),weekdaysShort:"ທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ".split("_"),weekdaysMin:"ທ_ຈ_ອຄ_ພ_ພຫ_ສກ_ສ".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"ວັນdddd D MMMM YYYY HH:mm"},meridiemParse:/ຕອນເຊົ້າ|ຕອນແລງ/,isPM:function(e){return"ຕອນແລງ"===e},meridiem:function(e,t,n){return e<12?"ຕອນເຊົ້າ":"ຕອນແລງ"},calendar:{sameDay:"[ມື້ນີ້ເວລາ] LT",nextDay:"[ມື້ອື່ນເວລາ] LT",nextWeek:"[ວັນ]dddd[ໜ້າເວລາ] LT",lastDay:"[ມື້ວານນີ້ເວລາ] LT",lastWeek:"[ວັນ]dddd[ແລ້ວນີ້ເວລາ] LT",sameElse:"L"},relativeTime:{future:"ອີກ %s",past:"%sຜ່ານມາ",s:"ບໍ່ເທົ່າໃດວິນາທີ",ss:"%d ວິນາທີ",m:"1 ນາທີ",mm:"%d ນາທີ",h:"1 ຊົ່ວໂມງ",hh:"%d ຊົ່ວໂມງ",d:"1 ມື້",dd:"%d ມື້",M:"1 ເດືອນ",MM:"%d ເດືອນ",y:"1 ປີ",yy:"%d ປີ"},dayOfMonthOrdinalParse:/(ທີ່)\d{1,2}/,ordinal:function(e){return"ທີ່"+e}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={ss:"sekundė_sekundžių_sekundes",m:"minutė_minutės_minutę",mm:"minutės_minučių_minutes",h:"valanda_valandos_valandą",hh:"valandos_valandų_valandas",d:"diena_dienos_dieną",dd:"dienos_dienų_dienas",M:"mėnuo_mėnesio_mėnesį",MM:"mėnesiai_mėnesių_mėnesius",y:"metai_metų_metus",yy:"metai_metų_metus"};function n(e,t,n,r){return t?i(n)[0]:r?i(n)[1]:i(n)[2]}function r(e){return e%10==0||e>10&&e<20}function i(e){return t[e].split("_")}function o(e,t,o,a){var s=e+" ";return 1===e?s+n(0,t,o[0],a):t?s+(r(e)?i(o)[1]:i(o)[0]):a?s+i(o)[1]:s+(r(e)?i(o)[1]:i(o)[2])}e.defineLocale("lt",{months:{format:"sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio".split("_"),standalone:"sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis".split("_"),isFormat:/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|MMMM?(\[[^\[\]]*\]|\s)+D[oD]?/},monthsShort:"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd".split("_"),weekdays:{format:"sekmadienį_pirmadienį_antradienį_trečiadienį_ketvirtadienį_penktadienį_šeštadienį".split("_"),standalone:"sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis".split("_"),isFormat:/dddd HH:mm/},weekdaysShort:"Sek_Pir_Ant_Tre_Ket_Pen_Šeš".split("_"),weekdaysMin:"S_P_A_T_K_Pn_Š".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY [m.] MMMM D [d.]",LLL:"YYYY [m.] MMMM D [d.], HH:mm [val.]",LLLL:"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]",l:"YYYY-MM-DD",ll:"YYYY [m.] MMMM D [d.]",lll:"YYYY [m.] MMMM D [d.], HH:mm [val.]",llll:"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]"},calendar:{sameDay:"[Šiandien] LT",nextDay:"[Rytoj] LT",nextWeek:"dddd LT",lastDay:"[Vakar] LT",lastWeek:"[Praėjusį] dddd LT",sameElse:"L"},relativeTime:{future:"po %s",past:"prieš %s",s:function(e,t,n,r){return t?"kelios sekundės":r?"kelių sekundžių":"kelias sekundes"},ss:o,m:n,mm:o,h:n,hh:o,d:n,dd:o,M:n,MM:o,y:n,yy:o},dayOfMonthOrdinalParse:/\d{1,2}-oji/,ordinal:function(e){return e+"-oji"},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={ss:"sekundes_sekundēm_sekunde_sekundes".split("_"),m:"minūtes_minūtēm_minūte_minūtes".split("_"),mm:"minūtes_minūtēm_minūte_minūtes".split("_"),h:"stundas_stundām_stunda_stundas".split("_"),hh:"stundas_stundām_stunda_stundas".split("_"),d:"dienas_dienām_diena_dienas".split("_"),dd:"dienas_dienām_diena_dienas".split("_"),M:"mēneša_mēnešiem_mēnesis_mēneši".split("_"),MM:"mēneša_mēnešiem_mēnesis_mēneši".split("_"),y:"gada_gadiem_gads_gadi".split("_"),yy:"gada_gadiem_gads_gadi".split("_")};function n(e,t,n){return n?t%10==1&&t%100!=11?e[2]:e[3]:t%10==1&&t%100!=11?e[0]:e[1]}function r(e,r,i){return e+" "+n(t[i],e,r)}function i(e,r,i){return n(t[i],e,r)}e.defineLocale("lv",{months:"janvāris_februāris_marts_aprīlis_maijs_jūnijs_jūlijs_augusts_septembris_oktobris_novembris_decembris".split("_"),monthsShort:"jan_feb_mar_apr_mai_jūn_jūl_aug_sep_okt_nov_dec".split("_"),weekdays:"svētdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena".split("_"),weekdaysShort:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysMin:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY.",LL:"YYYY. [gada] D. MMMM",LLL:"YYYY. [gada] D. MMMM, HH:mm",LLLL:"YYYY. [gada] D. MMMM, dddd, HH:mm"},calendar:{sameDay:"[Šodien pulksten] LT",nextDay:"[Rīt pulksten] LT",nextWeek:"dddd [pulksten] LT",lastDay:"[Vakar pulksten] LT",lastWeek:"[Pagājušā] dddd [pulksten] LT",sameElse:"L"},relativeTime:{future:"pēc %s",past:"pirms %s",s:function(e,t){return t?"dažas sekundes":"dažām sekundēm"},ss:r,m:i,mm:r,h:i,hh:r,d:i,dd:r,M:i,MM:r,y:i,yy:r},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={words:{ss:["sekund","sekunda","sekundi"],m:["jedan minut","jednog minuta"],mm:["minut","minuta","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mjesec","mjeseca","mjeseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,r){var i=t.words[r];return 1===r.length?n?i[0]:i[1]:e+" "+t.correctGrammaticalCase(e,i)}};e.defineLocale("me",{months:"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sjutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juče u] LT",lastWeek:function(){return["[prošle] [nedjelje] [u] LT","[prošlog] [ponedjeljka] [u] LT","[prošlog] [utorka] [u] LT","[prošle] [srijede] [u] LT","[prošlog] [četvrtka] [u] LT","[prošlog] [petka] [u] LT","[prošle] [subote] [u] LT"][this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"nekoliko sekundi",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:"dan",dd:t.translate,M:"mjesec",MM:t.translate,y:"godinu",yy:t.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("mi",{months:"Kohi-tāte_Hui-tanguru_Poutū-te-rangi_Paenga-whāwhā_Haratua_Pipiri_Hōngoingoi_Here-turi-kōkā_Mahuru_Whiringa-ā-nuku_Whiringa-ā-rangi_Hakihea".split("_"),monthsShort:"Kohi_Hui_Pou_Pae_Hara_Pipi_Hōngoi_Here_Mahu_Whi-nu_Whi-ra_Haki".split("_"),monthsRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsStrictRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsShortRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsShortStrictRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,2}/i,weekdays:"Rātapu_Mane_Tūrei_Wenerei_Tāite_Paraire_Hātarei".split("_"),weekdaysShort:"Ta_Ma_Tū_We_Tāi_Pa_Hā".split("_"),weekdaysMin:"Ta_Ma_Tū_We_Tāi_Pa_Hā".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [i] HH:mm",LLLL:"dddd, D MMMM YYYY [i] HH:mm"},calendar:{sameDay:"[i teie mahana, i] LT",nextDay:"[apopo i] LT",nextWeek:"dddd [i] LT",lastDay:"[inanahi i] LT",lastWeek:"dddd [whakamutunga i] LT",sameElse:"L"},relativeTime:{future:"i roto i %s",past:"%s i mua",s:"te hēkona ruarua",ss:"%d hēkona",m:"he meneti",mm:"%d meneti",h:"te haora",hh:"%d haora",d:"he ra",dd:"%d ra",M:"he marama",MM:"%d marama",y:"he tau",yy:"%d tau"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("mk",{months:"јануари_февруари_март_април_мај_јуни_јули_август_септември_октомври_ноември_декември".split("_"),monthsShort:"јан_фев_мар_апр_мај_јун_јул_авг_сеп_окт_ное_дек".split("_"),weekdays:"недела_понеделник_вторник_среда_четврток_петок_сабота".split("_"),weekdaysShort:"нед_пон_вто_сре_чет_пет_саб".split("_"),weekdaysMin:"нe_пo_вт_ср_че_пе_сa".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Денес во] LT",nextDay:"[Утре во] LT",nextWeek:"[Во] dddd [во] LT",lastDay:"[Вчера во] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[Изминатата] dddd [во] LT";case 1:case 2:case 4:case 5:return"[Изминатиот] dddd [во] LT"}},sameElse:"L"},relativeTime:{future:"за %s",past:"пред %s",s:"неколку секунди",ss:"%d секунди",m:"една минута",mm:"%d минути",h:"еден час",hh:"%d часа",d:"еден ден",dd:"%d дена",M:"еден месец",MM:"%d месеци",y:"една година",yy:"%d години"},dayOfMonthOrdinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+"-ев":0===n?e+"-ен":n>10&&n<20?e+"-ти":1===t?e+"-ви":2===t?e+"-ри":7===t||8===t?e+"-ми":e+"-ти"},week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("ml",{months:"ജനുവരി_ഫെബ്രുവരി_മാർച്ച്_ഏപ്രിൽ_മേയ്_ജൂൺ_ജൂലൈ_ഓഗസ്റ്റ്_സെപ്റ്റംബർ_ഒക്ടോബർ_നവംബർ_ഡിസംബർ".split("_"),monthsShort:"ജനു._ഫെബ്രു._മാർ._ഏപ്രി._മേയ്_ജൂൺ_ജൂലൈ._ഓഗ._സെപ്റ്റ._ഒക്ടോ._നവം._ഡിസം.".split("_"),monthsParseExact:!0,weekdays:"ഞായറാഴ്ച_തിങ്കളാഴ്ച_ചൊവ്വാഴ്ച_ബുധനാഴ്ച_വ്യാഴാഴ്ച_വെള്ളിയാഴ്ച_ശനിയാഴ്ച".split("_"),weekdaysShort:"ഞായർ_തിങ്കൾ_ചൊവ്വ_ബുധൻ_വ്യാഴം_വെള്ളി_ശനി".split("_"),weekdaysMin:"ഞാ_തി_ചൊ_ബു_വ്യാ_വെ_ശ".split("_"),longDateFormat:{LT:"A h:mm -നു",LTS:"A h:mm:ss -നു",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm -നു",LLLL:"dddd, D MMMM YYYY, A h:mm -നു"},calendar:{sameDay:"[ഇന്ന്] LT",nextDay:"[നാളെ] LT",nextWeek:"dddd, LT",lastDay:"[ഇന്നലെ] LT",lastWeek:"[കഴിഞ്ഞ] dddd, LT",sameElse:"L"},relativeTime:{future:"%s കഴിഞ്ഞ്",past:"%s മുൻപ്",s:"അൽപ നിമിഷങ്ങൾ",ss:"%d സെക്കൻഡ്",m:"ഒരു മിനിറ്റ്",mm:"%d മിനിറ്റ്",h:"ഒരു മണിക്കൂർ",hh:"%d മണിക്കൂർ",d:"ഒരു ദിവസം",dd:"%d ദിവസം",M:"ഒരു മാസം",MM:"%d മാസം",y:"ഒരു വർഷം",yy:"%d വർഷം"},meridiemParse:/രാത്രി|രാവിലെ|ഉച്ച കഴിഞ്ഞ്|വൈകുന്നേരം|രാത്രി/i,meridiemHour:function(e,t){return 12===e&&(e=0),"രാത്രി"===t&&e>=4||"ഉച്ച കഴിഞ്ഞ്"===t||"വൈകുന്നേരം"===t?e+12:e},meridiem:function(e,t,n){return e<4?"രാത്രി":e<12?"രാവിലെ":e<17?"ഉച്ച കഴിഞ്ഞ്":e<20?"വൈകുന്നേരം":"രാത്രി"}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -function t(e,t,n,r){switch(n){case"s":return t?"хэдхэн секунд":"хэдхэн секундын";case"ss":return e+(t?" секунд":" секундын");case"m":case"mm":return e+(t?" минут":" минутын");case"h":case"hh":return e+(t?" цаг":" цагийн");case"d":case"dd":return e+(t?" өдөр":" өдрийн");case"M":case"MM":return e+(t?" сар":" сарын");case"y":case"yy":return e+(t?" жил":" жилийн");default:return e}}e.defineLocale("mn",{months:"Нэгдүгээр сар_Хоёрдугаар сар_Гуравдугаар сар_Дөрөвдүгээр сар_Тавдугаар сар_Зургадугаар сар_Долдугаар сар_Наймдугаар сар_Есдүгээр сар_Аравдугаар сар_Арван нэгдүгээр сар_Арван хоёрдугаар сар".split("_"),monthsShort:"1 сар_2 сар_3 сар_4 сар_5 сар_6 сар_7 сар_8 сар_9 сар_10 сар_11 сар_12 сар".split("_"),monthsParseExact:!0,weekdays:"Ням_Даваа_Мягмар_Лхагва_Пүрэв_Баасан_Бямба".split("_"),weekdaysShort:"Ням_Дав_Мяг_Лха_Пүр_Баа_Бям".split("_"),weekdaysMin:"Ня_Да_Мя_Лх_Пү_Ба_Бя".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY оны MMMMын D",LLL:"YYYY оны MMMMын D HH:mm",LLLL:"dddd, YYYY оны MMMMын D HH:mm"},meridiemParse:/ҮӨ|ҮХ/i,isPM:function(e){return"ҮХ"===e},meridiem:function(e,t,n){return e<12?"ҮӨ":"ҮХ"},calendar:{sameDay:"[Өнөөдөр] LT",nextDay:"[Маргааш] LT",nextWeek:"[Ирэх] dddd LT",lastDay:"[Өчигдөр] LT",lastWeek:"[Өнгөрсөн] dddd LT",sameElse:"L"},relativeTime:{future:"%s дараа",past:"%s өмнө",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2} өдөр/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+" өдөр";default:return e}}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={1:"१",2:"२",3:"३",4:"४",5:"५",6:"६",7:"७",8:"८",9:"९",0:"०"},n={"१":"1","२":"2","३":"3","४":"4","५":"5","६":"6","७":"7","८":"8","९":"9","०":"0"};function r(e,t,n,r){var i="";if(t)switch(n){case"s":i="काही सेकंद";break;case"ss":i="%d सेकंद";break;case"m":i="एक मिनिट";break;case"mm":i="%d मिनिटे";break;case"h":i="एक तास";break;case"hh":i="%d तास";break;case"d":i="एक दिवस";break;case"dd":i="%d दिवस";break;case"M":i="एक महिना";break;case"MM":i="%d महिने";break;case"y":i="एक वर्ष";break;case"yy":i="%d वर्षे"}else switch(n){case"s":i="काही सेकंदां";break;case"ss":i="%d सेकंदां";break;case"m":i="एका मिनिटा";break;case"mm":i="%d मिनिटां";break;case"h":i="एका तासा";break;case"hh":i="%d तासां";break;case"d":i="एका दिवसा";break;case"dd":i="%d दिवसां";break;case"M":i="एका महिन्या";break;case"MM":i="%d महिन्यां";break;case"y":i="एका वर्षा";break;case"yy":i="%d वर्षां"}return i.replace(/%d/i,e)}e.defineLocale("mr",{months:"जानेवारी_फेब्रुवारी_मार्च_एप्रिल_मे_जून_जुलै_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर".split("_"),monthsShort:"जाने._फेब्रु._मार्च._एप्रि._मे._जून._जुलै._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.".split("_"),monthsParseExact:!0,weekdays:"रविवार_सोमवार_मंगळवार_बुधवार_गुरूवार_शुक्रवार_शनिवार".split("_"),weekdaysShort:"रवि_सोम_मंगळ_बुध_गुरू_शुक्र_शनि".split("_"),weekdaysMin:"र_सो_मं_बु_गु_शु_श".split("_"),longDateFormat:{LT:"A h:mm वाजता",LTS:"A h:mm:ss वाजता",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm वाजता",LLLL:"dddd, D MMMM YYYY, A h:mm वाजता"},calendar:{sameDay:"[आज] LT",nextDay:"[उद्या] LT",nextWeek:"dddd, LT",lastDay:"[काल] LT",lastWeek:"[मागील] dddd, LT",sameElse:"L"},relativeTime:{future:"%sमध्ये",past:"%sपूर्वी",s:r,ss:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},preparse:function(e){return e.replace(/[१२३४५६७८९०]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]}))},meridiemParse:/पहाटे|सकाळी|दुपारी|सायंकाळी|रात्री/,meridiemHour:function(e,t){return 12===e&&(e=0),"पहाटे"===t||"सकाळी"===t?e:"दुपारी"===t||"सायंकाळी"===t||"रात्री"===t?e>=12?e:e+12:void 0},meridiem:function(e,t,n){return e>=0&&e<6?"पहाटे":e<12?"सकाळी":e<17?"दुपारी":e<20?"सायंकाळी":"रात्री"},week:{dow:0,doy:6}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("ms",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),"pagi"===t?e:"tengahari"===t?e>=11?e:e+12:"petang"===t||"malam"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?"pagi":e<15?"tengahari":e<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",ss:"%d saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("ms-my",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),"pagi"===t?e:"tengahari"===t?e>=11?e:e+12:"petang"===t||"malam"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?"pagi":e<15?"tengahari":e<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",ss:"%d saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("mt",{months:"Jannar_Frar_Marzu_April_Mejju_Ġunju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Diċembru".split("_"),monthsShort:"Jan_Fra_Mar_Apr_Mej_Ġun_Lul_Aww_Set_Ott_Nov_Diċ".split("_"),weekdays:"Il-Ħadd_It-Tnejn_It-Tlieta_L-Erbgħa_Il-Ħamis_Il-Ġimgħa_Is-Sibt".split("_"),weekdaysShort:"Ħad_Tne_Tli_Erb_Ħam_Ġim_Sib".split("_"),weekdaysMin:"Ħa_Tn_Tl_Er_Ħa_Ġi_Si".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Illum fil-]LT",nextDay:"[Għada fil-]LT",nextWeek:"dddd [fil-]LT",lastDay:"[Il-bieraħ fil-]LT",lastWeek:"dddd [li għadda] [fil-]LT",sameElse:"L"},relativeTime:{future:"f’ %s",past:"%s ilu",s:"ftit sekondi",ss:"%d sekondi",m:"minuta",mm:"%d minuti",h:"siegħa",hh:"%d siegħat",d:"ġurnata",dd:"%d ġranet",M:"xahar",MM:"%d xhur",y:"sena",yy:"%d sni"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={1:"၁",2:"၂",3:"၃",4:"၄",5:"၅",6:"၆",7:"၇",8:"၈",9:"၉",0:"၀"},n={"၁":"1","၂":"2","၃":"3","၄":"4","၅":"5","၆":"6","၇":"7","၈":"8","၉":"9","၀":"0"};e.defineLocale("my",{months:"ဇန်နဝါရီ_ဖေဖော်ဝါရီ_မတ်_ဧပြီ_မေ_ဇွန်_ဇူလိုင်_သြဂုတ်_စက်တင်ဘာ_အောက်တိုဘာ_နိုဝင်ဘာ_ဒီဇင်ဘာ".split("_"),monthsShort:"ဇန်_ဖေ_မတ်_ပြီ_မေ_ဇွန်_လိုင်_သြ_စက်_အောက်_နို_ဒီ".split("_"),weekdays:"တနင်္ဂနွေ_တနင်္လာ_အင်္ဂါ_ဗုဒ္ဓဟူး_ကြာသပတေး_သောကြာ_စနေ".split("_"),weekdaysShort:"နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ".split("_"),weekdaysMin:"နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[ယနေ.] LT [မှာ]",nextDay:"[မနက်ဖြန်] LT [မှာ]",nextWeek:"dddd LT [မှာ]",lastDay:"[မနေ.က] LT [မှာ]",lastWeek:"[ပြီးခဲ့သော] dddd LT [မှာ]",sameElse:"L"},relativeTime:{future:"လာမည့် %s မှာ",past:"လွန်ခဲ့သော %s က",s:"စက္ကန်.အနည်းငယ်",ss:"%d စက္ကန့်",m:"တစ်မိနစ်",mm:"%d မိနစ်",h:"တစ်နာရီ",hh:"%d နာရီ",d:"တစ်ရက်",dd:"%d ရက်",M:"တစ်လ",MM:"%d လ",y:"တစ်နှစ်",yy:"%d နှစ်"},preparse:function(e){return e.replace(/[၁၂၃၄၅၆၇၈၉၀]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("nb",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.".split("_"),monthsParseExact:!0,weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"sø._ma._ti._on._to._fr._lø.".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] HH:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[i går kl.] LT",lastWeek:"[forrige] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"noen sekunder",ss:"%d sekunder",m:"ett minutt",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dager",M:"en måned",MM:"%d måneder",y:"ett år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={1:"१",2:"२",3:"३",4:"४",5:"५",6:"६",7:"७",8:"८",9:"९",0:"०"},n={"१":"1","२":"2","३":"3","४":"4","५":"5","६":"6","७":"7","८":"8","९":"9","०":"0"};e.defineLocale("ne",{months:"जनवरी_फेब्रुवरी_मार्च_अप्रिल_मई_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर".split("_"),monthsShort:"जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.".split("_"),monthsParseExact:!0,weekdays:"आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार".split("_"),weekdaysShort:"आइत._सोम._मङ्गल._बुध._बिहि._शुक्र._शनि.".split("_"),weekdaysMin:"आ._सो._मं._बु._बि._शु._श.".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"Aको h:mm बजे",LTS:"Aको h:mm:ss बजे",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, Aको h:mm बजे",LLLL:"dddd, D MMMM YYYY, Aको h:mm बजे"},preparse:function(e){return e.replace(/[१२३४५६७८९०]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]}))},meridiemParse:/राति|बिहान|दिउँसो|साँझ/,meridiemHour:function(e,t){return 12===e&&(e=0),"राति"===t?e<4?e:e+12:"बिहान"===t?e:"दिउँसो"===t?e>=10?e:e+12:"साँझ"===t?e+12:void 0},meridiem:function(e,t,n){return e<3?"राति":e<12?"बिहान":e<16?"दिउँसो":e<20?"साँझ":"राति"},calendar:{sameDay:"[आज] LT",nextDay:"[भोलि] LT",nextWeek:"[आउँदो] dddd[,] LT",lastDay:"[हिजो] LT",lastWeek:"[गएको] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%sमा",past:"%s अगाडि",s:"केही क्षण",ss:"%d सेकेण्ड",m:"एक मिनेट",mm:"%d मिनेट",h:"एक घण्टा",hh:"%d घण्टा",d:"एक दिन",dd:"%d दिन",M:"एक महिना",MM:"%d महिना",y:"एक बर्ष",yy:"%d बर्ष"},week:{dow:0,doy:6}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),n="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),r=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],i=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;e.defineLocale("nl",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"zo_ma_di_wo_do_vr_za".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",ss:"%d seconden",m:"één minuut",mm:"%d minuten",h:"één uur",hh:"%d uur",d:"één dag",dd:"%d dagen",M:"één maand",MM:"%d maanden",y:"één jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),n="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),r=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],i=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;e.defineLocale("nl-be",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"zo_ma_di_wo_do_vr_za".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",ss:"%d seconden",m:"één minuut",mm:"%d minuten",h:"één uur",hh:"%d uur",d:"één dag",dd:"%d dagen",M:"één maand",MM:"%d maanden",y:"één jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("nn",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.".split("_"),monthsParseExact:!0,weekdays:"sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag".split("_"),weekdaysShort:"su._må._ty._on._to._fr._lau.".split("_"),weekdaysMin:"su_må_ty_on_to_fr_la".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[I dag klokka] LT",nextDay:"[I morgon klokka] LT",nextWeek:"dddd [klokka] LT",lastDay:"[I går klokka] LT",lastWeek:"[Føregåande] dddd [klokka] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s sidan",s:"nokre sekund",ss:"%d sekund",m:"eit minutt",mm:"%d minutt",h:"ein time",hh:"%d timar",d:"ein dag",dd:"%d dagar",M:"ein månad",MM:"%d månader",y:"eit år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("oc-lnc",{months:{standalone:"genièr_febrièr_març_abril_mai_junh_julhet_agost_setembre_octòbre_novembre_decembre".split("_"),format:"de genièr_de febrièr_de març_d'abril_de mai_de junh_de julhet_d'agost_de setembre_d'octòbre_de novembre_de decembre".split("_"),isFormat:/D[oD]?(\s)+MMMM/},monthsShort:"gen._febr._març_abr._mai_junh_julh._ago._set._oct._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"dimenge_diluns_dimars_dimècres_dijòus_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dm._dc._dj._dv._ds.".split("_"),weekdaysMin:"dg_dl_dm_dc_dj_dv_ds".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [de] YYYY",ll:"D MMM YYYY",LLL:"D MMMM [de] YYYY [a] H:mm",lll:"D MMM YYYY, H:mm",LLLL:"dddd D MMMM [de] YYYY [a] H:mm",llll:"ddd D MMM YYYY, H:mm"},calendar:{sameDay:"[uèi a] LT",nextDay:"[deman a] LT",nextWeek:"dddd [a] LT",lastDay:"[ièr a] LT",lastWeek:"dddd [passat a] LT",sameElse:"L"},relativeTime:{future:"d'aquí %s",past:"fa %s",s:"unas segondas",ss:"%d segondas",m:"una minuta",mm:"%d minutas",h:"una ora",hh:"%d oras",d:"un jorn",dd:"%d jorns",M:"un mes",MM:"%d meses",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(r|n|t|è|a)/,ordinal:function(e,t){var n=1===e?"r":2===e?"n":3===e?"r":4===e?"t":"è";return"w"!==t&&"W"!==t||(n="a"),e+n},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={1:"੧",2:"੨",3:"੩",4:"੪",5:"੫",6:"੬",7:"੭",8:"੮",9:"੯",0:"੦"},n={"੧":"1","੨":"2","੩":"3","੪":"4","੫":"5","੬":"6","੭":"7","੮":"8","੯":"9","੦":"0"};e.defineLocale("pa-in",{months:"ਜਨਵਰੀ_ਫ਼ਰਵਰੀ_ਮਾਰਚ_ਅਪ੍ਰੈਲ_ਮਈ_ਜੂਨ_ਜੁਲਾਈ_ਅਗਸਤ_ਸਤੰਬਰ_ਅਕਤੂਬਰ_ਨਵੰਬਰ_ਦਸੰਬਰ".split("_"),monthsShort:"ਜਨਵਰੀ_ਫ਼ਰਵਰੀ_ਮਾਰਚ_ਅਪ੍ਰੈਲ_ਮਈ_ਜੂਨ_ਜੁਲਾਈ_ਅਗਸਤ_ਸਤੰਬਰ_ਅਕਤੂਬਰ_ਨਵੰਬਰ_ਦਸੰਬਰ".split("_"),weekdays:"ਐਤਵਾਰ_ਸੋਮਵਾਰ_ਮੰਗਲਵਾਰ_ਬੁਧਵਾਰ_ਵੀਰਵਾਰ_ਸ਼ੁੱਕਰਵਾਰ_ਸ਼ਨੀਚਰਵਾਰ".split("_"),weekdaysShort:"ਐਤ_ਸੋਮ_ਮੰਗਲ_ਬੁਧ_ਵੀਰ_ਸ਼ੁਕਰ_ਸ਼ਨੀ".split("_"),weekdaysMin:"ਐਤ_ਸੋਮ_ਮੰਗਲ_ਬੁਧ_ਵੀਰ_ਸ਼ੁਕਰ_ਸ਼ਨੀ".split("_"),longDateFormat:{LT:"A h:mm ਵਜੇ",LTS:"A h:mm:ss ਵਜੇ",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm ਵਜੇ",LLLL:"dddd, D MMMM YYYY, A h:mm ਵਜੇ"},calendar:{sameDay:"[ਅਜ] LT",nextDay:"[ਕਲ] LT",nextWeek:"[ਅਗਲਾ] dddd, LT",lastDay:"[ਕਲ] LT",lastWeek:"[ਪਿਛਲੇ] dddd, LT",sameElse:"L"},relativeTime:{future:"%s ਵਿੱਚ",past:"%s ਪਿਛਲੇ",s:"ਕੁਝ ਸਕਿੰਟ",ss:"%d ਸਕਿੰਟ",m:"ਇਕ ਮਿੰਟ",mm:"%d ਮਿੰਟ",h:"ਇੱਕ ਘੰਟਾ",hh:"%d ਘੰਟੇ",d:"ਇੱਕ ਦਿਨ",dd:"%d ਦਿਨ",M:"ਇੱਕ ਮਹੀਨਾ",MM:"%d ਮਹੀਨੇ",y:"ਇੱਕ ਸਾਲ",yy:"%d ਸਾਲ"},preparse:function(e){return e.replace(/[੧੨੩੪੫੬੭੮੯੦]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]}))},meridiemParse:/ਰਾਤ|ਸਵੇਰ|ਦੁਪਹਿਰ|ਸ਼ਾਮ/,meridiemHour:function(e,t){return 12===e&&(e=0),"ਰਾਤ"===t?e<4?e:e+12:"ਸਵੇਰ"===t?e:"ਦੁਪਹਿਰ"===t?e>=10?e:e+12:"ਸ਼ਾਮ"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"ਰਾਤ":e<10?"ਸਵੇਰ":e<17?"ਦੁਪਹਿਰ":e<20?"ਸ਼ਾਮ":"ਰਾਤ"},week:{dow:0,doy:6}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t="styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień".split("_"),n="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia".split("_");function r(e){return e%10<5&&e%10>1&&~~(e/10)%10!=1}function i(e,t,n){var i=e+" ";switch(n){case"ss":return i+(r(e)?"sekundy":"sekund");case"m":return t?"minuta":"minutę";case"mm":return i+(r(e)?"minuty":"minut");case"h":return t?"godzina":"godzinę";case"hh":return i+(r(e)?"godziny":"godzin");case"MM":return i+(r(e)?"miesiące":"miesięcy");case"yy":return i+(r(e)?"lata":"lat")}}e.defineLocale("pl",{months:function(e,r){return e?""===r?"("+n[e.month()]+"|"+t[e.month()]+")":/D MMMM/.test(r)?n[e.month()]:t[e.month()]:t},monthsShort:"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru".split("_"),weekdays:"niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota".split("_"),weekdaysShort:"ndz_pon_wt_śr_czw_pt_sob".split("_"),weekdaysMin:"Nd_Pn_Wt_Śr_Cz_Pt_So".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Dziś o] LT",nextDay:"[Jutro o] LT",nextWeek:function(){switch(this.day()){case 0:return"[W niedzielę o] LT";case 2:return"[We wtorek o] LT";case 3:return"[W środę o] LT";case 6:return"[W sobotę o] LT";default:return"[W] dddd [o] LT"}},lastDay:"[Wczoraj o] LT",lastWeek:function(){switch(this.day()){case 0:return"[W zeszłą niedzielę o] LT";case 3:return"[W zeszłą środę o] LT";case 6:return"[W zeszłą sobotę o] LT";default:return"[W zeszły] dddd [o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",ss:i,m:i,mm:i,h:i,hh:i,d:"1 dzień",dd:"%d dni",M:"miesiąc",MM:i,y:"rok",yy:i},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("pt",{months:"janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),weekdays:"Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"),weekdaysMin:"Do_2ª_3ª_4ª_5ª_6ª_Sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY HH:mm"},calendar:{sameDay:"[Hoje às] LT",nextDay:"[Amanhã às] LT",nextWeek:"dddd [às] LT",lastDay:"[Ontem às] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Último] dddd [às] LT":"[Última] dddd [às] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"há %s",s:"segundos",ss:"%d segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("pt-br",{months:"janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),weekdays:"domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado".split("_"),weekdaysShort:"dom_seg_ter_qua_qui_sex_sáb".split("_"),weekdaysMin:"do_2ª_3ª_4ª_5ª_6ª_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [às] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [às] HH:mm"},calendar:{sameDay:"[Hoje às] LT",nextDay:"[Amanhã às] LT",nextWeek:"dddd [às] LT",lastDay:"[Ontem às] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Último] dddd [às] LT":"[Última] dddd [às] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"há %s",s:"poucos segundos",ss:"%d segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº"})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -function t(e,t,n){var r=" ";return(e%100>=20||e>=100&&e%100==0)&&(r=" de "),e+r+{ss:"secunde",mm:"minute",hh:"ore",dd:"zile",MM:"luni",yy:"ani"}[n]}e.defineLocale("ro",{months:"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie".split("_"),monthsShort:"ian._feb._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"duminică_luni_marți_miercuri_joi_vineri_sâmbătă".split("_"),weekdaysShort:"Dum_Lun_Mar_Mie_Joi_Vin_Sâm".split("_"),weekdaysMin:"Du_Lu_Ma_Mi_Jo_Vi_Sâ".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[azi la] LT",nextDay:"[mâine la] LT",nextWeek:"dddd [la] LT",lastDay:"[ieri la] LT",lastWeek:"[fosta] dddd [la] LT",sameElse:"L"},relativeTime:{future:"peste %s",past:"%s în urmă",s:"câteva secunde",ss:t,m:"un minut",mm:t,h:"o oră",hh:t,d:"o zi",dd:t,M:"o lună",MM:t,y:"un an",yy:t},week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -function t(e,t,n){var r,i;return"m"===n?t?"минута":"минуту":e+" "+(r=+e,i={ss:t?"секунда_секунды_секунд":"секунду_секунды_секунд",mm:t?"минута_минуты_минут":"минуту_минуты_минут",hh:"час_часа_часов",dd:"день_дня_дней",MM:"месяц_месяца_месяцев",yy:"год_года_лет"}[n].split("_"),r%10==1&&r%100!=11?i[0]:r%10>=2&&r%10<=4&&(r%100<10||r%100>=20)?i[1]:i[2])}var n=[/^янв/i,/^фев/i,/^мар/i,/^апр/i,/^ма[йя]/i,/^июн/i,/^июл/i,/^авг/i,/^сен/i,/^окт/i,/^ноя/i,/^дек/i];e.defineLocale("ru",{months:{format:"января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря".split("_"),standalone:"январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь".split("_")},monthsShort:{format:"янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.".split("_"),standalone:"янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.".split("_")},weekdays:{standalone:"воскресенье_понедельник_вторник_среда_четверг_пятница_суббота".split("_"),format:"воскресенье_понедельник_вторник_среду_четверг_пятницу_субботу".split("_"),isFormat:/\[ ?[Вв] ?(?:прошлую|следующую|эту)? ?\] ?dddd/},weekdaysShort:"вс_пн_вт_ср_чт_пт_сб".split("_"),weekdaysMin:"вс_пн_вт_ср_чт_пт_сб".split("_"),monthsParse:n,longMonthsParse:n,shortMonthsParse:n,monthsRegex:/^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,monthsShortRegex:/^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,monthsStrictRegex:/^(январ[яь]|феврал[яь]|марта?|апрел[яь]|ма[яй]|июн[яь]|июл[яь]|августа?|сентябр[яь]|октябр[яь]|ноябр[яь]|декабр[яь])/i,monthsShortStrictRegex:/^(янв\.|февр?\.|мар[т.]|апр\.|ма[яй]|июн[ья.]|июл[ья.]|авг\.|сент?\.|окт\.|нояб?\.|дек\.)/i,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., H:mm",LLLL:"dddd, D MMMM YYYY г., H:mm"},calendar:{sameDay:"[Сегодня, в] LT",nextDay:"[Завтра, в] LT",lastDay:"[Вчера, в] LT",nextWeek:function(e){if(e.week()===this.week())return 2===this.day()?"[Во] dddd, [в] LT":"[В] dddd, [в] LT";switch(this.day()){case 0:return"[В следующее] dddd, [в] LT";case 1:case 2:case 4:return"[В следующий] dddd, [в] LT";case 3:case 5:case 6:return"[В следующую] dddd, [в] LT"}},lastWeek:function(e){if(e.week()===this.week())return 2===this.day()?"[Во] dddd, [в] LT":"[В] dddd, [в] LT";switch(this.day()){case 0:return"[В прошлое] dddd, [в] LT";case 1:case 2:case 4:return"[В прошлый] dddd, [в] LT";case 3:case 5:case 6:return"[В прошлую] dddd, [в] LT"}},sameElse:"L"},relativeTime:{future:"через %s",past:"%s назад",s:"несколько секунд",ss:t,m:t,mm:t,h:"час",hh:t,d:"день",dd:t,M:"месяц",MM:t,y:"год",yy:t},meridiemParse:/ночи|утра|дня|вечера/i,isPM:function(e){return/^(дня|вечера)$/.test(e)},meridiem:function(e,t,n){return e<4?"ночи":e<12?"утра":e<17?"дня":"вечера"},dayOfMonthOrdinalParse:/\d{1,2}-(й|го|я)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":return e+"-й";case"D":return e+"-го";case"w":case"W":return e+"-я";default:return e}},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t=["جنوري","فيبروري","مارچ","اپريل","مئي","جون","جولاءِ","آگسٽ","سيپٽمبر","آڪٽوبر","نومبر","ڊسمبر"],n=["آچر","سومر","اڱارو","اربع","خميس","جمع","ڇنڇر"];e.defineLocale("sd",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd، D MMMM YYYY HH:mm"},meridiemParse:/صبح|شام/,isPM:function(e){return"شام"===e},meridiem:function(e,t,n){return e<12?"صبح":"شام"},calendar:{sameDay:"[اڄ] LT",nextDay:"[سڀاڻي] LT",nextWeek:"dddd [اڳين هفتي تي] LT",lastDay:"[ڪالهه] LT",lastWeek:"[گزريل هفتي] dddd [تي] LT",sameElse:"L"},relativeTime:{future:"%s پوء",past:"%s اڳ",s:"چند سيڪنڊ",ss:"%d سيڪنڊ",m:"هڪ منٽ",mm:"%d منٽ",h:"هڪ ڪلاڪ",hh:"%d ڪلاڪ",d:"هڪ ڏينهن",dd:"%d ڏينهن",M:"هڪ مهينو",MM:"%d مهينا",y:"هڪ سال",yy:"%d سال"},preparse:function(e){return e.replace(/،/g,",")},postformat:function(e){return e.replace(/,/g,"،")},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("se",{months:"ođđajagemánnu_guovvamánnu_njukčamánnu_cuoŋománnu_miessemánnu_geassemánnu_suoidnemánnu_borgemánnu_čakčamánnu_golggotmánnu_skábmamánnu_juovlamánnu".split("_"),monthsShort:"ođđj_guov_njuk_cuo_mies_geas_suoi_borg_čakč_golg_skáb_juov".split("_"),weekdays:"sotnabeaivi_vuossárga_maŋŋebárga_gaskavahkku_duorastat_bearjadat_lávvardat".split("_"),weekdaysShort:"sotn_vuos_maŋ_gask_duor_bear_láv".split("_"),weekdaysMin:"s_v_m_g_d_b_L".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"MMMM D. [b.] YYYY",LLL:"MMMM D. [b.] YYYY [ti.] HH:mm",LLLL:"dddd, MMMM D. [b.] YYYY [ti.] HH:mm"},calendar:{sameDay:"[otne ti] LT",nextDay:"[ihttin ti] LT",nextWeek:"dddd [ti] LT",lastDay:"[ikte ti] LT",lastWeek:"[ovddit] dddd [ti] LT",sameElse:"L"},relativeTime:{future:"%s geažes",past:"maŋit %s",s:"moadde sekunddat",ss:"%d sekunddat",m:"okta minuhta",mm:"%d minuhtat",h:"okta diimmu",hh:"%d diimmut",d:"okta beaivi",dd:"%d beaivvit",M:"okta mánnu",MM:"%d mánut",y:"okta jahki",yy:"%d jagit"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("si",{months:"ජනවාරි_පෙබරවාරි_මාර්තු_අප්‍රේල්_මැයි_ජූනි_ජූලි_අගෝස්තු_සැප්තැම්බර්_ඔක්තෝබර්_නොවැම්බර්_දෙසැම්බර්".split("_"),monthsShort:"ජන_පෙබ_මාර්_අප්_මැයි_ජූනි_ජූලි_අගෝ_සැප්_ඔක්_නොවැ_දෙසැ".split("_"),weekdays:"ඉරිදා_සඳුදා_අඟහරුවාදා_බදාදා_බ්‍රහස්පතින්දා_සිකුරාදා_සෙනසුරාදා".split("_"),weekdaysShort:"ඉරි_සඳු_අඟ_බදා_බ්‍රහ_සිකු_සෙන".split("_"),weekdaysMin:"ඉ_ස_අ_බ_බ්‍ර_සි_සෙ".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"a h:mm",LTS:"a h:mm:ss",L:"YYYY/MM/DD",LL:"YYYY MMMM D",LLL:"YYYY MMMM D, a h:mm",LLLL:"YYYY MMMM D [වැනි] dddd, a h:mm:ss"},calendar:{sameDay:"[අද] LT[ට]",nextDay:"[හෙට] LT[ට]",nextWeek:"dddd LT[ට]",lastDay:"[ඊයේ] LT[ට]",lastWeek:"[පසුගිය] dddd LT[ට]",sameElse:"L"},relativeTime:{future:"%sකින්",past:"%sකට පෙර",s:"තත්පර කිහිපය",ss:"තත්පර %d",m:"මිනිත්තුව",mm:"මිනිත්තු %d",h:"පැය",hh:"පැය %d",d:"දිනය",dd:"දින %d",M:"මාසය",MM:"මාස %d",y:"වසර",yy:"වසර %d"},dayOfMonthOrdinalParse:/\d{1,2} වැනි/,ordinal:function(e){return e+" වැනි"},meridiemParse:/පෙර වරු|පස් වරු|පෙ.ව|ප.ව./,isPM:function(e){return"ප.ව."===e||"පස් වරු"===e},meridiem:function(e,t,n){return e>11?n?"ප.ව.":"පස් වරු":n?"පෙ.ව.":"පෙර වරු"}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t="január_február_marec_apríl_máj_jún_júl_august_september_október_november_december".split("_"),n="jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec".split("_");function r(e){return e>1&&e<5}function i(e,t,n,i){var o=e+" ";switch(n){case"s":return t||i?"pár sekúnd":"pár sekundami";case"ss":return t||i?o+(r(e)?"sekundy":"sekúnd"):o+"sekundami";case"m":return t?"minúta":i?"minútu":"minútou";case"mm":return t||i?o+(r(e)?"minúty":"minút"):o+"minútami";case"h":return t?"hodina":i?"hodinu":"hodinou";case"hh":return t||i?o+(r(e)?"hodiny":"hodín"):o+"hodinami";case"d":return t||i?"deň":"dňom";case"dd":return t||i?o+(r(e)?"dni":"dní"):o+"dňami";case"M":return t||i?"mesiac":"mesiacom";case"MM":return t||i?o+(r(e)?"mesiace":"mesiacov"):o+"mesiacmi";case"y":return t||i?"rok":"rokom";case"yy":return t||i?o+(r(e)?"roky":"rokov"):o+"rokmi"}}e.defineLocale("sk",{months:t,monthsShort:n,weekdays:"nedeľa_pondelok_utorok_streda_štvrtok_piatok_sobota".split("_"),weekdaysShort:"ne_po_ut_st_št_pi_so".split("_"),weekdaysMin:"ne_po_ut_st_št_pi_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm"},calendar:{sameDay:"[dnes o] LT",nextDay:"[zajtra o] LT",nextWeek:function(){switch(this.day()){case 0:return"[v nedeľu o] LT";case 1:case 2:return"[v] dddd [o] LT";case 3:return"[v stredu o] LT";case 4:return"[vo štvrtok o] LT";case 5:return"[v piatok o] LT";case 6:return"[v sobotu o] LT"}},lastDay:"[včera o] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulú nedeľu o] LT";case 1:case 2:return"[minulý] dddd [o] LT";case 3:return"[minulú stredu o] LT";case 4:case 5:return"[minulý] dddd [o] LT";case 6:return"[minulú sobotu o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"pred %s",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -function t(e,t,n,r){var i=e+" ";switch(n){case"s":return t||r?"nekaj sekund":"nekaj sekundami";case"ss":return i+=1===e?t?"sekundo":"sekundi":2===e?t||r?"sekundi":"sekundah":e<5?t||r?"sekunde":"sekundah":"sekund";case"m":return t?"ena minuta":"eno minuto";case"mm":return i+=1===e?t?"minuta":"minuto":2===e?t||r?"minuti":"minutama":e<5?t||r?"minute":"minutami":t||r?"minut":"minutami";case"h":return t?"ena ura":"eno uro";case"hh":return i+=1===e?t?"ura":"uro":2===e?t||r?"uri":"urama":e<5?t||r?"ure":"urami":t||r?"ur":"urami";case"d":return t||r?"en dan":"enim dnem";case"dd":return i+=1===e?t||r?"dan":"dnem":2===e?t||r?"dni":"dnevoma":t||r?"dni":"dnevi";case"M":return t||r?"en mesec":"enim mesecem";case"MM":return i+=1===e?t||r?"mesec":"mesecem":2===e?t||r?"meseca":"mesecema":e<5?t||r?"mesece":"meseci":t||r?"mesecev":"meseci";case"y":return t||r?"eno leto":"enim letom";case"yy":return i+=1===e?t||r?"leto":"letom":2===e?t||r?"leti":"letoma":e<5?t||r?"leta":"leti":t||r?"let":"leti"}}e.defineLocale("sl",{months:"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljek_torek_sreda_četrtek_petek_sobota".split("_"),weekdaysShort:"ned._pon._tor._sre._čet._pet._sob.".split("_"),weekdaysMin:"ne_po_to_sr_če_pe_so".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danes ob] LT",nextDay:"[jutri ob] LT",nextWeek:function(){switch(this.day()){case 0:return"[v] [nedeljo] [ob] LT";case 3:return"[v] [sredo] [ob] LT";case 6:return"[v] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[v] dddd [ob] LT"}},lastDay:"[včeraj ob] LT",lastWeek:function(){switch(this.day()){case 0:return"[prejšnjo] [nedeljo] [ob] LT";case 3:return"[prejšnjo] [sredo] [ob] LT";case 6:return"[prejšnjo] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[prejšnji] dddd [ob] LT"}},sameElse:"L"},relativeTime:{future:"čez %s",past:"pred %s",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("sq",{months:"Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor".split("_"),monthsShort:"Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj".split("_"),weekdays:"E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë".split("_"),weekdaysShort:"Die_Hën_Mar_Mër_Enj_Pre_Sht".split("_"),weekdaysMin:"D_H_Ma_Më_E_P_Sh".split("_"),weekdaysParseExact:!0,meridiemParse:/PD|MD/,isPM:function(e){return"M"===e.charAt(0)},meridiem:function(e,t,n){return e<12?"PD":"MD"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Sot në] LT",nextDay:"[Nesër në] LT",nextWeek:"dddd [në] LT",lastDay:"[Dje në] LT",lastWeek:"dddd [e kaluar në] LT",sameElse:"L"},relativeTime:{future:"në %s",past:"%s më parë",s:"disa sekonda",ss:"%d sekonda",m:"një minutë",mm:"%d minuta",h:"një orë",hh:"%d orë",d:"një ditë",dd:"%d ditë",M:"një muaj",MM:"%d muaj",y:"një vit",yy:"%d vite"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={words:{ss:["sekunda","sekunde","sekundi"],m:["jedan minut","jedne minute"],mm:["minut","minute","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mesec","meseca","meseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,r){var i=t.words[r];return 1===r.length?n?i[0]:i[1]:e+" "+t.correctGrammaticalCase(e,i)}};e.defineLocale("sr",{months:"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljak_utorak_sreda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sre._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedelju] [u] LT";case 3:return"[u] [sredu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juče u] LT",lastWeek:function(){return["[prošle] [nedelje] [u] LT","[prošlog] [ponedeljka] [u] LT","[prošlog] [utorka] [u] LT","[prošle] [srede] [u] LT","[prošlog] [četvrtka] [u] LT","[prošlog] [petka] [u] LT","[prošle] [subote] [u] LT"][this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"pre %s",s:"nekoliko sekundi",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:"dan",dd:t.translate,M:"mesec",MM:t.translate,y:"godinu",yy:t.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={words:{ss:["секунда","секунде","секунди"],m:["један минут","једне минуте"],mm:["минут","минуте","минута"],h:["један сат","једног сата"],hh:["сат","сата","сати"],dd:["дан","дана","дана"],MM:["месец","месеца","месеци"],yy:["година","године","година"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,r){var i=t.words[r];return 1===r.length?n?i[0]:i[1]:e+" "+t.correctGrammaticalCase(e,i)}};e.defineLocale("sr-cyrl",{months:"јануар_фебруар_март_април_мај_јун_јул_август_септембар_октобар_новембар_децембар".split("_"),monthsShort:"јан._феб._мар._апр._мај_јун_јул_авг._сеп._окт._нов._дец.".split("_"),monthsParseExact:!0,weekdays:"недеља_понедељак_уторак_среда_четвртак_петак_субота".split("_"),weekdaysShort:"нед._пон._уто._сре._чет._пет._суб.".split("_"),weekdaysMin:"не_по_ут_ср_че_пе_су".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[данас у] LT",nextDay:"[сутра у] LT",nextWeek:function(){switch(this.day()){case 0:return"[у] [недељу] [у] LT";case 3:return"[у] [среду] [у] LT";case 6:return"[у] [суботу] [у] LT";case 1:case 2:case 4:case 5:return"[у] dddd [у] LT"}},lastDay:"[јуче у] LT",lastWeek:function(){return["[прошле] [недеље] [у] LT","[прошлог] [понедељка] [у] LT","[прошлог] [уторка] [у] LT","[прошле] [среде] [у] LT","[прошлог] [четвртка] [у] LT","[прошлог] [петка] [у] LT","[прошле] [суботе] [у] LT"][this.day()]},sameElse:"L"},relativeTime:{future:"за %s",past:"пре %s",s:"неколико секунди",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:"дан",dd:t.translate,M:"месец",MM:t.translate,y:"годину",yy:t.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("ss",{months:"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni".split("_"),monthsShort:"Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo".split("_"),weekdays:"Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo".split("_"),weekdaysShort:"Lis_Umb_Lsb_Les_Lsi_Lsh_Umg".split("_"),weekdaysMin:"Li_Us_Lb_Lt_Ls_Lh_Ug".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Namuhla nga] LT",nextDay:"[Kusasa nga] LT",nextWeek:"dddd [nga] LT",lastDay:"[Itolo nga] LT",lastWeek:"dddd [leliphelile] [nga] LT",sameElse:"L"},relativeTime:{future:"nga %s",past:"wenteka nga %s",s:"emizuzwana lomcane",ss:"%d mzuzwana",m:"umzuzu",mm:"%d emizuzu",h:"lihora",hh:"%d emahora",d:"lilanga",dd:"%d emalanga",M:"inyanga",MM:"%d tinyanga",y:"umnyaka",yy:"%d iminyaka"},meridiemParse:/ekuseni|emini|entsambama|ebusuku/,meridiem:function(e,t,n){return e<11?"ekuseni":e<15?"emini":e<19?"entsambama":"ebusuku"},meridiemHour:function(e,t){return 12===e&&(e=0),"ekuseni"===t?e:"emini"===t?e>=11?e:e+12:"entsambama"===t||"ebusuku"===t?0===e?0:e+12:void 0},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:"%d",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("sv",{months:"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag".split("_"),weekdaysShort:"sön_mån_tis_ons_tor_fre_lör".split("_"),weekdaysMin:"sö_må_ti_on_to_fr_lö".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [kl.] HH:mm",LLLL:"dddd D MMMM YYYY [kl.] HH:mm",lll:"D MMM YYYY HH:mm",llll:"ddd D MMM YYYY HH:mm"},calendar:{sameDay:"[Idag] LT",nextDay:"[Imorgon] LT",lastDay:"[Igår] LT",nextWeek:"[På] dddd LT",lastWeek:"[I] dddd[s] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"för %s sedan",s:"några sekunder",ss:"%d sekunder",m:"en minut",mm:"%d minuter",h:"en timme",hh:"%d timmar",d:"en dag",dd:"%d dagar",M:"en månad",MM:"%d månader",y:"ett år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}(\:e|\:a)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?":e":1===t||2===t?":a":":e")},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("sw",{months:"Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des".split("_"),weekdays:"Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi".split("_"),weekdaysShort:"Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos".split("_"),weekdaysMin:"J2_J3_J4_J5_Al_Ij_J1".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[leo saa] LT",nextDay:"[kesho saa] LT",nextWeek:"[wiki ijayo] dddd [saat] LT",lastDay:"[jana] LT",lastWeek:"[wiki iliyopita] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s baadaye",past:"tokea %s",s:"hivi punde",ss:"sekunde %d",m:"dakika moja",mm:"dakika %d",h:"saa limoja",hh:"masaa %d",d:"siku moja",dd:"masiku %d",M:"mwezi mmoja",MM:"miezi %d",y:"mwaka mmoja",yy:"miaka %d"},week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={1:"௧",2:"௨",3:"௩",4:"௪",5:"௫",6:"௬",7:"௭",8:"௮",9:"௯",0:"௦"},n={"௧":"1","௨":"2","௩":"3","௪":"4","௫":"5","௬":"6","௭":"7","௮":"8","௯":"9","௦":"0"};e.defineLocale("ta",{months:"ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்".split("_"),monthsShort:"ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்".split("_"),weekdays:"ஞாயிற்றுக்கிழமை_திங்கட்கிழமை_செவ்வாய்கிழமை_புதன்கிழமை_வியாழக்கிழமை_வெள்ளிக்கிழமை_சனிக்கிழமை".split("_"),weekdaysShort:"ஞாயிறு_திங்கள்_செவ்வாய்_புதன்_வியாழன்_வெள்ளி_சனி".split("_"),weekdaysMin:"ஞா_தி_செ_பு_வி_வெ_ச".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, HH:mm",LLLL:"dddd, D MMMM YYYY, HH:mm"},calendar:{sameDay:"[இன்று] LT",nextDay:"[நாளை] LT",nextWeek:"dddd, LT",lastDay:"[நேற்று] LT",lastWeek:"[கடந்த வாரம்] dddd, LT",sameElse:"L"},relativeTime:{future:"%s இல்",past:"%s முன்",s:"ஒரு சில விநாடிகள்",ss:"%d விநாடிகள்",m:"ஒரு நிமிடம்",mm:"%d நிமிடங்கள்",h:"ஒரு மணி நேரம்",hh:"%d மணி நேரம்",d:"ஒரு நாள்",dd:"%d நாட்கள்",M:"ஒரு மாதம்",MM:"%d மாதங்கள்",y:"ஒரு வருடம்",yy:"%d ஆண்டுகள்"},dayOfMonthOrdinalParse:/\d{1,2}வது/,ordinal:function(e){return e+"வது"},preparse:function(e){return e.replace(/[௧௨௩௪௫௬௭௮௯௦]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]}))},meridiemParse:/யாமம்|வைகறை|காலை|நண்பகல்|எற்பாடு|மாலை/,meridiem:function(e,t,n){return e<2?" யாமம்":e<6?" வைகறை":e<10?" காலை":e<14?" நண்பகல்":e<18?" எற்பாடு":e<22?" மாலை":" யாமம்"},meridiemHour:function(e,t){return 12===e&&(e=0),"யாமம்"===t?e<2?e:e+12:"வைகறை"===t||"காலை"===t||"நண்பகல்"===t&&e>=10?e:e+12},week:{dow:0,doy:6}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("te",{months:"జనవరి_ఫిబ్రవరి_మార్చి_ఏప్రిల్_మే_జూన్_జులై_ఆగస్టు_సెప్టెంబర్_అక్టోబర్_నవంబర్_డిసెంబర్".split("_"),monthsShort:"జన._ఫిబ్ర._మార్చి_ఏప్రి._మే_జూన్_జులై_ఆగ._సెప్._అక్టో._నవ._డిసె.".split("_"),monthsParseExact:!0,weekdays:"ఆదివారం_సోమవారం_మంగళవారం_బుధవారం_గురువారం_శుక్రవారం_శనివారం".split("_"),weekdaysShort:"ఆది_సోమ_మంగళ_బుధ_గురు_శుక్ర_శని".split("_"),weekdaysMin:"ఆ_సో_మం_బు_గు_శు_శ".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[నేడు] LT",nextDay:"[రేపు] LT",nextWeek:"dddd, LT",lastDay:"[నిన్న] LT",lastWeek:"[గత] dddd, LT",sameElse:"L"},relativeTime:{future:"%s లో",past:"%s క్రితం",s:"కొన్ని క్షణాలు",ss:"%d సెకన్లు",m:"ఒక నిమిషం",mm:"%d నిమిషాలు",h:"ఒక గంట",hh:"%d గంటలు",d:"ఒక రోజు",dd:"%d రోజులు",M:"ఒక నెల",MM:"%d నెలలు",y:"ఒక సంవత్సరం",yy:"%d సంవత్సరాలు"},dayOfMonthOrdinalParse:/\d{1,2}వ/,ordinal:"%dవ",meridiemParse:/రాత్రి|ఉదయం|మధ్యాహ్నం|సాయంత్రం/,meridiemHour:function(e,t){return 12===e&&(e=0),"రాత్రి"===t?e<4?e:e+12:"ఉదయం"===t?e:"మధ్యాహ్నం"===t?e>=10?e:e+12:"సాయంత్రం"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"రాత్రి":e<10?"ఉదయం":e<17?"మధ్యాహ్నం":e<20?"సాయంత్రం":"రాత్రి"},week:{dow:0,doy:6}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("tet",{months:"Janeiru_Fevereiru_Marsu_Abril_Maiu_Juñu_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu".split("_"),weekdaysShort:"Dom_Seg_Ters_Kua_Kint_Sest_Sab".split("_"),weekdaysMin:"Do_Seg_Te_Ku_Ki_Ses_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Ohin iha] LT",nextDay:"[Aban iha] LT",nextWeek:"dddd [iha] LT",lastDay:"[Horiseik iha] LT",lastWeek:"dddd [semana kotuk] [iha] LT",sameElse:"L"},relativeTime:{future:"iha %s",past:"%s liuba",s:"segundu balun",ss:"segundu %d",m:"minutu ida",mm:"minutu %d",h:"oras ida",hh:"oras %d",d:"loron ida",dd:"loron %d",M:"fulan ida",MM:"fulan %d",y:"tinan ida",yy:"tinan %d"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={0:"-ум",1:"-ум",2:"-юм",3:"-юм",4:"-ум",5:"-ум",6:"-ум",7:"-ум",8:"-ум",9:"-ум",10:"-ум",12:"-ум",13:"-ум",20:"-ум",30:"-юм",40:"-ум",50:"-ум",60:"-ум",70:"-ум",80:"-ум",90:"-ум",100:"-ум"};e.defineLocale("tg",{months:"январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр".split("_"),monthsShort:"янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек".split("_"),weekdays:"якшанбе_душанбе_сешанбе_чоршанбе_панҷшанбе_ҷумъа_шанбе".split("_"),weekdaysShort:"яшб_дшб_сшб_чшб_пшб_ҷум_шнб".split("_"),weekdaysMin:"яш_дш_сш_чш_пш_ҷм_шб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Имрӯз соати] LT",nextDay:"[Пагоҳ соати] LT",lastDay:"[Дирӯз соати] LT",nextWeek:"dddd[и] [ҳафтаи оянда соати] LT",lastWeek:"dddd[и] [ҳафтаи гузашта соати] LT",sameElse:"L"},relativeTime:{future:"баъди %s",past:"%s пеш",s:"якчанд сония",m:"як дақиқа",mm:"%d дақиқа",h:"як соат",hh:"%d соат",d:"як рӯз",dd:"%d рӯз",M:"як моҳ",MM:"%d моҳ",y:"як сол",yy:"%d сол"},meridiemParse:/шаб|субҳ|рӯз|бегоҳ/,meridiemHour:function(e,t){return 12===e&&(e=0),"шаб"===t?e<4?e:e+12:"субҳ"===t?e:"рӯз"===t?e>=11?e:e+12:"бегоҳ"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"шаб":e<11?"субҳ":e<16?"рӯз":e<19?"бегоҳ":"шаб"},dayOfMonthOrdinalParse:/\d{1,2}-(ум|юм)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("th",{months:"มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม".split("_"),monthsShort:"ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.".split("_"),monthsParseExact:!0,weekdays:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์".split("_"),weekdaysShort:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์".split("_"),weekdaysMin:"อา._จ._อ._พ._พฤ._ศ._ส.".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY เวลา H:mm",LLLL:"วันddddที่ D MMMM YYYY เวลา H:mm"},meridiemParse:/ก่อนเที่ยง|หลังเที่ยง/,isPM:function(e){return"หลังเที่ยง"===e},meridiem:function(e,t,n){return e<12?"ก่อนเที่ยง":"หลังเที่ยง"},calendar:{sameDay:"[วันนี้ เวลา] LT",nextDay:"[พรุ่งนี้ เวลา] LT",nextWeek:"dddd[หน้า เวลา] LT",lastDay:"[เมื่อวานนี้ เวลา] LT",lastWeek:"[วัน]dddd[ที่แล้ว เวลา] LT",sameElse:"L"},relativeTime:{future:"อีก %s",past:"%sที่แล้ว",s:"ไม่กี่วินาที",ss:"%d วินาที",m:"1 นาที",mm:"%d นาที",h:"1 ชั่วโมง",hh:"%d ชั่วโมง",d:"1 วัน",dd:"%d วัน",M:"1 เดือน",MM:"%d เดือน",y:"1 ปี",yy:"%d ปี"}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("tl-ph",{months:"Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre".split("_"),monthsShort:"Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis".split("_"),weekdays:"Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado".split("_"),weekdaysShort:"Lin_Lun_Mar_Miy_Huw_Biy_Sab".split("_"),weekdaysMin:"Li_Lu_Ma_Mi_Hu_Bi_Sab".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"MM/D/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY HH:mm",LLLL:"dddd, MMMM DD, YYYY HH:mm"},calendar:{sameDay:"LT [ngayong araw]",nextDay:"[Bukas ng] LT",nextWeek:"LT [sa susunod na] dddd",lastDay:"LT [kahapon]",lastWeek:"LT [noong nakaraang] dddd",sameElse:"L"},relativeTime:{future:"sa loob ng %s",past:"%s ang nakalipas",s:"ilang segundo",ss:"%d segundo",m:"isang minuto",mm:"%d minuto",h:"isang oras",hh:"%d oras",d:"isang araw",dd:"%d araw",M:"isang buwan",MM:"%d buwan",y:"isang taon",yy:"%d taon"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t="pagh_wa’_cha’_wej_loS_vagh_jav_Soch_chorgh_Hut".split("_");function n(e,n,r,i){var o=function(e){var n=Math.floor(e%1e3/100),r=Math.floor(e%100/10),i=e%10,o="";return n>0&&(o+=t[n]+"vatlh"),r>0&&(o+=(""!==o?" ":"")+t[r]+"maH"),i>0&&(o+=(""!==o?" ":"")+t[i]),""===o?"pagh":o}(e);switch(r){case"ss":return o+" lup";case"mm":return o+" tup";case"hh":return o+" rep";case"dd":return o+" jaj";case"MM":return o+" jar";case"yy":return o+" DIS"}}e.defineLocale("tlh",{months:"tera’ jar wa’_tera’ jar cha’_tera’ jar wej_tera’ jar loS_tera’ jar vagh_tera’ jar jav_tera’ jar Soch_tera’ jar chorgh_tera’ jar Hut_tera’ jar wa’maH_tera’ jar wa’maH wa’_tera’ jar wa’maH cha’".split("_"),monthsShort:"jar wa’_jar cha’_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar wa’maH_jar wa’maH wa’_jar wa’maH cha’".split("_"),monthsParseExact:!0,weekdays:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),weekdaysShort:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),weekdaysMin:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[DaHjaj] LT",nextDay:"[wa’leS] LT",nextWeek:"LLL",lastDay:"[wa’Hu’] LT",lastWeek:"LLL",sameElse:"L"},relativeTime:{future:function(e){var t=e;return t=-1!==e.indexOf("jaj")?t.slice(0,-3)+"leS":-1!==e.indexOf("jar")?t.slice(0,-3)+"waQ":-1!==e.indexOf("DIS")?t.slice(0,-3)+"nem":t+" pIq"},past:function(e){var t=e;return t=-1!==e.indexOf("jaj")?t.slice(0,-3)+"Hu’":-1!==e.indexOf("jar")?t.slice(0,-3)+"wen":-1!==e.indexOf("DIS")?t.slice(0,-3)+"ben":t+" ret"},s:"puS lup",ss:n,m:"wa’ tup",mm:n,h:"wa’ rep",hh:n,d:"wa’ jaj",dd:n,M:"wa’ jar",MM:n,y:"wa’ DIS",yy:n},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'üncü",4:"'üncü",100:"'üncü",6:"'ncı",9:"'uncu",10:"'uncu",30:"'uncu",60:"'ıncı",90:"'ıncı"};e.defineLocale("tr",{months:"Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık".split("_"),monthsShort:"Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara".split("_"),weekdays:"Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi".split("_"),weekdaysShort:"Paz_Pts_Sal_Çar_Per_Cum_Cts".split("_"),weekdaysMin:"Pz_Pt_Sa_Ça_Pe_Cu_Ct".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugün saat] LT",nextDay:"[yarın saat] LT",nextWeek:"[gelecek] dddd [saat] LT",lastDay:"[dün] LT",lastWeek:"[geçen] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s önce",s:"birkaç saniye",ss:"%d saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir gün",dd:"%d gün",M:"bir ay",MM:"%d ay",y:"bir yıl",yy:"%d yıl"},ordinal:function(e,n){switch(n){case"d":case"D":case"Do":case"DD":return e;default:if(0===e)return e+"'ıncı";var r=e%10;return e+(t[r]||t[e%100-r]||t[e>=100?100:null])}},week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -function t(e,t,n,r){var i={s:["viensas secunds","'iensas secunds"],ss:[e+" secunds",e+" secunds"],m:["'n míut","'iens míut"],mm:[e+" míuts",e+" míuts"],h:["'n þora","'iensa þora"],hh:[e+" þoras",e+" þoras"],d:["'n ziua","'iensa ziua"],dd:[e+" ziuas",e+" ziuas"],M:["'n mes","'iens mes"],MM:[e+" mesen",e+" mesen"],y:["'n ar","'iens ar"],yy:[e+" ars",e+" ars"]};return r||t?i[n][0]:i[n][1]}e.defineLocale("tzl",{months:"Januar_Fevraglh_Març_Avrïu_Mai_Gün_Julia_Guscht_Setemvar_Listopäts_Noemvar_Zecemvar".split("_"),monthsShort:"Jan_Fev_Mar_Avr_Mai_Gün_Jul_Gus_Set_Lis_Noe_Zec".split("_"),weekdays:"Súladi_Lúneçi_Maitzi_Márcuri_Xhúadi_Viénerçi_Sáturi".split("_"),weekdaysShort:"Súl_Lún_Mai_Már_Xhú_Vié_Sát".split("_"),weekdaysMin:"Sú_Lú_Ma_Má_Xh_Vi_Sá".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"D. MMMM [dallas] YYYY",LLL:"D. MMMM [dallas] YYYY HH.mm",LLLL:"dddd, [li] D. MMMM [dallas] YYYY HH.mm"},meridiemParse:/d\'o|d\'a/i,isPM:function(e){return"d'o"===e.toLowerCase()},meridiem:function(e,t,n){return e>11?n?"d'o":"D'O":n?"d'a":"D'A"},calendar:{sameDay:"[oxhi à] LT",nextDay:"[demà à] LT",nextWeek:"dddd [à] LT",lastDay:"[ieiri à] LT",lastWeek:"[sür el] dddd [lasteu à] LT",sameElse:"L"},relativeTime:{future:"osprei %s",past:"ja%s",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("tzm",{months:"ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ".split("_"),monthsShort:"ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ".split("_"),weekdays:"ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ".split("_"),weekdaysShort:"ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ".split("_"),weekdaysMin:"ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[ⴰⵙⴷⵅ ⴴ] LT",nextDay:"[ⴰⵙⴽⴰ ⴴ] LT",nextWeek:"dddd [ⴴ] LT",lastDay:"[ⴰⵚⴰⵏⵜ ⴴ] LT",lastWeek:"dddd [ⴴ] LT",sameElse:"L"},relativeTime:{future:"ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ %s",past:"ⵢⴰⵏ %s",s:"ⵉⵎⵉⴽ",ss:"%d ⵉⵎⵉⴽ",m:"ⵎⵉⵏⵓⴺ",mm:"%d ⵎⵉⵏⵓⴺ",h:"ⵙⴰⵄⴰ",hh:"%d ⵜⴰⵙⵙⴰⵄⵉⵏ",d:"ⴰⵙⵙ",dd:"%d oⵙⵙⴰⵏ",M:"ⴰⵢoⵓⵔ",MM:"%d ⵉⵢⵢⵉⵔⵏ",y:"ⴰⵙⴳⴰⵙ",yy:"%d ⵉⵙⴳⴰⵙⵏ"},week:{dow:6,doy:12}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("tzm-latn",{months:"innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir".split("_"),monthsShort:"innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir".split("_"),weekdays:"asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas".split("_"),weekdaysShort:"asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas".split("_"),weekdaysMin:"asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[asdkh g] LT",nextDay:"[aska g] LT",nextWeek:"dddd [g] LT",lastDay:"[assant g] LT",lastWeek:"dddd [g] LT",sameElse:"L"},relativeTime:{future:"dadkh s yan %s",past:"yan %s",s:"imik",ss:"%d imik",m:"minuḍ",mm:"%d minuḍ",h:"saɛa",hh:"%d tassaɛin",d:"ass",dd:"%d ossan",M:"ayowr",MM:"%d iyyirn",y:"asgas",yy:"%d isgasn"},week:{dow:6,doy:12}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js language configuration -e.defineLocale("ug-cn",{months:"يانۋار_فېۋرال_مارت_ئاپرېل_ماي_ئىيۇن_ئىيۇل_ئاۋغۇست_سېنتەبىر_ئۆكتەبىر_نويابىر_دېكابىر".split("_"),monthsShort:"يانۋار_فېۋرال_مارت_ئاپرېل_ماي_ئىيۇن_ئىيۇل_ئاۋغۇست_سېنتەبىر_ئۆكتەبىر_نويابىر_دېكابىر".split("_"),weekdays:"يەكشەنبە_دۈشەنبە_سەيشەنبە_چارشەنبە_پەيشەنبە_جۈمە_شەنبە".split("_"),weekdaysShort:"يە_دۈ_سە_چا_پە_جۈ_شە".split("_"),weekdaysMin:"يە_دۈ_سە_چا_پە_جۈ_شە".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY-يىلىM-ئاينىڭD-كۈنى",LLL:"YYYY-يىلىM-ئاينىڭD-كۈنى، HH:mm",LLLL:"dddd، YYYY-يىلىM-ئاينىڭD-كۈنى، HH:mm"},meridiemParse:/يېرىم كېچە|سەھەر|چۈشتىن بۇرۇن|چۈش|چۈشتىن كېيىن|كەچ/,meridiemHour:function(e,t){return 12===e&&(e=0),"يېرىم كېچە"===t||"سەھەر"===t||"چۈشتىن بۇرۇن"===t?e:"چۈشتىن كېيىن"===t||"كەچ"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var r=100*e+t;return r<600?"يېرىم كېچە":r<900?"سەھەر":r<1130?"چۈشتىن بۇرۇن":r<1230?"چۈش":r<1800?"چۈشتىن كېيىن":"كەچ"},calendar:{sameDay:"[بۈگۈن سائەت] LT",nextDay:"[ئەتە سائەت] LT",nextWeek:"[كېلەركى] dddd [سائەت] LT",lastDay:"[تۆنۈگۈن] LT",lastWeek:"[ئالدىنقى] dddd [سائەت] LT",sameElse:"L"},relativeTime:{future:"%s كېيىن",past:"%s بۇرۇن",s:"نەچچە سېكونت",ss:"%d سېكونت",m:"بىر مىنۇت",mm:"%d مىنۇت",h:"بىر سائەت",hh:"%d سائەت",d:"بىر كۈن",dd:"%d كۈن",M:"بىر ئاي",MM:"%d ئاي",y:"بىر يىل",yy:"%d يىل"},dayOfMonthOrdinalParse:/\d{1,2}(-كۈنى|-ئاي|-ھەپتە)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"-كۈنى";case"w":case"W":return e+"-ھەپتە";default:return e}},preparse:function(e){return e.replace(/،/g,",")},postformat:function(e){return e.replace(/,/g,"،")},week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -function t(e,t,n){var r,i;return"m"===n?t?"хвилина":"хвилину":"h"===n?t?"година":"годину":e+" "+(r=+e,i={ss:t?"секунда_секунди_секунд":"секунду_секунди_секунд",mm:t?"хвилина_хвилини_хвилин":"хвилину_хвилини_хвилин",hh:t?"година_години_годин":"годину_години_годин",dd:"день_дні_днів",MM:"місяць_місяці_місяців",yy:"рік_роки_років"}[n].split("_"),r%10==1&&r%100!=11?i[0]:r%10>=2&&r%10<=4&&(r%100<10||r%100>=20)?i[1]:i[2])}function n(e){return function(){return e+"о"+(11===this.hours()?"б":"")+"] LT"}}e.defineLocale("uk",{months:{format:"січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня".split("_"),standalone:"січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень".split("_")},monthsShort:"січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд".split("_"),weekdays:function(e,t){var n={nominative:"неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота".split("_"),accusative:"неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу".split("_"),genitive:"неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи".split("_")};return!0===e?n.nominative.slice(1,7).concat(n.nominative.slice(0,1)):e?n[/(\[[ВвУу]\]) ?dddd/.test(t)?"accusative":/\[?(?:минулої|наступної)? ?\] ?dddd/.test(t)?"genitive":"nominative"][e.day()]:n.nominative},weekdaysShort:"нд_пн_вт_ср_чт_пт_сб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY р.",LLL:"D MMMM YYYY р., HH:mm",LLLL:"dddd, D MMMM YYYY р., HH:mm"},calendar:{sameDay:n("[Сьогодні "),nextDay:n("[Завтра "),lastDay:n("[Вчора "),nextWeek:n("[У] dddd ["),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return n("[Минулої] dddd [").call(this);case 1:case 2:case 4:return n("[Минулого] dddd [").call(this)}},sameElse:"L"},relativeTime:{future:"за %s",past:"%s тому",s:"декілька секунд",ss:t,m:t,mm:t,h:"годину",hh:t,d:"день",dd:t,M:"місяць",MM:t,y:"рік",yy:t},meridiemParse:/ночі|ранку|дня|вечора/,isPM:function(e){return/^(дня|вечора)$/.test(e)},meridiem:function(e,t,n){return e<4?"ночі":e<12?"ранку":e<17?"дня":"вечора"},dayOfMonthOrdinalParse:/\d{1,2}-(й|го)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":case"w":case"W":return e+"-й";case"D":return e+"-го";default:return e}},week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -var t=["جنوری","فروری","مارچ","اپریل","مئی","جون","جولائی","اگست","ستمبر","اکتوبر","نومبر","دسمبر"],n=["اتوار","پیر","منگل","بدھ","جمعرات","جمعہ","ہفتہ"];e.defineLocale("ur",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd، D MMMM YYYY HH:mm"},meridiemParse:/صبح|شام/,isPM:function(e){return"شام"===e},meridiem:function(e,t,n){return e<12?"صبح":"شام"},calendar:{sameDay:"[آج بوقت] LT",nextDay:"[کل بوقت] LT",nextWeek:"dddd [بوقت] LT",lastDay:"[گذشتہ روز بوقت] LT",lastWeek:"[گذشتہ] dddd [بوقت] LT",sameElse:"L"},relativeTime:{future:"%s بعد",past:"%s قبل",s:"چند سیکنڈ",ss:"%d سیکنڈ",m:"ایک منٹ",mm:"%d منٹ",h:"ایک گھنٹہ",hh:"%d گھنٹے",d:"ایک دن",dd:"%d دن",M:"ایک ماہ",MM:"%d ماہ",y:"ایک سال",yy:"%d سال"},preparse:function(e){return e.replace(/،/g,",")},postformat:function(e){return e.replace(/,/g,"،")},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("uz",{months:"январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр".split("_"),monthsShort:"янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек".split("_"),weekdays:"Якшанба_Душанба_Сешанба_Чоршанба_Пайшанба_Жума_Шанба".split("_"),weekdaysShort:"Якш_Душ_Сеш_Чор_Пай_Жум_Шан".split("_"),weekdaysMin:"Як_Ду_Се_Чо_Па_Жу_Ша".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"D MMMM YYYY, dddd HH:mm"},calendar:{sameDay:"[Бугун соат] LT [да]",nextDay:"[Эртага] LT [да]",nextWeek:"dddd [куни соат] LT [да]",lastDay:"[Кеча соат] LT [да]",lastWeek:"[Утган] dddd [куни соат] LT [да]",sameElse:"L"},relativeTime:{future:"Якин %s ичида",past:"Бир неча %s олдин",s:"фурсат",ss:"%d фурсат",m:"бир дакика",mm:"%d дакика",h:"бир соат",hh:"%d соат",d:"бир кун",dd:"%d кун",M:"бир ой",MM:"%d ой",y:"бир йил",yy:"%d йил"},week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("uz-latn",{months:"Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr".split("_"),monthsShort:"Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek".split("_"),weekdays:"Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba".split("_"),weekdaysShort:"Yak_Dush_Sesh_Chor_Pay_Jum_Shan".split("_"),weekdaysMin:"Ya_Du_Se_Cho_Pa_Ju_Sha".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"D MMMM YYYY, dddd HH:mm"},calendar:{sameDay:"[Bugun soat] LT [da]",nextDay:"[Ertaga] LT [da]",nextWeek:"dddd [kuni soat] LT [da]",lastDay:"[Kecha soat] LT [da]",lastWeek:"[O'tgan] dddd [kuni soat] LT [da]",sameElse:"L"},relativeTime:{future:"Yaqin %s ichida",past:"Bir necha %s oldin",s:"soniya",ss:"%d soniya",m:"bir daqiqa",mm:"%d daqiqa",h:"bir soat",hh:"%d soat",d:"bir kun",dd:"%d kun",M:"bir oy",MM:"%d oy",y:"bir yil",yy:"%d yil"},week:{dow:1,doy:7}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("vi",{months:"tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12".split("_"),monthsShort:"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12".split("_"),monthsParseExact:!0,weekdays:"chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy".split("_"),weekdaysShort:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysMin:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(e){return/^ch$/i.test(e)},meridiem:function(e,t,n){return e<12?n?"sa":"SA":n?"ch":"CH"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [năm] YYYY",LLL:"D MMMM [năm] YYYY HH:mm",LLLL:"dddd, D MMMM [năm] YYYY HH:mm",l:"DD/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[Hôm nay lúc] LT",nextDay:"[Ngày mai lúc] LT",nextWeek:"dddd [tuần tới lúc] LT",lastDay:"[Hôm qua lúc] LT",lastWeek:"dddd [tuần trước lúc] LT",sameElse:"L"},relativeTime:{future:"%s tới",past:"%s trước",s:"vài giây",ss:"%d giây",m:"một phút",mm:"%d phút",h:"một giờ",hh:"%d giờ",d:"một ngày",dd:"%d ngày",M:"một tháng",MM:"%d tháng",y:"một năm",yy:"%d năm"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("x-pseudo",{months:"J~áñúá~rý_F~ébrú~árý_~Márc~h_Áp~ríl_~Máý_~Júñé~_Júl~ý_Áú~gúst~_Sép~témb~ér_Ó~ctób~ér_Ñ~óvém~bér_~Décé~mbér".split("_"),monthsShort:"J~áñ_~Féb_~Már_~Ápr_~Máý_~Júñ_~Júl_~Áúg_~Sép_~Óct_~Ñóv_~Déc".split("_"),monthsParseExact:!0,weekdays:"S~úñdá~ý_Mó~ñdáý~_Túé~sdáý~_Wéd~ñésd~áý_T~húrs~dáý_~Fríd~áý_S~átúr~dáý".split("_"),weekdaysShort:"S~úñ_~Móñ_~Túé_~Wéd_~Thú_~Frí_~Sát".split("_"),weekdaysMin:"S~ú_Mó~_Tú_~Wé_T~h_Fr~_Sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[T~ódá~ý át] LT",nextDay:"[T~ómó~rró~w át] LT",nextWeek:"dddd [át] LT",lastDay:"[Ý~ést~érdá~ý át] LT",lastWeek:"[L~ást] dddd [át] LT",sameElse:"L"},relativeTime:{future:"í~ñ %s",past:"%s á~gó",s:"á ~féw ~sécó~ñds",ss:"%d s~écóñ~ds",m:"á ~míñ~úté",mm:"%d m~íñú~tés",h:"á~ñ hó~úr",hh:"%d h~óúrs",d:"á ~dáý",dd:"%d d~áýs",M:"á ~móñ~th",MM:"%d m~óñt~hs",y:"á ~ýéár",yy:"%d ý~éárs"},dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("yo",{months:"Sẹ́rẹ́_Èrèlè_Ẹrẹ̀nà_Ìgbé_Èbibi_Òkùdu_Agẹmo_Ògún_Owewe_Ọ̀wàrà_Bélú_Ọ̀pẹ̀̀".split("_"),monthsShort:"Sẹ́r_Èrl_Ẹrn_Ìgb_Èbi_Òkù_Agẹ_Ògú_Owe_Ọ̀wà_Bél_Ọ̀pẹ̀̀".split("_"),weekdays:"Àìkú_Ajé_Ìsẹ́gun_Ọjọ́rú_Ọjọ́bọ_Ẹtì_Àbámẹ́ta".split("_"),weekdaysShort:"Àìk_Ajé_Ìsẹ́_Ọjr_Ọjb_Ẹtì_Àbá".split("_"),weekdaysMin:"Àì_Aj_Ìs_Ọr_Ọb_Ẹt_Àb".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Ònì ni] LT",nextDay:"[Ọ̀la ni] LT",nextWeek:"dddd [Ọsẹ̀ tón'bọ] [ni] LT",lastDay:"[Àna ni] LT",lastWeek:"dddd [Ọsẹ̀ tólọ́] [ni] LT",sameElse:"L"},relativeTime:{future:"ní %s",past:"%s kọjá",s:"ìsẹjú aayá die",ss:"aayá %d",m:"ìsẹjú kan",mm:"ìsẹjú %d",h:"wákati kan",hh:"wákati %d",d:"ọjọ́ kan",dd:"ọjọ́ %d",M:"osù kan",MM:"osù %d",y:"ọdún kan",yy:"ọdún %d"},dayOfMonthOrdinalParse:/ọjọ́\s\d{1,2}/,ordinal:"ọjọ́ %d",week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("zh-cn",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"周日_周一_周二_周三_周四_周五_周六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日Ah点mm分",LLLL:"YYYY年M月D日ddddAh点mm分",l:"YYYY/M/D",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return 12===e&&(e=0),"凌晨"===t||"早上"===t||"上午"===t?e:"下午"===t||"晚上"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var r=100*e+t;return r<600?"凌晨":r<900?"早上":r<1130?"上午":r<1230?"中午":r<1800?"下午":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[明天]LT",nextWeek:"[下]ddddLT",lastDay:"[昨天]LT",lastWeek:"[上]ddddLT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(日|月|周)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"周";default:return e}},relativeTime:{future:"%s后",past:"%s前",s:"几秒",ss:"%d 秒",m:"1 分钟",mm:"%d 分钟",h:"1 小时",hh:"%d 小时",d:"1 天",dd:"%d 天",M:"1 个月",MM:"%d 个月",y:"1 年",yy:"%d 年"},week:{dow:1,doy:4}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("zh-hk",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"週日_週一_週二_週三_週四_週五_週六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日 HH:mm",LLLL:"YYYY年M月D日dddd HH:mm",l:"YYYY/M/D",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return 12===e&&(e=0),"凌晨"===t||"早上"===t||"上午"===t?e:"中午"===t?e>=11?e:e+12:"下午"===t||"晚上"===t?e+12:void 0},meridiem:function(e,t,n){var r=100*e+t;return r<600?"凌晨":r<900?"早上":r<1200?"上午":1200===r?"中午":r<1800?"下午":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[明天]LT",nextWeek:"[下]ddddLT",lastDay:"[昨天]LT",lastWeek:"[上]ddddLT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(日|月|週)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"週";default:return e}},relativeTime:{future:"%s後",past:"%s前",s:"幾秒",ss:"%d 秒",m:"1 分鐘",mm:"%d 分鐘",h:"1 小時",hh:"%d 小時",d:"1 天",dd:"%d 天",M:"1 個月",MM:"%d 個月",y:"1 年",yy:"%d 年"}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("zh-mo",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"週日_週一_週二_週三_週四_週五_週六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"YYYY年M月D日",LLL:"YYYY年M月D日 HH:mm",LLLL:"YYYY年M月D日dddd HH:mm",l:"D/M/YYYY",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return 12===e&&(e=0),"凌晨"===t||"早上"===t||"上午"===t?e:"中午"===t?e>=11?e:e+12:"下午"===t||"晚上"===t?e+12:void 0},meridiem:function(e,t,n){var r=100*e+t;return r<600?"凌晨":r<900?"早上":r<1130?"上午":r<1230?"中午":r<1800?"下午":"晚上"},calendar:{sameDay:"[今天] LT",nextDay:"[明天] LT",nextWeek:"[下]dddd LT",lastDay:"[昨天] LT",lastWeek:"[上]dddd LT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(日|月|週)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"週";default:return e}},relativeTime:{future:"%s內",past:"%s前",s:"幾秒",ss:"%d 秒",m:"1 分鐘",mm:"%d 分鐘",h:"1 小時",hh:"%d 小時",d:"1 天",dd:"%d 天",M:"1 個月",MM:"%d 個月",y:"1 年",yy:"%d 年"}})}(n(1))},function(e,t,n){!function(e){"use strict"; -//! moment.js locale configuration -e.defineLocale("zh-tw",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"週日_週一_週二_週三_週四_週五_週六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日 HH:mm",LLLL:"YYYY年M月D日dddd HH:mm",l:"YYYY/M/D",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return 12===e&&(e=0),"凌晨"===t||"早上"===t||"上午"===t?e:"中午"===t?e>=11?e:e+12:"下午"===t||"晚上"===t?e+12:void 0},meridiem:function(e,t,n){var r=100*e+t;return r<600?"凌晨":r<900?"早上":r<1130?"上午":r<1230?"中午":r<1800?"下午":"晚上"},calendar:{sameDay:"[今天] LT",nextDay:"[明天] LT",nextWeek:"[下]dddd LT",lastDay:"[昨天] LT",lastWeek:"[上]dddd LT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(日|月|週)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"週";default:return e}},relativeTime:{future:"%s後",past:"%s前",s:"幾秒",ss:"%d 秒",m:"1 分鐘",mm:"%d 分鐘",h:"1 小時",hh:"%d 小時",d:"1 天",dd:"%d 天",M:"1 個月",MM:"%d 個月",y:"1 年",yy:"%d 年"}})}(n(1))},function(e,t,n){"use strict";(function(e){ -/*! - * The buffer module from node.js, for the browser. - * - * @author Feross Aboukhadijeh - * @license MIT - */ -var r=n(378),i=n(379),o=n(380);function a(){return l.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function s(e,t){if(a()=a())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+a().toString(16)+" bytes");return 0|e}function p(e,t){if(l.isBuffer(e))return e.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(e)||e instanceof ArrayBuffer))return e.byteLength;"string"!=typeof e&&(e=""+e);var n=e.length;if(0===n)return 0;for(var r=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return F(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return z(e).length;default:if(r)return F(e).length;t=(""+t).toLowerCase(),r=!0}}function m(e,t,n){var r=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if((n>>>=0)<=(t>>>=0))return"";for(e||(e="utf8");;)switch(e){case"hex":return T(this,t,n);case"utf8":case"utf-8":return L(this,t,n);case"ascii":return C(this,t,n);case"latin1":case"binary":return E(this,t,n);case"base64":return S(this,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return O(this,t,n);default:if(r)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),r=!0}}function b(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function g(e,t,n,r,i){if(0===e.length)return-1;if("string"==typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,isNaN(n)&&(n=i?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(i)return-1;n=e.length-1}else if(n<0){if(!i)return-1;n=0}if("string"==typeof t&&(t=l.from(t,r)),l.isBuffer(t))return 0===t.length?-1:y(e,t,n,r,i);if("number"==typeof t)return t&=255,l.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):y(e,[t],n,r,i);throw new TypeError("val must be string, number or Buffer")}function y(e,t,n,r,i){var o,a=1,s=e.length,l=t.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(e.length<2||t.length<2)return-1;a=2,s/=2,l/=2,n/=2}function c(e,t){return 1===a?e[t]:e.readUInt16BE(t*a)}if(i){var u=-1;for(o=n;os&&(n=s-l),o=n;o>=0;o--){for(var d=!0,f=0;fi&&(r=i):r=i;var o=t.length;if(o%2!=0)throw new TypeError("Invalid hex string");r>o/2&&(r=o/2);for(var a=0;a>8,i=n%256,o.push(i),o.push(r);return o}(t,e.length-n),e,n,r)}function S(e,t,n){return 0===t&&n===e.length?r.fromByteArray(e):r.fromByteArray(e.slice(t,n))}function L(e,t,n){n=Math.min(e.length,n);for(var r=[],i=t;i239?4:c>223?3:c>191?2:1;if(i+d<=n)switch(d){case 1:c<128&&(u=c);break;case 2:128==(192&(o=e[i+1]))&&(l=(31&c)<<6|63&o)>127&&(u=l);break;case 3:o=e[i+1],a=e[i+2],128==(192&o)&&128==(192&a)&&(l=(15&c)<<12|(63&o)<<6|63&a)>2047&&(l<55296||l>57343)&&(u=l);break;case 4:o=e[i+1],a=e[i+2],s=e[i+3],128==(192&o)&&128==(192&a)&&128==(192&s)&&(l=(15&c)<<18|(63&o)<<12|(63&a)<<6|63&s)>65535&&l<1114112&&(u=l)}null===u?(u=65533,d=1):u>65535&&(u-=65536,r.push(u>>>10&1023|55296),u=56320|1023&u),r.push(u),i+=d}return function(e){var t=e.length;if(t<=4096)return String.fromCharCode.apply(String,e);var n="",r=0;for(;r0&&(e=this.toString("hex",0,n).match(/.{2}/g).join(" "),this.length>n&&(e+=" ... ")),""},l.prototype.compare=function(e,t,n,r,i){if(!l.isBuffer(e))throw new TypeError("Argument must be a Buffer");if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===r&&(r=0),void 0===i&&(i=this.length),t<0||n>e.length||r<0||i>this.length)throw new RangeError("out of range index");if(r>=i&&t>=n)return 0;if(r>=i)return-1;if(t>=n)return 1;if(this===e)return 0;for(var o=(i>>>=0)-(r>>>=0),a=(n>>>=0)-(t>>>=0),s=Math.min(o,a),c=this.slice(r,i),u=e.slice(t,n),d=0;di)&&(n=i),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var o=!1;;)switch(r){case"hex":return v(this,e,t,n);case"utf8":case"utf-8":return _(this,e,t,n);case"ascii":return k(this,e,t,n);case"latin1":case"binary":return w(this,e,t,n);case"base64":return x(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return M(this,e,t,n);default:if(o)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),o=!0}},l.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function C(e,t,n){var r="";n=Math.min(e.length,n);for(var i=t;ir)&&(n=r);for(var i="",o=t;on)throw new RangeError("Trying to access beyond buffer length")}function j(e,t,n,r,i,o){if(!l.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>i||te.length)throw new RangeError("Index out of range")}function Y(e,t,n,r){t<0&&(t=65535+t+1);for(var i=0,o=Math.min(e.length-n,2);i>>8*(r?i:1-i)}function P(e,t,n,r){t<0&&(t=4294967295+t+1);for(var i=0,o=Math.min(e.length-n,4);i>>8*(r?i:3-i)&255}function A(e,t,n,r,i,o){if(n+r>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function N(e,t,n,r,o){return o||A(e,0,n,4),i.write(e,t,n,r,23,4),n+4}function R(e,t,n,r,o){return o||A(e,0,n,8),i.write(e,t,n,r,52,8),n+8}l.prototype.slice=function(e,t){var n,r=this.length;if((e=~~e)<0?(e+=r)<0&&(e=0):e>r&&(e=r),(t=void 0===t?r:~~t)<0?(t+=r)<0&&(t=0):t>r&&(t=r),t0&&(i*=256);)r+=this[e+--t]*i;return r},l.prototype.readUInt8=function(e,t){return t||D(e,1,this.length),this[e]},l.prototype.readUInt16LE=function(e,t){return t||D(e,2,this.length),this[e]|this[e+1]<<8},l.prototype.readUInt16BE=function(e,t){return t||D(e,2,this.length),this[e]<<8|this[e+1]},l.prototype.readUInt32LE=function(e,t){return t||D(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},l.prototype.readUInt32BE=function(e,t){return t||D(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},l.prototype.readIntLE=function(e,t,n){e|=0,t|=0,n||D(e,t,this.length);for(var r=this[e],i=1,o=0;++o=(i*=128)&&(r-=Math.pow(2,8*t)),r},l.prototype.readIntBE=function(e,t,n){e|=0,t|=0,n||D(e,t,this.length);for(var r=t,i=1,o=this[e+--r];r>0&&(i*=256);)o+=this[e+--r]*i;return o>=(i*=128)&&(o-=Math.pow(2,8*t)),o},l.prototype.readInt8=function(e,t){return t||D(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},l.prototype.readInt16LE=function(e,t){t||D(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt16BE=function(e,t){t||D(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt32LE=function(e,t){return t||D(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},l.prototype.readInt32BE=function(e,t){return t||D(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},l.prototype.readFloatLE=function(e,t){return t||D(e,4,this.length),i.read(this,e,!0,23,4)},l.prototype.readFloatBE=function(e,t){return t||D(e,4,this.length),i.read(this,e,!1,23,4)},l.prototype.readDoubleLE=function(e,t){return t||D(e,8,this.length),i.read(this,e,!0,52,8)},l.prototype.readDoubleBE=function(e,t){return t||D(e,8,this.length),i.read(this,e,!1,52,8)},l.prototype.writeUIntLE=function(e,t,n,r){(e=+e,t|=0,n|=0,r)||j(this,e,t,n,Math.pow(2,8*n)-1,0);var i=1,o=0;for(this[t]=255&e;++o=0&&(o*=256);)this[t+i]=e/o&255;return t+n},l.prototype.writeUInt8=function(e,t,n){return e=+e,t|=0,n||j(this,e,t,1,255,0),l.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),this[t]=255&e,t+1},l.prototype.writeUInt16LE=function(e,t,n){return e=+e,t|=0,n||j(this,e,t,2,65535,0),l.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):Y(this,e,t,!0),t+2},l.prototype.writeUInt16BE=function(e,t,n){return e=+e,t|=0,n||j(this,e,t,2,65535,0),l.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):Y(this,e,t,!1),t+2},l.prototype.writeUInt32LE=function(e,t,n){return e=+e,t|=0,n||j(this,e,t,4,4294967295,0),l.TYPED_ARRAY_SUPPORT?(this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e):P(this,e,t,!0),t+4},l.prototype.writeUInt32BE=function(e,t,n){return e=+e,t|=0,n||j(this,e,t,4,4294967295,0),l.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):P(this,e,t,!1),t+4},l.prototype.writeIntLE=function(e,t,n,r){if(e=+e,t|=0,!r){var i=Math.pow(2,8*n-1);j(this,e,t,n,i-1,-i)}var o=0,a=1,s=0;for(this[t]=255&e;++o>0)-s&255;return t+n},l.prototype.writeIntBE=function(e,t,n,r){if(e=+e,t|=0,!r){var i=Math.pow(2,8*n-1);j(this,e,t,n,i-1,-i)}var o=n-1,a=1,s=0;for(this[t+o]=255&e;--o>=0&&(a*=256);)e<0&&0===s&&0!==this[t+o+1]&&(s=1),this[t+o]=(e/a>>0)-s&255;return t+n},l.prototype.writeInt8=function(e,t,n){return e=+e,t|=0,n||j(this,e,t,1,127,-128),l.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),e<0&&(e=255+e+1),this[t]=255&e,t+1},l.prototype.writeInt16LE=function(e,t,n){return e=+e,t|=0,n||j(this,e,t,2,32767,-32768),l.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):Y(this,e,t,!0),t+2},l.prototype.writeInt16BE=function(e,t,n){return e=+e,t|=0,n||j(this,e,t,2,32767,-32768),l.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):Y(this,e,t,!1),t+2},l.prototype.writeInt32LE=function(e,t,n){return e=+e,t|=0,n||j(this,e,t,4,2147483647,-2147483648),l.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24):P(this,e,t,!0),t+4},l.prototype.writeInt32BE=function(e,t,n){return e=+e,t|=0,n||j(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),l.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):P(this,e,t,!1),t+4},l.prototype.writeFloatLE=function(e,t,n){return N(this,e,t,!0,n)},l.prototype.writeFloatBE=function(e,t,n){return N(this,e,t,!1,n)},l.prototype.writeDoubleLE=function(e,t,n){return R(this,e,t,!0,n)},l.prototype.writeDoubleBE=function(e,t,n){return R(this,e,t,!1,n)},l.prototype.copy=function(e,t,n,r){if(n||(n=0),r||0===r||(r=this.length),t>=e.length&&(t=e.length),t||(t=0),r>0&&r=this.length)throw new RangeError("sourceStart out of bounds");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),e.length-t=0;--i)e[i+t]=this[i+n];else if(o<1e3||!l.TYPED_ARRAY_SUPPORT)for(i=0;i>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"==typeof e)for(o=t;o55295&&n<57344){if(!i){if(n>56319){(t-=3)>-1&&o.push(239,191,189);continue}if(a+1===r){(t-=3)>-1&&o.push(239,191,189);continue}i=n;continue}if(n<56320){(t-=3)>-1&&o.push(239,191,189),i=n;continue}n=65536+(i-55296<<10|n-56320)}else i&&(t-=3)>-1&&o.push(239,191,189);if(i=null,n<128){if((t-=1)<0)break;o.push(n)}else if(n<2048){if((t-=2)<0)break;o.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;o.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;o.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return o}function z(e){return r.toByteArray(function(e){if((e=function(e){return e.trim?e.trim():e.replace(/^\s+|\s+$/g,"")}(e).replace(H,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function W(e,t,n,r){for(var i=0;i=t.length||i>=e.length);++i)t[i+n]=e[i];return i}}).call(this,n(19))},function(e,t,n){const r=n(54),{muk:i}=n(384),o=new r("10000","hex"),a=new r("ffffffff","hex"),s=new r("100000000","hex"),l=new r("ffffffffffffffff","hex"),c=new r("ffffffff00000000","hex"),u=new r("65535"),d=new r("65536"),f=(e,t)=>i([3077398253,3995603712,2243735041,1261992695][e],2,t),h=e=>p(4,u,d,a,f,new r(e)),p=(e,t,n,r,i,o)=>{const a=m(e,t,n,i,o);return a.lt(r)?a:m(e,t,n,i,a)},m=(e,t,n,r,i)=>{const o=(i,a,s)=>{if(i>e)return e%2!=0||s.eq(t)?t.mul(s).add(a):t.mul(a).add(s);{const e=r(i-1,s),l=i%2!=0?a.add(e).mod(t):a.add(e).mod(n);return o(i+1,s,l)}},a=i.mod(t),s=i.div(t);return o(1,a,s)},b=e=>g(4,u,d,a,f,new r(e)),g=(e,t,n,r,i,o)=>{const a=y(e,t,n,i,o);return a.lt(r)?a:y(e,t,n,i,a)},y=(e,t,n,r,i)=>{const o=(e,i,a)=>{if(e<1)return t.mul(a).add(i);{const s=r(e-1,i),l=e%2!=0?a.add(t).sub(s.mod(t)).mod(t):a.add(n).sub(s.mod(n)).mod(n);return o(e-1,l,i)}},a=e%2!=0?i.div(t):i.mod(t),s=e%2!=0?i.mod(t):i.div(t),l=s.eq(t)?a:s,c=s.eq(t)?s:a;return o(e,l,c)};e.exports={F:f,fe:m,Fe:p,feis:h,fein:e=>{const t=e=>{const n=e.and(a),r=e.and(c);return e.gte(o)&&e.lte(a)?o.add(h(e.sub(o))):e.gte(s)&&e.lte(l)?r.or(t(n)):e};return t(new r(e))},fen:y,Fen:g,tail:b,fynd:e=>{const t=e=>{const n=e.and(a),r=e.and(c);return e.gte(o)&&e.lte(a)?o.add(b(e.sub(o))):e.gte(s)&&e.lte(l)?r.or(t(n)):e};return t(new r(e))}}},function(e,t,n){"use strict";e.exports=n(235)},function(e,t){e.exports=function(e,t,n,r){var i=n?n.call(r,e,t):void 0;if(void 0!==i)return!!i;if(e===t)return!0;if("object"!=typeof e||!e||"object"!=typeof t||!t)return!1;var o=Object.keys(e),a=Object.keys(t);if(o.length!==a.length)return!1;for(var s=Object.prototype.hasOwnProperty.bind(t),l=0;lr&&(r=(t=t.trim()).charCodeAt(0)),r){case 38:return t.replace(m,"$1"+e.trim());case 58:return e.trim()+t.replace(m,"$1"+e.trim());default:if(0<1*n&&0l.charCodeAt(8))break;case 115:a=a.replace(l,"-webkit-"+l)+";"+a;break;case 207:case 102:a=a.replace(l,"-webkit-"+(102s.charCodeAt(0)&&(s=s.trim()),s=[s],0h)&&(I=(W=W.replace(" ",":")).length),0=0&&(b=f-(y=Math.sqrt(p)/(2*Math.abs(u))),g=f+y,Math.abs(b)<=1&&m++,Math.abs(g)<=1&&m++,b<-1&&(b=g)),1===m?k<0?s=w+b:c=w+b:2===m&&(s=w+(h<0?g:b),c=w+(h<0?b:g)),!s||!c);w+=2)k=a;var x={};return s&&(x.rise=L(i,s)),c&&(x.set=L(i,c)),s||c||(x[h>0?"alwaysUp":"alwaysDown"]=!0),x},e.exports=_}()},function(e,t,n){"use strict";var r=n(385),i=function(){return!0},o=function(e){return function(){throw new Error(e)}};e.exports=function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=t.block,a=void 0===n?[]:n,s=t.inline,l=void 0===s?[]:s;a.length&&a.filter((function(e){return Array.isArray(e)?a.map((function(e){return e[0]})).includes(e[0]):a.includes(e)})).forEach((function(t){Array.isArray(t)&&2===t.length?e.Parser.prototype.blockTokenizers[t[0]]=o(t[1]):e.Parser.prototype.blockTokenizers[t]=i})),l.length&&l.filter((function(e){return Array.isArray(e)?l.map((function(e){return e[0]})).includes(e[0]):l.includes(e)})).forEach((function(t){var n,a;Array.isArray(t)&&2===t.length?(n=t[0],a=o(t[1])):(n=t,a=r(i)),e.Parser.prototype.inlineTokenizers[n]&&Object.keys(e.Parser.prototype.inlineTokenizers[n]).forEach((function(t){a[t]=e.Parser.prototype.inlineTokenizers[n][t]})),e.Parser.prototype.inlineTokenizers[n]=a}))}},function(e,t,n){"use strict"; -/** @license React v16.13.1 - * react.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var r=n(5),i="function"==typeof Symbol&&Symbol.for,o=i?Symbol.for("react.element"):60103,a=i?Symbol.for("react.portal"):60106,s=i?Symbol.for("react.fragment"):60107,l=i?Symbol.for("react.strict_mode"):60108,c=i?Symbol.for("react.profiler"):60114,u=i?Symbol.for("react.provider"):60109,d=i?Symbol.for("react.context"):60110,f=i?Symbol.for("react.forward_ref"):60112,h=i?Symbol.for("react.suspense"):60113,p=i?Symbol.for("react.memo"):60115,m=i?Symbol.for("react.lazy"):60116,b="function"==typeof Symbol&&Symbol.iterator;function g(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;nO.length&&O.push(e)}function Y(e,t,n){return null==e?0:function e(t,n,r,i){var s=typeof t;"undefined"!==s&&"boolean"!==s||(t=null);var l=!1;if(null===t)l=!0;else switch(s){case"string":case"number":l=!0;break;case"object":switch(t.$$typeof){case o:case a:l=!0}}if(l)return r(i,t,""===n?"."+P(t,0):n),1;if(l=0,n=""===n?".":n+":",Array.isArray(t))for(var c=0;c