@vincentgraul/react-components 1.0.39 → 1.0.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.circleci/config.yml +52 -0
- package/.prettierrc.json +4 -0
- package/.storybook/main.ts +17 -0
- package/.storybook/preview.ts +15 -0
- package/dist/country-selector/country-selector.d.ts.map +1 -0
- package/dist/country-selector/country-selector.js +35 -0
- package/dist/modal/modal.js +14 -0
- package/dist/select/select.d.ts.map +1 -0
- package/dist/select/select.js +42 -0
- package/dist/use-match-resolution/use-match-resolution.d.ts.map +1 -0
- package/doc/.nojekyll +1 -0
- package/doc/assets/highlight.css +22 -0
- package/doc/assets/main.js +54 -0
- package/doc/assets/search.js +1 -0
- package/doc/assets/style.css +1224 -0
- package/doc/assets/widgets.png +0 -0
- package/doc/assets/widgets@2x.png +0 -0
- package/doc/enums/numbered_pagination_NumberedPagination.ArrowPosition.html +78 -0
- package/doc/functions/match_device_useMatchDevice.default.html +70 -0
- package/doc/functions/match_resolution_useMatchResolution.default.html +82 -0
- package/doc/functions/mount_react_hook_mountReactHook.default.html +74 -0
- package/doc/functions/numbered_pagination_NumberedPagination.default.html +75 -0
- package/doc/functions/pagination_usePagination.default.html +85 -0
- package/doc/functions/scroll_to_useScrollTo.default.html +73 -0
- package/doc/functions/table_Table.Td.html +85 -0
- package/doc/functions/table_Table.Th.html +85 -0
- package/doc/functions/table_Table.Tr.html +85 -0
- package/doc/functions/table_Table.default.html +84 -0
- package/doc/functions/visible_useVisible.default.html +69 -0
- package/doc/index.html +98 -0
- package/doc/interfaces/match_device_useMatchDevice.Device.html +96 -0
- package/doc/interfaces/match_resolution_useMatchResolution.Breakpoints.html +159 -0
- package/doc/interfaces/match_resolution_useMatchResolution.MatchResolution.html +102 -0
- package/doc/interfaces/match_resolution_useMatchResolution.Resolution.html +159 -0
- package/doc/interfaces/mount_react_hook_mountReactHook.MountedHook.html +97 -0
- package/doc/interfaces/numbered_pagination_NumberedPagination.Props.html +234 -0
- package/doc/interfaces/pagination_usePagination.Pagination.html +178 -0
- package/doc/interfaces/pagination_usePagination.Props.html +103 -0
- package/doc/interfaces/scroll_to_useScrollTo.ScrollEvents.html +83 -0
- package/doc/interfaces/table_Table.Column.html +85 -0
- package/doc/interfaces/table_Table.Props.html +245 -0
- package/doc/modules/match_device_useMatchDevice.html +66 -0
- package/doc/modules/match_resolution_useMatchResolution.html +75 -0
- package/doc/modules/mount_react_hook_mountReactHook.html +66 -0
- package/doc/modules/numbered_pagination_NumberedPagination.html +71 -0
- package/doc/modules/pagination_usePagination.html +68 -0
- package/doc/modules/scroll_to_useScrollTo.html +66 -0
- package/doc/modules/table_Table.html +74 -0
- package/doc/modules/visible_useVisible.html +61 -0
- package/doc/modules.html +58 -0
- package/doc/variables/match_resolution_useMatchResolution.defaultBreakpoints.html +58 -0
- package/eslint.config.js +36 -0
- package/jest.config.js +5 -0
- package/package.json +2 -4
- package/renovate.json +14 -0
- package/src/breadcrumb/breadcrumb.module.css +17 -0
- package/src/breadcrumb/breadcrumb.tsx +30 -0
- package/src/breadcrumb/icons/arrow.tsx +24 -0
- package/src/breadcrumb/icons/index.ts +1 -0
- package/src/breadcrumb/index.ts +3 -0
- package/src/country-selector/country-selector.module.css +5 -0
- package/src/country-selector/country-selector.tsx +42 -0
- package/src/country-selector/country-selector.types.ts +6 -0
- package/src/country-selector/icons/Ad.tsx +86 -0
- package/src/country-selector/icons/Ae.tsx +22 -0
- package/src/country-selector/icons/Af.tsx +28 -0
- package/src/country-selector/icons/Ag.tsx +23 -0
- package/src/country-selector/icons/Ai.tsx +38 -0
- package/src/country-selector/icons/Al.tsx +17 -0
- package/src/country-selector/icons/Am.tsx +18 -0
- package/src/country-selector/icons/Ao.tsx +21 -0
- package/src/country-selector/icons/Ar.tsx +19 -0
- package/src/country-selector/icons/As.tsx +43 -0
- package/src/country-selector/icons/At.tsx +14 -0
- package/src/country-selector/icons/Au.tsx +25 -0
- package/src/country-selector/icons/Aw.tsx +22 -0
- package/src/country-selector/icons/Az.tsx +22 -0
- package/src/country-selector/icons/Ba.tsx +18 -0
- package/src/country-selector/icons/Bb.tsx +22 -0
- package/src/country-selector/icons/Bd.tsx +14 -0
- package/src/country-selector/icons/Be.tsx +18 -0
- package/src/country-selector/icons/Bf.tsx +21 -0
- package/src/country-selector/icons/Bg.tsx +18 -0
- package/src/country-selector/icons/Bh.tsx +17 -0
- package/src/country-selector/icons/Bi.tsx +45 -0
- package/src/country-selector/icons/Bj.tsx +21 -0
- package/src/country-selector/icons/Bm.tsx +103 -0
- package/src/country-selector/icons/Bo.tsx +177 -0
- package/src/country-selector/icons/Br.tsx +22 -0
- package/src/country-selector/icons/Bs.tsx +18 -0
- package/src/country-selector/icons/Bt.tsx +49 -0
- package/src/country-selector/icons/Bw.tsx +15 -0
- package/src/country-selector/icons/By.tsx +25 -0
- package/src/country-selector/icons/Bz.tsx +193 -0
- package/src/country-selector/icons/Ca.tsx +17 -0
- package/src/country-selector/icons/Cd.tsx +25 -0
- package/src/country-selector/icons/Cf.tsx +24 -0
- package/src/country-selector/icons/Cg.tsx +21 -0
- package/src/country-selector/icons/Ch.tsx +17 -0
- package/src/country-selector/icons/Ci.tsx +18 -0
- package/src/country-selector/icons/Ck.tsx +29 -0
- package/src/country-selector/icons/Cl.tsx +25 -0
- package/src/country-selector/icons/Cm.tsx +18 -0
- package/src/country-selector/icons/Cn.tsx +17 -0
- package/src/country-selector/icons/Co.tsx +18 -0
- package/src/country-selector/icons/Cr.tsx +79 -0
- package/src/country-selector/icons/Cu.tsx +24 -0
- package/src/country-selector/icons/Cv.tsx +19 -0
- package/src/country-selector/icons/Cw.tsx +18 -0
- package/src/country-selector/icons/Cy.tsx +22 -0
- package/src/country-selector/icons/Cz.tsx +21 -0
- package/src/country-selector/icons/De.tsx +18 -0
- package/src/country-selector/icons/Dj.tsx +25 -0
- package/src/country-selector/icons/Dk.tsx +17 -0
- package/src/country-selector/icons/Dm.tsx +60 -0
- package/src/country-selector/icons/Do.tsx +127 -0
- package/src/country-selector/icons/Dz.tsx +21 -0
- package/src/country-selector/icons/Ec.tsx +123 -0
- package/src/country-selector/icons/Ee.tsx +18 -0
- package/src/country-selector/icons/Eg.tsx +22 -0
- package/src/country-selector/icons/Er.tsx +25 -0
- package/src/country-selector/icons/Es.tsx +80 -0
- package/src/country-selector/icons/Et.tsx +26 -0
- package/src/country-selector/icons/Fi.tsx +17 -0
- package/src/country-selector/icons/Fj.tsx +112 -0
- package/src/country-selector/icons/Fk.tsx +96 -0
- package/src/country-selector/icons/Fm.tsx +17 -0
- package/src/country-selector/icons/Fo.tsx +21 -0
- package/src/country-selector/icons/Fr.tsx +18 -0
- package/src/country-selector/icons/Ga.tsx +18 -0
- package/src/country-selector/icons/Gb.tsx +21 -0
- package/src/country-selector/icons/Gd.tsx +24 -0
- package/src/country-selector/icons/Ge.tsx +17 -0
- package/src/country-selector/icons/Gg.tsx +21 -0
- package/src/country-selector/icons/Gh.tsx +22 -0
- package/src/country-selector/icons/Gi.tsx +25 -0
- package/src/country-selector/icons/Gl.tsx +21 -0
- package/src/country-selector/icons/Gm.tsx +19 -0
- package/src/country-selector/icons/Gn.tsx +18 -0
- package/src/country-selector/icons/Gq.tsx +42 -0
- package/src/country-selector/icons/Gr.tsx +23 -0
- package/src/country-selector/icons/Gt.tsx +102 -0
- package/src/country-selector/icons/Gu.tsx +42 -0
- package/src/country-selector/icons/Gw.tsx +25 -0
- package/src/country-selector/icons/Hk.tsx +18 -0
- package/src/country-selector/icons/Hn.tsx +18 -0
- package/src/country-selector/icons/Hr.tsx +78 -0
- package/src/country-selector/icons/Ht.tsx +17 -0
- package/src/country-selector/icons/Hu.tsx +18 -0
- package/src/country-selector/icons/Id.tsx +17 -0
- package/src/country-selector/icons/Ie.tsx +18 -0
- package/src/country-selector/icons/Il.tsx +18 -0
- package/src/country-selector/icons/Im.tsx +76 -0
- package/src/country-selector/icons/In.tsx +34 -0
- package/src/country-selector/icons/Io.tsx +37 -0
- package/src/country-selector/icons/Iq.tsx +22 -0
- package/src/country-selector/icons/Ir.tsx +25 -0
- package/src/country-selector/icons/Is.tsx +21 -0
- package/src/country-selector/icons/It.tsx +18 -0
- package/src/country-selector/icons/Je.tsx +74 -0
- package/src/country-selector/icons/Jm.tsx +18 -0
- package/src/country-selector/icons/Jo.tsx +26 -0
- package/src/country-selector/icons/Jp.tsx +14 -0
- package/src/country-selector/icons/Ke.tsx +35 -0
- package/src/country-selector/icons/Kg.tsx +17 -0
- package/src/country-selector/icons/Kh.tsx +18 -0
- package/src/country-selector/icons/Ki.tsx +38 -0
- package/src/country-selector/icons/Km.tsx +27 -0
- package/src/country-selector/icons/Kn.tsx +29 -0
- package/src/country-selector/icons/Kp.tsx +20 -0
- package/src/country-selector/icons/Kr.tsx +25 -0
- package/src/country-selector/icons/Kw.tsx +22 -0
- package/src/country-selector/icons/Ky.tsx +134 -0
- package/src/country-selector/icons/Kz.tsx +19 -0
- package/src/country-selector/icons/La.tsx +15 -0
- package/src/country-selector/icons/Lb.tsx +18 -0
- package/src/country-selector/icons/Li.tsx +25 -0
- package/src/country-selector/icons/Lk.tsx +67 -0
- package/src/country-selector/icons/Lr.tsx +34 -0
- package/src/country-selector/icons/Ls.tsx +22 -0
- package/src/country-selector/icons/Lt.tsx +18 -0
- package/src/country-selector/icons/Lu.tsx +18 -0
- package/src/country-selector/icons/Lv.tsx +14 -0
- package/src/country-selector/icons/Ly.tsx +22 -0
- package/src/country-selector/icons/Ma.tsx +17 -0
- package/src/country-selector/icons/Mc.tsx +17 -0
- package/src/country-selector/icons/Md.tsx +100 -0
- package/src/country-selector/icons/Me.tsx +33 -0
- package/src/country-selector/icons/Mg.tsx +18 -0
- package/src/country-selector/icons/Mh.tsx +25 -0
- package/src/country-selector/icons/Mk.tsx +17 -0
- package/src/country-selector/icons/Ml.tsx +18 -0
- package/src/country-selector/icons/Mm.tsx +22 -0
- package/src/country-selector/icons/Mn.tsx +24 -0
- package/src/country-selector/icons/Mo.tsx +21 -0
- package/src/country-selector/icons/Mp.tsx +53 -0
- package/src/country-selector/icons/Mq.tsx +17 -0
- package/src/country-selector/icons/Mr.tsx +17 -0
- package/src/country-selector/icons/Ms.tsx +62 -0
- package/src/country-selector/icons/Mt.tsx +51 -0
- package/src/country-selector/icons/Mu.tsx +19 -0
- package/src/country-selector/icons/Mv.tsx +18 -0
- package/src/country-selector/icons/Mw.tsx +21 -0
- package/src/country-selector/icons/Mx.tsx +65 -0
- package/src/country-selector/icons/My.tsx +37 -0
- package/src/country-selector/icons/Mz.tsx +36 -0
- package/src/country-selector/icons/Na.tsx +26 -0
- package/src/country-selector/icons/Nato.tsx +17 -0
- package/src/country-selector/icons/Ne.tsx +19 -0
- package/src/country-selector/icons/Nf.tsx +18 -0
- package/src/country-selector/icons/Ng.tsx +18 -0
- package/src/country-selector/icons/Ni.tsx +73 -0
- package/src/country-selector/icons/Nl.tsx +18 -0
- package/src/country-selector/icons/No.tsx +21 -0
- package/src/country-selector/icons/Np.tsx +25 -0
- package/src/country-selector/icons/Nr.tsx +18 -0
- package/src/country-selector/icons/Nu.tsx +30 -0
- package/src/country-selector/icons/Nz.tsx +49 -0
- package/src/country-selector/icons/Om.tsx +29 -0
- package/src/country-selector/icons/Pa.tsx +25 -0
- package/src/country-selector/icons/Pe.tsx +18 -0
- package/src/country-selector/icons/Pf.tsx +30 -0
- package/src/country-selector/icons/Pg.tsx +25 -0
- package/src/country-selector/icons/Ph.tsx +25 -0
- package/src/country-selector/icons/Pk.tsx +17 -0
- package/src/country-selector/icons/Pl.tsx +17 -0
- package/src/country-selector/icons/Pn.tsx +153 -0
- package/src/country-selector/icons/Pr.tsx +27 -0
- package/src/country-selector/icons/Ps.tsx +22 -0
- package/src/country-selector/icons/Pt.tsx +39 -0
- package/src/country-selector/icons/Pw.tsx +14 -0
- package/src/country-selector/icons/Py.tsx +31 -0
- package/src/country-selector/icons/Qa.tsx +17 -0
- package/src/country-selector/icons/Ro.tsx +18 -0
- package/src/country-selector/icons/Rs.tsx +89 -0
- package/src/country-selector/icons/Ru.tsx +18 -0
- package/src/country-selector/icons/Rw.tsx +22 -0
- package/src/country-selector/icons/Sa.tsx +23 -0
- package/src/country-selector/icons/Sb.tsx +25 -0
- package/src/country-selector/icons/Sc.tsx +29 -0
- package/src/country-selector/icons/Sd.tsx +22 -0
- package/src/country-selector/icons/Se.tsx +17 -0
- package/src/country-selector/icons/Sg.tsx +17 -0
- package/src/country-selector/icons/Si.tsx +33 -0
- package/src/country-selector/icons/Sk.tsx +34 -0
- package/src/country-selector/icons/Sl.tsx +18 -0
- package/src/country-selector/icons/Sm.tsx +102 -0
- package/src/country-selector/icons/Sn.tsx +22 -0
- package/src/country-selector/icons/So.tsx +17 -0
- package/src/country-selector/icons/Sq.tsx +41 -0
- package/src/country-selector/icons/Sr.tsx +19 -0
- package/src/country-selector/icons/Ss.tsx +30 -0
- package/src/country-selector/icons/St.tsx +22 -0
- package/src/country-selector/icons/Sv.tsx +141 -0
- package/src/country-selector/icons/Sx.tsx +71 -0
- package/src/country-selector/icons/Sy.tsx +22 -0
- package/src/country-selector/icons/Sz.tsx +60 -0
- package/src/country-selector/icons/Tc.tsx +53 -0
- package/src/country-selector/icons/Td.tsx +18 -0
- package/src/country-selector/icons/Tg.tsx +27 -0
- package/src/country-selector/icons/Th.tsx +14 -0
- package/src/country-selector/icons/Tibet.tsx +260 -0
- package/src/country-selector/icons/Tj.tsx +22 -0
- package/src/country-selector/icons/Tk.tsx +21 -0
- package/src/country-selector/icons/Tm.tsx +59 -0
- package/src/country-selector/icons/Tn.tsx +21 -0
- package/src/country-selector/icons/To.tsx +21 -0
- package/src/country-selector/icons/Tr.tsx +17 -0
- package/src/country-selector/icons/Tt.tsx +18 -0
- package/src/country-selector/icons/Tv.tsx +29 -0
- package/src/country-selector/icons/Tw.tsx +21 -0
- package/src/country-selector/icons/Tz.tsx +22 -0
- package/src/country-selector/icons/Ua.tsx +17 -0
- package/src/country-selector/icons/Ug.tsx +51 -0
- package/src/country-selector/icons/Us.tsx +25 -0
- package/src/country-selector/icons/Uy.tsx +53 -0
- package/src/country-selector/icons/Uz.tsx +27 -0
- package/src/country-selector/icons/Ve.tsx +22 -0
- package/src/country-selector/icons/Vi.tsx +42 -0
- package/src/country-selector/icons/Vn.tsx +17 -0
- package/src/country-selector/icons/Vu.tsx +29 -0
- package/src/country-selector/icons/Ws.tsx +21 -0
- package/src/country-selector/icons/Ye.tsx +18 -0
- package/src/country-selector/icons/Za.tsx +25 -0
- package/src/country-selector/icons/Zm.tsx +23 -0
- package/src/country-selector/icons/Zw.tsx +41 -0
- package/src/country-selector/icons/index.ts +223 -0
- package/src/country-selector/index.ts +2 -0
- package/src/index.ts +17 -0
- package/src/input/index.ts +2 -0
- package/src/input/input.module.css +71 -0
- package/src/input/input.tsx +38 -0
- package/src/input/input.types.ts +10 -0
- package/src/loader/index.ts +1 -0
- package/src/loader/loader.module.css +40 -0
- package/src/loader/loader.tsx +30 -0
- package/src/modal/index.ts +1 -0
- package/src/modal/modal.module.css +22 -0
- package/src/modal/modal.tsx +27 -0
- package/src/mount-react-hook/index.ts +2 -0
- package/src/mount-react-hook/mount-react-hook.tsx +28 -0
- package/src/mount-react-hook/mount-react-hook.types.ts +5 -0
- package/src/pagination/index.ts +2 -0
- package/src/pagination/pagination.module.css +31 -0
- package/src/pagination/pagination.tsx +90 -0
- package/src/pagination/pagination.types.ts +4 -0
- package/src/select/icons/ArrowBottom.tsx +12 -0
- package/src/select/icons/index.ts +1 -0
- package/src/select/index.ts +2 -0
- package/src/select/select.module.css +54 -0
- package/src/select/select.tsx +85 -0
- package/src/select/select.types.ts +9 -0
- package/src/table/index.ts +2 -0
- package/src/table/table.module.css +33 -0
- package/src/table/table.tsx +83 -0
- package/src/table/table.types.ts +5 -0
- package/src/use-breadcrumb/index.ts +2 -0
- package/src/use-breadcrumb/use-breadcrumb.tsx +35 -0
- package/src/use-breadcrumb/use-breadcrumb.types.ts +12 -0
- package/src/use-match-device/use-match-device.ts +41 -0
- package/src/use-match-device/use-match-device.types.ts +6 -0
- package/src/use-match-resolution/use-match-resolution.ts +72 -0
- package/src/use-match-resolution/use-match-resolution.types.ts +37 -0
- package/src/use-outside-alerter/use-outside-alerter.tsx +29 -0
- package/src/use-outside-alerter/use-outside-alerter.types.ts +4 -0
- package/src/use-pagination/index.ts +2 -0
- package/src/use-pagination/use-pagination.ts +86 -0
- package/src/use-pagination/use-pagination.types.ts +11 -0
- package/src/use-scroll-to/use-scroll-to.tsx +25 -0
- package/src/use-scroll-to/use-scroll-to.types.ts +3 -0
- package/src/use-visible/use-visible.ts +31 -0
- package/src/wizard/index.ts +2 -0
- package/src/wizard/wizard.tsx +44 -0
- package/src/wizard/wizard.types.ts +7 -0
- package/stories/breadcrumb/breadcrumb.stories.tsx +21 -0
- package/stories/country-selector/country-selector.stories.tsx +14 -0
- package/stories/input/input.stories.tsx +42 -0
- package/stories/loader/assets/white-loader.svg +20 -0
- package/stories/loader/loader.stories.tsx +12 -0
- package/stories/modal/modal.stories.tsx +21 -0
- package/stories/pagination/assets/double-left-arrow.svg +13 -0
- package/stories/pagination/assets/double-right-arrow.svg +13 -0
- package/stories/pagination/assets/single-left-arrow.svg +10 -0
- package/stories/pagination/assets/single-right-arrow.svg +10 -0
- package/stories/pagination/pagination.stories.tsx +89 -0
- package/stories/select/select.stories.tsx +33 -0
- package/stories/table/assets/double-left-arrow.svg +13 -0
- package/stories/table/assets/double-right-arrow.svg +13 -0
- package/stories/table/assets/single-left-arrow.svg +10 -0
- package/stories/table/assets/single-right-arrow.svg +10 -0
- package/stories/table/table.stories.tsx +219 -0
- package/stories/use-match-device/use-match-device.stories.tsx +22 -0
- package/stories/use-match-resolution/use-match-resolution.stories.tsx +31 -0
- package/stories/use-outside-alerter/use-outside-alerter.stories.tsx +19 -0
- package/stories/use-scroll-to/use-scroll-to.stories.tsx +74 -0
- package/stories/use-visible/use-visible.stories.tsx +71 -0
- package/stories/wizard/wizard.stories.tsx +35 -0
- package/tests/pagination/use-pagination.test.ts +23 -0
- package/tests/setup.js +23 -0
- package/tests/use-match-resolution/use-match-resolution.test.ts +32 -0
- package/tests/use-visible/use-visible.test.tsx +53 -0
- package/tsconfig.json +16 -0
- package/typedoc.json +7 -0
- package/types.d.ts +5 -0
- package/build/breadcrumb/breadcrumb.types.d.ts +0 -12
- package/build/breadcrumb/breadcrumb.types.d.ts.map +0 -1
- package/build/breadcrumb/breadcrumb.types.js +0 -1
- package/build/breadcrumb/use-breadcrumb.d.ts +0 -3
- package/build/breadcrumb/use-breadcrumb.d.ts.map +0 -1
- package/build/country-selector/country-selector.d.ts.map +0 -1
- package/build/country-selector/country-selector.js +0 -35
- package/build/loader/image-loader/image-loader.d.ts +0 -7
- package/build/loader/image-loader/image-loader.d.ts.map +0 -1
- package/build/loader/image-loader/image-loader.js +0 -3
- package/build/loader/image-loader/index.d.ts +0 -2
- package/build/loader/image-loader/index.d.ts.map +0 -1
- package/build/loader/image-loader/index.js +0 -1
- package/build/match-device/index.d.ts.map +0 -1
- package/build/match-device/use-match-device.d.ts.map +0 -1
- package/build/match-device/use-match-device.types.d.ts.map +0 -1
- package/build/match-resolution/index.d.ts.map +0 -1
- package/build/match-resolution/use-match-resolution.d.ts.map +0 -1
- package/build/match-resolution/use-match-resolution.types.d.ts.map +0 -1
- package/build/modal/modal.js +0 -14
- package/build/numbered-pagination/index.d.ts +0 -2
- package/build/numbered-pagination/index.d.ts.map +0 -1
- package/build/numbered-pagination/index.js +0 -1
- package/build/numbered-pagination/numbered-pagination.d.ts +0 -15
- package/build/numbered-pagination/numbered-pagination.d.ts.map +0 -1
- package/build/numbered-pagination/numbered-pagination.js +0 -17
- package/build/numbered-pagination/numbered-pagination.types.d.ts +0 -11
- package/build/numbered-pagination/numbered-pagination.types.d.ts.map +0 -1
- package/build/numbered-pagination/numbered-pagination.types.js +0 -1
- package/build/outside-alerter/index.d.ts.map +0 -1
- package/build/outside-alerter/use-outside-alerter.d.ts.map +0 -1
- package/build/outside-alerter/use-outside-alerter.types.d.ts.map +0 -1
- package/build/pagination/use-pagination.d.ts +0 -11
- package/build/pagination/use-pagination.d.ts.map +0 -1
- package/build/pagination/use-pagination.types.d.ts +0 -12
- package/build/pagination/use-pagination.types.d.ts.map +0 -1
- package/build/scroll-to/index.d.ts.map +0 -1
- package/build/scroll-to/use-scroll-to.d.ts.map +0 -1
- package/build/scroll-to/use-scroll-to.types.d.ts.map +0 -1
- package/build/select/select.d.ts.map +0 -1
- package/build/select/select.js +0 -42
- package/build/use-breadcrumb/use-breadcrumb.js +0 -23
- package/build/use-match-device/index.d.ts +0 -3
- package/build/use-match-device/use-match-device.d.ts +0 -3
- package/build/use-match-device/use-match-device.js +0 -25
- package/build/use-match-device/use-match-device.types.d.ts +0 -7
- package/build/use-match-device/use-match-device.types.js +0 -1
- package/build/use-match-resolution/index.d.ts +0 -3
- package/build/use-match-resolution/use-match-resolution.d.ts +0 -4
- package/build/use-match-resolution/use-match-resolution.d.ts.map +0 -1
- package/build/use-match-resolution/use-match-resolution.js +0 -49
- package/build/use-match-resolution/use-match-resolution.types.d.ts +0 -36
- package/build/use-match-resolution/use-match-resolution.types.js +0 -1
- package/build/use-outside-alerter/index.d.ts +0 -3
- package/build/use-outside-alerter/use-outside-alerter.d.ts +0 -4
- package/build/use-outside-alerter/use-outside-alerter.js +0 -22
- package/build/use-outside-alerter/use-outside-alerter.types.d.ts +0 -5
- package/build/use-outside-alerter/use-outside-alerter.types.js +0 -1
- package/build/use-pagination/use-pagination.js +0 -49
- package/build/use-pagination/use-pagination.types.js +0 -1
- package/build/use-scroll-to/index.d.ts +0 -3
- package/build/use-scroll-to/use-scroll-to.d.ts +0 -4
- package/build/use-scroll-to/use-scroll-to.js +0 -12
- package/build/use-scroll-to/use-scroll-to.types.d.ts +0 -4
- package/build/use-scroll-to/use-scroll-to.types.js +0 -1
- package/build/visible/index.d.ts +0 -2
- package/build/visible/index.d.ts.map +0 -1
- package/build/visible/use-visible.d.ts +0 -3
- package/build/visible/use-visible.d.ts.map +0 -1
- package/build/visible/use-visible.js +0 -19
- /package/{build → dist}/breadcrumb/breadcrumb.d.ts +0 -0
- /package/{build → dist}/breadcrumb/breadcrumb.d.ts.map +0 -0
- /package/{build → dist}/breadcrumb/breadcrumb.js +0 -0
- /package/{build → dist}/breadcrumb/icons/arrow.d.ts +0 -0
- /package/{build → dist}/breadcrumb/icons/arrow.d.ts.map +0 -0
- /package/{build → dist}/breadcrumb/icons/arrow.js +0 -0
- /package/{build → dist}/breadcrumb/icons/index.d.ts +0 -0
- /package/{build → dist}/breadcrumb/icons/index.d.ts.map +0 -0
- /package/{build → dist}/breadcrumb/icons/index.js +0 -0
- /package/{build → dist}/breadcrumb/index.d.ts +0 -0
- /package/{build → dist}/breadcrumb/index.d.ts.map +0 -0
- /package/{build → dist}/breadcrumb/index.js +0 -0
- /package/{build → dist}/country-selector/country-selector.d.ts +0 -0
- /package/{build → dist}/country-selector/country-selector.types.d.ts +0 -0
- /package/{build → dist}/country-selector/country-selector.types.d.ts.map +0 -0
- /package/{build → dist}/country-selector/country-selector.types.js +0 -0
- /package/{build → dist}/country-selector/icons/Ad.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ad.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ad.js +0 -0
- /package/{build → dist}/country-selector/icons/Ae.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ae.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ae.js +0 -0
- /package/{build → dist}/country-selector/icons/Af.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Af.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Af.js +0 -0
- /package/{build → dist}/country-selector/icons/Ag.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ag.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ag.js +0 -0
- /package/{build → dist}/country-selector/icons/Ai.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ai.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ai.js +0 -0
- /package/{build → dist}/country-selector/icons/Al.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Al.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Al.js +0 -0
- /package/{build → dist}/country-selector/icons/Am.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Am.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Am.js +0 -0
- /package/{build → dist}/country-selector/icons/Ao.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ao.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ao.js +0 -0
- /package/{build → dist}/country-selector/icons/Ar.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ar.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ar.js +0 -0
- /package/{build → dist}/country-selector/icons/As.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/As.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/As.js +0 -0
- /package/{build → dist}/country-selector/icons/At.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/At.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/At.js +0 -0
- /package/{build → dist}/country-selector/icons/Au.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Au.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Au.js +0 -0
- /package/{build → dist}/country-selector/icons/Aw.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Aw.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Aw.js +0 -0
- /package/{build → dist}/country-selector/icons/Az.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Az.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Az.js +0 -0
- /package/{build → dist}/country-selector/icons/Ba.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ba.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ba.js +0 -0
- /package/{build → dist}/country-selector/icons/Bb.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Bb.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Bb.js +0 -0
- /package/{build → dist}/country-selector/icons/Bd.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Bd.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Bd.js +0 -0
- /package/{build → dist}/country-selector/icons/Be.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Be.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Be.js +0 -0
- /package/{build → dist}/country-selector/icons/Bf.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Bf.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Bf.js +0 -0
- /package/{build → dist}/country-selector/icons/Bg.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Bg.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Bg.js +0 -0
- /package/{build → dist}/country-selector/icons/Bh.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Bh.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Bh.js +0 -0
- /package/{build → dist}/country-selector/icons/Bi.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Bi.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Bi.js +0 -0
- /package/{build → dist}/country-selector/icons/Bj.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Bj.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Bj.js +0 -0
- /package/{build → dist}/country-selector/icons/Bm.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Bm.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Bm.js +0 -0
- /package/{build → dist}/country-selector/icons/Bo.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Bo.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Bo.js +0 -0
- /package/{build → dist}/country-selector/icons/Br.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Br.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Br.js +0 -0
- /package/{build → dist}/country-selector/icons/Bs.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Bs.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Bs.js +0 -0
- /package/{build → dist}/country-selector/icons/Bt.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Bt.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Bt.js +0 -0
- /package/{build → dist}/country-selector/icons/Bw.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Bw.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Bw.js +0 -0
- /package/{build → dist}/country-selector/icons/By.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/By.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/By.js +0 -0
- /package/{build → dist}/country-selector/icons/Bz.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Bz.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Bz.js +0 -0
- /package/{build → dist}/country-selector/icons/Ca.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ca.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ca.js +0 -0
- /package/{build → dist}/country-selector/icons/Cd.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Cd.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Cd.js +0 -0
- /package/{build → dist}/country-selector/icons/Cf.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Cf.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Cf.js +0 -0
- /package/{build → dist}/country-selector/icons/Cg.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Cg.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Cg.js +0 -0
- /package/{build → dist}/country-selector/icons/Ch.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ch.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ch.js +0 -0
- /package/{build → dist}/country-selector/icons/Ci.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ci.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ci.js +0 -0
- /package/{build → dist}/country-selector/icons/Ck.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ck.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ck.js +0 -0
- /package/{build → dist}/country-selector/icons/Cl.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Cl.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Cl.js +0 -0
- /package/{build → dist}/country-selector/icons/Cm.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Cm.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Cm.js +0 -0
- /package/{build → dist}/country-selector/icons/Cn.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Cn.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Cn.js +0 -0
- /package/{build → dist}/country-selector/icons/Co.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Co.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Co.js +0 -0
- /package/{build → dist}/country-selector/icons/Cr.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Cr.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Cr.js +0 -0
- /package/{build → dist}/country-selector/icons/Cu.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Cu.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Cu.js +0 -0
- /package/{build → dist}/country-selector/icons/Cv.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Cv.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Cv.js +0 -0
- /package/{build → dist}/country-selector/icons/Cw.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Cw.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Cw.js +0 -0
- /package/{build → dist}/country-selector/icons/Cy.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Cy.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Cy.js +0 -0
- /package/{build → dist}/country-selector/icons/Cz.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Cz.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Cz.js +0 -0
- /package/{build → dist}/country-selector/icons/De.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/De.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/De.js +0 -0
- /package/{build → dist}/country-selector/icons/Dj.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Dj.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Dj.js +0 -0
- /package/{build → dist}/country-selector/icons/Dk.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Dk.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Dk.js +0 -0
- /package/{build → dist}/country-selector/icons/Dm.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Dm.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Dm.js +0 -0
- /package/{build → dist}/country-selector/icons/Do.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Do.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Do.js +0 -0
- /package/{build → dist}/country-selector/icons/Dz.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Dz.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Dz.js +0 -0
- /package/{build → dist}/country-selector/icons/Ec.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ec.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ec.js +0 -0
- /package/{build → dist}/country-selector/icons/Ee.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ee.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ee.js +0 -0
- /package/{build → dist}/country-selector/icons/Eg.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Eg.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Eg.js +0 -0
- /package/{build → dist}/country-selector/icons/Er.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Er.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Er.js +0 -0
- /package/{build → dist}/country-selector/icons/Es.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Es.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Es.js +0 -0
- /package/{build → dist}/country-selector/icons/Et.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Et.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Et.js +0 -0
- /package/{build → dist}/country-selector/icons/Fi.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Fi.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Fi.js +0 -0
- /package/{build → dist}/country-selector/icons/Fj.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Fj.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Fj.js +0 -0
- /package/{build → dist}/country-selector/icons/Fk.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Fk.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Fk.js +0 -0
- /package/{build → dist}/country-selector/icons/Fm.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Fm.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Fm.js +0 -0
- /package/{build → dist}/country-selector/icons/Fo.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Fo.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Fo.js +0 -0
- /package/{build → dist}/country-selector/icons/Fr.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Fr.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Fr.js +0 -0
- /package/{build → dist}/country-selector/icons/Ga.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ga.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ga.js +0 -0
- /package/{build → dist}/country-selector/icons/Gb.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Gb.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Gb.js +0 -0
- /package/{build → dist}/country-selector/icons/Gd.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Gd.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Gd.js +0 -0
- /package/{build → dist}/country-selector/icons/Ge.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ge.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ge.js +0 -0
- /package/{build → dist}/country-selector/icons/Gg.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Gg.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Gg.js +0 -0
- /package/{build → dist}/country-selector/icons/Gh.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Gh.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Gh.js +0 -0
- /package/{build → dist}/country-selector/icons/Gi.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Gi.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Gi.js +0 -0
- /package/{build → dist}/country-selector/icons/Gl.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Gl.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Gl.js +0 -0
- /package/{build → dist}/country-selector/icons/Gm.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Gm.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Gm.js +0 -0
- /package/{build → dist}/country-selector/icons/Gn.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Gn.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Gn.js +0 -0
- /package/{build → dist}/country-selector/icons/Gq.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Gq.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Gq.js +0 -0
- /package/{build → dist}/country-selector/icons/Gr.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Gr.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Gr.js +0 -0
- /package/{build → dist}/country-selector/icons/Gt.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Gt.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Gt.js +0 -0
- /package/{build → dist}/country-selector/icons/Gu.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Gu.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Gu.js +0 -0
- /package/{build → dist}/country-selector/icons/Gw.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Gw.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Gw.js +0 -0
- /package/{build → dist}/country-selector/icons/Hk.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Hk.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Hk.js +0 -0
- /package/{build → dist}/country-selector/icons/Hn.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Hn.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Hn.js +0 -0
- /package/{build → dist}/country-selector/icons/Hr.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Hr.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Hr.js +0 -0
- /package/{build → dist}/country-selector/icons/Ht.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ht.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ht.js +0 -0
- /package/{build → dist}/country-selector/icons/Hu.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Hu.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Hu.js +0 -0
- /package/{build → dist}/country-selector/icons/Id.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Id.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Id.js +0 -0
- /package/{build → dist}/country-selector/icons/Ie.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ie.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ie.js +0 -0
- /package/{build → dist}/country-selector/icons/Il.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Il.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Il.js +0 -0
- /package/{build → dist}/country-selector/icons/Im.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Im.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Im.js +0 -0
- /package/{build → dist}/country-selector/icons/In.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/In.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/In.js +0 -0
- /package/{build → dist}/country-selector/icons/Io.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Io.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Io.js +0 -0
- /package/{build → dist}/country-selector/icons/Iq.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Iq.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Iq.js +0 -0
- /package/{build → dist}/country-selector/icons/Ir.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ir.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ir.js +0 -0
- /package/{build → dist}/country-selector/icons/Is.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Is.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Is.js +0 -0
- /package/{build → dist}/country-selector/icons/It.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/It.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/It.js +0 -0
- /package/{build → dist}/country-selector/icons/Je.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Je.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Je.js +0 -0
- /package/{build → dist}/country-selector/icons/Jm.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Jm.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Jm.js +0 -0
- /package/{build → dist}/country-selector/icons/Jo.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Jo.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Jo.js +0 -0
- /package/{build → dist}/country-selector/icons/Jp.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Jp.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Jp.js +0 -0
- /package/{build → dist}/country-selector/icons/Ke.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ke.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ke.js +0 -0
- /package/{build → dist}/country-selector/icons/Kg.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Kg.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Kg.js +0 -0
- /package/{build → dist}/country-selector/icons/Kh.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Kh.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Kh.js +0 -0
- /package/{build → dist}/country-selector/icons/Ki.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ki.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ki.js +0 -0
- /package/{build → dist}/country-selector/icons/Km.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Km.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Km.js +0 -0
- /package/{build → dist}/country-selector/icons/Kn.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Kn.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Kn.js +0 -0
- /package/{build → dist}/country-selector/icons/Kp.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Kp.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Kp.js +0 -0
- /package/{build → dist}/country-selector/icons/Kr.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Kr.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Kr.js +0 -0
- /package/{build → dist}/country-selector/icons/Kw.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Kw.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Kw.js +0 -0
- /package/{build → dist}/country-selector/icons/Ky.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ky.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ky.js +0 -0
- /package/{build → dist}/country-selector/icons/Kz.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Kz.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Kz.js +0 -0
- /package/{build → dist}/country-selector/icons/La.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/La.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/La.js +0 -0
- /package/{build → dist}/country-selector/icons/Lb.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Lb.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Lb.js +0 -0
- /package/{build → dist}/country-selector/icons/Li.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Li.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Li.js +0 -0
- /package/{build → dist}/country-selector/icons/Lk.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Lk.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Lk.js +0 -0
- /package/{build → dist}/country-selector/icons/Lr.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Lr.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Lr.js +0 -0
- /package/{build → dist}/country-selector/icons/Ls.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ls.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ls.js +0 -0
- /package/{build → dist}/country-selector/icons/Lt.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Lt.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Lt.js +0 -0
- /package/{build → dist}/country-selector/icons/Lu.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Lu.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Lu.js +0 -0
- /package/{build → dist}/country-selector/icons/Lv.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Lv.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Lv.js +0 -0
- /package/{build → dist}/country-selector/icons/Ly.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ly.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ly.js +0 -0
- /package/{build → dist}/country-selector/icons/Ma.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ma.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ma.js +0 -0
- /package/{build → dist}/country-selector/icons/Mc.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Mc.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Mc.js +0 -0
- /package/{build → dist}/country-selector/icons/Md.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Md.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Md.js +0 -0
- /package/{build → dist}/country-selector/icons/Me.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Me.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Me.js +0 -0
- /package/{build → dist}/country-selector/icons/Mg.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Mg.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Mg.js +0 -0
- /package/{build → dist}/country-selector/icons/Mh.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Mh.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Mh.js +0 -0
- /package/{build → dist}/country-selector/icons/Mk.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Mk.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Mk.js +0 -0
- /package/{build → dist}/country-selector/icons/Ml.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ml.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ml.js +0 -0
- /package/{build → dist}/country-selector/icons/Mm.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Mm.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Mm.js +0 -0
- /package/{build → dist}/country-selector/icons/Mn.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Mn.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Mn.js +0 -0
- /package/{build → dist}/country-selector/icons/Mo.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Mo.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Mo.js +0 -0
- /package/{build → dist}/country-selector/icons/Mp.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Mp.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Mp.js +0 -0
- /package/{build → dist}/country-selector/icons/Mq.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Mq.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Mq.js +0 -0
- /package/{build → dist}/country-selector/icons/Mr.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Mr.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Mr.js +0 -0
- /package/{build → dist}/country-selector/icons/Ms.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ms.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ms.js +0 -0
- /package/{build → dist}/country-selector/icons/Mt.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Mt.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Mt.js +0 -0
- /package/{build → dist}/country-selector/icons/Mu.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Mu.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Mu.js +0 -0
- /package/{build → dist}/country-selector/icons/Mv.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Mv.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Mv.js +0 -0
- /package/{build → dist}/country-selector/icons/Mw.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Mw.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Mw.js +0 -0
- /package/{build → dist}/country-selector/icons/Mx.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Mx.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Mx.js +0 -0
- /package/{build → dist}/country-selector/icons/My.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/My.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/My.js +0 -0
- /package/{build → dist}/country-selector/icons/Mz.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Mz.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Mz.js +0 -0
- /package/{build → dist}/country-selector/icons/Na.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Na.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Na.js +0 -0
- /package/{build → dist}/country-selector/icons/Nato.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Nato.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Nato.js +0 -0
- /package/{build → dist}/country-selector/icons/Ne.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ne.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ne.js +0 -0
- /package/{build → dist}/country-selector/icons/Nf.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Nf.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Nf.js +0 -0
- /package/{build → dist}/country-selector/icons/Ng.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ng.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ng.js +0 -0
- /package/{build → dist}/country-selector/icons/Ni.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ni.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ni.js +0 -0
- /package/{build → dist}/country-selector/icons/Nl.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Nl.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Nl.js +0 -0
- /package/{build → dist}/country-selector/icons/No.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/No.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/No.js +0 -0
- /package/{build → dist}/country-selector/icons/Np.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Np.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Np.js +0 -0
- /package/{build → dist}/country-selector/icons/Nr.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Nr.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Nr.js +0 -0
- /package/{build → dist}/country-selector/icons/Nu.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Nu.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Nu.js +0 -0
- /package/{build → dist}/country-selector/icons/Nz.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Nz.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Nz.js +0 -0
- /package/{build → dist}/country-selector/icons/Om.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Om.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Om.js +0 -0
- /package/{build → dist}/country-selector/icons/Pa.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Pa.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Pa.js +0 -0
- /package/{build → dist}/country-selector/icons/Pe.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Pe.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Pe.js +0 -0
- /package/{build → dist}/country-selector/icons/Pf.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Pf.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Pf.js +0 -0
- /package/{build → dist}/country-selector/icons/Pg.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Pg.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Pg.js +0 -0
- /package/{build → dist}/country-selector/icons/Ph.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ph.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ph.js +0 -0
- /package/{build → dist}/country-selector/icons/Pk.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Pk.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Pk.js +0 -0
- /package/{build → dist}/country-selector/icons/Pl.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Pl.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Pl.js +0 -0
- /package/{build → dist}/country-selector/icons/Pn.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Pn.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Pn.js +0 -0
- /package/{build → dist}/country-selector/icons/Pr.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Pr.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Pr.js +0 -0
- /package/{build → dist}/country-selector/icons/Ps.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ps.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ps.js +0 -0
- /package/{build → dist}/country-selector/icons/Pt.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Pt.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Pt.js +0 -0
- /package/{build → dist}/country-selector/icons/Pw.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Pw.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Pw.js +0 -0
- /package/{build → dist}/country-selector/icons/Py.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Py.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Py.js +0 -0
- /package/{build → dist}/country-selector/icons/Qa.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Qa.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Qa.js +0 -0
- /package/{build → dist}/country-selector/icons/Ro.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ro.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ro.js +0 -0
- /package/{build → dist}/country-selector/icons/Rs.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Rs.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Rs.js +0 -0
- /package/{build → dist}/country-selector/icons/Ru.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ru.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ru.js +0 -0
- /package/{build → dist}/country-selector/icons/Rw.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Rw.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Rw.js +0 -0
- /package/{build → dist}/country-selector/icons/Sa.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Sa.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Sa.js +0 -0
- /package/{build → dist}/country-selector/icons/Sb.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Sb.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Sb.js +0 -0
- /package/{build → dist}/country-selector/icons/Sc.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Sc.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Sc.js +0 -0
- /package/{build → dist}/country-selector/icons/Sd.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Sd.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Sd.js +0 -0
- /package/{build → dist}/country-selector/icons/Se.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Se.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Se.js +0 -0
- /package/{build → dist}/country-selector/icons/Sg.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Sg.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Sg.js +0 -0
- /package/{build → dist}/country-selector/icons/Si.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Si.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Si.js +0 -0
- /package/{build → dist}/country-selector/icons/Sk.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Sk.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Sk.js +0 -0
- /package/{build → dist}/country-selector/icons/Sl.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Sl.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Sl.js +0 -0
- /package/{build → dist}/country-selector/icons/Sm.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Sm.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Sm.js +0 -0
- /package/{build → dist}/country-selector/icons/Sn.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Sn.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Sn.js +0 -0
- /package/{build → dist}/country-selector/icons/So.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/So.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/So.js +0 -0
- /package/{build → dist}/country-selector/icons/Sq.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Sq.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Sq.js +0 -0
- /package/{build → dist}/country-selector/icons/Sr.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Sr.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Sr.js +0 -0
- /package/{build → dist}/country-selector/icons/Ss.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ss.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ss.js +0 -0
- /package/{build → dist}/country-selector/icons/St.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/St.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/St.js +0 -0
- /package/{build → dist}/country-selector/icons/Sv.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Sv.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Sv.js +0 -0
- /package/{build → dist}/country-selector/icons/Sx.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Sx.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Sx.js +0 -0
- /package/{build → dist}/country-selector/icons/Sy.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Sy.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Sy.js +0 -0
- /package/{build → dist}/country-selector/icons/Sz.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Sz.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Sz.js +0 -0
- /package/{build → dist}/country-selector/icons/Tc.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Tc.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Tc.js +0 -0
- /package/{build → dist}/country-selector/icons/Td.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Td.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Td.js +0 -0
- /package/{build → dist}/country-selector/icons/Tg.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Tg.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Tg.js +0 -0
- /package/{build → dist}/country-selector/icons/Th.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Th.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Th.js +0 -0
- /package/{build → dist}/country-selector/icons/Tibet.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Tibet.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Tibet.js +0 -0
- /package/{build → dist}/country-selector/icons/Tj.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Tj.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Tj.js +0 -0
- /package/{build → dist}/country-selector/icons/Tk.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Tk.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Tk.js +0 -0
- /package/{build → dist}/country-selector/icons/Tm.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Tm.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Tm.js +0 -0
- /package/{build → dist}/country-selector/icons/Tn.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Tn.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Tn.js +0 -0
- /package/{build → dist}/country-selector/icons/To.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/To.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/To.js +0 -0
- /package/{build → dist}/country-selector/icons/Tr.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Tr.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Tr.js +0 -0
- /package/{build → dist}/country-selector/icons/Tt.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Tt.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Tt.js +0 -0
- /package/{build → dist}/country-selector/icons/Tv.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Tv.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Tv.js +0 -0
- /package/{build → dist}/country-selector/icons/Tw.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Tw.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Tw.js +0 -0
- /package/{build → dist}/country-selector/icons/Tz.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Tz.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Tz.js +0 -0
- /package/{build → dist}/country-selector/icons/Ua.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ua.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ua.js +0 -0
- /package/{build → dist}/country-selector/icons/Ug.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ug.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ug.js +0 -0
- /package/{build → dist}/country-selector/icons/Us.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Us.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Us.js +0 -0
- /package/{build → dist}/country-selector/icons/Uy.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Uy.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Uy.js +0 -0
- /package/{build → dist}/country-selector/icons/Uz.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Uz.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Uz.js +0 -0
- /package/{build → dist}/country-selector/icons/Ve.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ve.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ve.js +0 -0
- /package/{build → dist}/country-selector/icons/Vi.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Vi.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Vi.js +0 -0
- /package/{build → dist}/country-selector/icons/Vn.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Vn.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Vn.js +0 -0
- /package/{build → dist}/country-selector/icons/Vu.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Vu.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Vu.js +0 -0
- /package/{build → dist}/country-selector/icons/Ws.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ws.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ws.js +0 -0
- /package/{build → dist}/country-selector/icons/Ye.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Ye.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Ye.js +0 -0
- /package/{build → dist}/country-selector/icons/Za.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Za.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Za.js +0 -0
- /package/{build → dist}/country-selector/icons/Zm.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Zm.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Zm.js +0 -0
- /package/{build → dist}/country-selector/icons/Zw.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/Zw.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/Zw.js +0 -0
- /package/{build → dist}/country-selector/icons/index.d.ts +0 -0
- /package/{build → dist}/country-selector/icons/index.d.ts.map +0 -0
- /package/{build → dist}/country-selector/icons/index.js +0 -0
- /package/{build → dist}/country-selector/index.d.ts +0 -0
- /package/{build → dist}/country-selector/index.d.ts.map +0 -0
- /package/{build → dist}/country-selector/index.js +0 -0
- /package/{build → dist}/index.d.ts +0 -0
- /package/{build → dist}/index.d.ts.map +0 -0
- /package/{build → dist}/index.js +0 -0
- /package/{build → dist}/input/index.d.ts +0 -0
- /package/{build → dist}/input/index.d.ts.map +0 -0
- /package/{build → dist}/input/index.js +0 -0
- /package/{build → dist}/input/input.d.ts +0 -0
- /package/{build → dist}/input/input.d.ts.map +0 -0
- /package/{build → dist}/input/input.js +0 -0
- /package/{build → dist}/input/input.types.d.ts +0 -0
- /package/{build → dist}/input/input.types.d.ts.map +0 -0
- /package/{build → dist}/input/input.types.js +0 -0
- /package/{build → dist}/loader/index.d.ts +0 -0
- /package/{build → dist}/loader/index.d.ts.map +0 -0
- /package/{build → dist}/loader/index.js +0 -0
- /package/{build → dist}/loader/loader.d.ts +0 -0
- /package/{build → dist}/loader/loader.d.ts.map +0 -0
- /package/{build → dist}/loader/loader.js +0 -0
- /package/{build → dist}/modal/index.d.ts +0 -0
- /package/{build → dist}/modal/index.d.ts.map +0 -0
- /package/{build → dist}/modal/index.js +0 -0
- /package/{build → dist}/modal/modal.d.ts +0 -0
- /package/{build → dist}/modal/modal.d.ts.map +0 -0
- /package/{build → dist}/mount-react-hook/index.d.ts +0 -0
- /package/{build → dist}/mount-react-hook/index.d.ts.map +0 -0
- /package/{build → dist}/mount-react-hook/index.js +0 -0
- /package/{build → dist}/mount-react-hook/mount-react-hook.d.ts +0 -0
- /package/{build → dist}/mount-react-hook/mount-react-hook.d.ts.map +0 -0
- /package/{build → dist}/mount-react-hook/mount-react-hook.js +0 -0
- /package/{build → dist}/mount-react-hook/mount-react-hook.types.d.ts +0 -0
- /package/{build → dist}/mount-react-hook/mount-react-hook.types.d.ts.map +0 -0
- /package/{build → dist}/mount-react-hook/mount-react-hook.types.js +0 -0
- /package/{build → dist}/pagination/index.d.ts +0 -0
- /package/{build → dist}/pagination/index.d.ts.map +0 -0
- /package/{build → dist}/pagination/index.js +0 -0
- /package/{build → dist}/pagination/pagination.d.ts +0 -0
- /package/{build → dist}/pagination/pagination.d.ts.map +0 -0
- /package/{build → dist}/pagination/pagination.js +0 -0
- /package/{build → dist}/pagination/pagination.types.d.ts +0 -0
- /package/{build → dist}/pagination/pagination.types.d.ts.map +0 -0
- /package/{build → dist}/pagination/pagination.types.js +0 -0
- /package/{build → dist}/select/icons/ArrowBottom.d.ts +0 -0
- /package/{build → dist}/select/icons/ArrowBottom.d.ts.map +0 -0
- /package/{build → dist}/select/icons/ArrowBottom.js +0 -0
- /package/{build → dist}/select/icons/index.d.ts +0 -0
- /package/{build → dist}/select/icons/index.d.ts.map +0 -0
- /package/{build → dist}/select/icons/index.js +0 -0
- /package/{build → dist}/select/index.d.ts +0 -0
- /package/{build → dist}/select/index.d.ts.map +0 -0
- /package/{build → dist}/select/index.js +0 -0
- /package/{build → dist}/select/select.d.ts +0 -0
- /package/{build → dist}/select/select.types.d.ts +0 -0
- /package/{build → dist}/select/select.types.d.ts.map +0 -0
- /package/{build → dist}/select/select.types.js +0 -0
- /package/{build → dist}/table/index.d.ts +0 -0
- /package/{build → dist}/table/index.d.ts.map +0 -0
- /package/{build → dist}/table/index.js +0 -0
- /package/{build → dist}/table/table.d.ts +0 -0
- /package/{build → dist}/table/table.d.ts.map +0 -0
- /package/{build → dist}/table/table.js +0 -0
- /package/{build → dist}/table/table.types.d.ts +0 -0
- /package/{build → dist}/table/table.types.d.ts.map +0 -0
- /package/{build → dist}/table/table.types.js +0 -0
- /package/{build → dist}/use-breadcrumb/index.d.ts +0 -0
- /package/{build → dist}/use-breadcrumb/index.d.ts.map +0 -0
- /package/{build → dist}/use-breadcrumb/index.js +0 -0
- /package/{build → dist}/use-breadcrumb/use-breadcrumb.d.ts +0 -0
- /package/{build → dist}/use-breadcrumb/use-breadcrumb.d.ts.map +0 -0
- /package/{build/breadcrumb → dist/use-breadcrumb}/use-breadcrumb.js +0 -0
- /package/{build → dist}/use-breadcrumb/use-breadcrumb.types.d.ts +0 -0
- /package/{build → dist}/use-breadcrumb/use-breadcrumb.types.d.ts.map +0 -0
- /package/{build → dist}/use-breadcrumb/use-breadcrumb.types.js +0 -0
- /package/{build/match-device → dist/use-match-device}/index.d.ts +0 -0
- /package/{build → dist}/use-match-device/index.d.ts.map +0 -0
- /package/{build/match-device → dist/use-match-device}/index.js +0 -0
- /package/{build/match-device → dist/use-match-device}/use-match-device.d.ts +0 -0
- /package/{build → dist}/use-match-device/use-match-device.d.ts.map +0 -0
- /package/{build/match-device → dist/use-match-device}/use-match-device.js +0 -0
- /package/{build/match-device → dist/use-match-device}/use-match-device.types.d.ts +0 -0
- /package/{build → dist}/use-match-device/use-match-device.types.d.ts.map +0 -0
- /package/{build/match-device → dist/use-match-device}/use-match-device.types.js +0 -0
- /package/{build/match-resolution → dist/use-match-resolution}/index.d.ts +0 -0
- /package/{build → dist}/use-match-resolution/index.d.ts.map +0 -0
- /package/{build/match-resolution → dist/use-match-resolution}/index.js +0 -0
- /package/{build/match-resolution → dist/use-match-resolution}/use-match-resolution.d.ts +0 -0
- /package/{build/match-resolution → dist/use-match-resolution}/use-match-resolution.js +0 -0
- /package/{build/match-resolution → dist/use-match-resolution}/use-match-resolution.types.d.ts +0 -0
- /package/{build → dist}/use-match-resolution/use-match-resolution.types.d.ts.map +0 -0
- /package/{build/match-resolution → dist/use-match-resolution}/use-match-resolution.types.js +0 -0
- /package/{build/outside-alerter → dist/use-outside-alerter}/index.d.ts +0 -0
- /package/{build → dist}/use-outside-alerter/index.d.ts.map +0 -0
- /package/{build/outside-alerter → dist/use-outside-alerter}/index.js +0 -0
- /package/{build/outside-alerter → dist/use-outside-alerter}/use-outside-alerter.d.ts +0 -0
- /package/{build → dist}/use-outside-alerter/use-outside-alerter.d.ts.map +0 -0
- /package/{build/outside-alerter → dist/use-outside-alerter}/use-outside-alerter.js +0 -0
- /package/{build/outside-alerter → dist/use-outside-alerter}/use-outside-alerter.types.d.ts +0 -0
- /package/{build → dist}/use-outside-alerter/use-outside-alerter.types.d.ts.map +0 -0
- /package/{build/outside-alerter → dist/use-outside-alerter}/use-outside-alerter.types.js +0 -0
- /package/{build → dist}/use-pagination/index.d.ts +0 -0
- /package/{build → dist}/use-pagination/index.d.ts.map +0 -0
- /package/{build → dist}/use-pagination/index.js +0 -0
- /package/{build → dist}/use-pagination/use-pagination.d.ts +0 -0
- /package/{build → dist}/use-pagination/use-pagination.d.ts.map +0 -0
- /package/{build/pagination → dist/use-pagination}/use-pagination.js +0 -0
- /package/{build → dist}/use-pagination/use-pagination.types.d.ts +0 -0
- /package/{build → dist}/use-pagination/use-pagination.types.d.ts.map +0 -0
- /package/{build/pagination → dist/use-pagination}/use-pagination.types.js +0 -0
- /package/{build/scroll-to → dist/use-scroll-to}/index.d.ts +0 -0
- /package/{build → dist}/use-scroll-to/index.d.ts.map +0 -0
- /package/{build/scroll-to → dist/use-scroll-to}/index.js +0 -0
- /package/{build/scroll-to → dist/use-scroll-to}/use-scroll-to.d.ts +0 -0
- /package/{build → dist}/use-scroll-to/use-scroll-to.d.ts.map +0 -0
- /package/{build/scroll-to → dist/use-scroll-to}/use-scroll-to.js +0 -0
- /package/{build/scroll-to → dist/use-scroll-to}/use-scroll-to.types.d.ts +0 -0
- /package/{build → dist}/use-scroll-to/use-scroll-to.types.d.ts.map +0 -0
- /package/{build/scroll-to → dist/use-scroll-to}/use-scroll-to.types.js +0 -0
- /package/{build → dist}/use-visible/index.d.ts +0 -0
- /package/{build → dist}/use-visible/index.d.ts.map +0 -0
- /package/{build → dist}/use-visible/index.js +0 -0
- /package/{build → dist}/use-visible/use-visible.d.ts +0 -0
- /package/{build → dist}/use-visible/use-visible.d.ts.map +0 -0
- /package/{build → dist}/use-visible/use-visible.js +0 -0
- /package/{build → dist}/wizard/index.d.ts +0 -0
- /package/{build → dist}/wizard/index.d.ts.map +0 -0
- /package/{build → dist}/wizard/index.js +0 -0
- /package/{build → dist}/wizard/wizard.d.ts +0 -0
- /package/{build → dist}/wizard/wizard.d.ts.map +0 -0
- /package/{build → dist}/wizard/wizard.js +0 -0
- /package/{build → dist}/wizard/wizard.types.d.ts +0 -0
- /package/{build → dist}/wizard/wizard.types.d.ts.map +0 -0
- /package/{build → dist}/wizard/wizard.types.js +0 -0
- /package/{build/use-match-device/index.js → src/use-match-device/index.ts} +0 -0
- /package/{build/use-match-resolution/index.js → src/use-match-resolution/index.ts} +0 -0
- /package/{build/use-outside-alerter/index.js → src/use-outside-alerter/index.ts} +0 -0
- /package/{build/use-scroll-to/index.js → src/use-scroll-to/index.ts} +0 -0
- /package/{build/visible/index.js → src/use-visible/index.ts} +0 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgGw = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 336" {...props}>
|
|
5
|
+
<g fill="none">
|
|
6
|
+
<path
|
|
7
|
+
fill="#FFE15A"
|
|
8
|
+
d="M512.001 168H0V9.103A8.829 8.829 0 0 1 8.828.275h494.345a8.829 8.829 0 0 1 8.828 8.828V168z"
|
|
9
|
+
/>
|
|
10
|
+
<path
|
|
11
|
+
fill="#73AF00"
|
|
12
|
+
d="M0 168h512v158.897a8.829 8.829 0 0 1-8.828 8.828H8.828A8.829 8.829 0 0 1 0 326.897V168z"
|
|
13
|
+
/>
|
|
14
|
+
<path
|
|
15
|
+
fill="#FF4B55"
|
|
16
|
+
d="M167.724.275v335.449H8.828A8.829 8.829 0 0 1 0 326.896V9.103A8.829 8.829 0 0 1 8.828.275h158.896z"
|
|
17
|
+
/>
|
|
18
|
+
<path
|
|
19
|
+
fill="#464655"
|
|
20
|
+
d="m82.197 123.959-9.731 29.18-30.759.238c-1.686.013-2.386 2.165-1.028 3.167l24.744 18.272-9.278 29.326c-.509 1.608 1.322 2.937 2.694 1.958l25.024-17.886 25.024 17.887c1.372.981 3.202-.35 2.694-1.957l-9.278-29.326 24.744-18.272c1.356-1.002.658-3.154-1.028-3.167l-30.759-.238-9.731-29.18c-.536-1.601-2.798-1.601-3.332-.002z"
|
|
21
|
+
/>
|
|
22
|
+
</g>
|
|
23
|
+
</svg>
|
|
24
|
+
);
|
|
25
|
+
export default SvgGw;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgHk = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 336" {...props}>
|
|
5
|
+
<g fill="none">
|
|
6
|
+
<path
|
|
7
|
+
fill="#FF4B55"
|
|
8
|
+
d="M503.172 335.724H8.828A8.829 8.829 0 0 1 0 326.896V9.103A8.829 8.829 0 0 1 8.828.275h494.345a8.829 8.829 0 0 1 8.828 8.828v317.793a8.83 8.83 0 0 1-8.829 8.828z"
|
|
9
|
+
/>
|
|
10
|
+
<g fill="#F5F5F5">
|
|
11
|
+
<path d="M224.477 180.922c-11.128.115-23.624-3.449-34.573-15.518-.755-.832-.649-2.143.209-2.87l.003-.003c.832-.705 2.062-.596 2.797.211 16.69 18.327 37.376 15.118 49.735 10.69-4.566.203-10.303-.14-13.993-2.565-15.415-10.133-8.433-20.913-18.671-33.944-10.173-12.948-19.327-12.631-33.741-10.446-14.27 2.162-18.816-8.305-20.231-14.114-.253-1.041-1.705-1.106-2.077-.103-17.786 48.054 35.694 107.514 90.601 64.761-5.418 1.995-12.396 3.823-20.059 3.901zm-40.067-16.307c-.312.858-1.537.824-1.802-.05l-2.048-6.749-7.049-.247c-.913-.032-1.259-1.207-.51-1.729l5.786-4.033-1.943-6.781c-.252-.877.759-1.57 1.487-1.02l5.624 4.256 5.848-3.944c.757-.511 1.729.236 1.429 1.099l-2.31 6.664 5.558 4.343c.719.563.309 1.717-.604 1.699l-7.052-.138-2.414 6.63zm79.459-15.62c8.836-6.765 20.972-11.407 36.972-8.317 1.103.213 1.805 1.325 1.555 2.421l-.001.004c-.243 1.064-1.293 1.714-2.365 1.508-24.346-4.657-38.976 10.317-46.209 21.272 3.532-2.901 8.329-6.067 12.736-6.338 18.412-1.137 19.289 11.678 35.298 15.965 15.905 4.259 23.04-1.483 33.266-11.876 10.122-10.289 20.038-4.639 24.653-.839.826.681 2.027-.137 1.723-1.163-14.586-49.12-93.042-64.627-111.339 2.513 3.137-4.843 7.626-10.491 13.711-15.15zm41.842-10.979c-.265-.874.736-1.582 1.472-1.042l5.686 4.172 5.789-4.03c.749-.522 1.731.211 1.446 1.078l-2.211 6.698 5.621 4.26c.728.552.334 1.713-.578 1.708l-7.053-.033-2.314 6.663c-.3.863-1.525.847-1.803-.022l-2.148-6.718-7.052-.142c-.913-.019-1.277-1.188-.535-1.721l5.726-4.119-2.046-6.752z" />
|
|
12
|
+
<path d="M234.399 153.626c-4.34-10.248-5.8-23.159 1.195-37.877.482-1.015 1.735-1.416 2.733-.899l.004.002c.969.501 1.335 1.681.87 2.667-10.599 22.408.241 40.318 9.038 50.061-1.926-4.146-3.79-9.581-2.952-13.917 3.505-18.111 16.131-15.756 24.286-30.184 8.103-14.335 4.327-22.679-3.178-35.178-7.43-12.374.521-20.561 5.355-24.079.865-.63.374-1.997-.695-1.959-51.207 1.837-85.845 73.92-25.416 108.428-3.905-4.25-8.251-10.008-11.24-17.065zm-.165-43.258c-.913.038-1.347-1.108-.64-1.685l5.462-4.462-2.454-6.613c-.318-.856.638-1.624 1.405-1.13l5.932 3.816 5.53-4.377c.716-.567 1.741.104 1.508.988l-1.796 6.82 5.871 3.907c.76.506.439 1.688-.472 1.74l-7.042.399-1.901 6.792c-.246.879-1.47.939-1.801.088l-2.556-6.573-7.046.29zm40.063 66.511c9.198 6.264 17.418 16.328 19.508 32.489.145 1.115-.692 2.13-1.811 2.237h-.006c-1.086.104-2.033-.69-2.175-1.771-3.225-24.577-22.037-33.763-34.71-37.19 3.863 2.442 8.375 6.002 10.018 10.101 6.862 17.123-5.028 21.982-4.071 38.527.951 16.438 8.646 21.408 21.724 27.852 12.947 6.379 10.698 17.566 8.538 23.143-.386.999.767 1.881 1.645 1.27 42.052-29.276 32.134-108.631-37.355-104.915 5.591 1.457 12.362 3.944 18.695 8.257zm23.567 36.276c.747-.526 1.732.202 1.451 1.07l-2.175 6.709 5.644 4.231c.73.547.344 1.71-.569 1.711l-7.053.004-2.279 6.675c-.295.864-1.521.855-1.803-.013l-2.184-6.707-7.052-.105c-.914-.013-1.283-1.182-.545-1.719l5.704-4.15-2.08-6.74c-.269-.873.727-1.586 1.466-1.049l5.709 4.142 5.766-4.059z" />
|
|
13
|
+
<path d="M251.292 196.822c-3.168 10.668-10.254 21.56-25.013 28.469-1.018.477-2.239-.011-2.681-1.044l-.002-.004c-.429-1.003.039-2.146 1.025-2.611 22.43-10.551 25.457-31.265 24.865-44.38-1.151 4.424-3.169 9.804-6.573 12.617-14.223 11.747-22.47 1.899-37.939 7.846-15.37 5.908-17.763 14.75-19.922 29.169-2.136 14.274-13.479 15.535-19.447 15.176-1.068-.064-1.559 1.303-.71 1.954 40.684 31.15 113.258-2.444 88.574-67.507.314 5.762.005 12.968-2.177 20.315zm-27.386 33.486c.728.552.335 1.711-.578 1.708l-7.052-.031-2.312 6.664c-.299.863-1.525.847-1.803-.022l-2.151-6.718-7.052-.14c-.913-.018-1.278-1.188-.536-1.721l5.724-4.121-2.046-6.75c-.265-.874.735-1.582 1.471-1.042l5.688 4.17 5.788-4.032c.749-.522 1.731.211 1.446 1.078l-2.208 6.698 5.621 4.259z" />
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
17
|
+
);
|
|
18
|
+
export default SvgHk;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgHn = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 336" {...props}>
|
|
5
|
+
<g fill="none">
|
|
6
|
+
<path
|
|
7
|
+
fill="#4173CD"
|
|
8
|
+
d="M512.001 112.092H0V9.103A8.829 8.829 0 0 1 8.828.275h494.345a8.829 8.829 0 0 1 8.828 8.828v102.989zm-8.829 223.632H8.828A8.829 8.829 0 0 1 0 326.896V223.908h512v102.988a8.828 8.828 0 0 1-8.828 8.828z"
|
|
9
|
+
/>
|
|
10
|
+
<path fill="#F5F5F5" d="M0 112.088h512V223.9H0z" />
|
|
11
|
+
<path
|
|
12
|
+
fill="#4173CD"
|
|
13
|
+
d="m257.277 153.578 3.159 9.473 9.985.077c1.293.01 1.828 1.66.789 2.428l-8.033 5.932 3.012 9.521c.389 1.233-1.013 2.252-2.066 1.501L256 176.703l-8.124 5.806c-1.052.751-2.455-.268-2.066-1.501l3.012-9.521-8.033-5.932c-1.039-.768-.504-2.418.789-2.428l9.985-.077 3.159-9.473c.411-1.225 2.145-1.225 2.555.001zm-90.173 25.423 3.159 9.473 9.985.077c1.293.01 1.828 1.66.789 2.428l-8.033 5.932 3.012 9.521c.39 1.233-1.013 2.252-2.066 1.501l-8.124-5.806-8.124 5.806c-1.052.751-2.455-.268-2.066-1.501l3.012-9.521-8.033-5.932c-1.039-.768-.504-2.418.789-2.428l9.985-.077 3.159-9.473c.412-1.226 2.147-1.226 2.556 0zm0-50.847 3.159 9.473 9.985.077c1.293.01 1.828 1.66.789 2.428l-8.033 5.932 3.012 9.521c.39 1.233-1.013 2.252-2.066 1.501l-8.124-5.806-8.124 5.806c-1.052.751-2.455-.268-2.066-1.501l3.012-9.521-8.033-5.932c-1.039-.768-.504-2.418.789-2.428l9.985-.077 3.159-9.473c.412-1.225 2.147-1.225 2.556 0zm180.345 50.847 3.159 9.473 9.985.077c1.293.01 1.828 1.66.789 2.428l-8.033 5.932 3.012 9.521c.39 1.233-1.013 2.252-2.066 1.501l-8.124-5.806-8.124 5.806c-1.052.751-2.455-.268-2.066-1.501l3.012-9.521-8.033-5.932c-1.041-.768-.504-2.418.789-2.428l9.985-.077 3.159-9.473c.412-1.226 2.147-1.226 2.556 0zm0-50.847 3.159 9.473 9.985.077c1.293.01 1.828 1.66.789 2.428l-8.033 5.932 3.012 9.521c.39 1.233-1.013 2.252-2.066 1.501l-8.124-5.806-8.124 5.806c-1.052.751-2.455-.268-2.066-1.501l3.012-9.521-8.033-5.932c-1.041-.768-.504-2.418.789-2.428l9.985-.077 3.159-9.473c.412-1.225 2.147-1.225 2.556 0z"
|
|
14
|
+
/>
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
17
|
+
);
|
|
18
|
+
export default SvgHn;
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgHr = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 336" {...props}>
|
|
5
|
+
<g fill="none">
|
|
6
|
+
<path
|
|
7
|
+
fill="#41479B"
|
|
8
|
+
d="M0 223.908h512v102.988a8.829 8.829 0 0 1-8.828 8.828H8.828A8.829 8.829 0 0 1 0 326.896V223.908z"
|
|
9
|
+
/>
|
|
10
|
+
<path
|
|
11
|
+
fill="#FF4B55"
|
|
12
|
+
d="M8.828.276h494.345a8.829 8.829 0 0 1 8.828 8.828v102.988H0V9.104A8.829 8.829 0 0 1 8.828.276z"
|
|
13
|
+
/>
|
|
14
|
+
<path fill="#F5F5F5" d="M0 112.088h511.999V223.9H0z" />
|
|
15
|
+
<path
|
|
16
|
+
fill="#FF4B55"
|
|
17
|
+
d="M194.206 115.035h24.717v28.248h-24.717zm49.435 0h24.717v28.248h-24.717zm-24.717 28.248h24.717v28.248h-24.717zm74.151-28.248h24.717v28.248h-24.717zm-24.717 28.248h24.717v28.248h-24.717z"
|
|
18
|
+
/>
|
|
19
|
+
<path
|
|
20
|
+
fill="#F5F5F5"
|
|
21
|
+
d="M218.924 115.035h24.717v28.248h-24.717zm49.434 0h24.717v28.248h-24.717zm-74.152 28.248h24.717v28.248h-24.717zm49.435 0h24.717v28.248h-24.717zm49.434 0h24.717v28.248h-24.717z"
|
|
22
|
+
/>
|
|
23
|
+
<path
|
|
24
|
+
fill="#FF4B55"
|
|
25
|
+
d="M243.641 171.531h24.717v28.248h-24.717zm-24.717 28.248h24.717v28.248h-24.717zm49.434 0h24.717v28.248h-24.717z"
|
|
26
|
+
/>
|
|
27
|
+
<path
|
|
28
|
+
fill="#F5F5F5"
|
|
29
|
+
d="M218.924 171.531h24.717v28.248h-24.717zm49.434 0h24.717v28.248h-24.717zm-24.717 28.248h24.717v28.248h-24.717z"
|
|
30
|
+
/>
|
|
31
|
+
<g fill="#FF4B55">
|
|
32
|
+
<path d="M317.792 115.035v79.448c0 34.127-27.666 61.793-61.793 61.793-34.127 0-61.793-27.666-61.793-61.793v-79.448h123.586zm4.414-4.414H189.792v83.862c0 36.506 29.7 66.207 66.207 66.207 36.507 0 66.207-29.7 66.207-66.207v-83.862z" />
|
|
33
|
+
<path d="M218.924 199.779v-28.248h-24.717v22.952c0 1.789.118 3.546.267 5.297h24.45v-.001z" />
|
|
34
|
+
</g>
|
|
35
|
+
<path
|
|
36
|
+
fill="#F5F5F5"
|
|
37
|
+
d="M317.525 199.779h-24.45v28.248h14.774a61.348 61.348 0 0 0 9.676-28.248zM204.15 228.027h14.774v-28.248h-24.45a61.36 61.36 0 0 0 9.676 28.248z"
|
|
38
|
+
/>
|
|
39
|
+
<path
|
|
40
|
+
fill="#FF4B55"
|
|
41
|
+
d="M293.075 199.779h24.45c.149-1.749.267-3.508.267-5.297V171.53h-24.717v28.249zm-74.151 44.054v-15.806H204.15c3.959 6.107 8.973 11.441 14.774 15.806zm88.925-15.806h-14.774v15.806c5.802-4.365 10.816-9.699 14.774-15.806z"
|
|
42
|
+
/>
|
|
43
|
+
<path
|
|
44
|
+
fill="#F5F5F5"
|
|
45
|
+
d="M218.924 243.833c7.194 5.415 15.567 9.345 24.717 11.202v-27.008h-24.717v15.806zm49.434 11.202c9.15-1.857 17.523-5.788 24.717-11.202v-15.806h-24.717v27.008z"
|
|
46
|
+
/>
|
|
47
|
+
<path
|
|
48
|
+
fill="#FF4B55"
|
|
49
|
+
d="M268.358 228.027h-24.717v27.008A62.043 62.043 0 0 0 256 256.276c4.233 0 8.365-.43 12.359-1.241v-27.008h-.001z"
|
|
50
|
+
/>
|
|
51
|
+
<path
|
|
52
|
+
fill="#4173CD"
|
|
53
|
+
d="M211.27 68.292a180.927 180.927 0 0 0-16.489-1.779 189.969 189.969 0 0 0-12.398 11.15l11.823 28.545a161.456 161.456 0 0 1 24.247-7.866l-7.183-30.05zm59.733-4.687a184.939 184.939 0 0 0-15.002-6.765 185.474 185.474 0 0 0-15.002 6.765l2.41 30.803a161.163 161.163 0 0 1 25.186 0c.801-10.268 1.605-20.535 2.408-30.803zm58.613 14.058a190.81 190.81 0 0 0-12.398-11.15c-5.609.346-11.111.947-16.489 1.779l-7.183 30.049a161.57 161.57 0 0 1 24.247 7.866l11.823-28.544z"
|
|
54
|
+
/>
|
|
55
|
+
<path
|
|
56
|
+
fill="#41479B"
|
|
57
|
+
d="M240.997 63.605a183.1 183.1 0 0 0-15.894-4.346 187.354 187.354 0 0 0-13.832 9.033c2.394 10.017 4.789 20.033 7.185 30.049a161.442 161.442 0 0 1 24.952-3.933l-2.411-30.803zm59.732 4.687a187.242 187.242 0 0 0-13.832-9.033 183.718 183.718 0 0 0-15.894 4.346l-2.41 30.803a161.322 161.322 0 0 1 24.952 3.933l7.184-30.049z"
|
|
58
|
+
/>
|
|
59
|
+
<path
|
|
60
|
+
fill="#FF4B55"
|
|
61
|
+
d="M241.96 75.926a179.702 179.702 0 0 0-27.817 4.385l-1.437-6.01a186.473 186.473 0 0 1 28.771-4.535l.483 6.16zm.965 12.321a167.663 167.663 0 0 0-25.907 4.084l-1.437-6.009a173.602 173.602 0 0 1 26.862-4.234l.482 6.159z"
|
|
62
|
+
/>
|
|
63
|
+
<path
|
|
64
|
+
fill="#FFE15A"
|
|
65
|
+
d="M285.326 90.321a167.55 167.55 0 0 0-6.482-1.022c-3.562-.492-6.215-3.516-5.906-6.915.308-3.398 3.713-5.863 7.59-5.327 2.325.32 4.645.685 6.959 1.097 3.859.682 6.357 4.082 5.604 7.406-.751 3.331-4.217 5.386-7.765 4.761z"
|
|
66
|
+
/>
|
|
67
|
+
<path
|
|
68
|
+
fill="#FF4B55"
|
|
69
|
+
d="M320.157 100.498a167.81 167.81 0 0 0-25.175-8.168l1.437-6.009a173.739 173.739 0 0 1 26.103 8.468l-2.365 5.709z"
|
|
70
|
+
/>
|
|
71
|
+
<path
|
|
72
|
+
fill="#FFE15A"
|
|
73
|
+
d="M317.952 81.96c-.873 2.407-3.817 3.552-6.599 2.647-2.781-.906-4.483-3.55-3.779-6.012.704-2.462 3.686-3.765 6.636-2.806 2.953.957 4.615 3.764 3.742 6.171zm-113.527-3.364c.703 2.464-1 5.109-3.779 6.012-2.781.9-5.725-.245-6.599-2.647-.874-2.408.79-5.214 3.742-6.17 2.949-.957 5.934.344 6.636 2.805zm50.165-4.047c.006 2.047-1.834 3.714-4.114 3.784-2.279.073-4.222-1.481-4.342-3.52-.119-2.04 1.719-3.806 4.111-3.883 2.392-.075 4.335 1.572 4.345 3.619zm11.275.264c-.121 2.044-2.065 3.593-4.342 3.52-2.279-.07-4.119-1.737-4.114-3.784.009-2.045 1.953-3.697 4.344-3.619 2.393.072 4.23 1.842 4.112 3.883zm-5.858 9.267c-.057 2.047-1.85 3.657-4.008 3.657-2.156-.001-3.949-1.609-4.008-3.657-.056-2.041 1.737-3.755 4.008-3.749 2.271-.005 4.064 1.707 4.008 3.749z"
|
|
74
|
+
/>
|
|
75
|
+
</g>
|
|
76
|
+
</svg>
|
|
77
|
+
);
|
|
78
|
+
export default SvgHr;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgHt = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 336" {...props}>
|
|
5
|
+
<g fill="none">
|
|
6
|
+
<path
|
|
7
|
+
fill="#4173CD"
|
|
8
|
+
d="M512.001 168H0V9.103A8.829 8.829 0 0 1 8.828.275h494.345a8.829 8.829 0 0 1 8.828 8.828V168z"
|
|
9
|
+
/>
|
|
10
|
+
<path
|
|
11
|
+
fill="#FF4B55"
|
|
12
|
+
d="M0 168h512v158.897a8.829 8.829 0 0 1-8.828 8.828H8.828A8.829 8.829 0 0 1 0 326.897V168z"
|
|
13
|
+
/>
|
|
14
|
+
</g>
|
|
15
|
+
</svg>
|
|
16
|
+
);
|
|
17
|
+
export default SvgHt;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgHu = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 336" {...props}>
|
|
5
|
+
<g fill="none">
|
|
6
|
+
<path
|
|
7
|
+
fill="#FF4B55"
|
|
8
|
+
d="M512.001 112.092H0V9.103A8.829 8.829 0 0 1 8.828.275h494.345a8.829 8.829 0 0 1 8.828 8.828v102.989z"
|
|
9
|
+
/>
|
|
10
|
+
<path
|
|
11
|
+
fill="#73AF00"
|
|
12
|
+
d="M503.172 335.724H8.828A8.829 8.829 0 0 1 0 326.896V223.908h512v102.988a8.828 8.828 0 0 1-8.828 8.828z"
|
|
13
|
+
/>
|
|
14
|
+
<path fill="#F5F5F5" d="M0 112.088h512V223.9H0z" />
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
17
|
+
);
|
|
18
|
+
export default SvgHu;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgId = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 336" {...props}>
|
|
5
|
+
<g fill="none">
|
|
6
|
+
<path
|
|
7
|
+
fill="#C8414B"
|
|
8
|
+
d="M512.001 168H0V9.103A8.829 8.829 0 0 1 8.828.275h494.345a8.829 8.829 0 0 1 8.828 8.828V168z"
|
|
9
|
+
/>
|
|
10
|
+
<path
|
|
11
|
+
fill="#F5F5F5"
|
|
12
|
+
d="M0 168h512v158.897a8.829 8.829 0 0 1-8.828 8.828H8.828A8.829 8.829 0 0 1 0 326.897V168z"
|
|
13
|
+
/>
|
|
14
|
+
</g>
|
|
15
|
+
</svg>
|
|
16
|
+
);
|
|
17
|
+
export default SvgId;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgIe = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 336" {...props}>
|
|
5
|
+
<g fill="none">
|
|
6
|
+
<path
|
|
7
|
+
fill="#73AF00"
|
|
8
|
+
d="M170.667 335.724H8.828A8.829 8.829 0 0 1 0 326.896V9.103A8.829 8.829 0 0 1 8.828.275h161.839v335.449z"
|
|
9
|
+
/>
|
|
10
|
+
<path fill="#F5F5F5" d="M170.67.276h170.67v335.448H170.67z" />
|
|
11
|
+
<path
|
|
12
|
+
fill="#FF9B46"
|
|
13
|
+
d="M503.172 335.724H341.333V.276h161.839A8.829 8.829 0 0 1 512 9.104v317.793a8.828 8.828 0 0 1-8.828 8.827z"
|
|
14
|
+
/>
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
17
|
+
);
|
|
18
|
+
export default SvgIe;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgIl = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 336" {...props}>
|
|
5
|
+
<g fill="none">
|
|
6
|
+
<path
|
|
7
|
+
fill="#41479B"
|
|
8
|
+
d="M503.172 335.724H8.828A8.829 8.829 0 0 1 0 326.896V9.103A8.829 8.829 0 0 1 8.828.275h494.345a8.829 8.829 0 0 1 8.828 8.828v317.793a8.83 8.83 0 0 1-8.829 8.828z"
|
|
9
|
+
/>
|
|
10
|
+
<path fill="#F5F5F5" d="M0 62.069h512v211.862H0z" />
|
|
11
|
+
<path
|
|
12
|
+
fill="#41479B"
|
|
13
|
+
d="m301.869 168 22.933-39.721h-45.865L256 88.552l-22.936 39.727h-45.865L210.132 168l-22.933 39.721h45.865L256 247.448l22.936-39.727h45.865L301.869 168zm.433-26.73-7.933 13.74-7.933-13.74h15.866zM286.869 168l-15.433 26.73h-30.873L225.131 168l15.433-26.73h30.873L286.869 168zM256 114.534l7.936 13.746h-15.872L256 114.534zm-46.302 26.736h15.865l-7.933 13.74-7.932-13.74zm0 53.46 7.933-13.74 7.933 13.74h-15.866zM256 221.466l-7.936-13.746h15.872L256 221.466zm38.369-40.476 7.933 13.74h-15.865l7.932-13.74z"
|
|
14
|
+
/>
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
17
|
+
);
|
|
18
|
+
export default SvgIl;
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgIm = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 336" {...props}>
|
|
5
|
+
<g fill="none">
|
|
6
|
+
<path
|
|
7
|
+
fill="#FF4B55"
|
|
8
|
+
d="M503.172 335.724H8.828A8.829 8.829 0 0 1 0 326.896V9.103A8.829 8.829 0 0 1 8.828.275h494.345a8.829 8.829 0 0 1 8.828 8.828v317.793a8.83 8.83 0 0 1-8.829 8.828z"
|
|
9
|
+
/>
|
|
10
|
+
<path
|
|
11
|
+
fill="#FFE15A"
|
|
12
|
+
d="m257.266 168.381-2.445 1.412c-4.236-6.1-4.004-21.02-4.004-21.19.044-.442-.221-.841-.619-1.017l-18.327-8.021.105-1.881c9.557 1.102 20.606 5.548 20.759 5.624.376.237.851.178 1.187-.099l15.208-12.68 3.273 2.925c-4.742 5.824-16.279 13.869-16.428 13.952-.408.177-.628.601-.589 1.035l1.88 19.94zm66.499-90.341c.373.191.822.154 1.16-.096l3.974-2.942-1.262 3.668c-.141.417-.019.883.309 1.185l1.871 1.672c-.556.939-.776 2.094-.798 3.299l-2.773 1.408c-.235.12-.42.32-.522.564l-2.068 5.007-1.133-4.152a1.096 1.096 0 0 0-1.216-.806l-4.99.682 4.051-4.588a1.11 1.11 0 0 0 .264-.895l-.903-6.059 4.036 2.053zm-45.203 163.504a1.104 1.104 0 0 0-.48 1.06l.643 4.901-2.594-2.884a1.123 1.123 0 0 0-1.186-.305l-2.37.824c-.551-.941-1.454-1.695-2.497-2.298l.115-3.107a1.12 1.12 0 0 0-.239-.73l-3.374-4.238 4.18 1.024a1.096 1.096 0 0 0 1.294-.672l1.825-4.694 2.046 5.768c.11.309.35.551.654.665l5.736 2.152-3.753 2.534zM157.188 126.599a1.106 1.106 0 0 0-.735-.903l-4.673-1.614 3.74-1.032c.424-.119.739-.483.802-.925l.321-2.488c1.088-.072 2.166-.544 3.172-1.207l2.729 1.492c.232.126.501.166.76.111l5.3-1.124-2.784 3.282a1.094 1.094 0 0 0 .023 1.458l3.384 3.731-6.074-.747a1.108 1.108 0 0 0-.888.288l-4.488 4.17-.589-4.492z"
|
|
13
|
+
/>
|
|
14
|
+
<path
|
|
15
|
+
fill="#F5F5F5"
|
|
16
|
+
d="M254.399 276.642c-2.699 5.442-8.538 9.954-9.999 10.22-.266.044-.487-.044-.707-.266-.664-.753-.973-2.787-.088-5.486.088-.266.178-.619.31-1.017l10.484-3.451zm1.946-5.619a61.241 61.241 0 0 0-.885 2.92l-10.795 3.584c.31-.973.619-2.035.929-3.186l10.751-3.318z"
|
|
17
|
+
/>
|
|
18
|
+
<path
|
|
19
|
+
fill="#FFE15A"
|
|
20
|
+
d="M258.734 264.962a100.892 100.892 0 0 0-1.46 3.451l-10.973 3.362c.31-1.194.664-2.433.973-3.672l11.46-3.141z"
|
|
21
|
+
/>
|
|
22
|
+
<g fill="#F5F5F5">
|
|
23
|
+
<path d="M260.903 260.583c-.31.575-.619 1.151-.929 1.77l-12.078 3.274c.531-2.079.973-4.115 1.327-5.884l11.68.84zm3.406-4.602c-.707.664-1.372 1.504-2.035 2.477l-12.697-.929c.177-1.151.309-2.168.309-2.92 0-.575-.044-1.106-.088-1.682.487.044 1.017.044 1.46.044 3.186 0 5.442-.575 7.079-1.416 1.813 2.656 4.158 3.851 5.972 4.426zm2.567-1.814c-.797-.088-4.335-.442-6.726-3.893 1.195-1.017 1.77-2.123 2.035-2.876 1.327-3.716-7.919-9.512-13.582-12.609-2.655-1.46-4.734-4.335-6.592-7.654.221.044.398.044.619.044 2.831 0 5.088-1.327 6.282-2.345 1.062 1.77 2.035 3.406 2.92 4.822 4.026 6.814 5.885 9.91 10.176 12.919.132.088.309.177.487.177 2.079.266 8.096 1.592 8.45 4.247.488 3.628-.84 5.929-4.069 7.168z" />
|
|
24
|
+
<path d="M260.106 246.646c-.487 1.416-2.521 4.601-10.574 4.071-.708-4.601-2.743-7.875-5.973-9.379-4.203-1.991-19.91-13.228-27.076-19.91 1.416-4.513 5.132-8.184 10.397-10.132.753-.31 1.416-.575 1.991-.885 1.416 1.151 2.699 2.433 3.761 3.893 1.638 2.301 3.053 5.22 4.557 8.318 2.787 5.663 5.663 11.548 10.353 14.113 8.671 4.779 12.962 8.894 12.564 9.911z" />
|
|
25
|
+
<path d="M247.719 222.932c-.841.841-3.628 2.743-6.99 1.77-.531-1.017-1.017-2.035-1.548-3.052-1.548-3.186-3.008-6.194-4.778-8.628-1.017-1.46-2.301-2.743-3.672-3.893 1.991-1.726 2.301-3.584 2.389-5.176 3.495 3.008 6.77 6.769 9.778 11.414 1.9 2.875 3.449 5.352 4.821 7.565zm-16.68-20.617a9.408 9.408 0 0 0-.088 1.151c-.088 1.504-.221 2.965-1.991 4.291-3.716-2.655-8.008-4.469-11.68-5.663 1.682-1.726 2.787-3.451 3.318-5.132h.044c3.627 1.016 7.123 2.831 10.397 5.353zm-4.247 6.592c-.221.088-.398.221-.664.309-5.53 2.035-9.601 5.796-11.414 10.442-2.168-2.168-3.716-4.115-4.956-5.663-1.372-1.77-2.521-3.142-3.938-4.115 3.981-2.035 7.167-4.071 9.601-6.061h.088c3.452 1.062 7.655 2.654 11.283 5.088zm-13.45-6.283c-2.301 1.814-5.53 3.849-10.088 6.061a63.385 63.385 0 0 0-3.008-.663c-2.168-.398-3.584-.708-4.69-1.947-.664-.708-1.947-2.699-3.186-5.22.178.088.354.177.531.221 1.283.31 3.096-.266 5.353-1.062 2.787-.929 6.194-2.08 9.291-1.682 2.787.354 3.54 1.46 4.424 2.699.4.531.798 1.106 1.373 1.593z" />
|
|
26
|
+
</g>
|
|
27
|
+
<path
|
|
28
|
+
fill="#FFE15A"
|
|
29
|
+
d="M218.606 195.988c-.354 1.372-1.327 3.097-3.54 5.176-.531-.354-.885-.841-1.283-1.416-.973-1.372-2.212-3.097-5.929-3.584-3.584-.487-7.3.753-10.308 1.77-1.682.575-3.452 1.195-4.159 1.017-.753-.178-1.726-1.372-1.77-2.567-.044-1.372 1.195-1.991 2.212-2.301 2.301-.707 5.088-.177 7.831.31 2.787.531 5.442 1.017 7.565.177 1.46-.575 3.142-2.389 5.176-5 1.416.309 2.61.797 3.318 1.814 1.02 1.462 1.286 3.012.887 4.604z"
|
|
30
|
+
/>
|
|
31
|
+
<path
|
|
32
|
+
fill="#F5F5F5"
|
|
33
|
+
d="M211.838 189.263c-1.372 1.682-2.567 2.92-3.45 3.274-1.504.619-3.849.177-6.327-.31-2.831-.531-6.061-1.106-8.849-.266-1.682.487-2.61 1.327-3.142 2.123-.487-2.433-.487-4.778.619-6.636 1.106-1.947 2.566-3.584 4.071-5.22 1.991.266 3.45.664 8.494 5.088 1.726 1.504 4.513 1.682 7.212 1.814.442.044.929.089 1.372.133zm41.101-18.273c-4.956 3.274-27.032 17.785-31.634 19.688-.221.088-.398.266-.531.442-.132.221-.221.398-.354.619-.221-.575-.531-1.106-.885-1.636-.885-1.283-2.212-1.991-3.672-2.433a85.839 85.839 0 0 0 2.035-2.699c3.186-4.38 6.858-9.291 11.061-13.671 7.212-7.521 16.856-12.477 20.086-13.981.488 4.69 1.549 10.221 3.894 13.671zm-4.115-16.015c-2.301 1.017-13.228 6.194-21.458 14.777-4.335 4.513-8.185 9.689-11.238 13.892-.929 1.239-1.814 2.433-2.655 3.54-.973-.088-1.946-.177-2.876-.221-2.433-.177-4.734-.31-5.885-1.327-4.247-3.716-6.239-4.822-8.141-5.309.178-.177.31-.354.487-.531 2.787-2.831 5.707-5.795 8.008-9.91 3.981-7.123 17.299-22.653 25.971-28.271l17.565 7.699c0 1.06.046 3.14.222 5.661zM136.587 89.297c-3.662-4.846-5.089-12.087-4.674-13.512.079-.257.257-.416.554-.514.97-.257 2.929.375 4.948 2.372.198.198.474.435.771.732l-1.599 10.922zm4.157 4.252a61.102 61.102 0 0 0-2.217-2.097l1.619-11.258a75.207 75.207 0 0 0 2.434 2.254l-1.836 11.101z"
|
|
34
|
+
/>
|
|
35
|
+
<path
|
|
36
|
+
fill="#FFE15A"
|
|
37
|
+
d="M145.098 98.396a101.34 101.34 0 0 0-2.434-2.848l1.896-11.318c.93.811 1.88 1.682 2.85 2.511l-2.312 11.655z"
|
|
38
|
+
/>
|
|
39
|
+
<g fill="#F5F5F5">
|
|
40
|
+
<path d="M148.047 102.292a69.434 69.434 0 0 0-1.167-1.622l2.468-12.268a116.53 116.53 0 0 0 4.671 3.817l-5.972 10.073zm2.595 5.103c-.277-.93-.733-1.899-1.308-2.927l6.505-10.944c.95.672 1.801 1.246 2.474 1.582.514.257 1.01.455 1.544.672-.257.416-.494.89-.692 1.287-1.423 2.85-1.918 5.126-1.897 6.966-3.185.435-5.301 1.999-6.626 3.364zm.476 3.107c.435-.673 2.333-3.681 6.488-4.276.376 1.524 1.109 2.532 1.663 3.106 2.731 2.848 12.049-2.834 17.35-6.516 2.493-1.722 5.994-2.297 9.793-2.477-.138.178-.217.337-.317.534-1.266 2.532-1.086 5.144-.71 6.668-2.058.159-3.957.298-5.619.457-7.894.557-11.496.835-16.105 3.33-.139.079-.297.198-.375.356-1.166 1.741-5.043 6.531-7.576 5.662-3.462-1.186-4.927-3.401-4.592-6.844z" />
|
|
41
|
+
<path d="M160.872 107.807c-1.049-1.068-2.989-4.312 1.084-11.278 4.433 1.422 8.27 1.065 11.06-1.152 3.659-2.87 20.732-11.9 29.91-15.326 3.404 3.283 5.028 8.249 4.417 13.828-.058.811-.118 1.524-.098 2.176-1.662.753-3.383 1.327-5.164 1.624-2.79.436-6.035.398-9.478.36-6.312-.038-12.861-.094-17.252 2.955-8.149 5.624-13.748 7.624-14.479 6.813z" />
|
|
42
|
+
<path d="M187.622 107.322c-.376-1.128-.833-4.471 1.54-7.044 1.148-.021 2.275-.001 3.423-.021 3.542.039 6.886.076 9.854-.419 1.761-.258 3.481-.832 5.124-1.545.654 2.552 2.178 3.659 3.563 4.45-4.254 1.782-9.08 3.031-14.581 3.646-3.423.417-6.331.695-8.923.933zm25.897-5.708a9.423 9.423 0 0 0-.99-.594c-1.306-.751-2.553-1.523-2.95-3.699 4.035-2.138 7.576-5.167 10.286-7.918.792 2.275 1.842 4.035 3.108 5.262l-.02.04c-2.529 2.791-5.715 5.107-9.434 6.909zm-3.998-6.745c.02-.237-.02-.455.02-.732.651-5.857-.895-11.179-4.241-14.878 2.909-.971 5.342-1.486 7.281-1.902 2.196-.436 3.937-.852 5.44-1.684.042 4.471.438 8.231 1.132 11.297l-.04.079c-2.492 2.614-5.794 5.662-9.592 7.82zm11.63-9.225c-.595-2.869-.972-6.667-.915-11.733a65.639 65.639 0 0 0 1.938-2.394c1.325-1.761 2.234-2.89 3.837-3.326.93-.277 3.284-.535 6.094-.516-.158.119-.317.237-.435.376-.851 1.01-1.146 2.889-1.442 5.263-.414 2.909-.908 6.471-2.648 9.063-1.562 2.335-2.888 2.514-4.392 2.752-.652.119-1.344.218-2.037.515z" />
|
|
43
|
+
</g>
|
|
44
|
+
<path
|
|
45
|
+
fill="#FFE15A"
|
|
46
|
+
d="M224.735 93.32c-1.069-.929-2.177-2.571-3.049-5.48.554-.317 1.148-.416 1.839-.515 1.662-.258 3.759-.595 5.855-3.702 2.037-2.988 2.59-6.867 3.023-10.013.237-1.761.473-3.622.948-4.175.494-.594 1.998-.931 3.086-.437 1.247.574 1.247 1.959 1.069 3.007-.395 2.375-2.115 4.631-3.777 6.867-1.72 2.257-3.342 4.414-3.539 6.689-.138 1.564.734 3.878 2.159 6.865-.909 1.128-1.879 1.98-3.105 2.158-1.758.258-3.262-.196-4.509-1.264z"
|
|
47
|
+
/>
|
|
48
|
+
<g fill="#F5F5F5">
|
|
49
|
+
<path d="M233.777 90.27c-.892-1.978-1.465-3.601-1.387-4.551.118-1.623 1.562-3.522 3.104-5.522 1.74-2.295 3.698-4.928 4.192-7.797.316-1.721-.021-2.929-.497-3.759 2.394.652 4.492 1.7 5.66 3.52 1.247 1.859 2.059 3.897 2.851 5.974-1.128 1.663-2.136 2.791-8.348 5.325-2.116.872-3.521 3.286-4.845 5.641-.236.377-.493.793-.73 1.169zm-2.022 44.934c-.714-5.896-3.831-32.131-3.477-37.097.02-.237-.06-.474-.159-.673-.139-.217-.257-.375-.396-.594.614.06 1.227.02 1.86-.06 1.544-.218 2.77-1.089 3.818-2.198.456.97.95 1.959 1.505 3.027 2.495 4.807 5.247 10.286 7.287 16.004 3.506 9.813 3.628 20.655 3.531 24.216-4.333-.951-9.352-2.023-13.969-2.625z" />
|
|
50
|
+
<path d="M247.922 138.68c.118-2.513.371-14.602-3.63-25.8-2.1-5.896-5.01-11.652-7.406-16.262-.693-1.385-1.366-2.71-1.98-3.957a68.777 68.777 0 0 0 1.483-2.474c1.246-2.098 2.392-4.097 3.817-4.671 5.223-2.138 7.102-3.426 8.387-4.91.079.237.179.435.257.673 1.288 3.758 2.634 7.695 5.287 11.593 4.594 6.745 12.534 25.598 13.686 35.866l-14.735 12.273a88.007 88.007 0 0 0-5.166-2.331zM366.18 82.133c6.068-.281 12.847 2.635 13.789 3.783.168.211.198.447.111.748-.335.946-1.964 2.204-4.754 2.74-.275.052-.628.146-1.039.223l-8.107-7.494zm-5.857 1.025c1.1-.205 2.179-.45 2.983-.643l8.373 7.7a73.92 73.92 0 0 0-3.236.734l-8.12-7.791z" />
|
|
51
|
+
</g>
|
|
52
|
+
<path
|
|
53
|
+
fill="#FFE15A"
|
|
54
|
+
d="M353.864 84.011c1.302-.116 2.543-.248 3.725-.398l8.265 7.961c-1.195.309-2.45.6-3.683.931l-8.307-8.494z"
|
|
55
|
+
/>
|
|
56
|
+
<g fill="#F5F5F5">
|
|
57
|
+
<path d="M348.982 84.242c.653-.009 1.306-.017 1.998-.046l8.724 8.971c-2.076.545-4.07 1.146-5.789 1.695l-4.933-10.62zm-5.676-.746c.924.297 1.981.469 3.154.577l5.351 11.553c-1.091.404-2.046.781-2.703 1.146-.503.279-.946.575-1.427.893a16.684 16.684 0 0 0-.67-1.298c-1.546-2.785-3.144-4.479-4.673-5.502 1.439-2.874 1.345-5.504.968-7.369zm-2.832-1.363c.309.739 1.717 4.006-.14 7.769-1.47-.551-2.716-.516-3.502-.384-3.893.643-4.473 11.541-4.433 17.995.012 3.029-1.493 6.243-3.492 9.479a2.83 2.83 0 0 0-.262-.563c-1.374-2.475-3.63-3.805-5.099-4.355 1.032-1.788 1.991-3.433 2.799-4.894 4.003-6.827 5.81-9.954 6.357-15.167.013-.159.004-.356-.082-.511-.777-1.946-2.537-7.852-.387-9.45 2.935-2.187 5.591-2.141 8.241.081z" />
|
|
58
|
+
<path d="M337.183 91.701c1.474-.262 5.247-.029 8.691 7.27-3.679 2.852-5.555 6.22-5.302 9.774.299 4.641-1.903 23.828-4.267 33.336-4.632.952-9.647-.515-13.905-4.173-.636-.508-1.19-.959-1.74-1.311.319-1.796.818-3.541 1.579-5.177 1.217-2.548 3.083-5.203 5.06-8.021 3.598-5.185 7.348-10.556 7.316-15.902-.03-9.901 1.485-15.65 2.568-15.796z" />
|
|
59
|
+
<path d="M322.462 114.041c1.143.327 4.159 1.841 4.94 5.252-.632.958-1.286 1.877-1.918 2.836-2.034 2.9-3.956 5.636-5.224 8.365-.782 1.598-1.282 3.342-1.622 5.1-2.475-.904-4.249-.273-5.685.424.935-4.516 2.633-9.204 5.235-14.089a289.507 289.507 0 0 1 4.274-7.888zm-9.932 24.59a9.443 9.443 0 0 0 1.048-.481c1.358-.652 2.699-1.246 4.718-.342-.518 4.537-.021 9.171.717 12.961-2.325-.632-4.37-.762-6.098-.41l-.021-.039c-.87-3.666-.98-7.602-.364-11.689zm7.825.514c.184.15.386.241.593.43 4.463 3.848 9.727 5.581 14.669 4.913-.843 2.947-1.794 5.247-2.547 7.081-.882 2.058-1.523 3.73-1.686 5.44-3.712-2.494-7.037-4.291-9.959-5.452l-.043-.077c-.746-3.534-1.394-7.982-1.027-12.335zm1.034 14.809c2.702 1.131 6.049 2.967 10.195 5.878.284 1.057.605 2.093.879 2.953.704 2.089 1.12 3.477.574 5.045-.297.924-1.415 3.011-3.019 5.319a2.83 2.83 0 0 0-.064-.572c-.352-1.272-1.735-2.579-3.527-4.165-2.165-1.986-4.824-4.406-5.98-7.308-1.043-2.609-.441-3.804.213-5.178.274-.606.582-1.234.729-1.972z" />
|
|
60
|
+
</g>
|
|
61
|
+
<path
|
|
62
|
+
fill="#FFE15A"
|
|
63
|
+
d="M313.032 152.572c1.371-.356 3.352-.342 6.244.583-.052.636-.306 1.182-.616 1.809-.727 1.516-1.634 3.437-.256 6.923 1.313 3.37 4.201 6.017 6.55 8.154 1.319 1.191 2.719 2.438 2.909 3.143.211.744-.362 2.174-1.385 2.793-1.177.704-2.321-.078-3.085-.818-1.736-1.668-2.624-4.363-3.53-6.997-.888-2.695-1.751-5.251-3.517-6.7-1.212-.998-3.614-1.587-6.883-2.1-.417-1.388-.57-2.668-.024-3.782.782-1.6 2.007-2.584 3.593-3.008z"
|
|
64
|
+
/>
|
|
65
|
+
<g fill="#F5F5F5">
|
|
66
|
+
<path d="M310.438 161.753c2.135.383 3.798.826 4.537 1.428 1.271 1.015 2.023 3.279 2.799 5.682.91 2.733 1.974 5.836 4.062 7.865 1.241 1.234 2.428 1.638 3.381 1.716-1.891 1.607-3.941 2.744-6.103 2.679-2.239-.022-4.378-.504-6.54-1.025-.734-1.869-1.095-3.339.327-9.897.478-2.239-.721-4.761-1.914-7.186-.177-.406-.374-.853-.549-1.262zm-35.924-27.068c5.268 2.743 28.67 15.004 32.566 18.103.184.15.425.22.644.249.258.009.456 0 .714.009-.395.472-.71 1.001-1.002 1.568-.693 1.397-.668 2.901-.345 4.392a86.638 86.638 0 0 0-3.348-.47c-5.376-.66-11.452-1.486-17.321-3.036-10.076-2.655-19.09-8.683-21.972-10.777 3.181-2.843 7.388-6.529 10.064-10.038z" />
|
|
67
|
+
<path d="M262.507 146.056c2.006 1.517 11.836 8.561 23.333 11.59 6.05 1.601 12.444 2.454 17.6 3.083 1.534.211 3.008.405 4.383.604.395.894.79 1.788 1.203 2.622 1.026 2.214 2.027 4.289 1.695 5.789-1.188 5.517-1.188 7.795-.691 9.695-.241-.07-.46-.099-.701-.168-3.829-1.063-7.838-2.177-12.552-2.193-8.161-.024-28.201-4.131-37.323-8.986l-1.793-19.093a86.513 86.513 0 0 0 4.846-2.943z" />
|
|
68
|
+
</g>
|
|
69
|
+
<path
|
|
70
|
+
fill="#464655"
|
|
71
|
+
d="M381.988 84.996c-.107-.193-.193-.348-.318-.481-1.714-2.084-11.742-5.93-18.855-4.158-7.68 1.935-18.135 2.425-20.726.22-3.319-2.936-7.006-3.052-10.65-.567l-1.472-1.314 2.183-6.342a1.11 1.11 0 0 0-.394-1.252 1.107 1.107 0 0 0-1.313.002l-6.287 4.653-5.337-2.712a1.103 1.103 0 1 0-1.593 1.147l1.142 7.67-5.678 6.432a1.108 1.108 0 0 0-.146 1.255c.22.266.666.636 1.124.574l6.976-.954 1.73 6.344c.129.469.526.785.998.813.471.03.91-.243 1.092-.681l3.15-7.624 1.598-.811c.327 2.125.99 4.06 1.273 4.817-.534 4.598-2.306 7.605-6.008 14.062-2.158 3.678-4.794 8.227-8.235 14.793-5.728 10.921-7.571 21.002-5.482 29.963-.631.047-1.581.067-2.574.012-5.28-3.951-32.545-18.065-33.7-18.688-.064-.033-4.499-3.841-4.499-3.841-1.229-10.752-9.248-29.645-13.99-36.704-2.514-3.68-3.801-7.438-5.049-11.079-1.188-3.363-2.259-6.568-4.218-9.575-4.355-6.726-17.987-5.771-21.272-4.938-2.335.615-3.601 2.257-5.044 4.157a48.08 48.08 0 0 1-2.037 2.494c-1.345 1.504-3.224 1.901-6.252 2.516-2.374.495-5.362 1.13-9.259 2.496-9.14 3.247-27.339 12.95-31.217 15.959-3.818 2.989-9.378.953-12.346-.53-4.195-2.095-16.863-13.666-20.307-17.067-2.396-2.334-5.106-3.441-7.104-2.905a2.875 2.875 0 0 0-1.879 1.484c-.099.198-.178.356-.217.534-.751 2.592 1.746 13.038 7.229 17.903 5.938 5.241 12.253 13.588 11.897 16.972-.546 4.397 1.443 7.505 5.554 9.107l-.252 1.956-6.464 1.784a1.112 1.112 0 0 0-.81 1.032c-.015.486.286.922.745 1.081l7.392 2.556.78 5.937a1.103 1.103 0 1 0 1.848.666l5.682-5.278 8.515 1.047c.46.056.905-.179 1.118-.588.096-.332.148-.909-.162-1.252l-4.732-5.215 4.255-5.013c.314-.372.35-.878.107-1.282a1.105 1.105 0 0 0-1.178-.516l-8.071 1.711-1.571-.86c1.569-1.471 2.788-3.111 3.254-3.773 4.095-2.158 7.577-2.397 14.997-2.994 4.254-.298 9.497-.696 16.857-1.569 12.247-1.449 21.604-5.628 27.815-12.416.396.494.95 1.266 1.464 2.116-.275 6.589 3.497 37.057 3.636 38.364.009.068-.065 3.292-.065 3.292-9.067 5.931-22.324 21.457-26.511 28.838-2.168 3.893-4.956 6.724-7.655 9.468-2.477 2.567-4.866 4.956-6.68 8.052-4.071 6.902 2.876 18.67 5.088 21.237 1.592 1.814 3.628 2.212 5.973 2.655.929.177 1.947.398 3.142.707 1.946.531 3.142 2.035 5.044 4.469 1.504 1.902 3.406 4.291 6.371 7.167 6.99 6.726 23.802 18.67 28.227 20.794 4.38 2.08 5.044 7.964 5.044 11.282 0 4.69-4.69 21.193-6.194 25.793-1.017 3.186-.797 6.105.575 7.654a2.879 2.879 0 0 0 2.168 1.017c.221 0 .398 0 .575-.044 2.655-.487 10.883-7.389 12.787-14.467 2.035-7.654 6.68-17.033 9.866-18.228 4.178-1.476 6.069-4.644 5.665-9.037l1.863-.649 4.484 4.987a1.113 1.113 0 0 0 1.285.263c.44-.203.697-.668.636-1.15l-1.017-7.755 4.962-3.35a1.103 1.103 0 0 0-.228-1.951l-7.261-2.724-2.869-8.086a1.108 1.108 0 0 0-1.026-.737c-.339.063-.879.275-1.048.704l-2.553 6.566-6.386-1.566a1.109 1.109 0 0 0-1.13 1.764l5.138 6.455-.066 1.79c-2.017-.746-4.03-1.105-4.83-1.225-3.761-2.699-5.53-5.707-9.379-12.078-2.168-3.672-4.867-8.185-8.937-14.379-6.77-10.308-14.689-16.812-23.538-19.335.266-.575.708-1.416 1.239-2.257 6.017-2.699 31.59-19.688 32.695-20.396.015-.01.013-.035.028-.046l3.459-1.998c9.589 5.048 29.634 9.096 38.119 9.175 4.456.007 8.285 1.069 11.992 2.098 3.446.92 6.695 1.85 10.283 1.933 8.01.209 14.929-11.576 16.099-14.755.813-2.273.173-4.246-.578-6.51a48.46 48.46 0 0 1-.906-3.091c-.481-1.96.255-3.734 1.459-6.579.934-2.238 2.099-5.062 3.175-9.048 2.487-9.376 4.772-29.873 4.482-34.772-.308-4.839 4.515-8.275 7.416-9.885 4.1-2.276 20.806-6.185 25.558-7.103 3.279-.657 5.725-2.266 6.413-4.217.298-.827.222-1.695-.166-2.392zm-52.97-.168-2.773 1.408c-.235.12-.42.32-.522.564l-2.068 5.007-1.133-4.152a1.095 1.095 0 0 0-1.215-.806l-4.991.682 4.051-4.588c.217-.246.312-.574.264-.895l-.903-6.059 4.036 2.051c.373.191.822.154 1.16-.095l3.974-2.942-1.262 3.668c-.141.417-.019.883.309 1.185l1.871 1.672c-.556.939-.775 2.095-.798 3.3zm-2.673 22.352c4.003-6.827 5.81-9.954 6.357-15.167.013-.159.004-.356-.082-.512-.777-1.947-2.537-7.852-.387-9.45 2.936-2.187 5.591-2.142 8.242.081.309.739 1.717 4.006-.14 7.769-1.47-.551-2.716-.516-3.502-.384-3.893.643-4.473 11.541-4.433 17.995.012 3.03-1.493 6.243-3.492 9.479a2.83 2.83 0 0 0-.262-.563c-1.374-2.475-3.63-3.805-5.099-4.355 1.03-1.787 1.989-3.432 2.798-4.893zm-8.158 14.75a293.795 293.795 0 0 1 4.275-7.889c1.143.327 4.159 1.841 4.94 5.254-.632.958-1.286 1.878-1.918 2.836-2.034 2.9-3.956 5.636-5.225 8.365-.782 1.598-1.282 3.342-1.622 5.1-2.475-.904-4.249-.273-5.685.424.934-4.518 2.633-9.205 5.235-14.09zm-5.657 16.701a9.092 9.092 0 0 0 1.048-.481c1.358-.652 2.699-1.246 4.718-.342-.518 4.537-.021 9.171.717 12.961-2.325-.632-4.37-.762-6.098-.41l-.022-.039c-.869-3.666-.979-7.602-.363-11.689zm-4.806 14.406c.258.009.456 0 .714.009-.396.472-.71 1.001-1.002 1.568-.692 1.396-.668 2.901-.345 4.392a86.638 86.638 0 0 0-3.348-.47c-5.376-.66-11.452-1.486-17.321-3.036-10.077-2.655-19.09-8.683-21.972-10.777 2.771-2.641 6.781-5.751 10.063-10.039 5.268 2.743 28.67 15.004 32.566 18.103.186.152.427.22.645.25zm-50.458 15.344-2.445 1.412c-4.236-6.1-4.004-21.02-4.004-21.19.044-.442-.221-.841-.619-1.017l-18.327-8.021.105-1.881c9.557 1.102 20.606 5.548 20.759 5.624.376.237.851.178 1.187-.099l15.208-12.68 3.273 2.925c-4.742 5.824-16.279 13.869-16.428 13.952-.408.177-.628.601-.589 1.035l1.88 19.94zm-8.673-87.773c.079.237.179.436.257.672 1.288 3.759 2.634 7.697 5.287 11.593 4.593 6.745 12.534 25.598 13.685 35.866l-14.735 12.273a86.597 86.597 0 0 0-5.165-2.333c.118-2.513.371-14.602-3.63-25.8-2.1-5.896-5.011-11.652-7.406-16.262-.693-1.385-1.366-2.71-1.98-3.957a68.777 68.777 0 0 0 1.483-2.474c1.246-2.098 2.392-4.097 3.817-4.671 5.222-2.135 7.101-3.423 8.387-4.907zm-3.743-8.447c1.247 1.859 2.059 3.897 2.851 5.974-1.127 1.663-2.135 2.791-8.348 5.325-2.116.872-3.521 3.286-4.845 5.641-.237.376-.494.792-.732 1.167-.892-1.978-1.465-3.601-1.387-4.551.118-1.623 1.562-3.522 3.105-5.522 1.74-2.295 3.698-4.928 4.192-7.797.317-1.721-.021-2.929-.497-3.759 2.394.654 4.492 1.703 5.661 3.522zm-22.675-.644c1.325-1.761 2.234-2.89 3.837-3.326.93-.277 3.284-.535 6.094-.516-.158.119-.317.237-.435.376-.851 1.01-1.146 2.889-1.442 5.263-.415 2.909-.908 6.471-2.648 9.064-1.562 2.335-2.888 2.514-4.392 2.752-.653.119-1.345.217-2.038.515-.595-2.869-.972-6.667-.915-11.733a65.916 65.916 0 0 0 1.939-2.395zm-9.595 5.84c2.196-.436 3.937-.853 5.441-1.684.041 4.471.438 8.231 1.132 11.297l-.04.079c-2.492 2.613-5.795 5.661-9.593 7.819.02-.237-.02-.456.02-.732.651-5.857-.895-11.179-4.239-14.878 2.906-.969 5.341-1.485 7.279-1.901zm-39.565 18.02c3.659-2.87 20.732-11.9 29.91-15.326 3.404 3.283 5.028 8.248 4.417 13.828-.058.811-.118 1.524-.098 2.176-1.662.753-3.383 1.327-5.164 1.624-2.79.436-6.035.398-9.478.36-6.312-.038-12.861-.094-17.252 2.954-8.15 5.622-13.748 7.623-14.481 6.812-1.049-1.068-2.989-4.312 1.085-11.278 4.434 1.425 8.273 1.067 11.061-1.15zm-36.428-6.08c-3.662-4.846-5.089-12.087-4.674-13.512.079-.257.257-.415.554-.514.97-.257 2.929.375 4.948 2.372.198.198.474.435.771.732l-1.599 10.922zm4.157 4.252a61.943 61.943 0 0 0-2.217-2.097l1.619-11.258a74.171 74.171 0 0 0 2.434 2.254l-1.836 11.101zm1.92 1.997 1.896-11.318c.93.811 1.88 1.682 2.85 2.511l-2.311 11.655a102.522 102.522 0 0 0-2.435-2.848zm5.383 6.746a69.434 69.434 0 0 0-1.167-1.622l2.468-12.268a115.668 115.668 0 0 0 4.671 3.817l-5.972 10.073zm1.288 2.176 6.506-10.944c.95.672 1.801 1.246 2.474 1.582.514.257 1.01.455 1.544.672-.257.415-.494.89-.692 1.287-1.423 2.85-1.918 5.126-1.897 6.965-3.186.436-5.302 2.001-6.627 3.366-.278-.93-.734-1.9-1.308-2.928zm13.211 15.451c.232.126.502.167.76.111l5.3-1.124-2.784 3.282a1.094 1.094 0 0 0 .023 1.458l3.384 3.731-6.074-.747a1.104 1.104 0 0 0-.887.288l-4.488 4.17-.59-4.489a1.106 1.106 0 0 0-.735-.903l-4.673-1.614 3.74-1.033c.424-.119.739-.483.802-.925l.321-2.488c1.088-.072 2.166-.544 3.172-1.207l2.729 1.49zm23.549-19.046c-1.266 2.532-1.086 5.144-.71 6.668-2.058.159-3.957.298-5.619.457-7.894.557-11.496.835-16.105 3.33-.139.078-.297.198-.375.356-1.166 1.741-5.043 6.531-7.576 5.662-3.464-1.186-4.928-3.402-4.593-6.845.435-.673 2.333-3.681 6.488-4.276.376 1.524 1.109 2.532 1.663 3.106 2.731 2.848 12.049-2.834 17.35-6.516 2.493-1.722 5.994-2.297 9.793-2.477-.137.178-.216.336-.316.535zm10.45 5.516c-3.423.417-6.332.695-8.924.934-.376-1.128-.832-4.471 1.54-7.044 1.148-.021 2.275-.001 3.423-.021 3.542.039 6.886.077 9.854-.419 1.761-.257 3.482-.832 5.124-1.545.654 2.552 2.178 3.659 3.563 4.45-4.253 1.781-9.08 3.029-14.58 3.645zm26.41-11.683c-2.531 2.791-5.716 5.107-9.436 6.909a9.423 9.423 0 0 0-.99-.594c-1.306-.751-2.553-1.523-2.95-3.699 4.035-2.138 7.576-5.166 10.285-7.918.792 2.275 1.842 4.035 3.108 5.262.003 0 .003 0-.017.04zm1.78-1.386c-1.068-.93-2.177-2.571-3.049-5.48.554-.317 1.148-.416 1.839-.515 1.662-.258 3.759-.595 5.855-3.702 2.037-2.988 2.59-6.867 3.023-10.013.237-1.761.473-3.622.948-4.175.494-.594 1.998-.931 3.086-.437 1.247.574 1.247 1.959 1.069 3.007-.395 2.375-2.115 4.631-3.776 6.867-1.72 2.257-3.342 4.414-3.539 6.689-.138 1.564.734 3.878 2.159 6.866-.909 1.128-1.879 1.98-3.105 2.158-1.759.257-3.263-.197-4.51-1.265zm3.543 4.786c.02-.237-.06-.474-.159-.673-.139-.217-.257-.375-.396-.594.614.06 1.227.02 1.859-.06 1.544-.218 2.77-1.089 3.818-2.198.456.97.95 1.959 1.505 3.027 2.495 4.808 5.247 10.286 7.287 16.004 3.506 9.813 3.628 20.655 3.531 24.217-4.289-.931-8.644-1.899-13.97-2.626-.712-5.895-3.828-32.13-3.475-37.097zm-31.218 81.689c2.787-2.831 5.707-5.795 8.008-9.91 3.981-7.123 17.299-22.653 25.971-28.271l17.565 7.699c0 1.062.044 3.142.221 5.663-2.301 1.017-13.228 6.194-21.458 14.777-4.335 4.513-8.185 9.689-11.238 13.892-.929 1.239-1.814 2.433-2.655 3.54-.973-.088-1.946-.177-2.876-.221-2.433-.177-4.734-.31-5.885-1.327-4.247-3.716-6.239-4.822-8.141-5.309.178-.179.311-.356.488-.533zm-6.99 14.291c-.487-2.433-.487-4.778.619-6.636 1.106-1.946 2.566-3.584 4.071-5.22 1.991.266 3.45.664 8.494 5.088 1.726 1.504 4.513 1.682 7.212 1.814.442.044.929.088 1.372.132-1.372 1.682-2.567 2.92-3.45 3.274-1.504.619-3.849.177-6.327-.31-2.831-.531-6.061-1.106-8.849-.266-1.682.486-2.611 1.327-3.142 2.124zm3.761 0c2.301-.707 5.088-.177 7.831.31 2.787.531 5.442 1.017 7.565.177 1.46-.575 3.142-2.389 5.176-5 1.416.309 2.61.797 3.318 1.814 1.017 1.46 1.283 3.008.885 4.601-.354 1.372-1.327 3.097-3.54 5.176-.531-.354-.885-.841-1.283-1.416-.973-1.372-2.212-3.097-5.929-3.584-3.584-.487-7.3.753-10.308 1.77-1.682.575-3.452 1.195-4.159 1.017-.753-.178-1.726-1.372-1.77-2.567-.043-1.369 1.196-1.988 2.214-2.298zm9.423 14.599a63.385 63.385 0 0 0-3.008-.663c-2.168-.398-3.584-.708-4.69-1.947-.664-.708-1.947-2.699-3.186-5.22.178.088.354.177.531.221 1.283.31 3.096-.266 5.353-1.062 2.787-.929 6.194-2.08 9.291-1.682 2.787.354 3.54 1.46 4.424 2.699.398.531.797 1.106 1.372 1.592-2.3 1.815-5.53 3.85-10.087 6.062zm6.504 5.31c-1.372-1.77-2.521-3.142-3.938-4.115 3.981-2.035 7.167-4.071 9.601-6.061h.088c3.45 1.062 7.654 2.655 11.282 5.088-.221.088-.398.221-.664.309-5.53 2.035-9.601 5.796-11.414 10.442-2.168-2.168-3.716-4.115-4.955-5.663zm33.802 27.341c-4.203-1.991-19.91-13.228-27.076-19.91 1.416-4.513 5.132-8.184 10.397-10.132.753-.31 1.416-.575 1.991-.885 1.416 1.151 2.699 2.433 3.761 3.893 1.638 2.301 3.053 5.22 4.557 8.318 2.787 5.663 5.663 11.548 10.353 14.113 8.672 4.778 12.963 8.893 12.565 9.91-.487 1.416-2.521 4.601-10.574 4.071-.71-4.599-2.744-7.873-5.974-9.378zm.839 45.526c-.266.044-.487-.044-.707-.266-.664-.753-.973-2.787-.088-5.486.088-.266.178-.619.31-1.017l10.486-3.451c-2.7 5.442-8.54 9.956-10.001 10.22zm11.061-12.919-10.795 3.584c.31-.973.619-2.035.929-3.186l10.751-3.318a63.163 63.163 0 0 0-.885 2.92zm1.814-5.53-10.973 3.362c.31-1.194.664-2.433.973-3.672l11.458-3.142a108.087 108.087 0 0 0-1.458 3.452zm2.7-6.062-12.078 3.274c.531-2.079.973-4.115 1.327-5.884l11.68.841c-.31.576-.619 1.15-.929 1.769zm2.3-3.893-12.697-.929c.177-1.151.309-2.168.309-2.92 0-.575-.044-1.106-.088-1.682.487.044 1.017.044 1.46.044 3.186 0 5.442-.575 7.079-1.416 1.814 2.655 4.159 3.849 5.973 4.424-.708.665-1.373 1.506-2.036 2.479zm4.306-23.692 4.18 1.024a1.096 1.096 0 0 0 1.294-.672l1.825-4.694 2.046 5.768c.11.309.35.551.654.665l5.736 2.152-3.753 2.534a1.104 1.104 0 0 0-.48 1.06l.643 4.902-2.594-2.884a1.123 1.123 0 0 0-1.186-.305l-2.37.824c-.551-.941-1.454-1.695-2.497-2.298l.115-3.107a1.12 1.12 0 0 0-.239-.73l-3.374-4.239zm-14.748-5.11c4.026 6.814 5.885 9.91 10.176 12.919.132.088.309.177.487.177 2.079.266 8.096 1.592 8.45 4.247.487 3.628-.841 5.929-4.071 7.167-.797-.088-4.335-.442-6.725-3.893 1.195-1.017 1.77-2.123 2.035-2.876 1.327-3.716-7.919-9.512-13.582-12.609-2.655-1.46-4.734-4.335-6.592-7.654.221.044.398.044.619.044 2.831 0 5.088-1.327 6.282-2.345 1.063 1.771 2.037 3.408 2.921 4.823zm-8.937-14.289a298.297 298.297 0 0 1 4.822 7.565c-.841.841-3.628 2.743-6.99 1.77-.531-1.017-1.017-2.035-1.548-3.052-1.548-3.186-3.008-6.194-4.778-8.628-1.017-1.46-2.301-2.743-3.672-3.893 1.991-1.726 2.301-3.584 2.389-5.176 3.496 3.008 6.769 6.768 9.777 11.414zm-11.856-13.052a9.408 9.408 0 0 0-.088 1.151c-.088 1.504-.221 2.965-1.991 4.291-3.716-2.655-8.008-4.469-11.68-5.663 1.682-1.726 2.787-3.451 3.318-5.132h.044c3.627 1.016 7.123 2.831 10.397 5.353zm-9.734-11.636c-.221.088-.398.266-.531.442-.132.221-.221.398-.354.619-.221-.575-.531-1.106-.885-1.636-.885-1.283-2.212-1.991-3.672-2.433a85.839 85.839 0 0 0 2.035-2.699c3.186-4.38 6.858-9.291 11.061-13.671 7.212-7.521 16.856-12.477 20.086-13.981.487 4.69 1.548 10.22 3.893 13.671-4.955 3.273-27.031 17.785-31.633 19.688zm89.417-20.937c-1.188 5.517-1.19 7.795-.691 9.694-.241-.068-.46-.099-.701-.168-3.829-1.063-7.838-2.177-12.552-2.193-8.16-.024-28.201-4.131-37.323-8.986l-1.793-19.093a86.723 86.723 0 0 0 4.844-2.942c2.006 1.517 11.836 8.561 23.334 11.59 6.05 1.601 12.444 2.454 17.6 3.083 1.534.212 3.008.405 4.383.604.395.894.79 1.788 1.203 2.622 1.027 2.213 2.027 4.29 1.696 5.789zm8.393 11.382c-2.239-.022-4.378-.504-6.54-1.025-.734-1.869-1.095-3.339.327-9.897.478-2.239-.721-4.761-1.914-7.186-.177-.408-.374-.855-.549-1.263 2.135.384 3.798.826 4.537 1.429 1.272 1.014 2.023 3.279 2.799 5.682.91 2.733 1.975 5.836 4.063 7.865 1.241 1.234 2.428 1.638 3.381 1.716-1.892 1.607-3.943 2.745-6.104 2.679zm7.362-5.149c-1.177.704-2.321-.078-3.085-.818-1.736-1.668-2.624-4.363-3.53-6.997-.888-2.695-1.751-5.252-3.517-6.7-1.212-.998-3.614-1.587-6.883-2.1-.417-1.388-.57-2.669-.024-3.782.782-1.598 2.007-2.582 3.593-3.007 1.37-.356 3.352-.342 6.244.583-.052.636-.306 1.182-.615 1.809-.727 1.516-1.634 3.437-.256 6.923 1.314 3.37 4.201 6.017 6.55 8.154 1.319 1.191 2.719 2.438 2.908 3.143.211.743-.361 2.174-1.385 2.792zm6.561-8.146c-.297.924-1.415 3.012-3.018 5.32-.009-.198-.017-.396-.064-.572-.352-1.272-1.735-2.579-3.527-4.165-2.165-1.986-4.824-4.406-5.98-7.308-1.043-2.609-.441-3.804.212-5.178.271-.606.58-1.234.727-1.972 2.702 1.131 6.049 2.967 10.195 5.878a64.93 64.93 0 0 0 .881 2.953c.705 2.088 1.121 3.476.574 5.044zm.032-16.26c-.882 2.058-1.523 3.73-1.687 5.44-3.712-2.494-7.037-4.291-9.959-5.452l-.043-.077c-.746-3.532-1.394-7.98-1.026-12.333.184.15.386.241.593.43 4.463 3.848 9.727 5.581 14.669 4.913-.844 2.945-1.794 5.245-2.547 7.079zm7.502-42.823c.299 4.641-1.903 23.828-4.267 33.336-4.632.952-9.647-.515-13.905-4.173-.636-.508-1.19-.959-1.74-1.311.319-1.796.818-3.541 1.579-5.177 1.217-2.548 3.083-5.203 5.06-8.021 3.598-5.185 7.348-10.556 7.316-15.902-.031-9.901 1.484-15.65 2.567-15.796 1.474-.262 5.247-.029 8.691 7.27-3.678 2.851-5.553 6.22-5.301 9.774zm8.535-11.974c-.503.279-.946.575-1.427.893a16.684 16.684 0 0 0-.67-1.298c-1.546-2.785-3.144-4.479-4.673-5.502 1.441-2.874 1.347-5.504.97-7.369.924.297 1.981.469 3.154.577l5.351 11.553c-1.094.403-2.048.781-2.705 1.146zm4.809-1.911-4.934-10.621c.653-.009 1.306-.017 1.998-.046l8.724 8.971a118.656 118.656 0 0 0-5.788 1.696zm8.256-2.356-8.308-8.494a99.977 99.977 0 0 0 3.725-.398l8.265 7.961c-1.194.309-2.449.601-3.682.931zm6.269-1.557-8.119-7.789c1.1-.205 2.179-.45 2.983-.643l8.373 7.7c-1.001.199-2.08.444-3.237.732zm6.885-1.544c-.275.051-.627.146-1.039.223l-8.106-7.494c6.068-.281 12.847 2.635 13.789 3.783.168.211.198.447.111.748-.336.945-1.966 2.203-4.755 2.74z"
|
|
72
|
+
/>
|
|
73
|
+
</g>
|
|
74
|
+
</svg>
|
|
75
|
+
);
|
|
76
|
+
export default SvgIm;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgIn = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 336" {...props}>
|
|
5
|
+
<g fill="none">
|
|
6
|
+
<path
|
|
7
|
+
fill="#FAB446"
|
|
8
|
+
d="M512.001 112.092H0V9.103A8.829 8.829 0 0 1 8.828.275h494.345a8.829 8.829 0 0 1 8.828 8.828v102.989z"
|
|
9
|
+
/>
|
|
10
|
+
<path
|
|
11
|
+
fill="#73AF00"
|
|
12
|
+
d="M503.172 335.724H8.828A8.829 8.829 0 0 1 0 326.896V223.908h512v102.988a8.828 8.828 0 0 1-8.828 8.828z"
|
|
13
|
+
/>
|
|
14
|
+
<path fill="#F5F5F5" d="M0 112.088h512V223.9H0z" />
|
|
15
|
+
<g fill="#41479B" transform="translate(208 120)">
|
|
16
|
+
<path d="M48 95.448C21.836 95.448.552 74.164.552 48S21.836.552 48 .552 95.448 21.836 95.448 48 74.164 95.448 48 95.448zm0-86.069C26.702 9.379 9.379 26.702 9.379 48c0 21.298 17.323 38.621 38.621 38.621 21.298 0 38.621-17.323 38.621-38.621C86.621 26.702 69.298 9.379 48 9.379z" />
|
|
17
|
+
<circle cx={48} cy={48} r={5.379} />
|
|
18
|
+
<path d="m48 48.807-13.67 1.38-29.364-1.38v-1.614l29.364-1.38L48 47.193zm0 0 13.67 1.38 29.364-1.38v-1.614l-29.364-1.38L48 47.193z" />
|
|
19
|
+
<path d="m47.193 48-1.38-13.67 1.38-29.364h1.614l1.38 29.364L48.807 48zm0 0-1.38 13.67 1.38 29.364h1.614l1.38-29.364L48.807 48z" />
|
|
20
|
+
<path d="m47.43 48.57-10.642-8.689L17 18.141 18.141 17l21.74 19.788L48.57 47.43z" />
|
|
21
|
+
<path d="m47.43 48.57 8.689 10.642L77.859 79 79 77.859l-19.788-21.74L48.57 47.43z" />
|
|
22
|
+
<path d="m47.43 47.43 8.689-10.642L77.859 17 79 18.141l-19.788 21.74L48.57 48.57z" />
|
|
23
|
+
<path d="m47.43 47.43-10.642 8.689L17 77.859 18.141 79l21.74-19.788L48.57 48.57z" />
|
|
24
|
+
<path d="m48.309 48.746-12.102 6.506-27.656 9.962-.618-1.491 26.601-12.512 13.157-3.957zm0 0 13.157-3.957 26.601-12.512-.618-1.491-27.656 9.962-12.102 6.506z" />
|
|
25
|
+
<path d="m47.254 48.309-6.506-12.102-9.962-27.656 1.491-.618 12.512 26.601 3.957 13.157zm0 0 3.957 13.157 12.512 26.601 1.491-.618-9.962-27.656-6.506-12.102z" />
|
|
26
|
+
<path d="m47.691 48.746-13.157-3.957L7.933 32.277l.618-1.491 27.656 9.962 12.102 6.506zm0 0 12.102 6.506 27.656 9.962.618-1.491-26.601-12.512-13.157-3.957z" />
|
|
27
|
+
<path d="m47.254 47.691 3.957-13.157L63.723 7.933l1.491.618-9.962 27.656-6.506 12.102zm0 0-6.506 12.102-9.962 27.656 1.491.618 12.512-26.601 3.957-13.157z" />
|
|
28
|
+
</g>
|
|
29
|
+
<circle cx={256} cy={168} r={7.256} fill="#F5F5F5" />
|
|
30
|
+
<circle cx={256} cy={168} r={4.351} fill="#41479B" />
|
|
31
|
+
</g>
|
|
32
|
+
</svg>
|
|
33
|
+
);
|
|
34
|
+
export default SvgIn;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgIo = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 336" {...props}>
|
|
5
|
+
<g fill="none">
|
|
6
|
+
<path
|
|
7
|
+
fill="#F5F5F5"
|
|
8
|
+
d="M503.172 335.724H8.828A8.829 8.829 0 0 1 0 326.896V9.104A8.829 8.829 0 0 1 8.828.276h494.345a8.829 8.829 0 0 1 8.828 8.828v317.792a8.83 8.83 0 0 1-8.829 8.828z"
|
|
9
|
+
/>
|
|
10
|
+
<g fill="#41479B">
|
|
11
|
+
<path d="M512 265.103c-25.629 0-25.629-8.828-51.256-8.828-25.629 0-25.629 8.828-51.256 8.828-25.611 0-25.611-8.828-51.221-8.828-25.589 0-25.589 8.828-51.177 8.828-25.602 0-25.602-8.828-51.204-8.828-25.596 0-25.596 8.828-51.191 8.828-25.595 0-25.596-8.828-51.19-8.828-25.594 0-25.596 8.828-51.191 8.828-25.585 0-25.585-8.828-51.168-8.828-25.571 0-25.571 8.828-51.143 8.828V238.62c25.571 0 25.571-8.828 51.143-8.828 25.584 0 25.584 8.828 51.168 8.828 25.596 0 25.596-8.828 51.191-8.828 25.595 0 25.596 8.828 51.19 8.828 25.596 0 25.596-8.828 51.191-8.828 25.602 0 25.602 8.828 51.204 8.828 25.589 0 25.589-8.828 51.177-8.828 25.611 0 25.611 8.828 51.221 8.828 25.629 0 25.629-8.828 51.256-8.828 25.629 0 25.629 8.828 51.256 8.828v26.483zm0-105.931c-25.629 0-25.629-8.828-51.256-8.828-25.629 0-25.629 8.828-51.256 8.828-25.611 0-25.611-8.828-51.221-8.828-25.589 0-25.589 8.828-51.177 8.828-25.602 0-25.602-8.828-51.204-8.828-25.596 0-25.596 8.828-51.191 8.828-25.595 0-25.596-8.828-51.19-8.828-25.594 0-25.596 8.828-51.191 8.828-25.585 0-25.585-8.828-51.168-8.828-25.571 0-25.571 8.828-51.143 8.828V132.69c25.571 0 25.571-8.828 51.143-8.828 25.584 0 25.584 8.828 51.168 8.828 25.596 0 25.596-8.828 51.191-8.828 25.595 0 25.596 8.828 51.19 8.828 25.596 0 25.596-8.828 51.191-8.828 25.602 0 25.602 8.828 51.204 8.828 25.589 0 25.589-8.828 51.177-8.828 25.611 0 25.611 8.828 51.221 8.828 25.629 0 25.629-8.828 51.256-8.828 25.629 0 25.629 8.828 51.256 8.828v26.482zm0-52.965c-25.629 0-25.629-8.828-51.256-8.828-25.629 0-25.629 8.828-51.256 8.828-25.611 0-25.611-8.828-51.221-8.828-25.589 0-25.589 8.828-51.177 8.828-25.602 0-25.602-8.828-51.204-8.828-25.596 0-25.596 8.828-51.191 8.828-25.595 0-25.596-8.828-51.19-8.828-25.594 0-25.596 8.828-51.191 8.828-25.585 0-25.585-8.828-51.168-8.828-25.571 0-25.571 8.828-51.143 8.828V79.724c25.571 0 25.571-8.828 51.143-8.828 25.584 0 25.584 8.828 51.168 8.828 25.596 0 25.596-8.828 51.191-8.828 25.595 0 25.596 8.828 51.19 8.828 25.596 0 25.596-8.828 51.191-8.828 25.602 0 25.602 8.828 51.204 8.828 25.589 0 25.589-8.828 51.177-8.828 25.611 0 25.611 8.828 51.221 8.828 25.629 0 25.629-8.828 51.256-8.828 25.629 0 25.629 8.828 51.256 8.828v26.483zm0-52.965c-25.629 0-25.629-8.828-51.256-8.828-25.629 0-25.629 8.828-51.256 8.828-25.611 0-25.611-8.828-51.221-8.828-25.589 0-25.589 8.828-51.177 8.828-25.602 0-25.602-8.828-51.204-8.828-25.596 0-25.596 8.828-51.191 8.828-25.595 0-25.596-8.828-51.19-8.828-25.594 0-25.596 8.828-51.191 8.828-25.585 0-25.585-8.828-51.168-8.828-25.571 0-25.571 8.828-51.143 8.828V26.759c25.571 0 25.571-8.828 51.143-8.828 25.584 0 25.584 8.828 51.168 8.828 25.596 0 25.596-8.828 51.191-8.828 25.595 0 25.596 8.828 51.19 8.828 25.596 0 25.596-8.828 51.191-8.828 25.602 0 25.602 8.828 51.204 8.828 25.589 0 25.589-8.828 51.177-8.828 25.611 0 25.611 8.828 51.221 8.828 25.629 0 25.629-8.828 51.256-8.828 25.629 0 25.629 8.828 51.256 8.828v26.483zm0 158.896c-25.629 0-25.629-8.828-51.256-8.828-25.629 0-25.629 8.828-51.256 8.828-25.611 0-25.611-8.828-51.221-8.828-25.589 0-25.589 8.828-51.177 8.828-25.602 0-25.602-8.828-51.204-8.828-25.596 0-25.596 8.828-51.191 8.828-25.595 0-25.596-8.828-51.19-8.828-25.594 0-25.596 8.828-51.191 8.828-25.585 0-25.585-8.828-51.168-8.828-25.571 0-25.571 8.828-51.143 8.828v-26.483c25.571 0 25.571-8.828 51.143-8.828 25.584 0 25.584 8.828 51.168 8.828 25.596 0 25.596-8.828 51.191-8.828 25.595 0 25.596 8.828 51.19 8.828 25.596 0 25.596-8.828 51.191-8.828 25.602 0 25.602 8.828 51.204 8.828 25.589 0 25.589-8.828 51.177-8.828 25.611 0 25.611 8.828 51.221 8.828 25.629 0 25.629-8.828 51.256-8.828 25.629 0 25.629 8.828 51.256 8.828v26.483zm0 105.931c-25.629 0-25.629-8.828-51.256-8.828-25.629 0-25.629 8.828-51.256 8.828-25.611 0-25.611-8.828-51.221-8.828-25.589 0-25.589 8.828-51.177 8.828-25.602 0-25.602-8.828-51.204-8.828-25.596 0-25.596 8.828-51.191 8.828-25.595 0-25.596-8.828-51.19-8.828-25.594 0-25.596 8.828-51.191 8.828-25.585 0-25.585-8.828-51.168-8.828-25.571 0-25.571 8.828-51.143 8.828v-26.483c25.571 0 25.571-8.828 51.143-8.828 25.584 0 25.584 8.828 51.168 8.828 25.596 0 25.596-8.828 51.191-8.828 25.595 0 25.596 8.828 51.19 8.828 25.596 0 25.596-8.828 51.191-8.828 25.602 0 25.602 8.828 51.204 8.828 25.589 0 25.589-8.828 51.177-8.828 25.611 0 25.611 8.828 51.221 8.828 25.629 0 25.629-8.828 51.256-8.828 25.629 0 25.629 8.828 51.256 8.828v26.483z" />
|
|
12
|
+
<path d="M247.172 168H8.828A8.829 8.829 0 0 1 0 159.172V9.104A8.829 8.829 0 0 1 8.828.276h238.344A8.829 8.829 0 0 1 256 9.104v150.069a8.827 8.827 0 0 1-8.828 8.827z" />
|
|
13
|
+
</g>
|
|
14
|
+
<path
|
|
15
|
+
fill="#F5F5F5"
|
|
16
|
+
d="M247.172.276h-15.333l-81.77 53.573V.276h-44.138v53.573L24.161.276H8.828A8.829 8.829 0 0 0 0 9.104v7.002l70.155 45.963H0v44.138h70.155L0 152.171v7.001A8.829 8.829 0 0 0 8.828 168h15.333l81.77-53.573V168h44.138v-53.573L231.838 168h15.333a8.829 8.829 0 0 0 8.828-8.828v-7.002l-70.154-45.963h70.154V62.069h-70.155l70.155-45.963V9.104a8.827 8.827 0 0 0-8.827-8.828z"
|
|
17
|
+
/>
|
|
18
|
+
<g fill="#FF4B55">
|
|
19
|
+
<path d="M255.999 70.897H141.241V.276h-26.483v70.621H0v26.482h114.758V168h26.483V97.379h114.758z" />
|
|
20
|
+
<path d="M97.103 62.069 4.207 1.768C1.735 3.333 0 5.961 0 9.104v.458l80.889 52.507h16.214zm69.18 0 88.374-57.366c-1.536-2.599-4.246-4.427-7.485-4.427h-1.909l-95.194 61.793h16.214zm-76.809 44.138L1.269 163.463C2.79 166.125 5.542 168 8.828 168h1.665l95.195-61.793H89.474zm166.385 53.66-82.666-53.659H156.98l93.873 60.934c2.813-1.305 4.741-4.04 5.006-7.275z" />
|
|
21
|
+
</g>
|
|
22
|
+
<path
|
|
23
|
+
fill="#965032"
|
|
24
|
+
d="M388.413 299.387a6.112 6.112 0 0 1-6.111-6.111V97.724h12.222v195.553a6.11 6.11 0 0 1-6.111 6.11z"
|
|
25
|
+
/>
|
|
26
|
+
<path
|
|
27
|
+
fill="#73AF00"
|
|
28
|
+
d="m473.968 122.167-12.222-6.111-45-5.624 27.842-35.797 4.321-12.964-12.963 4.322-35.797 27.841-5.624-44.998-6.112-12.223-6.111 12.223-5.624 44.998-35.797-27.841-12.963-4.322 4.321 12.964 27.842 35.797-45 5.624-12.222 6.111 12.222 6.111 45 5.626-27.842 35.795-4.321 12.965 12.963-4.321 38.89-30.248 8.642-13.705 8.642 13.705 38.891 30.248 12.963 4.321-4.321-12.965-27.842-35.795 45-5.626z"
|
|
29
|
+
/>
|
|
30
|
+
<path
|
|
31
|
+
fill="#FFE15A"
|
|
32
|
+
d="M415.018 193.34c-5.492-5.482-17.252-3.467-23.549-1.877v-5.129a3.055 3.055 0 0 0-6.11 0v5.128c-6.296-1.594-18.055-3.609-23.549 1.878-5.238 5.235-1.443 17.858 2.161 26.634v8.126a4.065 4.065 0 0 0 4.066 4.066h40.756a4.066 4.066 0 0 0 4.066-4.066v-8.126c3.602-8.776 7.397-21.4 2.159-26.634zm-4.321 4.321c2.333 2.335-.28 12.567-4.49 22.284h-14.739v-22.17c6.861-1.943 16.259-3.091 19.229-.114zm-44.567 0c2.968-2.976 12.366-1.828 19.229.114v22.169H370.62c-4.21-9.716-6.823-19.948-4.49-22.283z"
|
|
33
|
+
/>
|
|
34
|
+
</g>
|
|
35
|
+
</svg>
|
|
36
|
+
);
|
|
37
|
+
export default SvgIo;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgIq = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 336" {...props}>
|
|
5
|
+
<g fill="none">
|
|
6
|
+
<path
|
|
7
|
+
fill="#FF4B55"
|
|
8
|
+
d="M512.001 112.092H0V9.103A8.829 8.829 0 0 1 8.828.275h494.345a8.829 8.829 0 0 1 8.828 8.828v102.989z"
|
|
9
|
+
/>
|
|
10
|
+
<path
|
|
11
|
+
fill="#464655"
|
|
12
|
+
d="M503.172 335.724H8.828A8.829 8.829 0 0 1 0 326.896V223.908h512v102.988a8.828 8.828 0 0 1-8.828 8.828z"
|
|
13
|
+
/>
|
|
14
|
+
<path fill="#F5F5F5" d="M0 112.088h512V223.9H0z" />
|
|
15
|
+
<g fill="#73AF00">
|
|
16
|
+
<path d="M308.065 145.525c-.928-.483-2.027-2.211-1.684-2.967.361-.793-.201-.725 1.696-.161 3.43.888 5.65.483 7.829-1.372l1.937-1.533 2.261 1.13c1.25.564 2.541.967 2.905.886 1.049-.242 3.069-2.825 3.027-3.713-.041-1.208.847-.886 1.291.405.928 2.422-.779 6.599-3.119 7.164-1.128.322-2.178.242-3.955-.322-2.098-.808-2.422-.808-3.55 0-2.342 1.856-5.692 2.019-8.638.483m8.835-9.343c-1.132-1.587-2.493-7.14-2.095-8.499.395-1.248.792-1.474 1.868-1.134 1.927.679 2.382 1.927 2.153 6.462-.339 3.397-.791 4.532-1.926 3.171m-75.895 24.548c-4.651 2.646-11.569 3.101-11.569 10.434-10.13.377-22.076.831-32.85.604 2.92-3.772 21.401-20.853 29.086-27.623 1.272-1.12 1.704-3.288.964-4.813l-.199-.41c-1.108-2.285-4.122-2.829-5.958-1.074-7.658 7.326-15.247 14.152-16.483 15.322-9.914 10.02-12.822 12.94-14.38 14.508a5.914 5.914 0 0 0-1.718 4.2v.103a5.943 5.943 0 0 0 5.942 5.911h43.381c2.458 0-.565-8.543 2.609-8.543 2.207 0 2.41 3.065 2.313 6.312-.074 2.47-2.109 4.424-4.579 4.427-18.755.026-38.279.205-56.651.222a2.737 2.737 0 0 1-2.735-2.748v-3.305c0-2.802-3.112-4.431-5.454-2.893-.086.056-.17.11-.254.162-1.224.765-1.85 2.263-1.372 3.624.31.884.445 1.96.474 3.085.04 1.487-1.171 2.713-2.658 2.759-6.076.186-12.679.241-14.554-3.342-1.058-2.02-3.309-2.974-5.35-1.954l-.271.136c-2.148 1.074-3.008 3.731-1.832 5.824 2.238 3.979 4.28 8.595 3.22 15.06-.864 2.037-2.492 3.313-4.256 4.461-1.96 1.276-.73 4.262 1.569 3.837 5.574-1.03 9.415-5.442 10.59-10.642h86.42a5.74 5.74 0 0 0 5.739-5.739V169.88c-.792-5.596-6.803-5.369-9.184-9.15zm109.615-24.783c1.275.82 2.552 1.641 3.975 2.319 1.556.743 2.151 2.643 1.241 4.107-.241.387-.441.82-.556 1.346v37.197c2.542.529 4.001.028 5.16-.771a2.263 2.263 0 0 1 3.489 1.288c.877 3.263 2.313 6.45 3.079 9.352a2.855 2.855 0 0 1-2.759 3.588h-14.572a2.336 2.336 0 0 1-2.336-2.336v-54.3c-.001-1.683 1.863-2.701 3.279-1.79zm-17.645 9.058c.011 10.271.131 21.335.148 32.345a2.58 2.58 0 0 1-2.582 2.583h-.167a2.58 2.58 0 0 1-2.58-2.58v-26.09c0-1.42-1.669-2.179-2.737-1.245l-3.42 2.955a3.172 3.172 0 0 0-1.105 2.397c-.011 4.244-.049 16.6-.064 21.994a2.578 2.578 0 0 1-2.58 2.569h-.234a2.576 2.576 0 0 1-2.58-2.557 5136.03 5136.03 0 0 1-.087-15.238c-.006-1.436-1.704-2.186-2.784-1.24-3.543 3.105-4.361 3.807-6.22 5.728.151.983.908 0 1.361.755v4.991c-12.908-2.43-13.871 7.882-13.388 18.946a3.11 3.11 0 0 0 3.102 2.978h40.526a2.72 2.72 0 0 0 2.721-2.721v-50.381c0-1.683-1.997-2.547-3.239-1.41-.99.906-2.047 1.813-2.955 2.634a3.487 3.487 0 0 0-1.136 2.587zm-29.825 34.551c-.793-2.269 3.668-3.101 4.196-1.058.189 2.494-3.212 2.57-4.196 1.058z" />
|
|
17
|
+
<path d="M169.295 198.38c1.55 0 2.797 1.286 2.797 2.797a2.767 2.767 0 0 1-2.797 2.798c-1.587 0-2.874-1.209-2.874-2.798.001-1.511 1.288-2.797 2.874-2.797m92.145-61.293c.757.455 1.535.89 2.364 1.281 1.496.707 2.086 2.566 1.171 3.945a4.43 4.43 0 0 0-.648 1.482v37.121c2.694.599 4.167.012 5.342-.857 1.17-.865 2.854-.267 3.229 1.138.673 2.52 1.685 5.012 2.466 7.378.956 2.893-1.19 5.874-4.237 5.874H259.76a3.333 3.333 0 0 1-3.333-3.334v-51.153c0-2.572 2.807-4.2 5.013-2.875z" />
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
</svg>
|
|
21
|
+
);
|
|
22
|
+
export default SvgIq;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgIr = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 336" {...props}>
|
|
5
|
+
<g fill="none">
|
|
6
|
+
<path
|
|
7
|
+
fill="#73AF00"
|
|
8
|
+
d="M512.001 112.094H0V9.106A8.829 8.829 0 0 1 8.828.278h494.345a8.829 8.829 0 0 1 8.828 8.828v102.988z"
|
|
9
|
+
/>
|
|
10
|
+
<path
|
|
11
|
+
fill="#FF4B55"
|
|
12
|
+
d="M503.172 335.727H8.828A8.829 8.829 0 0 1 0 326.899V223.911h512v102.988a8.829 8.829 0 0 1-8.828 8.828z"
|
|
13
|
+
/>
|
|
14
|
+
<g fill="#F5F5F5">
|
|
15
|
+
<path d="M0 112.091h512v111.812H0zm1.389-5.913h.077c.767 0 1.389-.621 1.389-1.389v-3.008c0-.767.621-1.389 1.389-1.389h5.827c.767 0 1.389.621 1.389 1.389v3.008c0 .767.621 1.389 1.389 1.389h11.502c.767 0 1.389-.621 1.389-1.389v-5.938c0-.767-.621-1.389-1.389-1.389h-5.79c-.767 0-1.389.621-1.389 1.389v.152c0 .767.621 1.389 1.389 1.389h2.935c.767 0 1.389.621 1.389 1.389v.151c0 .767-.621 1.389-1.389 1.389h-5.792a1.389 1.389 0 0 1-1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389H1.389c-.767 0-1.389.621-1.389 1.389v5.938a1.39 1.39 0 0 0 1.389 1.389zm5.748 0h.079c.767 0 1.389-.621 1.389-1.389v-.079c0-.767-.621-1.389-1.389-1.389h-.079c-.767 0-1.389.621-1.389 1.389v.079a1.39 1.39 0 0 0 1.389 1.389zM1.389 94.533h34.423c.767 0 1.389-.621 1.389-1.389v-.152c0-.767-.621-1.389-1.389-1.389H1.389c-.767 0-1.389.621-1.389 1.389v.152c0 .768.621 1.389 1.389 1.389zm34.422 11.645h-5.79a1.389 1.389 0 0 1-1.389-1.389v-5.938c0-.767.621-1.389 1.389-1.389h8.648c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767.621-1.389 1.389-1.389h.077c.767 0 1.389.621 1.389 1.389v8.94c0 .767.621 1.389 1.389 1.389h.079c.767 0 1.389-.621 1.389-1.389v-8.94c0-.767.621-1.389 1.389-1.389h.077c.767 0 1.389.621 1.389 1.389v8.94c0 .767.621 1.389 1.389 1.389h.115c.767 0 1.389-.621 1.389-1.389v-8.94c0-.767.621-1.389 1.389-1.389h.042c.767 0 1.389.621 1.389 1.389v11.797c0 .767-.621 1.389-1.389 1.389H41.447a1.389 1.389 0 0 1-1.389-1.389v-3.008c0-.767-.621-1.389-1.389-1.389h-5.79c-.767 0-1.389.621-1.389 1.389v.151c0 .767.621 1.389 1.389 1.389h2.933c.767 0 1.389.621 1.389 1.389v.079a1.39 1.39 0 0 1-1.39 1.389zm22.807 0h.115c.767 0 1.389-.621 1.389-1.389v-3.008c0-.767.621-1.389 1.389-1.389h5.754c.767 0 1.389.621 1.389 1.389v3.008c0 .767.621 1.389 1.389 1.389h11.502c.767 0 1.389-.621 1.389-1.389v-5.938c0-.767-.621-1.389-1.389-1.389h-5.79c-.767 0-1.389.621-1.389 1.389v.152c0 .767.621 1.389 1.389 1.389h2.935c.767 0 1.389.621 1.389 1.389v.151c0 .767-.621 1.389-1.389 1.389H72.9a1.389 1.389 0 0 1-1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389H58.618c-.767 0-1.389.621-1.389 1.389v5.938a1.391 1.391 0 0 0 1.389 1.389zm5.713 0h.077c.767 0 1.389-.621 1.389-1.389v-.079c0-.767-.621-1.389-1.389-1.389h-.077c-.767 0-1.389.621-1.389 1.389v.079a1.39 1.39 0 0 0 1.389 1.389zm-5.713-11.645h34.388c.767 0 1.389-.621 1.389-1.389v-.152c0-.767-.621-1.389-1.389-1.389H58.618c-.767 0-1.389.621-1.389 1.389v.152a1.39 1.39 0 0 0 1.389 1.389zm34.388 11.645h-5.827a1.389 1.389 0 0 1-1.389-1.389v-5.938c0-.767.621-1.389 1.389-1.389h8.648c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767.621-1.389 1.389-1.389h.115c.767 0 1.389.621 1.389 1.389v8.94c0 .767.621 1.389 1.389 1.389h.115c.767 0 1.389-.621 1.389-1.389v-8.94c0-.767.621-1.389 1.389-1.389h.042c.767 0 1.389.621 1.389 1.389v8.94c0 .767.621 1.389 1.389 1.389h.115c.767 0 1.389-.621 1.389-1.389v-8.94c0-.767.621-1.389 1.389-1.389h.077c.767 0 1.389.621 1.389 1.389v11.797c0 .767-.621 1.389-1.389 1.389H98.607a1.389 1.389 0 0 1-1.389-1.389v-3.008c0-.767-.621-1.389-1.389-1.389h-5.754c-.767 0-1.389.621-1.389 1.389v.151c0 .767.621 1.389 1.389 1.389h2.935c.767 0 1.389.621 1.389 1.389v.079a1.396 1.396 0 0 1-1.393 1.389zm22.808 0h.077c.767 0 1.389-.621 1.389-1.389v-3.008c0-.767.621-1.389 1.389-1.389h5.792c.767 0 1.389.621 1.389 1.389v3.008c0 .767.621 1.389 1.389 1.389h11.538c.767 0 1.389-.621 1.389-1.389v-5.938c0-.767-.621-1.389-1.389-1.389h-5.79c-.767 0-1.389.621-1.389 1.389v.152c0 .767.621 1.389 1.389 1.389h2.935c.767 0 1.389.621 1.389 1.389v.151c0 .767-.621 1.389-1.389 1.389h-5.827a1.389 1.389 0 0 1-1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389h-11.502c-.767 0-1.389.621-1.389 1.389v5.938a1.388 1.388 0 0 0 1.388 1.389zm5.712 0h.077c.767 0 1.389-.621 1.389-1.389v-.079c0-.767-.621-1.389-1.389-1.389h-.077c-.767 0-1.389.621-1.389 1.389v.079a1.39 1.39 0 0 0 1.389 1.389zm-5.712-11.645h34.424c.767 0 1.389-.621 1.389-1.389v-.152c0-.767-.621-1.389-1.389-1.389h-34.424c-.767 0-1.389.621-1.389 1.389v.152a1.388 1.388 0 0 0 1.389 1.389zm34.424 11.645h-5.827a1.389 1.389 0 0 1-1.389-1.389v-5.938c0-.767.621-1.389 1.389-1.389h8.646c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767.621-1.389 1.389-1.389h.079c.767 0 1.389.621 1.389 1.389v8.94c0 .767.621 1.389 1.389 1.389h.115c.767 0 1.389-.621 1.389-1.389v-8.94c0-.767.621-1.389 1.389-1.389h.115c.767 0 1.389.621 1.389 1.389v8.94c0 .767.621 1.389 1.389 1.389h.042c.767 0 1.389-.621 1.389-1.389v-8.94c0-.767.621-1.389 1.389-1.389h.077c.767 0 1.389.621 1.389 1.389v11.797c0 .767-.621 1.389-1.389 1.389h-11.54a1.389 1.389 0 0 1-1.389-1.389v-3.008c0-.767-.621-1.389-1.389-1.389h-5.79c-.767 0-1.389.621-1.389 1.389v.151c0 .767.621 1.389 1.389 1.389h2.973c.767 0 1.389.621 1.389 1.389v.079a1.393 1.393 0 0 1-1.391 1.389zm22.769 0h.077c.767 0 1.389-.621 1.389-1.389v-3.008c0-.767.621-1.389 1.389-1.389h5.79c.767 0 1.389.621 1.389 1.389v3.008c0 .767.621 1.389 1.389 1.389h11.54c.767 0 1.389-.621 1.389-1.389v-5.938c0-.767-.621-1.389-1.389-1.389h-5.827c-.767 0-1.389.621-1.389 1.389v.152c0 .767.621 1.389 1.389 1.389h2.935c.767 0 1.389.621 1.389 1.389v.151c0 .767-.621 1.389-1.389 1.389h-5.79a1.389 1.389 0 0 1-1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389h-11.502c-.767 0-1.389.621-1.389 1.389v5.938a1.39 1.39 0 0 0 1.388 1.389zm5.713 0h.077c.767 0 1.389-.621 1.389-1.389v-.079c0-.767-.621-1.389-1.389-1.389h-.077c-.767 0-1.389.621-1.389 1.389v.079a1.39 1.39 0 0 0 1.389 1.389zm-5.713-11.645h34.388c.767 0 1.389-.621 1.389-1.389v-.152c0-.767-.621-1.389-1.389-1.389h-34.388c-.767 0-1.389.621-1.389 1.389v.152a1.39 1.39 0 0 0 1.389 1.389zm34.388 11.645h-5.827a1.389 1.389 0 0 1-1.389-1.389v-5.938c0-.767.621-1.389 1.389-1.389h8.721c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767.621-1.389 1.389-1.389h.077c.767 0 1.389.621 1.389 1.389v8.94c0 .767.621 1.389 1.389 1.389h.042c.767 0 1.389-.621 1.389-1.389v-8.94c0-.767.621-1.389 1.389-1.389h.115c.767 0 1.389.621 1.389 1.389v8.94c0 .767.621 1.389 1.389 1.389h.079c.767 0 1.389-.621 1.389-1.389v-8.94c0-.767.621-1.389 1.389-1.389h.077c.767 0 1.389.621 1.389 1.389v11.797c0 .767-.621 1.389-1.389 1.389h-11.507a1.389 1.389 0 0 1-1.389-1.389v-3.008c0-.767-.621-1.389-1.389-1.389h-5.827c-.767 0-1.389.621-1.389 1.389v.151c0 .767.621 1.389 1.389 1.389h2.935c.767 0 1.389.621 1.389 1.389v.079a1.386 1.386 0 0 1-1.386 1.389zm22.805 0h.079c.767 0 1.389-.621 1.389-1.389v-3.008c0-.767.621-1.389 1.389-1.389h5.79c.767 0 1.389.621 1.389 1.389v3.008c0 .767.621 1.389 1.389 1.389h11.54c.767 0 1.389-.621 1.389-1.389v-5.938c0-.767-.621-1.389-1.389-1.389h-5.827c-.767 0-1.389.621-1.389 1.389v.152c0 .767.621 1.389 1.389 1.389h2.97c.767 0 1.389.621 1.389 1.389v.151c0 .767-.621 1.389-1.389 1.389h-5.79a1.389 1.389 0 0 1-1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389H230.2c-.767 0-1.389.621-1.389 1.389v5.938a1.39 1.39 0 0 0 1.389 1.389zm5.75 0h.042c.767 0 1.389-.621 1.389-1.389v-.079c0-.767-.621-1.389-1.389-1.389h-.042c-.767 0-1.389.621-1.389 1.389v.079a1.39 1.39 0 0 0 1.389 1.389zm-5.75-11.645h34.425c.767 0 1.389-.621 1.389-1.389v-.152c0-.767-.621-1.389-1.389-1.389H230.2c-.767 0-1.389.621-1.389 1.389v.152a1.39 1.39 0 0 0 1.389 1.389zm34.426 11.645h-5.827a1.389 1.389 0 0 1-1.389-1.389v-5.938c0-.767.621-1.389 1.389-1.389h8.684c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767.621-1.389 1.389-1.389h.077c.767 0 1.389.621 1.389 1.389v8.94c0 .767.621 1.389 1.389 1.389h.079c.767 0 1.389-.621 1.389-1.389v-8.94c0-.767.621-1.389 1.389-1.389h.077c.767 0 1.389.621 1.389 1.389v8.94c0 .767.621 1.389 1.389 1.389h.077c.767 0 1.389-.621 1.389-1.389v-8.94c0-.767.621-1.389 1.389-1.389h.079c.767 0 1.389.621 1.389 1.389v11.797c0 .767-.621 1.389-1.389 1.389H270.26a1.389 1.389 0 0 1-1.389-1.389v-3.008c0-.767-.621-1.389-1.389-1.389h-5.827c-.767 0-1.389.621-1.389 1.389v.151c0 .767.621 1.389 1.389 1.389h2.97c.767 0 1.389.621 1.389 1.389v.079c0 .766-.621 1.389-1.388 1.389zm22.769 0h.079c.767 0 1.389-.621 1.389-1.389v-3.008c0-.767.621-1.389 1.389-1.389h5.79c.767 0 1.389.621 1.389 1.389v3.008c0 .767.621 1.389 1.389 1.389h11.54c.767 0 1.389-.621 1.389-1.389v-5.938c0-.767-.621-1.389-1.389-1.389h-5.792c-.767 0-1.389.621-1.389 1.389v.152c0 .767.621 1.389 1.389 1.389h2.899c.767 0 1.389.621 1.389 1.389v.151c0 .767-.621 1.389-1.389 1.389h-5.754a1.389 1.389 0 0 1-1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389h-11.54c-.767 0-1.389.621-1.389 1.389v5.938a1.39 1.39 0 0 0 1.389 1.389zm5.749 0h.042c.767 0 1.389-.621 1.389-1.389v-.079c0-.767-.621-1.389-1.389-1.389h-.042c-.767 0-1.389.621-1.389 1.389v.079a1.39 1.39 0 0 0 1.389 1.389zm-5.749-11.645h34.424c.767 0 1.389-.621 1.389-1.389v-.152c0-.767-.621-1.389-1.389-1.389h-34.424c-.767 0-1.389.621-1.389 1.389v.152c0 .768.622 1.389 1.389 1.389zm34.425 11.645h-5.79a1.389 1.389 0 0 1-1.389-1.389v-5.938c0-.767.621-1.389 1.389-1.389h8.646c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767.621-1.389 1.389-1.389h.079c.767 0 1.389.621 1.389 1.389v8.94c0 .767.621 1.389 1.389 1.389h.077c.767 0 1.389-.621 1.389-1.389v-8.94c0-.767.621-1.389 1.389-1.389h.079c.767 0 1.389.621 1.389 1.389v8.94c0 .767.621 1.389 1.389 1.389h.077c.767 0 1.389-.621 1.389-1.389v-8.94c0-.767.621-1.389 1.389-1.389h.079c.767 0 1.389.621 1.389 1.389v11.797c0 .767-.621 1.389-1.389 1.389h-11.505a1.389 1.389 0 0 1-1.389-1.389v-3.008c0-.767-.621-1.389-1.389-1.389h-5.826c-.767 0-1.389.621-1.389 1.389v.151c0 .767.621 1.389 1.389 1.389h2.97c.767 0 1.389.621 1.389 1.389v.079a1.387 1.387 0 0 1-1.387 1.389zm22.769 0h.079c.767 0 1.389-.621 1.389-1.389v-3.008c0-.767.621-1.389 1.389-1.389h5.826c.767 0 1.389.621 1.389 1.389v3.008c0 .767.621 1.389 1.389 1.389h11.505c.767 0 1.389-.621 1.389-1.389v-5.938c0-.767-.621-1.389-1.389-1.389h-5.792c-.767 0-1.389.621-1.389 1.389v.152c0 .767.621 1.389 1.389 1.389h2.973c.767 0 1.389.621 1.389 1.389v.151c0 .767-.621 1.389-1.389 1.389h-5.865a1.389 1.389 0 0 1-1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389h-11.502c-.767 0-1.389.621-1.389 1.389v5.938a1.387 1.387 0 0 0 1.387 1.389zm5.713 0h.115c.767 0 1.389-.621 1.389-1.389v-.079c0-.767-.621-1.389-1.389-1.389h-.115c-.767 0-1.389.621-1.389 1.389v.079a1.39 1.39 0 0 0 1.389 1.389zm-5.713-11.645h34.424c.767 0 1.389-.621 1.389-1.389v-.152c0-.767-.621-1.389-1.389-1.389h-34.424c-.767 0-1.389.621-1.389 1.389v.152a1.39 1.39 0 0 0 1.389 1.389zm34.426 11.645h-5.79a1.389 1.389 0 0 1-1.389-1.389v-5.938c0-.767.621-1.389 1.389-1.389h8.646c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767.621-1.389 1.389-1.389h.079c.767 0 1.389.621 1.389 1.389v8.94c0 .767.621 1.389 1.389 1.389h.077c.767 0 1.389-.621 1.389-1.389v-8.94c0-.767.621-1.389 1.389-1.389h.079c.767 0 1.389.621 1.389 1.389v8.94c0 .767.621 1.389 1.389 1.389h.115c.767 0 1.389-.621 1.389-1.389v-8.94c0-.767.621-1.389 1.389-1.389h.04c.767 0 1.389.621 1.389 1.389v11.797c0 .767-.621 1.389-1.389 1.389h-11.502a1.389 1.389 0 0 1-1.389-1.389v-3.008c0-.767-.621-1.389-1.389-1.389h-5.754c-.767 0-1.389.621-1.389 1.389v.151c0 .767.621 1.389 1.389 1.389h2.899c.767 0 1.389.621 1.389 1.389v.079a1.392 1.392 0 0 1-1.39 1.389zm22.805 0h.042c.767 0 1.389-.621 1.389-1.389v-3.008c0-.767.621-1.389 1.389-1.389h5.792c.767 0 1.389.621 1.389 1.389v3.008c0 .767.621 1.389 1.389 1.389h11.538c.767 0 1.389-.621 1.389-1.389v-5.938c0-.767-.621-1.389-1.389-1.389h-5.752c-.767 0-1.389.621-1.389 1.389v.152c0 .767.621 1.389 1.389 1.389h2.933c.767 0 1.389.621 1.389 1.389v.151c0 .767-.621 1.389-1.389 1.389h-5.826a1.389 1.389 0 0 1-1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389H401.82c-.767 0-1.389.621-1.389 1.389v5.938a1.39 1.39 0 0 0 1.389 1.389zm5.712 0h.079c.767 0 1.389-.621 1.389-1.389v-.079c0-.767-.621-1.389-1.389-1.389h-.079c-.767 0-1.389.621-1.389 1.389v.079a1.39 1.39 0 0 0 1.389 1.389zm-5.712-11.645h34.462c.767 0 1.389-.621 1.389-1.389v-.152c0-.767-.621-1.389-1.389-1.389H401.82c-.767 0-1.389.621-1.389 1.389v.152a1.388 1.388 0 0 0 1.389 1.389zm34.461 11.645h-5.865a1.389 1.389 0 0 1-1.389-1.389v-5.938c0-.767.621-1.389 1.389-1.389h8.648c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767.621-1.389 1.389-1.389h.115c.767 0 1.389.621 1.389 1.389v8.94c0 .767.621 1.389 1.389 1.389h.077c.767 0 1.389-.621 1.389-1.389v-8.94c0-.767.621-1.389 1.389-1.389h.042c.767 0 1.389.621 1.389 1.389v8.94c0 .767.621 1.389 1.389 1.389h.115c.767 0 1.389-.621 1.389-1.389v-8.94c0-.767.621-1.389 1.389-1.389h.079c.767 0 1.389.621 1.389 1.389v11.797c0 .767-.621 1.389-1.389 1.389h-11.54a1.389 1.389 0 0 1-1.389-1.389v-3.008c0-.767-.621-1.389-1.389-1.389h-5.79c-.767 0-1.389.621-1.389 1.389v.151c0 .767.621 1.389 1.389 1.389h3.008c.767 0 1.389.621 1.389 1.389v.079a1.39 1.39 0 0 1-1.39 1.389zm22.732 0h.079c.767 0 1.389-.621 1.389-1.389v-3.008c0-.767.621-1.389 1.389-1.389h5.79c.767 0 1.389.621 1.389 1.389v3.008c0 .767.621 1.389 1.389 1.389h11.54c.767 0 1.389-.621 1.389-1.389v-5.938c0-.767-.621-1.389-1.389-1.389h-5.754c-.767 0-1.389.621-1.389 1.389v.152c0 .767.621 1.389 1.389 1.389h2.935c.767 0 1.389.621 1.389 1.389v.151c0 .767-.621 1.389-1.389 1.389h-5.865a1.389 1.389 0 0 1-1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389h-11.502c-.767 0-1.389.621-1.389 1.389v5.938a1.39 1.39 0 0 0 1.388 1.389zm5.713 0h.079c.767 0 1.389-.621 1.389-1.389v-.079c0-.767-.621-1.389-1.389-1.389h-.079c-.767 0-1.389.621-1.389 1.389v.079a1.39 1.39 0 0 0 1.389 1.389zm-5.713-11.645h34.388c.767 0 1.389-.621 1.389-1.389v-.152c0-.767-.621-1.389-1.389-1.389h-34.388c-.767 0-1.389.621-1.389 1.389v.152a1.39 1.39 0 0 0 1.389 1.389zm34.388 11.645h-5.79a1.389 1.389 0 0 1-1.389-1.389v-5.938c0-.767.621-1.389 1.389-1.389h8.721c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767.621-1.389 1.389-1.389h.004c.767 0 1.389.621 1.389 1.389v8.94c0 .767.621 1.389 1.389 1.389h.152c.767 0 1.389-.621 1.389-1.389v-8.94c0-.767.621-1.389 1.389-1.389h.004c.767 0 1.389.621 1.389 1.389v8.94c0 .767.621 1.389 1.389 1.389h.079c.767 0 1.389-.621 1.389-1.389v-8.94c0-.767.621-1.389 1.389-1.389h.151c.767 0 1.389.621 1.389 1.389v11.797c0 .767-.621 1.389-1.389 1.389H499.11a1.389 1.389 0 0 1-1.389-1.389v-3.008c0-.767-.621-1.389-1.389-1.389h-5.864c-.767 0-1.389.621-1.389 1.389v.151c0 .767.621 1.389 1.389 1.389h2.933c.767 0 1.389.621 1.389 1.389v.079a1.39 1.39 0 0 1-1.389 1.389z" />
|
|
16
|
+
<path d="M1.389 115.037h22.963c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389H1.389c-.767 0-1.389.621-1.389 1.389v3.081c0 .768.621 1.389 1.389 1.389zm28.633 0h22.927c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389H30.022c-.767 0-1.389.621-1.389 1.389v3.081c0 .768.622 1.389 1.389 1.389zm28.596 0h22.927c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389H58.618c-.767 0-1.389.621-1.389 1.389v3.081a1.39 1.39 0 0 0 1.389 1.389zm28.561 0h23c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389h-23c-.767 0-1.389.621-1.389 1.389v3.081c0 .768.622 1.389 1.389 1.389zm28.635 0h22.963c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389h-22.963c-.767 0-1.389.621-1.389 1.389v3.081a1.388 1.388 0 0 0 1.389 1.389zm28.596 0h22.963c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389H144.41c-.767 0-1.389.621-1.389 1.389v3.081a1.39 1.39 0 0 0 1.389 1.389zm28.597 0h22.963c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389h-22.963c-.767 0-1.389.621-1.389 1.389v3.081a1.39 1.39 0 0 0 1.389 1.389zm28.561 0h23c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389h-23c-.767 0-1.389.621-1.389 1.389v3.081c0 .768.621 1.389 1.389 1.389zm28.632 0h22.965c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389H230.2c-.767 0-1.389.621-1.389 1.389v3.081a1.39 1.39 0 0 0 1.389 1.389zm28.597 0h22.965c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389h-22.965c-.767 0-1.389.621-1.389 1.389v3.081a1.39 1.39 0 0 0 1.389 1.389zm28.598 0h22.965c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389h-22.965c-.767 0-1.389.621-1.389 1.389v3.081c0 .768.622 1.389 1.389 1.389zm28.635 0h22.927c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389H316.03c-.767 0-1.389.621-1.389 1.389v3.081c0 .768.622 1.389 1.389 1.389zm28.559 0h22.965c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389h-22.965c-.767 0-1.389.621-1.389 1.389v3.081a1.39 1.39 0 0 0 1.389 1.389zm28.635 0h22.925c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389h-22.925c-.767 0-1.389.621-1.389 1.389v3.081a1.39 1.39 0 0 0 1.389 1.389zm28.596 0h22.927c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389H401.82c-.767 0-1.389.621-1.389 1.389v3.081a1.388 1.388 0 0 0 1.389 1.389zm28.597 0h22.965c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389h-22.965c-.767 0-1.389.621-1.389 1.389v3.081c0 .768.622 1.389 1.389 1.389zm28.596 0h22.965c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389h-22.965c-.767 0-1.389.621-1.389 1.389v3.081a1.39 1.39 0 0 0 1.389 1.389zm28.599 0h23c.767 0 1.389-.621 1.389-1.389v-3.081c0-.767-.621-1.389-1.389-1.389h-23c-.767 0-1.389.621-1.389 1.389v3.081a1.387 1.387 0 0 0 1.389 1.389zm22.999 114.791h-.077c-.767 0-1.389.621-1.389 1.389v3.008c0 .767-.621 1.389-1.389 1.389h-5.827a1.389 1.389 0 0 1-1.389-1.389v-3.008c0-.767-.621-1.389-1.389-1.389h-11.502c-.767 0-1.389.621-1.389 1.389v5.939c0 .767.621 1.389 1.389 1.389h5.79c.767 0 1.389-.621 1.389-1.389v-.152c0-.767-.621-1.389-1.389-1.389h-2.935a1.389 1.389 0 0 1-1.389-1.389v-.151c0-.767.621-1.389 1.389-1.389h5.792c.767 0 1.389.621 1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h11.538c.767 0 1.389-.621 1.389-1.389v-5.939a1.39 1.39 0 0 0-1.39-1.389zm-5.748 0h-.079c-.767 0-1.389.621-1.389 1.389v.079c0 .767.621 1.389 1.389 1.389h.079c.767 0 1.389-.621 1.389-1.389v-.079a1.39 1.39 0 0 0-1.389-1.389zm5.748 11.645h-34.423c-.767 0-1.389.621-1.389 1.389v.152c0 .767.621 1.389 1.389 1.389h34.423c.767 0 1.389-.621 1.389-1.389v-.152c0-.768-.621-1.389-1.389-1.389zm-34.422-11.645h5.79c.767 0 1.389.621 1.389 1.389v5.939c0 .767-.621 1.389-1.389 1.389h-8.648c-.767 0-1.389.621-1.389 1.389v3.081c0 .767-.621 1.389-1.389 1.389h-.077a1.389 1.389 0 0 1-1.389-1.389v-8.94c0-.767-.621-1.389-1.389-1.389h-.079c-.767 0-1.389.621-1.389 1.389v8.94c0 .767-.621 1.389-1.389 1.389h-.077a1.389 1.389 0 0 1-1.389-1.389v-8.94c0-.767-.621-1.389-1.389-1.389h-.115c-.767 0-1.389.621-1.389 1.389v8.94c0 .767-.621 1.389-1.389 1.389h-.042a1.389 1.389 0 0 1-1.389-1.389v-11.797c0-.767.621-1.389 1.389-1.389h11.502c.767 0 1.389.621 1.389 1.389v3.008c0 .767.621 1.389 1.389 1.389h5.79c.767 0 1.389-.621 1.389-1.389v-.151c0-.767-.621-1.389-1.389-1.389h-2.933a1.389 1.389 0 0 1-1.389-1.389v-.079c0-.768.623-1.39 1.39-1.39zm-22.807 0h-.115c-.767 0-1.389.621-1.389 1.389v3.008c0 .767-.621 1.389-1.389 1.389h-5.754a1.389 1.389 0 0 1-1.389-1.389v-3.008c0-.767-.621-1.389-1.389-1.389h-11.502c-.767 0-1.389.621-1.389 1.389v5.939c0 .767.621 1.389 1.389 1.389h5.79c.767 0 1.389-.621 1.389-1.389v-.152c0-.767-.621-1.389-1.389-1.389h-2.935a1.389 1.389 0 0 1-1.389-1.389v-.151c0-.767.621-1.389 1.389-1.389h5.792c.767 0 1.389.621 1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h11.502c.767 0 1.389-.621 1.389-1.389v-5.939a1.39 1.39 0 0 0-1.389-1.389zm-5.713 0h-.077c-.767 0-1.389.621-1.389 1.389v.079c0 .767.621 1.389 1.389 1.389h.077c.767 0 1.389-.621 1.389-1.389v-.079a1.39 1.39 0 0 0-1.389-1.389zm5.713 11.645h-34.388c-.767 0-1.389.621-1.389 1.389v.152c0 .767.621 1.389 1.389 1.389h34.388c.767 0 1.389-.621 1.389-1.389v-.152a1.39 1.39 0 0 0-1.389-1.389zm-34.388-11.645h5.827c.767 0 1.389.621 1.389 1.389v5.939c0 .767-.621 1.389-1.389 1.389h-8.648c-.767 0-1.389.621-1.389 1.389v3.081c0 .767-.621 1.389-1.389 1.389h-.115a1.389 1.389 0 0 1-1.389-1.389v-8.94c0-.767-.621-1.389-1.389-1.389h-.115c-.767 0-1.389.621-1.389 1.389v8.94c0 .767-.621 1.389-1.389 1.389h-.042a1.389 1.389 0 0 1-1.389-1.389v-8.94c0-.767-.621-1.389-1.389-1.389h-.115c-.767 0-1.389.621-1.389 1.389v8.94c0 .767-.621 1.389-1.389 1.389h-.077a1.389 1.389 0 0 1-1.389-1.389v-11.797c0-.767.621-1.389 1.389-1.389h11.575c.767 0 1.389.621 1.389 1.389v3.008c0 .767.621 1.389 1.389 1.389h5.754c.767 0 1.389-.621 1.389-1.389v-.151c0-.767-.621-1.389-1.389-1.389h-2.935a1.389 1.389 0 0 1-1.389-1.389v-.079a1.394 1.394 0 0 1 1.392-1.39zm-22.808 0h-.077c-.767 0-1.389.621-1.389 1.389v3.008c0 .767-.621 1.389-1.389 1.389h-5.792a1.389 1.389 0 0 1-1.389-1.389v-3.008c0-.767-.621-1.389-1.389-1.389h-11.538c-.767 0-1.389.621-1.389 1.389v5.939c0 .767.621 1.389 1.389 1.389h5.79c.767 0 1.389-.621 1.389-1.389v-.152c0-.767-.621-1.389-1.389-1.389h-2.935a1.389 1.389 0 0 1-1.389-1.389v-.151c0-.767.621-1.389 1.389-1.389h5.827c.767 0 1.389.621 1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h11.502c.767 0 1.389-.621 1.389-1.389v-5.939a1.387 1.387 0 0 0-1.388-1.389zm-5.712 0h-.077c-.767 0-1.389.621-1.389 1.389v.079c0 .767.621 1.389 1.389 1.389h.077c.767 0 1.389-.621 1.389-1.389v-.079a1.39 1.39 0 0 0-1.389-1.389zm5.712 11.645h-34.425c-.767 0-1.389.621-1.389 1.389v.152c0 .767.621 1.389 1.389 1.389h34.425c.767 0 1.389-.621 1.389-1.389v-.152a1.388 1.388 0 0 0-1.389-1.389zm-34.424-11.645h5.827c.767 0 1.389.621 1.389 1.389v5.939c0 .767-.621 1.389-1.389 1.389h-8.646c-.767 0-1.389.621-1.389 1.389v3.081c0 .767-.621 1.389-1.389 1.389h-.079a1.389 1.389 0 0 1-1.389-1.389v-8.94c0-.767-.621-1.389-1.389-1.389h-.115c-.767 0-1.389.621-1.389 1.389v8.94c0 .767-.621 1.389-1.389 1.389h-.115a1.389 1.389 0 0 1-1.389-1.389v-8.94c0-.767-.621-1.389-1.389-1.389h-.042c-.767 0-1.389.621-1.389 1.389v8.94c0 .767-.621 1.389-1.389 1.389h-.077a1.389 1.389 0 0 1-1.389-1.389v-11.797c0-.767.621-1.389 1.389-1.389h11.54c.767 0 1.389.621 1.389 1.389v3.008c0 .767.621 1.389 1.389 1.389h5.79c.767 0 1.389-.621 1.389-1.389v-.151c0-.767-.621-1.389-1.389-1.389h-2.973a1.389 1.389 0 0 1-1.389-1.389v-.079a1.392 1.392 0 0 1 1.391-1.39zm-22.769 0h-.077c-.767 0-1.389.621-1.389 1.389v3.008c0 .767-.621 1.389-1.389 1.389h-5.79a1.389 1.389 0 0 1-1.389-1.389v-3.008c0-.767-.621-1.389-1.389-1.389h-11.54c-.767 0-1.389.621-1.389 1.389v5.939c0 .767.621 1.389 1.389 1.389h5.827c.767 0 1.389-.621 1.389-1.389v-.152c0-.767-.621-1.389-1.389-1.389h-2.935a1.389 1.389 0 0 1-1.389-1.389v-.151c0-.767.621-1.389 1.389-1.389h5.79c.767 0 1.389.621 1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h11.502c.767 0 1.389-.621 1.389-1.389v-5.939c0-.767-.622-1.389-1.388-1.389zm-5.713 0h-.077c-.767 0-1.389.621-1.389 1.389v.079c0 .767.621 1.389 1.389 1.389h.077c.767 0 1.389-.621 1.389-1.389v-.079a1.39 1.39 0 0 0-1.389-1.389zm5.713 11.645h-34.388c-.767 0-1.389.621-1.389 1.389v.152c0 .767.621 1.389 1.389 1.389h34.388c.767 0 1.389-.621 1.389-1.389v-.152a1.39 1.39 0 0 0-1.389-1.389zm-34.388-11.645h5.827c.767 0 1.389.621 1.389 1.389v5.939c0 .767-.621 1.389-1.389 1.389h-8.721c-.767 0-1.389.621-1.389 1.389v3.081c0 .767-.621 1.389-1.389 1.389h-.077a1.389 1.389 0 0 1-1.389-1.389v-8.94c0-.767-.621-1.389-1.389-1.389h-.042c-.767 0-1.389.621-1.389 1.389v8.94c0 .767-.621 1.389-1.389 1.389h-.115a1.389 1.389 0 0 1-1.389-1.389v-8.94c0-.767-.621-1.389-1.389-1.389h-.079c-.767 0-1.389.621-1.389 1.389v8.94c0 .767-.621 1.389-1.389 1.389h-.077a1.389 1.389 0 0 1-1.389-1.389v-11.797c0-.767.621-1.389 1.389-1.389h11.502c.767 0 1.389.621 1.389 1.389v3.008c0 .767.621 1.389 1.389 1.389h5.827c.767 0 1.389-.621 1.389-1.389v-.151c0-.767-.621-1.389-1.389-1.389h-2.935a1.389 1.389 0 0 1-1.389-1.389v-.079a1.393 1.393 0 0 1 1.391-1.39zm-22.805 0h-.079c-.767 0-1.389.621-1.389 1.389v3.008c0 .767-.621 1.389-1.389 1.389h-5.79a1.389 1.389 0 0 1-1.389-1.389v-3.008c0-.767-.621-1.389-1.389-1.389h-11.54c-.767 0-1.389.621-1.389 1.389v5.939c0 .767.621 1.389 1.389 1.389h5.827c.767 0 1.389-.621 1.389-1.389v-.152c0-.767-.621-1.389-1.389-1.389h-2.97a1.389 1.389 0 0 1-1.389-1.389v-.151c0-.767.621-1.389 1.389-1.389h5.79c.767 0 1.389.621 1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h11.54c.767 0 1.389-.621 1.389-1.389v-5.939a1.39 1.39 0 0 0-1.389-1.389zm-5.75 0h-.042c-.767 0-1.389.621-1.389 1.389v.079c0 .767.621 1.389 1.389 1.389h.042c.767 0 1.389-.621 1.389-1.389v-.079a1.39 1.39 0 0 0-1.389-1.389zm5.75 11.645h-34.425c-.767 0-1.389.621-1.389 1.389v.152c0 .767.621 1.389 1.389 1.389H281.8c.767 0 1.389-.621 1.389-1.389v-.152a1.39 1.39 0 0 0-1.389-1.389zm-34.426-11.645h5.827c.767 0 1.389.621 1.389 1.389v5.939c0 .767-.621 1.389-1.389 1.389h-8.684c-.767 0-1.389.621-1.389 1.389v3.081c0 .767-.621 1.389-1.389 1.389h-.077a1.389 1.389 0 0 1-1.389-1.389v-8.94c0-.767-.621-1.389-1.389-1.389h-.079c-.767 0-1.389.621-1.389 1.389v8.94c0 .767-.621 1.389-1.389 1.389h-.077a1.389 1.389 0 0 1-1.389-1.389v-8.94c0-.767-.621-1.389-1.389-1.389h-.077c-.767 0-1.389.621-1.389 1.389v8.94c0 .767-.621 1.389-1.389 1.389h-.079a1.389 1.389 0 0 1-1.389-1.389v-11.797c0-.767.621-1.389 1.389-1.389h11.502c.767 0 1.389.621 1.389 1.389v3.008c0 .767.621 1.389 1.389 1.389h5.827c.767 0 1.389-.621 1.389-1.389v-.151c0-.767-.621-1.389-1.389-1.389h-2.97a1.389 1.389 0 0 1-1.389-1.389v-.079c0-.768.621-1.39 1.388-1.39zm-22.769 0h-.079c-.767 0-1.389.621-1.389 1.389v3.008c0 .767-.621 1.389-1.389 1.389h-5.79a1.389 1.389 0 0 1-1.389-1.389v-3.008c0-.767-.621-1.389-1.389-1.389h-11.54c-.767 0-1.389.621-1.389 1.389v5.939c0 .767.621 1.389 1.389 1.389h5.792c.767 0 1.389-.621 1.389-1.389v-.152c0-.767-.621-1.389-1.389-1.389h-2.899a1.389 1.389 0 0 1-1.389-1.389v-.151c0-.767.621-1.389 1.389-1.389h5.754c.767 0 1.389.621 1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h11.54c.767 0 1.389-.621 1.389-1.389v-5.939a1.39 1.39 0 0 0-1.389-1.389zm-5.749 0h-.042c-.767 0-1.389.621-1.389 1.389v.079c0 .767.621 1.389 1.389 1.389h.042c.767 0 1.389-.621 1.389-1.389v-.079a1.39 1.39 0 0 0-1.389-1.389zm5.749 11.645H190.18c-.767 0-1.389.621-1.389 1.389v.152c0 .767.621 1.389 1.389 1.389h34.424c.767 0 1.389-.621 1.389-1.389v-.152a1.387 1.387 0 0 0-1.388-1.389zm-34.425-11.645h5.79c.767 0 1.389.621 1.389 1.389v5.939c0 .767-.621 1.389-1.389 1.389h-8.646c-.767 0-1.389.621-1.389 1.389v3.081c0 .767-.621 1.389-1.389 1.389h-.079a1.389 1.389 0 0 1-1.389-1.389v-8.94c0-.767-.621-1.389-1.389-1.389h-.077c-.767 0-1.389.621-1.389 1.389v8.94c0 .767-.621 1.389-1.389 1.389h-.079a1.389 1.389 0 0 1-1.389-1.389v-8.94c0-.767-.621-1.389-1.389-1.389h-.077c-.767 0-1.389.621-1.389 1.389v8.94c0 .767-.621 1.389-1.389 1.389h-.079a1.389 1.389 0 0 1-1.389-1.389v-11.797c0-.767.621-1.389 1.389-1.389h11.505c.767 0 1.389.621 1.389 1.389v3.008c0 .767.621 1.389 1.389 1.389h5.826c.767 0 1.389-.621 1.389-1.389v-.151c0-.767-.621-1.389-1.389-1.389h-2.97a1.389 1.389 0 0 1-1.389-1.389v-.079a1.387 1.387 0 0 1 1.387-1.39zm-22.769 0h-.079c-.767 0-1.389.621-1.389 1.389v3.008c0 .767-.621 1.389-1.389 1.389h-5.826a1.389 1.389 0 0 1-1.389-1.389v-3.008c0-.767-.621-1.389-1.389-1.389h-11.505c-.767 0-1.389.621-1.389 1.389v5.939c0 .767.621 1.389 1.389 1.389h5.792c.767 0 1.389-.621 1.389-1.389v-.152c0-.767-.621-1.389-1.389-1.389h-2.973a1.389 1.389 0 0 1-1.389-1.389v-.151c0-.767.621-1.389 1.389-1.389h5.865c.767 0 1.389.621 1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h11.502c.767 0 1.389-.621 1.389-1.389v-5.939a1.387 1.387 0 0 0-1.387-1.389zm-5.713 0h-.115c-.767 0-1.389.621-1.389 1.389v.079c0 .767.621 1.389 1.389 1.389h.115c.767 0 1.389-.621 1.389-1.389v-.079a1.39 1.39 0 0 0-1.389-1.389zm5.713 11.645h-34.424c-.767 0-1.389.621-1.389 1.389v.152c0 .767.621 1.389 1.389 1.389h34.424c.767 0 1.389-.621 1.389-1.389v-.152a1.39 1.39 0 0 0-1.389-1.389zm-34.426-11.645h5.79c.767 0 1.389.621 1.389 1.389v5.939c0 .767-.621 1.389-1.389 1.389h-8.646c-.767 0-1.389.621-1.389 1.389v3.081c0 .767-.621 1.389-1.389 1.389h-.079a1.389 1.389 0 0 1-1.389-1.389v-8.94c0-.767-.621-1.389-1.389-1.389h-.077c-.767 0-1.389.621-1.389 1.389v8.94c0 .767-.621 1.389-1.389 1.389h-.079a1.389 1.389 0 0 1-1.389-1.389v-8.94c0-.767-.621-1.389-1.389-1.389h-.115c-.767 0-1.389.621-1.389 1.389v8.94c0 .767-.621 1.389-1.389 1.389h-.041a1.389 1.389 0 0 1-1.389-1.389v-11.797c0-.767.621-1.389 1.389-1.389h11.502c.767 0 1.389.621 1.389 1.389v3.008c0 .767.621 1.389 1.389 1.389h5.754c.767 0 1.389-.621 1.389-1.389v-.151c0-.767-.621-1.389-1.389-1.389h-2.899a1.389 1.389 0 0 1-1.389-1.389v-.079a1.393 1.393 0 0 1 1.391-1.39zm-22.805 0h-.042c-.767 0-1.389.621-1.389 1.389v3.008c0 .767-.621 1.389-1.389 1.389h-5.792a1.389 1.389 0 0 1-1.389-1.389v-3.008c0-.767-.621-1.389-1.389-1.389H87.254c-.767 0-1.389.621-1.389 1.389v5.939c0 .767.621 1.389 1.389 1.389h5.752c.767 0 1.389-.621 1.389-1.389v-.152c0-.767-.621-1.389-1.389-1.389h-2.933a1.389 1.389 0 0 1-1.389-1.389v-.151c0-.767.621-1.389 1.389-1.389H95.9c.767 0 1.389.621 1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h11.505c.767 0 1.389-.621 1.389-1.389v-5.939a1.393 1.393 0 0 0-1.392-1.389zm-5.712 0h-.079c-.767 0-1.389.621-1.389 1.389v.079c0 .767.621 1.389 1.389 1.389h.079c.767 0 1.389-.621 1.389-1.389v-.079a1.39 1.39 0 0 0-1.389-1.389zm5.712 11.645H75.719c-.767 0-1.389.621-1.389 1.389v.152c0 .767.621 1.389 1.389 1.389h34.462c.767 0 1.389-.621 1.389-1.389v-.152a1.39 1.39 0 0 0-1.39-1.389zm-34.461-11.645h5.865c.767 0 1.389.621 1.389 1.389v5.939c0 .767-.621 1.389-1.389 1.389h-8.648c-.767 0-1.389.621-1.389 1.389v3.081c0 .767-.621 1.389-1.389 1.389h-.115a1.389 1.389 0 0 1-1.389-1.389v-8.94c0-.767-.621-1.389-1.389-1.389h-.077c-.767 0-1.389.621-1.389 1.389v8.94c0 .767-.621 1.389-1.389 1.389h-.042a1.389 1.389 0 0 1-1.389-1.389v-8.94c0-.767-.621-1.389-1.389-1.389h-.115c-.767 0-1.389.621-1.389 1.389v8.94c0 .767-.621 1.389-1.389 1.389h-.079a1.389 1.389 0 0 1-1.389-1.389v-11.797c0-.767.621-1.389 1.389-1.389h11.54c.767 0 1.389.621 1.389 1.389v3.008c0 .767.621 1.389 1.389 1.389h5.79c.767 0 1.389-.621 1.389-1.389v-.151c0-.767-.621-1.389-1.389-1.389h-3.005a1.389 1.389 0 0 1-1.389-1.389v-.079a1.386 1.386 0 0 1 1.387-1.39zm-22.733 0h-.079c-.767 0-1.389.621-1.389 1.389v3.008c0 .767-.621 1.389-1.389 1.389h-5.79a1.389 1.389 0 0 1-1.389-1.389v-3.008c0-.767-.621-1.389-1.389-1.389H30.022c-.767 0-1.389.621-1.389 1.389v5.939c0 .767.621 1.389 1.389 1.389h5.754c.767 0 1.389-.621 1.389-1.389v-.152c0-.767-.621-1.389-1.389-1.389h-2.935a1.389 1.389 0 0 1-1.389-1.389v-.151c0-.767.621-1.389 1.389-1.389h5.865c.767 0 1.389.621 1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h11.502c.767 0 1.389-.621 1.389-1.389v-5.939a1.39 1.39 0 0 0-1.389-1.389zm-5.712 0h-.079c-.767 0-1.389.621-1.389 1.389v.079c0 .767.621 1.389 1.389 1.389h.079c.767 0 1.389-.621 1.389-1.389v-.079a1.39 1.39 0 0 0-1.389-1.389zm5.712 11.645H18.599c-.767 0-1.389.621-1.389 1.389v.152c0 .767.621 1.389 1.389 1.389h34.388c.767 0 1.389-.621 1.389-1.389v-.152a1.39 1.39 0 0 0-1.39-1.389zm-34.387-11.645h5.79c.767 0 1.389.621 1.389 1.389v5.939c0 .767-.621 1.389-1.389 1.389H15.67c-.767 0-1.389.621-1.389 1.389v3.081c0 .767-.621 1.389-1.389 1.389h-.004a1.389 1.389 0 0 1-1.389-1.389v-8.94c0-.767-.621-1.389-1.389-1.389h-.154c-.767 0-1.389.621-1.389 1.389v8.94c0 .767-.621 1.389-1.389 1.389h-.003a1.389 1.389 0 0 1-1.389-1.389v-8.94c0-.767-.621-1.389-1.389-1.389h-.08c-.767 0-1.389.621-1.389 1.389v8.94c0 .767-.621 1.389-1.389 1.389h-.15A1.389 1.389 0 0 1 0 243.015v-11.797c0-.767.621-1.389 1.389-1.389h11.502c.767 0 1.389.621 1.389 1.389v3.008c0 .767.621 1.389 1.389 1.389h5.864c.767 0 1.389-.621 1.389-1.389v-.151c0-.767-.621-1.389-1.389-1.389H18.6a1.389 1.389 0 0 1-1.389-1.389v-.079a1.388 1.388 0 0 1 1.388-1.39zm492.012-8.86h-22.963c-.767 0-1.389.621-1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h22.963c.767 0 1.389-.621 1.389-1.389v-3.081c0-.768-.621-1.389-1.389-1.389zm-28.633 0h-22.927c-.767 0-1.389.621-1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h22.927c.767 0 1.389-.621 1.389-1.389v-3.081c0-.768-.622-1.389-1.389-1.389zm-28.596 0h-22.927c-.767 0-1.389.621-1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h22.927c.767 0 1.389-.621 1.389-1.389v-3.081a1.39 1.39 0 0 0-1.389-1.389zm-28.561 0h-23c-.767 0-1.389.621-1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h23c.767 0 1.389-.621 1.389-1.389v-3.081c0-.768-.621-1.389-1.389-1.389zm-28.635 0h-22.963c-.767 0-1.389.621-1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h22.963c.767 0 1.389-.621 1.389-1.389v-3.081a1.388 1.388 0 0 0-1.389-1.389zm-28.596 0h-22.963c-.767 0-1.389.621-1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h22.963c.767 0 1.389-.621 1.389-1.389v-3.081a1.39 1.39 0 0 0-1.389-1.389zm-28.597 0H316.03c-.767 0-1.389.621-1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h22.963c.767 0 1.389-.621 1.389-1.389v-3.081a1.39 1.39 0 0 0-1.389-1.389zm-28.561 0h-23c-.767 0-1.389.621-1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h23c.767 0 1.389-.621 1.389-1.389v-3.081c0-.768-.621-1.389-1.389-1.389zm-28.632 0h-22.965c-.767 0-1.389.621-1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389H281.8c.767 0 1.389-.621 1.389-1.389v-3.081a1.39 1.39 0 0 0-1.389-1.389zm-28.597 0h-22.965c-.767 0-1.389.621-1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h22.965c.767 0 1.389-.621 1.389-1.389v-3.081a1.39 1.39 0 0 0-1.389-1.389zm-28.598 0H201.64c-.767 0-1.389.621-1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h22.965c.767 0 1.389-.621 1.389-1.389v-3.081c0-.768-.622-1.389-1.389-1.389zm-28.635 0h-22.927c-.767 0-1.389.621-1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h22.927c.767 0 1.389-.621 1.389-1.389v-3.081c0-.768-.622-1.389-1.389-1.389zm-28.559 0h-22.965c-.767 0-1.389.621-1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h22.965c.767 0 1.389-.621 1.389-1.389v-3.081a1.39 1.39 0 0 0-1.389-1.389zm-28.635 0h-22.925c-.767 0-1.389.621-1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h22.925c.767 0 1.389-.621 1.389-1.389v-3.081a1.39 1.39 0 0 0-1.389-1.389zm-28.596 0H87.254c-.767 0-1.389.621-1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h22.927c.767 0 1.389-.621 1.389-1.389v-3.081a1.39 1.39 0 0 0-1.39-1.389zm-28.597 0H58.618c-.767 0-1.389.621-1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h22.965c.767 0 1.389-.621 1.389-1.389v-3.081c0-.768-.622-1.389-1.389-1.389zm-28.597 0H30.022c-.767 0-1.389.621-1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h22.965c.767 0 1.389-.621 1.389-1.389v-3.081a1.39 1.39 0 0 0-1.39-1.389zm-28.598 0H1.389c-.768 0-1.389.621-1.389 1.389v3.081c0 .767.621 1.389 1.389 1.389h23c.767 0 1.389-.621 1.389-1.389v-3.081c0-.768-.622-1.389-1.39-1.389z" />
|
|
17
|
+
</g>
|
|
18
|
+
<g fill="#FF4B55">
|
|
19
|
+
<path d="M248.698 126.276a7.55 7.55 0 0 0 7.334-2.026c2.898 2.934 7.647 3.004 10.651.141 1.956-1.886 2.759-4.75 2.06-7.334-2.548 4.121-7.925 5.448-12.046 2.863-.21-.141-.489-.28-.663-.42-3.875 2.863-9.357 2.095-12.291-1.745-.106-.211-.314-.49-.455-.698-1.049 4.053 1.395 8.241 5.41 9.219zm16.268 81.581c9.386-5.153 17.219-13.272 21.514-23.966 7.314-18.33 2.708-39.02-11.283-52.44-.481-.461-1.212.156-.863.724 13.799 22.503 8.363 52.074-12.99 68.278l1.021-65.367a2.894 2.894 0 0 0-1.071-2.291l-3.473-2.807a2.887 2.887 0 0 0-3.642.01l-3.422 2.797a2.885 2.885 0 0 0-1.059 2.28l.992 65.413c-21.356-16.196-26.804-45.794-13.026-68.312.348-.568-.383-1.185-.863-.723-13.964 13.42-18.599 34.109-11.286 52.438 4.295 10.692 12.127 18.812 21.516 23.965-5.975 2.048-12.255 3.134-18.605 2.952-.671-.019-.806.925-.163 1.119 8.068 2.449 16.366 2.617 24.168.868l3.063 5.943a.57.57 0 0 0 1.012.001l3.084-5.941c7.802 1.746 16.103 1.575 24.177-.874.642-.194.508-1.138-.163-1.119-6.358.185-12.653-.901-18.638-2.948z" />
|
|
20
|
+
<path d="M303.171 147.088a40.514 40.514 0 0 0-22.279-19.111c-.595-.209-1.059.577-.573.978 20.966 17.271 25.169 48.032 8.956 70.302-.839 1.118-1.747 2.305-2.62 3.281 19.905-10.685 27.272-35.546 16.516-55.45zm-80.416 52.169c-16.214-22.27-12.044-53.03 8.918-70.301.487-.402.022-1.186-.573-.978-9.485 3.334-17.408 10.135-22.243 19.11-10.824 19.904-3.386 44.765 16.552 55.449-.942-.976-1.85-2.162-2.654-3.28z" />
|
|
21
|
+
</g>
|
|
22
|
+
</g>
|
|
23
|
+
</svg>
|
|
24
|
+
);
|
|
25
|
+
export default SvgIr;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgIs = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 336" {...props}>
|
|
5
|
+
<g fill="none">
|
|
6
|
+
<path
|
|
7
|
+
fill="#41479B"
|
|
8
|
+
d="M503.172 335.724H8.828A8.829 8.829 0 0 1 0 326.896V9.103A8.829 8.829 0 0 1 8.828.275h494.345a8.829 8.829 0 0 1 8.828 8.828v317.793a8.83 8.83 0 0 1-8.829 8.828z"
|
|
9
|
+
/>
|
|
10
|
+
<path
|
|
11
|
+
fill="#F5F5F5"
|
|
12
|
+
d="M512 123.862H229.517V.276h-88.276v123.586H0v88.276h141.241v123.586h88.276V212.138H512z"
|
|
13
|
+
/>
|
|
14
|
+
<path
|
|
15
|
+
fill="#FF4B55"
|
|
16
|
+
d="M512 141.517H211.862V.276h-52.965v141.241H0v52.966h158.897v141.241h52.965V194.483H512z"
|
|
17
|
+
/>
|
|
18
|
+
</g>
|
|
19
|
+
</svg>
|
|
20
|
+
);
|
|
21
|
+
export default SvgIs;
|