@volverjs/ui-vue 0.0.1-beta.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +91 -0
- package/dist/Volver.d.ts +58 -0
- package/dist/components/VvAccordion/VvAccordion.d.ts +32 -0
- package/dist/components/VvAccordion/VvAccordion.es.js +260 -0
- package/dist/components/VvAccordion/VvAccordion.umd.js +1 -0
- package/dist/components/VvAccordion/VvAccordion.vue.d.ts +104 -0
- package/dist/components/VvAccordion/useAccordionProps.d.ts +16 -0
- package/dist/components/VvAccordionGroup/VvAccordionGroup.d.ts +50 -0
- package/dist/components/VvAccordionGroup/VvAccordionGroup.es.js +313 -0
- package/dist/components/VvAccordionGroup/VvAccordionGroup.umd.js +1 -0
- package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +170 -0
- package/dist/components/VvBadge/VvBadge.d.ts +4 -0
- package/dist/components/VvBadge/VvBadge.es.js +18 -0
- package/dist/components/VvBadge/VvBadge.umd.js +1 -0
- package/dist/components/VvBadge/VvBadge.vue.d.ts +56 -0
- package/dist/components/VvBreadcrumb/VvBreadcrumb.d.ts +26 -0
- package/dist/components/VvBreadcrumb/VvBreadcrumb.es.js +206 -0
- package/dist/components/VvBreadcrumb/VvBreadcrumb.umd.js +1 -0
- package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +118 -0
- package/dist/components/VvButton/VvButton.d.ts +115 -0
- package/dist/components/VvButton/VvButton.es.js +420 -0
- package/dist/components/VvButton/VvButton.umd.js +1 -0
- package/dist/components/VvButton/VvButton.vue.d.ts +228 -0
- package/dist/components/VvButton/useButtonGroupProps.d.ts +23 -0
- package/dist/components/VvButtonGroup/VvButtonGroup.d.ts +57 -0
- package/dist/components/VvButtonGroup/VvButtonGroup.es.js +210 -0
- package/dist/components/VvButtonGroup/VvButtonGroup.umd.js +1 -0
- package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +210 -0
- package/dist/components/VvCard/VvCard.d.ts +4 -0
- package/dist/components/VvCard/VvCard.es.js +188 -0
- package/dist/components/VvCard/VvCard.umd.js +1 -0
- package/dist/components/VvCard/VvCard.vue.d.ts +63 -0
- package/dist/components/VvCheck/VvCheck.d.ts +47 -0
- package/dist/components/VvCheck/VvCheck.es.js +318 -0
- package/dist/components/VvCheck/VvCheck.umd.js +1 -0
- package/dist/components/VvCheck/VvCheck.vue.d.ts +165 -0
- package/dist/components/VvCheck/useCheckProps.d.ts +16 -0
- package/dist/components/VvCheckGroup/VvCheckGroup.d.ts +65 -0
- package/dist/components/VvCheckGroup/VvCheckGroup.es.js +451 -0
- package/dist/components/VvCheckGroup/VvCheckGroup.umd.js +2 -0
- package/dist/components/VvCheckGroup/VvCheckGroup.vue.d.ts +272 -0
- package/dist/components/VvDialog/VvDialog.d.ts +22 -0
- package/dist/components/VvDialog/VvDialog.es.js +315 -0
- package/dist/components/VvDialog/VvDialog.umd.js +1 -0
- package/dist/components/VvDialog/VvDialog.vue.d.ts +153 -0
- package/dist/components/VvDialog/constants.d.ts +5 -0
- package/dist/components/VvDropdown/VvDropdown.d.ts +52 -0
- package/dist/components/VvDropdown/VvDropdown.es.js +236 -0
- package/dist/components/VvDropdown/VvDropdown.umd.js +1 -0
- package/dist/components/VvDropdown/VvDropdown.vue.d.ts +166 -0
- package/dist/components/VvIcon/VvIcon.d.ts +92 -0
- package/dist/components/VvIcon/VvIcon.es.js +229 -0
- package/dist/components/VvIcon/VvIcon.umd.js +1 -0
- package/dist/components/VvIcon/VvIcon.vue.d.ts +183 -0
- package/dist/components/VvInputText/VvInputText.d.ts +73 -0
- package/dist/components/VvInputText/VvInputText.es.js +727 -0
- package/dist/components/VvInputText/VvInputText.umd.js +2 -0
- package/dist/components/VvInputText/VvInputText.vue.d.ts +327 -0
- package/dist/components/VvInputText/VvInputTextActions.d.ts +3 -0
- package/dist/components/VvInputText/constants.d.ts +55 -0
- package/dist/components/VvNativeSelect/VvNativeSelect.d.ts +70 -0
- package/dist/components/VvNativeSelect/VvNativeSelect.es.js +416 -0
- package/dist/components/VvNativeSelect/VvNativeSelect.umd.js +2 -0
- package/dist/components/VvNativeSelect/VvNativeSelect.vue.d.ts +228 -0
- package/dist/components/VvProgress/VvProgress.d.ts +29 -0
- package/dist/components/VvProgress/VvProgress.es.js +188 -0
- package/dist/components/VvProgress/VvProgress.umd.js +1 -0
- package/dist/components/VvProgress/VvProgress.vue.d.ts +117 -0
- package/dist/components/VvRadio/VvRadio.d.ts +22 -0
- package/dist/components/VvRadio/VvRadio.es.js +307 -0
- package/dist/components/VvRadio/VvRadio.umd.js +1 -0
- package/dist/components/VvRadio/VvRadio.vue.d.ts +136 -0
- package/dist/components/VvRadio/useRadioProps.d.ts +15 -0
- package/dist/components/VvRadioGroup/VvRadioGroup.d.ts +54 -0
- package/dist/components/VvRadioGroup/VvRadioGroup.es.js +441 -0
- package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +2 -0
- package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +264 -0
- package/dist/components/VvSelect/VvSelect.d.ts +99 -0
- package/dist/components/VvSelect/VvSelect.es.js +447 -0
- package/dist/components/VvSelect/VvSelect.umd.js +2 -0
- package/dist/components/VvSelect/VvSelect.vue.d.ts +294 -0
- package/dist/components/VvTextarea/VvTextarea.d.ts +88 -0
- package/dist/components/VvTextarea/VvTextarea.es.js +550 -0
- package/dist/components/VvTextarea/VvTextarea.umd.js +2 -0
- package/dist/components/VvTextarea/VvTextarea.vue.d.ts +369 -0
- package/dist/components/VvTextarea/constants.d.ts +19 -0
- package/dist/components/common/HintSlot.d.ts +25 -0
- package/dist/components/index.d.ts +12 -0
- package/dist/components/index.es.js +1120 -0
- package/dist/components/index.umd.js +2 -0
- package/dist/composables/debouncedInput/useDebouncedInput.d.ts +2 -0
- package/dist/composables/focus/useComponentFocus.d.ts +7 -0
- package/dist/composables/group/types/IAccordionGroupState.d.ts +10 -0
- package/dist/composables/group/types/IButtonGroupState.d.ts +19 -0
- package/dist/composables/group/types/IGroupState.d.ts +11 -0
- package/dist/composables/group/types/IInputGroup.d.ts +11 -0
- package/dist/composables/group/useInjectedGroupState.d.ts +10 -0
- package/dist/composables/group/useProvideGroupState.d.ts +6 -0
- package/dist/composables/icons/useComponentIcons.d.ts +26 -0
- package/dist/composables/options/useOptions.d.ts +5 -0
- package/dist/composables/textLimit/useTextLimit.d.ts +14 -0
- package/dist/composables/useModifiers.d.ts +10 -0
- package/dist/constants.d.ts +4 -0
- package/dist/icons.es.js +1885 -0
- package/dist/icons.umd.js +1 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.es.js +1156 -0
- package/dist/index.umd.js +2 -0
- package/dist/props/index.d.ts +92 -0
- package/dist/stories/Button/Button.test.d.ts +11 -0
- package/dist/stories/Icon/IconList.vue.d.ts +44 -0
- package/dist/stories/RadioGroup/RadioProperty.test.d.ts +12 -0
- package/dist/stories/utils.d.ts +5 -0
- package/dist/test/expect.d.ts +13 -0
- package/dist/utils/ObjectUtilities.d.ts +96 -0
- package/package.json +216 -0
- package/src/Volver.ts +114 -0
- package/src/assets/icons/detailed/add-circle.svg +1 -0
- package/src/assets/icons/detailed/add.svg +1 -0
- package/src/assets/icons/detailed/align-center.svg +1 -0
- package/src/assets/icons/detailed/align-justify.svg +1 -0
- package/src/assets/icons/detailed/align-left.svg +1 -0
- package/src/assets/icons/detailed/align-right.svg +1 -0
- package/src/assets/icons/detailed/analysis-2.svg +1 -0
- package/src/assets/icons/detailed/analysis-3.svg +1 -0
- package/src/assets/icons/detailed/analysis.svg +1 -0
- package/src/assets/icons/detailed/apple.svg +1 -0
- package/src/assets/icons/detailed/arrow-down.svg +1 -0
- package/src/assets/icons/detailed/arrow-left.svg +1 -0
- package/src/assets/icons/detailed/arrow-right.svg +1 -0
- package/src/assets/icons/detailed/arrow-up.svg +1 -0
- package/src/assets/icons/detailed/attachment.svg +1 -0
- package/src/assets/icons/detailed/back-to-front.svg +1 -0
- package/src/assets/icons/detailed/bell-active.svg +1 -0
- package/src/assets/icons/detailed/bell.svg +1 -0
- package/src/assets/icons/detailed/bold.svg +1 -0
- package/src/assets/icons/detailed/bookmark-active.svg +1 -0
- package/src/assets/icons/detailed/bookmark.svg +1 -0
- package/src/assets/icons/detailed/building.svg +1 -0
- package/src/assets/icons/detailed/bullet-list.svg +1 -0
- package/src/assets/icons/detailed/calendar.svg +1 -0
- package/src/assets/icons/detailed/camera-off.svg +1 -0
- package/src/assets/icons/detailed/camera-on.svg +1 -0
- package/src/assets/icons/detailed/catalog.svg +1 -0
- package/src/assets/icons/detailed/certificate.svg +1 -0
- package/src/assets/icons/detailed/chat.svg +1 -0
- package/src/assets/icons/detailed/check-badge.svg +1 -0
- package/src/assets/icons/detailed/check-circle.svg +1 -0
- package/src/assets/icons/detailed/check.svg +1 -0
- package/src/assets/icons/detailed/checkbox.svg +1 -0
- package/src/assets/icons/detailed/chevron-down-circle.svg +1 -0
- package/src/assets/icons/detailed/chevron-down.svg +1 -0
- package/src/assets/icons/detailed/chevron-left-circle.svg +1 -0
- package/src/assets/icons/detailed/chevron-left.svg +1 -0
- package/src/assets/icons/detailed/chevron-right-circle.svg +1 -0
- package/src/assets/icons/detailed/chevron-up-circle.svg +1 -0
- package/src/assets/icons/detailed/chevron-up.svg +1 -0
- package/src/assets/icons/detailed/classroom.svg +1 -0
- package/src/assets/icons/detailed/clear-field.svg +1 -0
- package/src/assets/icons/detailed/clear-style.svg +1 -0
- package/src/assets/icons/detailed/close-circle.svg +1 -0
- package/src/assets/icons/detailed/close-loader.svg +1 -0
- package/src/assets/icons/detailed/close.svg +1 -0
- package/src/assets/icons/detailed/coffee.svg +1 -0
- package/src/assets/icons/detailed/color.svg +1 -0
- package/src/assets/icons/detailed/contact-us.svg +1 -0
- package/src/assets/icons/detailed/copy.svg +1 -0
- package/src/assets/icons/detailed/courses.svg +1 -0
- package/src/assets/icons/detailed/dashboard.svg +1 -0
- package/src/assets/icons/detailed/download.svg +1 -0
- package/src/assets/icons/detailed/drag.svg +1 -0
- package/src/assets/icons/detailed/duplicate.svg +1 -0
- package/src/assets/icons/detailed/edit.svg +1 -0
- package/src/assets/icons/detailed/elearning.svg +1 -0
- package/src/assets/icons/detailed/email.svg +1 -0
- package/src/assets/icons/detailed/error-2.svg +1 -0
- package/src/assets/icons/detailed/error.svg +1 -0
- package/src/assets/icons/detailed/exercise.svg +1 -0
- package/src/assets/icons/detailed/external-link.svg +1 -0
- package/src/assets/icons/detailed/extract.svg +1 -0
- package/src/assets/icons/detailed/eye-off.svg +1 -0
- package/src/assets/icons/detailed/eye-on.svg +1 -0
- package/src/assets/icons/detailed/fail.svg +1 -0
- package/src/assets/icons/detailed/fast-back.svg +1 -0
- package/src/assets/icons/detailed/fast-forward.svg +1 -0
- package/src/assets/icons/detailed/file-add.svg +1 -0
- package/src/assets/icons/detailed/file-duplicate.svg +1 -0
- package/src/assets/icons/detailed/file-remove.svg +1 -0
- package/src/assets/icons/detailed/file-required.svg +1 -0
- package/src/assets/icons/detailed/file.svg +1 -0
- package/src/assets/icons/detailed/filter-2.svg +1 -0
- package/src/assets/icons/detailed/filter-active.svg +1 -0
- package/src/assets/icons/detailed/filter.svg +1 -0
- package/src/assets/icons/detailed/flag.svg +1 -0
- package/src/assets/icons/detailed/folder.svg +1 -0
- package/src/assets/icons/detailed/full-width.svg +1 -0
- package/src/assets/icons/detailed/go-to-back.svg +1 -0
- package/src/assets/icons/detailed/grid.svg +1 -0
- package/src/assets/icons/detailed/group-add.svg +1 -0
- package/src/assets/icons/detailed/group.svg +1 -0
- package/src/assets/icons/detailed/heart-active.svg +1 -0
- package/src/assets/icons/detailed/heart.svg +1 -0
- package/src/assets/icons/detailed/highlighter.svg +1 -0
- package/src/assets/icons/detailed/home.svg +1 -0
- package/src/assets/icons/detailed/hourglass.svg +1 -0
- package/src/assets/icons/detailed/image.svg +1 -0
- package/src/assets/icons/detailed/info-badge.svg +1 -0
- package/src/assets/icons/detailed/information.svg +1 -0
- package/src/assets/icons/detailed/italic.svg +1 -0
- package/src/assets/icons/detailed/key.svg +1 -0
- package/src/assets/icons/detailed/language.svg +1 -0
- package/src/assets/icons/detailed/learning-path.svg +1 -0
- package/src/assets/icons/detailed/light-off.svg +1 -0
- package/src/assets/icons/detailed/light-on.svg +1 -0
- package/src/assets/icons/detailed/link.svg +1 -0
- package/src/assets/icons/detailed/lock.svg +1 -0
- package/src/assets/icons/detailed/login.svg +1 -0
- package/src/assets/icons/detailed/logout.svg +1 -0
- package/src/assets/icons/detailed/maximaze.svg +1 -0
- package/src/assets/icons/detailed/menu.svg +1 -0
- package/src/assets/icons/detailed/merge.svg +1 -0
- package/src/assets/icons/detailed/minimize.svg +1 -0
- package/src/assets/icons/detailed/mixed-class.svg +1 -0
- package/src/assets/icons/detailed/more-horizontal.svg +1 -0
- package/src/assets/icons/detailed/more-vertical.svg +1 -0
- package/src/assets/icons/detailed/news.svg +1 -0
- package/src/assets/icons/detailed/no-prerequisites.svg +1 -0
- package/src/assets/icons/detailed/notes.svg +1 -0
- package/src/assets/icons/detailed/number-code.svg +1 -0
- package/src/assets/icons/detailed/numbered-list.svg +1 -0
- package/src/assets/icons/detailed/on-site.svg +1 -0
- package/src/assets/icons/detailed/order-down.svg +1 -0
- package/src/assets/icons/detailed/order-up.svg +1 -0
- package/src/assets/icons/detailed/paste.svg +1 -0
- package/src/assets/icons/detailed/pausa.svg +1 -0
- package/src/assets/icons/detailed/pdf.svg +1 -0
- package/src/assets/icons/detailed/phone.svg +1 -0
- package/src/assets/icons/detailed/pin-map.svg +1 -0
- package/src/assets/icons/detailed/pin.svg +1 -0
- package/src/assets/icons/detailed/pizza.svg +1 -0
- package/src/assets/icons/detailed/play.svg +1 -0
- package/src/assets/icons/detailed/plug-in.svg +1 -0
- package/src/assets/icons/detailed/pointer.svg +1 -0
- package/src/assets/icons/detailed/printer.svg +1 -0
- package/src/assets/icons/detailed/profile-add.svg +1 -0
- package/src/assets/icons/detailed/profile.svg +1 -0
- package/src/assets/icons/detailed/push-pin-off.svg +1 -0
- package/src/assets/icons/detailed/push-pin-on.svg +1 -0
- package/src/assets/icons/detailed/qrcode.svg +1 -0
- package/src/assets/icons/detailed/question-badge.svg +1 -0
- package/src/assets/icons/detailed/radio.svg +1 -0
- package/src/assets/icons/detailed/redo.svg +1 -0
- package/src/assets/icons/detailed/relations.svg +1 -0
- package/src/assets/icons/detailed/reload.svg +1 -0
- package/src/assets/icons/detailed/remove-circle.svg +1 -0
- package/src/assets/icons/detailed/remove.svg +1 -0
- package/src/assets/icons/detailed/reorder.svg +1 -0
- package/src/assets/icons/detailed/repeat.svg +1 -0
- package/src/assets/icons/detailed/repository.svg +1 -0
- package/src/assets/icons/detailed/request-form.svg +1 -0
- package/src/assets/icons/detailed/resize-100%.svg +1 -0
- package/src/assets/icons/detailed/resize-height.svg +1 -0
- package/src/assets/icons/detailed/resize-width.svg +1 -0
- package/src/assets/icons/detailed/search.svg +1 -0
- package/src/assets/icons/detailed/sequential-prerequisites.svg +1 -0
- package/src/assets/icons/detailed/settings.svg +1 -0
- package/src/assets/icons/detailed/share.svg +1 -0
- package/src/assets/icons/detailed/sketch.svg +1 -0
- package/src/assets/icons/detailed/skills.svg +1 -0
- package/src/assets/icons/detailed/skip-back.svg +1 -0
- package/src/assets/icons/detailed/skip-forward.svg +1 -0
- package/src/assets/icons/detailed/sms.svg +1 -0
- package/src/assets/icons/detailed/sso-access.svg +1 -0
- package/src/assets/icons/detailed/star-active.svg +1 -0
- package/src/assets/icons/detailed/star.svg +1 -0
- package/src/assets/icons/detailed/success.svg +1 -0
- package/src/assets/icons/detailed/sun.svg +1 -0
- package/src/assets/icons/detailed/sunrise.svg +1 -0
- package/src/assets/icons/detailed/support.svg +1 -0
- package/src/assets/icons/detailed/survey.svg +1 -0
- package/src/assets/icons/detailed/table.svg +1 -0
- package/src/assets/icons/detailed/tematic-channels.svg +1 -0
- package/src/assets/icons/detailed/test.svg +1 -0
- package/src/assets/icons/detailed/text-body.svg +1 -0
- package/src/assets/icons/detailed/text-edit.svg +1 -0
- package/src/assets/icons/detailed/text-style.svg +1 -0
- package/src/assets/icons/detailed/time.svg +1 -0
- package/src/assets/icons/detailed/toilet-piper.svg +1 -0
- package/src/assets/icons/detailed/training-points.svg +1 -0
- package/src/assets/icons/detailed/trash.svg +1 -0
- package/src/assets/icons/detailed/underline.svg +1 -0
- package/src/assets/icons/detailed/undo.svg +1 -0
- package/src/assets/icons/detailed/unlock.svg +1 -0
- package/src/assets/icons/detailed/upload.svg +1 -0
- package/src/assets/icons/detailed/user-add.svg +1 -0
- package/src/assets/icons/detailed/user-badge.svg +1 -0
- package/src/assets/icons/detailed/user.svg +1 -0
- package/src/assets/icons/detailed/video-off.svg +1 -0
- package/src/assets/icons/detailed/video-on.svg +1 -0
- package/src/assets/icons/detailed/video-rec.svg +1 -0
- package/src/assets/icons/detailed/view-card.svg +1 -0
- package/src/assets/icons/detailed/view-list.svg +1 -0
- package/src/assets/icons/detailed/view.svg +1 -0
- package/src/assets/icons/detailed/voice-off.svg +1 -0
- package/src/assets/icons/detailed/voice-on.svg +1 -0
- package/src/assets/icons/detailed/volume-down.svg +1 -0
- package/src/assets/icons/detailed/volume-off.svg +1 -0
- package/src/assets/icons/detailed/volume-up.svg +1 -0
- package/src/assets/icons/detailed/warning.svg +1 -0
- package/src/assets/icons/detailed/webinar.svg +1 -0
- package/src/assets/icons/detailed/whiteboard.svg +1 -0
- package/src/assets/icons/detailed/wine.svg +1 -0
- package/src/assets/icons/detailed/zip.svg +1 -0
- package/src/assets/icons/detailed/zoom-in.svg +1 -0
- package/src/assets/icons/detailed/zoom-out.svg +1 -0
- package/src/assets/icons/detailed.json +1 -0
- package/src/assets/icons/index.js +7 -0
- package/src/assets/icons/normal/add-circle.svg +1 -0
- package/src/assets/icons/normal/add.svg +1 -0
- package/src/assets/icons/normal/align-center.svg +1 -0
- package/src/assets/icons/normal/align-justify.svg +1 -0
- package/src/assets/icons/normal/align-left.svg +1 -0
- package/src/assets/icons/normal/align-right.svg +1 -0
- package/src/assets/icons/normal/analysis-2.svg +1 -0
- package/src/assets/icons/normal/analysis-3.svg +1 -0
- package/src/assets/icons/normal/analysis.svg +1 -0
- package/src/assets/icons/normal/apple.svg +1 -0
- package/src/assets/icons/normal/arrow-down.svg +1 -0
- package/src/assets/icons/normal/arrow-left.svg +1 -0
- package/src/assets/icons/normal/arrow-right.svg +1 -0
- package/src/assets/icons/normal/arrow-up.svg +1 -0
- package/src/assets/icons/normal/attachment.svg +1 -0
- package/src/assets/icons/normal/back-to-front.svg +1 -0
- package/src/assets/icons/normal/bell-active.svg +1 -0
- package/src/assets/icons/normal/bell.svg +1 -0
- package/src/assets/icons/normal/bold.svg +1 -0
- package/src/assets/icons/normal/bookmark active.svg +1 -0
- package/src/assets/icons/normal/bookmark.svg +1 -0
- package/src/assets/icons/normal/building.svg +1 -0
- package/src/assets/icons/normal/bulleted-list.svg +1 -0
- package/src/assets/icons/normal/calendar.svg +1 -0
- package/src/assets/icons/normal/camera-off.svg +1 -0
- package/src/assets/icons/normal/camera-on.svg +1 -0
- package/src/assets/icons/normal/catalog.svg +1 -0
- package/src/assets/icons/normal/certificate.svg +1 -0
- package/src/assets/icons/normal/chat.svg +1 -0
- package/src/assets/icons/normal/check-badge.svg +1 -0
- package/src/assets/icons/normal/check-circle.svg +1 -0
- package/src/assets/icons/normal/check.svg +1 -0
- package/src/assets/icons/normal/checkbox.svg +1 -0
- package/src/assets/icons/normal/chevron-down-circle.svg +1 -0
- package/src/assets/icons/normal/chevron-down.svg +1 -0
- package/src/assets/icons/normal/chevron-left-circle.svg +1 -0
- package/src/assets/icons/normal/chevron-left.svg +1 -0
- package/src/assets/icons/normal/chevron-right-circle.svg +1 -0
- package/src/assets/icons/normal/chevron-right.svg +1 -0
- package/src/assets/icons/normal/chevron-up-circle.svg +1 -0
- package/src/assets/icons/normal/chevron-up.svg +1 -0
- package/src/assets/icons/normal/classroom.svg +1 -0
- package/src/assets/icons/normal/clear-field.svg +1 -0
- package/src/assets/icons/normal/clear-style.svg +1 -0
- package/src/assets/icons/normal/close-circle.svg +1 -0
- package/src/assets/icons/normal/close-loader.svg +1 -0
- package/src/assets/icons/normal/close.svg +1 -0
- package/src/assets/icons/normal/coffee.svg +1 -0
- package/src/assets/icons/normal/color.svg +1 -0
- package/src/assets/icons/normal/contact-us.svg +1 -0
- package/src/assets/icons/normal/copy.svg +1 -0
- package/src/assets/icons/normal/courses.svg +1 -0
- package/src/assets/icons/normal/dashboard.svg +1 -0
- package/src/assets/icons/normal/download.svg +1 -0
- package/src/assets/icons/normal/drag.svg +1 -0
- package/src/assets/icons/normal/dulicate.svg +1 -0
- package/src/assets/icons/normal/edit.svg +1 -0
- package/src/assets/icons/normal/elearning.svg +1 -0
- package/src/assets/icons/normal/email.svg +1 -0
- package/src/assets/icons/normal/error-2.svg +1 -0
- package/src/assets/icons/normal/error.svg +1 -0
- package/src/assets/icons/normal/exercise.svg +1 -0
- package/src/assets/icons/normal/external-link.svg +1 -0
- package/src/assets/icons/normal/extract.svg +1 -0
- package/src/assets/icons/normal/eye-off.svg +1 -0
- package/src/assets/icons/normal/eye-on.svg +1 -0
- package/src/assets/icons/normal/fail.svg +1 -0
- package/src/assets/icons/normal/fast-back.svg +1 -0
- package/src/assets/icons/normal/fast-forward.svg +1 -0
- package/src/assets/icons/normal/file-add.svg +1 -0
- package/src/assets/icons/normal/file-duplicate.svg +1 -0
- package/src/assets/icons/normal/file-remove.svg +1 -0
- package/src/assets/icons/normal/file-required.svg +1 -0
- package/src/assets/icons/normal/file.svg +1 -0
- package/src/assets/icons/normal/filter-2.svg +1 -0
- package/src/assets/icons/normal/filter-active.svg +1 -0
- package/src/assets/icons/normal/filter.svg +1 -0
- package/src/assets/icons/normal/flag.svg +1 -0
- package/src/assets/icons/normal/folder.svg +1 -0
- package/src/assets/icons/normal/full-width.svg +1 -0
- package/src/assets/icons/normal/go-to-back.svg +1 -0
- package/src/assets/icons/normal/grid.svg +1 -0
- package/src/assets/icons/normal/group-add.svg +1 -0
- package/src/assets/icons/normal/group.svg +1 -0
- package/src/assets/icons/normal/heart-active.svg +1 -0
- package/src/assets/icons/normal/heart.svg +1 -0
- package/src/assets/icons/normal/highlighter.svg +1 -0
- package/src/assets/icons/normal/home.svg +1 -0
- package/src/assets/icons/normal/hourglass.svg +1 -0
- package/src/assets/icons/normal/image.svg +1 -0
- package/src/assets/icons/normal/info-badge.svg +1 -0
- package/src/assets/icons/normal/information.svg +1 -0
- package/src/assets/icons/normal/italic.svg +1 -0
- package/src/assets/icons/normal/key.svg +1 -0
- package/src/assets/icons/normal/language.svg +1 -0
- package/src/assets/icons/normal/learning-path.svg +1 -0
- package/src/assets/icons/normal/light-off.svg +1 -0
- package/src/assets/icons/normal/light-on.svg +1 -0
- package/src/assets/icons/normal/link.svg +1 -0
- package/src/assets/icons/normal/lock.svg +1 -0
- package/src/assets/icons/normal/login.svg +1 -0
- package/src/assets/icons/normal/logout.svg +1 -0
- package/src/assets/icons/normal/maximize.svg +1 -0
- package/src/assets/icons/normal/menu.svg +1 -0
- package/src/assets/icons/normal/merge.svg +1 -0
- package/src/assets/icons/normal/minimize.svg +1 -0
- package/src/assets/icons/normal/mixed-class.svg +1 -0
- package/src/assets/icons/normal/more-horizontal.svg +1 -0
- package/src/assets/icons/normal/more-vertical.svg +1 -0
- package/src/assets/icons/normal/news.svg +1 -0
- package/src/assets/icons/normal/no-prerequisites.svg +1 -0
- package/src/assets/icons/normal/notes.svg +1 -0
- package/src/assets/icons/normal/number-code.svg +1 -0
- package/src/assets/icons/normal/numbered-list.svg +1 -0
- package/src/assets/icons/normal/on-site.svg +1 -0
- package/src/assets/icons/normal/order-down.svg +1 -0
- package/src/assets/icons/normal/order-up.svg +1 -0
- package/src/assets/icons/normal/paste.svg +1 -0
- package/src/assets/icons/normal/pausa.svg +1 -0
- package/src/assets/icons/normal/pdf.svg +1 -0
- package/src/assets/icons/normal/phone.svg +1 -0
- package/src/assets/icons/normal/pin-map.svg +1 -0
- package/src/assets/icons/normal/pin.svg +1 -0
- package/src/assets/icons/normal/pizza.svg +1 -0
- package/src/assets/icons/normal/play.svg +1 -0
- package/src/assets/icons/normal/plug-in.svg +1 -0
- package/src/assets/icons/normal/pointer.svg +1 -0
- package/src/assets/icons/normal/printer.svg +1 -0
- package/src/assets/icons/normal/profile-add.svg +1 -0
- package/src/assets/icons/normal/profile.svg +1 -0
- package/src/assets/icons/normal/push pin on.svg +1 -0
- package/src/assets/icons/normal/push-pin-off.svg +1 -0
- package/src/assets/icons/normal/qrcode.svg +1 -0
- package/src/assets/icons/normal/question-badge.svg +1 -0
- package/src/assets/icons/normal/radio.svg +1 -0
- package/src/assets/icons/normal/redo.svg +1 -0
- package/src/assets/icons/normal/relations.svg +1 -0
- package/src/assets/icons/normal/reload.svg +1 -0
- package/src/assets/icons/normal/remove-circle.svg +1 -0
- package/src/assets/icons/normal/remove.svg +1 -0
- package/src/assets/icons/normal/reorder.svg +1 -0
- package/src/assets/icons/normal/repeat.svg +1 -0
- package/src/assets/icons/normal/repository.svg +1 -0
- package/src/assets/icons/normal/request-form.svg +1 -0
- package/src/assets/icons/normal/resize-100%.svg +1 -0
- package/src/assets/icons/normal/resize-height.svg +1 -0
- package/src/assets/icons/normal/resize-width.svg +1 -0
- package/src/assets/icons/normal/search.svg +1 -0
- package/src/assets/icons/normal/sequential-prerequisites.svg +1 -0
- package/src/assets/icons/normal/settings.svg +1 -0
- package/src/assets/icons/normal/share.svg +1 -0
- package/src/assets/icons/normal/sketch.svg +1 -0
- package/src/assets/icons/normal/skills.svg +1 -0
- package/src/assets/icons/normal/skip-back.svg +1 -0
- package/src/assets/icons/normal/skip-forward.svg +1 -0
- package/src/assets/icons/normal/sms.svg +1 -0
- package/src/assets/icons/normal/sso-access.svg +1 -0
- package/src/assets/icons/normal/star-active.svg +1 -0
- package/src/assets/icons/normal/star.svg +1 -0
- package/src/assets/icons/normal/success.svg +1 -0
- package/src/assets/icons/normal/sun.svg +1 -0
- package/src/assets/icons/normal/sunrise.svg +1 -0
- package/src/assets/icons/normal/support.svg +1 -0
- package/src/assets/icons/normal/survey.svg +1 -0
- package/src/assets/icons/normal/table.svg +1 -0
- package/src/assets/icons/normal/tematic-channels.svg +1 -0
- package/src/assets/icons/normal/test.svg +1 -0
- package/src/assets/icons/normal/text-body.svg +1 -0
- package/src/assets/icons/normal/text-edit.svg +1 -0
- package/src/assets/icons/normal/text-style.svg +1 -0
- package/src/assets/icons/normal/time.svg +1 -0
- package/src/assets/icons/normal/toilet-paper.svg +1 -0
- package/src/assets/icons/normal/training-points.svg +1 -0
- package/src/assets/icons/normal/trash.svg +1 -0
- package/src/assets/icons/normal/underline.svg +1 -0
- package/src/assets/icons/normal/undo.svg +1 -0
- package/src/assets/icons/normal/unlock.svg +1 -0
- package/src/assets/icons/normal/upload.svg +1 -0
- package/src/assets/icons/normal/user-add.svg +1 -0
- package/src/assets/icons/normal/user-badge.svg +1 -0
- package/src/assets/icons/normal/user.svg +1 -0
- package/src/assets/icons/normal/video-off.svg +1 -0
- package/src/assets/icons/normal/video-on.svg +1 -0
- package/src/assets/icons/normal/video-rec.svg +1 -0
- package/src/assets/icons/normal/view-card.svg +1 -0
- package/src/assets/icons/normal/view-list.svg +1 -0
- package/src/assets/icons/normal/view.svg +1 -0
- package/src/assets/icons/normal/voice-off.svg +1 -0
- package/src/assets/icons/normal/voice-on.svg +1 -0
- package/src/assets/icons/normal/volume-down.svg +1 -0
- package/src/assets/icons/normal/volume-off.svg +1 -0
- package/src/assets/icons/normal/volume-up.svg +1 -0
- package/src/assets/icons/normal/warning.svg +1 -0
- package/src/assets/icons/normal/webinar.svg +1 -0
- package/src/assets/icons/normal/whiteboard.svg +1 -0
- package/src/assets/icons/normal/wine.svg +1 -0
- package/src/assets/icons/normal/zip.svg +1 -0
- package/src/assets/icons/normal/zoom-in.svg +1 -0
- package/src/assets/icons/normal/zoom-out.svg +1 -0
- package/src/assets/icons/normal.json +1 -0
- package/src/assets/icons/simple/add-circle.svg +1 -0
- package/src/assets/icons/simple/add.svg +1 -0
- package/src/assets/icons/simple/align-center.svg +1 -0
- package/src/assets/icons/simple/align-justify.svg +1 -0
- package/src/assets/icons/simple/align-left.svg +1 -0
- package/src/assets/icons/simple/align-right.svg +1 -0
- package/src/assets/icons/simple/analysis-2.svg +1 -0
- package/src/assets/icons/simple/analysis-3.svg +1 -0
- package/src/assets/icons/simple/analysis.svg +1 -0
- package/src/assets/icons/simple/apple.svg +1 -0
- package/src/assets/icons/simple/arrow-down.svg +1 -0
- package/src/assets/icons/simple/arrow-left.svg +1 -0
- package/src/assets/icons/simple/arrow-right.svg +1 -0
- package/src/assets/icons/simple/arrow-up.svg +1 -0
- package/src/assets/icons/simple/attachment.svg +1 -0
- package/src/assets/icons/simple/bck-to-front.svg +1 -0
- package/src/assets/icons/simple/bell-active.svg +1 -0
- package/src/assets/icons/simple/bell.svg +1 -0
- package/src/assets/icons/simple/bold.svg +1 -0
- package/src/assets/icons/simple/bookmark-active.svg +1 -0
- package/src/assets/icons/simple/bookmark.svg +1 -0
- package/src/assets/icons/simple/building.svg +1 -0
- package/src/assets/icons/simple/bulleted-list.svg +1 -0
- package/src/assets/icons/simple/calendar.svg +1 -0
- package/src/assets/icons/simple/camera-off.svg +1 -0
- package/src/assets/icons/simple/camera-on.svg +1 -0
- package/src/assets/icons/simple/catalog.svg +1 -0
- package/src/assets/icons/simple/certificate.svg +1 -0
- package/src/assets/icons/simple/chat.svg +1 -0
- package/src/assets/icons/simple/check-badge.svg +1 -0
- package/src/assets/icons/simple/check-circle.svg +1 -0
- package/src/assets/icons/simple/check.svg +1 -0
- package/src/assets/icons/simple/checkbox.svg +1 -0
- package/src/assets/icons/simple/chevron-down-circle.svg +1 -0
- package/src/assets/icons/simple/chevron-down.svg +1 -0
- package/src/assets/icons/simple/chevron-left-circle.svg +1 -0
- package/src/assets/icons/simple/chevron-left.svg +1 -0
- package/src/assets/icons/simple/chevron-right-circle.svg +1 -0
- package/src/assets/icons/simple/chevron-right.svg +1 -0
- package/src/assets/icons/simple/chevron-up-circle.svg +1 -0
- package/src/assets/icons/simple/chevron-up.svg +1 -0
- package/src/assets/icons/simple/classroom.svg +1 -0
- package/src/assets/icons/simple/clear-field.svg +1 -0
- package/src/assets/icons/simple/clear-style.svg +1 -0
- package/src/assets/icons/simple/close-circle.svg +1 -0
- package/src/assets/icons/simple/close-loader.svg +1 -0
- package/src/assets/icons/simple/close.svg +1 -0
- package/src/assets/icons/simple/coffee.svg +1 -0
- package/src/assets/icons/simple/color.svg +1 -0
- package/src/assets/icons/simple/contact-us.svg +1 -0
- package/src/assets/icons/simple/copy.svg +1 -0
- package/src/assets/icons/simple/courses.svg +1 -0
- package/src/assets/icons/simple/dashboard.svg +1 -0
- package/src/assets/icons/simple/download.svg +1 -0
- package/src/assets/icons/simple/drag.svg +1 -0
- package/src/assets/icons/simple/duplicate.svg +1 -0
- package/src/assets/icons/simple/edit.svg +1 -0
- package/src/assets/icons/simple/elearning.svg +1 -0
- package/src/assets/icons/simple/email.svg +1 -0
- package/src/assets/icons/simple/error-2.svg +1 -0
- package/src/assets/icons/simple/error.svg +1 -0
- package/src/assets/icons/simple/exercise.svg +1 -0
- package/src/assets/icons/simple/external-link.svg +1 -0
- package/src/assets/icons/simple/extract.svg +1 -0
- package/src/assets/icons/simple/eye-off.svg +1 -0
- package/src/assets/icons/simple/eye-on.svg +1 -0
- package/src/assets/icons/simple/fail.svg +1 -0
- package/src/assets/icons/simple/fast-back.svg +1 -0
- package/src/assets/icons/simple/fast-forward.svg +1 -0
- package/src/assets/icons/simple/file-add.svg +1 -0
- package/src/assets/icons/simple/file-duplicate.svg +1 -0
- package/src/assets/icons/simple/file-remove.svg +1 -0
- package/src/assets/icons/simple/file-required.svg +1 -0
- package/src/assets/icons/simple/file.svg +1 -0
- package/src/assets/icons/simple/filter-2.svg +1 -0
- package/src/assets/icons/simple/filter-active.svg +1 -0
- package/src/assets/icons/simple/filter.svg +1 -0
- package/src/assets/icons/simple/flag.svg +1 -0
- package/src/assets/icons/simple/folder.svg +1 -0
- package/src/assets/icons/simple/full-width.svg +1 -0
- package/src/assets/icons/simple/go-to-back.svg +1 -0
- package/src/assets/icons/simple/grid.svg +1 -0
- package/src/assets/icons/simple/group-add.svg +1 -0
- package/src/assets/icons/simple/group.svg +1 -0
- package/src/assets/icons/simple/heart-active.svg +1 -0
- package/src/assets/icons/simple/heart.svg +1 -0
- package/src/assets/icons/simple/highlighter.svg +1 -0
- package/src/assets/icons/simple/home.svg +1 -0
- package/src/assets/icons/simple/hourglass.svg +1 -0
- package/src/assets/icons/simple/image.svg +1 -0
- package/src/assets/icons/simple/info-badge.svg +1 -0
- package/src/assets/icons/simple/information.svg +1 -0
- package/src/assets/icons/simple/italic.svg +1 -0
- package/src/assets/icons/simple/key.svg +1 -0
- package/src/assets/icons/simple/language.svg +1 -0
- package/src/assets/icons/simple/learning-path.svg +1 -0
- package/src/assets/icons/simple/light-off.svg +1 -0
- package/src/assets/icons/simple/light-on.svg +1 -0
- package/src/assets/icons/simple/link.svg +1 -0
- package/src/assets/icons/simple/lock.svg +1 -0
- package/src/assets/icons/simple/login.svg +1 -0
- package/src/assets/icons/simple/logout.svg +1 -0
- package/src/assets/icons/simple/maximaze.svg +1 -0
- package/src/assets/icons/simple/menu.svg +1 -0
- package/src/assets/icons/simple/merge.svg +1 -0
- package/src/assets/icons/simple/minimaze.svg +1 -0
- package/src/assets/icons/simple/mixed-class.svg +1 -0
- package/src/assets/icons/simple/more-horizontal.svg +1 -0
- package/src/assets/icons/simple/more-vertical.svg +1 -0
- package/src/assets/icons/simple/news.svg +1 -0
- package/src/assets/icons/simple/no-prerequisites.svg +1 -0
- package/src/assets/icons/simple/notes.svg +1 -0
- package/src/assets/icons/simple/number-code.svg +1 -0
- package/src/assets/icons/simple/numbered-list.svg +1 -0
- package/src/assets/icons/simple/on-site.svg +1 -0
- package/src/assets/icons/simple/order-down.svg +1 -0
- package/src/assets/icons/simple/order-up.svg +1 -0
- package/src/assets/icons/simple/paste.svg +1 -0
- package/src/assets/icons/simple/pausa.svg +1 -0
- package/src/assets/icons/simple/pdf.svg +1 -0
- package/src/assets/icons/simple/phone.svg +1 -0
- package/src/assets/icons/simple/pin-map.svg +1 -0
- package/src/assets/icons/simple/pin.svg +1 -0
- package/src/assets/icons/simple/pizza.svg +1 -0
- package/src/assets/icons/simple/play.svg +1 -0
- package/src/assets/icons/simple/plug-in.svg +1 -0
- package/src/assets/icons/simple/pointer.svg +1 -0
- package/src/assets/icons/simple/printer.svg +1 -0
- package/src/assets/icons/simple/profile-add.svg +1 -0
- package/src/assets/icons/simple/profile.svg +1 -0
- package/src/assets/icons/simple/push-pin-off.svg +1 -0
- package/src/assets/icons/simple/push-pin-on.svg +1 -0
- package/src/assets/icons/simple/qrcode.svg +1 -0
- package/src/assets/icons/simple/question-badge.svg +1 -0
- package/src/assets/icons/simple/radio.svg +1 -0
- package/src/assets/icons/simple/redo.svg +1 -0
- package/src/assets/icons/simple/relations.svg +1 -0
- package/src/assets/icons/simple/reload.svg +1 -0
- package/src/assets/icons/simple/remove-circle.svg +1 -0
- package/src/assets/icons/simple/remove.svg +1 -0
- package/src/assets/icons/simple/repeart.svg +1 -0
- package/src/assets/icons/simple/repository.svg +1 -0
- package/src/assets/icons/simple/request-form.svg +1 -0
- package/src/assets/icons/simple/resize-100%.svg +1 -0
- package/src/assets/icons/simple/resize-height.svg +1 -0
- package/src/assets/icons/simple/resize-width.svg +1 -0
- package/src/assets/icons/simple/search.svg +1 -0
- package/src/assets/icons/simple/sequential-prerequisites.svg +1 -0
- package/src/assets/icons/simple/settings.svg +1 -0
- package/src/assets/icons/simple/share.svg +1 -0
- package/src/assets/icons/simple/sketch.svg +1 -0
- package/src/assets/icons/simple/skills.svg +1 -0
- package/src/assets/icons/simple/skip-back.svg +1 -0
- package/src/assets/icons/simple/skip-forward.svg +1 -0
- package/src/assets/icons/simple/sms.svg +1 -0
- package/src/assets/icons/simple/sso-access.svg +1 -0
- package/src/assets/icons/simple/star-active.svg +1 -0
- package/src/assets/icons/simple/star.svg +1 -0
- package/src/assets/icons/simple/success.svg +1 -0
- package/src/assets/icons/simple/sun.svg +1 -0
- package/src/assets/icons/simple/sunrise.svg +1 -0
- package/src/assets/icons/simple/support.svg +1 -0
- package/src/assets/icons/simple/survey.svg +1 -0
- package/src/assets/icons/simple/table.svg +1 -0
- package/src/assets/icons/simple/tematic-channels.svg +1 -0
- package/src/assets/icons/simple/test.svg +1 -0
- package/src/assets/icons/simple/text-body.svg +1 -0
- package/src/assets/icons/simple/text-edit.svg +1 -0
- package/src/assets/icons/simple/text-style.svg +1 -0
- package/src/assets/icons/simple/time.svg +1 -0
- package/src/assets/icons/simple/toilet-paper.svg +1 -0
- package/src/assets/icons/simple/training-points.svg +1 -0
- package/src/assets/icons/simple/trash.svg +1 -0
- package/src/assets/icons/simple/underline.svg +1 -0
- package/src/assets/icons/simple/undo.svg +1 -0
- package/src/assets/icons/simple/unlock.svg +1 -0
- package/src/assets/icons/simple/upload.svg +1 -0
- package/src/assets/icons/simple/user-add.svg +1 -0
- package/src/assets/icons/simple/user-badge.svg +1 -0
- package/src/assets/icons/simple/user.svg +1 -0
- package/src/assets/icons/simple/video-off.svg +1 -0
- package/src/assets/icons/simple/video-on.svg +1 -0
- package/src/assets/icons/simple/video-rec.svg +1 -0
- package/src/assets/icons/simple/view-card.svg +1 -0
- package/src/assets/icons/simple/view-list.svg +1 -0
- package/src/assets/icons/simple/view.svg +1 -0
- package/src/assets/icons/simple/voice-off.svg +1 -0
- package/src/assets/icons/simple/voice-on.svg +1 -0
- package/src/assets/icons/simple/volume-down.svg +1 -0
- package/src/assets/icons/simple/volume-off.svg +1 -0
- package/src/assets/icons/simple/volume-up.svg +1 -0
- package/src/assets/icons/simple/warning.svg +1 -0
- package/src/assets/icons/simple/webinar.svg +1 -0
- package/src/assets/icons/simple/whiteboard.svg +1 -0
- package/src/assets/icons/simple/wine.svg +1 -0
- package/src/assets/icons/simple/zip.svg +1 -0
- package/src/assets/icons/simple/zoom-in.svg +1 -0
- package/src/assets/icons/simple/zoom-out.svg +1 -0
- package/src/assets/icons/simple.json +1 -0
- package/src/components/VvAccordion/VvAccordion.ts +34 -0
- package/src/components/VvAccordion/VvAccordion.vue +92 -0
- package/src/components/VvAccordion/useAccordionProps.ts +45 -0
- package/src/components/VvAccordionGroup/VvAccordionGroup.ts +36 -0
- package/src/components/VvAccordionGroup/VvAccordionGroup.vue +63 -0
- package/src/components/VvBadge/VvBadge.ts +4 -0
- package/src/components/VvBadge/VvBadge.vue +12 -0
- package/src/components/VvBreadcrumb/VvBreadcrumb.ts +14 -0
- package/src/components/VvBreadcrumb/VvBreadcrumb.vue +52 -0
- package/src/components/VvButton/VvButton.ts +117 -0
- package/src/components/VvButton/VvButton.vue +189 -0
- package/src/components/VvButton/useButtonGroupProps.ts +51 -0
- package/src/components/VvButtonGroup/VvButtonGroup.ts +37 -0
- package/src/components/VvButtonGroup/VvButtonGroup.vue +55 -0
- package/src/components/VvCard/VvCard.ts +4 -0
- package/src/components/VvCard/VvCard.vue +37 -0
- package/src/components/VvCheck/VvCheck.ts +48 -0
- package/src/components/VvCheck/VvCheck.vue +147 -0
- package/src/components/VvCheck/useCheckProps.ts +41 -0
- package/src/components/VvCheckGroup/VvCheckGroup.ts +34 -0
- package/src/components/VvCheckGroup/VvCheckGroup.vue +84 -0
- package/src/components/VvDialog/VvDialog.ts +17 -0
- package/src/components/VvDialog/VvDialog.vue +91 -0
- package/src/components/VvDialog/constants.ts +5 -0
- package/src/components/VvDropdown/VvDropdown.ts +46 -0
- package/src/components/VvDropdown/VvDropdown.vue +130 -0
- package/src/components/VvIcon/VvIcon.ts +94 -0
- package/src/components/VvIcon/VvIcon.vue +124 -0
- package/src/components/VvInputText/VvInputText.ts +66 -0
- package/src/components/VvInputText/VvInputText.vue +249 -0
- package/src/components/VvInputText/VvInputTextActions.ts +151 -0
- package/src/components/VvInputText/constants.ts +34 -0
- package/src/components/VvNativeSelect/VvNativeSelect.ts +70 -0
- package/src/components/VvNativeSelect/VvNativeSelect.vue +106 -0
- package/src/components/VvProgress/VvProgress.ts +28 -0
- package/src/components/VvProgress/VvProgress.vue +34 -0
- package/src/components/VvRadio/VvRadio.ts +25 -0
- package/src/components/VvRadio/VvRadio.vue +130 -0
- package/src/components/VvRadio/useRadioProps.ts +40 -0
- package/src/components/VvRadioGroup/VvRadioGroup.ts +25 -0
- package/src/components/VvRadioGroup/VvRadioGroup.vue +80 -0
- package/src/components/VvSelect/VvSelect.ts +91 -0
- package/src/components/VvSelect/VvSelect.vue +194 -0
- package/src/components/VvTextarea/VvTextarea.ts +64 -0
- package/src/components/VvTextarea/VvTextarea.vue +184 -0
- package/src/components/VvTextarea/constants.ts +14 -0
- package/src/components/common/HintSlot.ts +187 -0
- package/src/components/index.ts +12 -0
- package/src/composables/debouncedInput/useDebouncedInput.ts +19 -0
- package/src/composables/focus/useComponentFocus.ts +22 -0
- package/src/composables/group/types/IAccordionGroupState.ts +12 -0
- package/src/composables/group/types/IButtonGroupState.ts +21 -0
- package/src/composables/group/types/IGroupState.ts +12 -0
- package/src/composables/group/types/IInputGroup.ts +13 -0
- package/src/composables/group/useInjectedGroupState.ts +62 -0
- package/src/composables/group/useProvideGroupState.ts +22 -0
- package/src/composables/icons/useComponentIcons.ts +87 -0
- package/src/composables/options/useOptions.ts +27 -0
- package/src/composables/textLimit/useTextLimit.ts +44 -0
- package/src/composables/useModifiers.ts +100 -0
- package/src/constants.ts +7 -0
- package/src/directives/.README +0 -0
- package/src/index.ts +15 -0
- package/src/props/index.ts +84 -0
- package/src/stories/Accordion/Accordion.stories.mdx +37 -0
- package/src/stories/Accordion/AccordionBordered.stories.mdx +26 -0
- package/src/stories/Accordion/AccordionIconRight.stories.mdx +32 -0
- package/src/stories/Accordion/AccordionSlots.stories.mdx +82 -0
- package/src/stories/Accordion/accordionTest.js +36 -0
- package/src/stories/AccordionGroup/Accordion.stories.mdx +42 -0
- package/src/stories/AccordionGroup/AccordionGroup.stories.mdx +43 -0
- package/src/stories/AccordionGroup/AccordionItems.stories.mdx +51 -0
- package/src/stories/AccordionGroup/accordionGroupTest.js +51 -0
- package/src/stories/Badge/Badge.stories.mdx +38 -0
- package/src/stories/Badge/BadgeColor.stories.mdx +54 -0
- package/src/stories/Badge/BadgeDot.stories.mdx +20 -0
- package/src/stories/Badge/BadgeTest.js +21 -0
- package/src/stories/Breadcrumb/Breadcrumb.stories.mdx +45 -0
- package/src/stories/Breadcrumb/BreadcrumbMultiline.stories.mdx +41 -0
- package/src/stories/Button/Button.stories.mdx +65 -0
- package/src/stories/Button/Button.test.ts +61 -0
- package/src/stories/Button/ButtonBadge.stories.mdx +34 -0
- package/src/stories/Button/ButtonIcon.stories.mdx +43 -0
- package/src/stories/Button/ButtonIconPosition.stories.mdx +106 -0
- package/src/stories/Button/ButtonLink.stories.mdx +125 -0
- package/src/stories/Button/ButtonLoading.stories.mdx +81 -0
- package/src/stories/Button/ButtonModifiers.stories.mdx +180 -0
- package/src/stories/Button/ButtonSlots.stories.mdx +123 -0
- package/src/stories/Button/ButtonVariant.stories.mdx +205 -0
- package/src/stories/Button/test.js +41 -0
- package/src/stories/ButtonGroup/ButtonGroup.stories.mdx +39 -0
- package/src/stories/ButtonGroup/ButtonGroupAction.stories.mdx +83 -0
- package/src/stories/ButtonGroup/ButtonGroupActionQuiet.stories.mdx +50 -0
- package/src/stories/ButtonGroup/ButtonGroupBlock.stories.mdx +40 -0
- package/src/stories/ButtonGroup/ButtonGroupCompact.stories.mdx +38 -0
- package/src/stories/ButtonGroup/ButtonGroupRounded.stories.mdx +77 -0
- package/src/stories/ButtonGroup/ButtonGroupTest.js +61 -0
- package/src/stories/ButtonGroup/ButtonGroupToggle.stories.mdx +131 -0
- package/src/stories/ButtonGroup/ButtonGroupVertical.stories.mdx +38 -0
- package/src/stories/Card/Card.stories.mdx +23 -0
- package/src/stories/Card/CardSlots.stories.mdx +42 -0
- package/src/stories/Card/CardVariant.stories.mdx +37 -0
- package/src/stories/Check/Check.stories.mdx +62 -0
- package/src/stories/Check/CheckBinary.stories.mdx +75 -0
- package/src/stories/Check/CheckDisabled.stories.mdx +30 -0
- package/src/stories/Check/CheckError.stories.mdx +64 -0
- package/src/stories/Check/CheckErrorTests.js +74 -0
- package/src/stories/Check/CheckHintLabel.stories.mdx +30 -0
- package/src/stories/Check/CheckPropertyTest.js +102 -0
- package/src/stories/Check/CheckReadonly.stories.mdx +30 -0
- package/src/stories/Check/CheckSlots.stories.mdx +51 -0
- package/src/stories/Check/CheckSwitch.stories.mdx +30 -0
- package/src/stories/CheckGroup/CheckGroup.stories.mdx +69 -0
- package/src/stories/CheckGroup/CheckGroupDisabled.stories.mdx +26 -0
- package/src/stories/CheckGroup/CheckGroupError.stories.mdx +28 -0
- package/src/stories/CheckGroup/CheckGroupHintLabel.stories.mdx +27 -0
- package/src/stories/CheckGroup/CheckGroupLabel.stories.mdx +26 -0
- package/src/stories/CheckGroup/CheckGroupOptionLabel.stories.mdx +48 -0
- package/src/stories/CheckGroup/CheckGroupOptionValue.stories.mdx +48 -0
- package/src/stories/CheckGroup/CheckGroupOptions.stories.mdx +40 -0
- package/src/stories/CheckGroup/CheckGroupReadonly.stories.mdx +26 -0
- package/src/stories/CheckGroup/CheckGroupSlots.stories.mdx +152 -0
- package/src/stories/CheckGroup/CheckGroupValid.stories.mdx +28 -0
- package/src/stories/CheckGroup/CheckGroupVertical.stories.mdx +26 -0
- package/src/stories/Dialog/Dialog.stories.mdx +29 -0
- package/src/stories/Dialog/DialogAutoClose.stories.mdx +18 -0
- package/src/stories/Dialog/DialogSize.stories.mdx +36 -0
- package/src/stories/Dropdown/Dropdown.stories.mdx +50 -0
- package/src/stories/Dropdown/DropdownDisabled.stories.mdx +25 -0
- package/src/stories/Dropdown/DropdownLabelNoResults.stories.mdx +25 -0
- package/src/stories/Dropdown/DropdownMaxValues.stories.mdx +26 -0
- package/src/stories/Dropdown/DropdownMultiple.stories.mdx +56 -0
- package/src/stories/Dropdown/DropdownOptions.stories.mdx +76 -0
- package/src/stories/Dropdown/DropdownUseObject.stories.mdx +58 -0
- package/src/stories/Icon/Icon.stories.mdx +73 -0
- package/src/stories/Icon/IconList.vue +34 -0
- package/src/stories/Icon/IconPrefix.stories.mdx +79 -0
- package/src/stories/Icon/IconRemote.stories.mdx +39 -0
- package/src/stories/Icon/IconTest.js +27 -0
- package/src/stories/Icon/IconsList.stories.mdx +35 -0
- package/src/stories/InputText/InputText.stories.mdx +94 -0
- package/src/stories/InputText/InputTextAutocomplete.stories.mdx +15 -0
- package/src/stories/InputText/InputTextAutofocus.stories.mdx +20 -0
- package/src/stories/InputText/InputTextDisabled.stories.mdx +19 -0
- package/src/stories/InputText/InputTextError.stories.mdx +19 -0
- package/src/stories/InputText/InputTextFloating.stories.mdx +20 -0
- package/src/stories/InputText/InputTextHintLabel.stories.mdx +18 -0
- package/src/stories/InputText/InputTextIcon.stories.mdx +18 -0
- package/src/stories/InputText/InputTextIconPosition.stories.mdx +31 -0
- package/src/stories/InputText/InputTextLabel.stories.mdx +15 -0
- package/src/stories/InputText/InputTextLoading.stories.mdx +19 -0
- package/src/stories/InputText/InputTextMax.stories.mdx +31 -0
- package/src/stories/InputText/InputTextMaxLength.stories.mdx +36 -0
- package/src/stories/InputText/InputTextMin.stories.mdx +31 -0
- package/src/stories/InputText/InputTextMinLength.stories.mdx +15 -0
- package/src/stories/InputText/InputTextPlaceholder.stories.mdx +15 -0
- package/src/stories/InputText/InputTextReadonly.stories.mdx +19 -0
- package/src/stories/InputText/InputTextSlots.stories.mdx +30 -0
- package/src/stories/InputText/InputTextStep.stories.mdx +31 -0
- package/src/stories/InputText/InputTextType.stories.mdx +81 -0
- package/src/stories/InputText/InputTextValid.stories.mdx +19 -0
- package/src/stories/NativeSelect/NativeSelect.stories.mdx +53 -0
- package/src/stories/NativeSelect/NativeSelectDisabled.stories.mdx +32 -0
- package/src/stories/NativeSelect/NativeSelectError.stories.mdx +36 -0
- package/src/stories/NativeSelect/NativeSelectHintLabel.stories.mdx +34 -0
- package/src/stories/NativeSelect/NativeSelectIconLeftRight.stories.mdx +42 -0
- package/src/stories/NativeSelect/NativeSelectLoading.stories.mdx +27 -0
- package/src/stories/NativeSelect/NativeSelectOptions.stories.mdx +78 -0
- package/src/stories/NativeSelect/NativeSelectReadonly.stories.mdx +34 -0
- package/src/stories/NativeSelect/NativeSelectUseObject.stories.mdx +66 -0
- package/src/stories/NativeSelect/NativeSelectValid.stories.mdx +36 -0
- package/src/stories/NativeSelect/NativeSelectValueKey.stories.mdx +66 -0
- package/src/stories/Progress/Progress.stories.mdx +40 -0
- package/src/stories/Progress/ProgressDeterminate.stories.mdx +19 -0
- package/src/stories/Progress/ProgressTest.js +28 -0
- package/src/stories/Radio/Radio.stories.mdx +67 -0
- package/src/stories/Radio/RadioDisabled.stories.mdx +30 -0
- package/src/stories/Radio/RadioError.stories.mdx +64 -0
- package/src/stories/Radio/RadioHintLabel.stories.mdx +30 -0
- package/src/stories/Radio/RadioSlots.stories.mdx +29 -0
- package/src/stories/Radio/RadioTest.js +90 -0
- package/src/stories/RadioGroup/RadioGroup.stories.mdx +73 -0
- package/src/stories/RadioGroup/RadioGroupDisabled.stories.mdx +33 -0
- package/src/stories/RadioGroup/RadioGroupError.stories.mdx +35 -0
- package/src/stories/RadioGroup/RadioGroupHintLabel.stories.mdx +33 -0
- package/src/stories/RadioGroup/RadioGroupLabel.stories.mdx +29 -0
- package/src/stories/RadioGroup/RadioGroupOptionLabel.stories.mdx +65 -0
- package/src/stories/RadioGroup/RadioGroupOptionValue.stories.mdx +65 -0
- package/src/stories/RadioGroup/RadioGroupOptions.stories.mdx +58 -0
- package/src/stories/RadioGroup/RadioGroupReadonly.stories.mdx +29 -0
- package/src/stories/RadioGroup/RadioGroupSlots.stories.mdx +162 -0
- package/src/stories/RadioGroup/RadioGroupValid.stories.mdx +35 -0
- package/src/stories/RadioGroup/RadioGroupVertical.stories.mdx +33 -0
- package/src/stories/RadioGroup/RadioOptionsTest.js +78 -0
- package/src/stories/RadioGroup/RadioProperty.test.ts +87 -0
- package/src/stories/RadioGroup/RadioPropertyTest.js +131 -0
- package/src/stories/RadioGroup/RadioSlotsTest.js +20 -0
- package/src/stories/Select/Select.stories.mdx +55 -0
- package/src/stories/Select/SelectDisabled.stories.mdx +32 -0
- package/src/stories/Select/SelectMaxValues.stories.mdx +33 -0
- package/src/stories/Select/SelectMultiple.stories.mdx +64 -0
- package/src/stories/Select/SelectOptions.stories.mdx +78 -0
- package/src/stories/Select/SelectSearchable.stories.mdx +80 -0
- package/src/stories/Select/SelectSeparator.stories.mdx +64 -0
- package/src/stories/Select/SelectUseObject.stories.mdx +66 -0
- package/src/stories/Textarea/Textarea.stories.mdx +66 -0
- package/src/stories/Textarea/TextareaAutoclear.stories.mdx +23 -0
- package/src/stories/Textarea/TextareaAutocomplete.stories.mdx +23 -0
- package/src/stories/Textarea/TextareaAutofocus.stories.mdx +24 -0
- package/src/stories/Textarea/TextareaDebounce.stories.mdx +23 -0
- package/src/stories/Textarea/TextareaDisabled.stories.mdx +23 -0
- package/src/stories/Textarea/TextareaError.stories.mdx +22 -0
- package/src/stories/Textarea/TextareaErrorLabel.stories.mdx +37 -0
- package/src/stories/Textarea/TextareaFloating.stories.mdx +25 -0
- package/src/stories/Textarea/TextareaHintLabel.stories.mdx +22 -0
- package/src/stories/Textarea/TextareaIcon.stories.mdx +22 -0
- package/src/stories/Textarea/TextareaIconPosition.stories.mdx +39 -0
- package/src/stories/Textarea/TextareaId.stories.mdx +19 -0
- package/src/stories/Textarea/TextareaLabel.stories.mdx +19 -0
- package/src/stories/Textarea/TextareaLimit.stories.mdx +50 -0
- package/src/stories/Textarea/TextareaLoading.stories.mdx +22 -0
- package/src/stories/Textarea/TextareaLoadingLabel.stories.mdx +23 -0
- package/src/stories/Textarea/TextareaMaxLength.stories.mdx +19 -0
- package/src/stories/Textarea/TextareaMinLength.stories.mdx +19 -0
- package/src/stories/Textarea/TextareaModifiers.stories.mdx +24 -0
- package/src/stories/Textarea/TextareaName.stories.mdx +23 -0
- package/src/stories/Textarea/TextareaPlaceholder.stories.mdx +19 -0
- package/src/stories/Textarea/TextareaReadonly.stories.mdx +23 -0
- package/src/stories/Textarea/TextareaRequired.stories.mdx +22 -0
- package/src/stories/Textarea/TextareaResizable.stories.mdx +22 -0
- package/src/stories/Textarea/TextareaRowsCols.stories.mdx +39 -0
- package/src/stories/Textarea/TextareaSlots.stories.mdx +31 -0
- package/src/stories/Textarea/TextareaValid.stories.mdx +22 -0
- package/src/stories/Textarea/TextareaValidLabel.stories.mdx +35 -0
- package/src/stories/stories.scss +35 -0
- package/src/stories/utils.ts +12 -0
- package/src/stories/volver-ui-vue.stories.mdx +77 -0
- package/src/test/expect.ts +52 -0
- package/src/test/types.d.ts +4 -0
- package/src/types/.README +0 -0
- package/src/types/generic.d.ts +1 -0
- package/src/utils/ObjectUtilities.ts +275 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.999 7)"><g transform="translate(26.001 18) rotate(180)" fill="none"><path d="M10,2.926V3.8L4,.352A2.728,2.728,0,0,0,0,2.926V15.074a2.732,2.732,0,0,0,4,2.578L10,14.2v.873a2.731,2.731,0,0,0,4,2.578l10.563-6.076a3.031,3.031,0,0,0,0-5.152L14,.352A2.566,2.566,0,0,0,12.72,0,2.825,2.825,0,0,0,10,2.926Z" stroke="none"/><path d="M 12.72021579742432 2 C 12.41847610473633 2 12.00048637390137 2.321720123291016 12.00048637390137 2.925780296325684 L 12.00048637390137 7.255499839782715 L 3.004796981811523 2.08411979675293 C 2.907316207885742 2.027910232543945 2.814676284790039 2.000590324401855 2.721565246582031 2.000590324401855 C 2.419055938720703 2.000590324401855 1.999996185302734 2.322110176086426 1.999996185302734 2.925780296325684 L 1.999996185302734 15.07421970367432 C 1.999996185302734 15.67889976501465 2.421316146850586 16.00094985961914 2.725456237792969 16.00094985961914 C 2.81834602355957 16.00094985961914 2.910636901855469 15.97387027740479 3.00628662109375 15.91892051696777 L 12.00048637390137 10.74254989624023 L 12.00048637390137 15.07421970367432 C 12.00048637390137 15.67889976501465 12.42075634002686 16.00094985961914 12.72414588928223 16.00094985961914 C 12.81800651550293 16.00094985961914 12.91147613525391 15.97352981567383 13.00715637207031 15.91870021820068 L 23.56635665893555 9.844710350036621 C 23.97009658813477 9.611300468444824 24.00146675109863 9.13914966583252 24.00146675109863 9 C 24.00146675109863 8.86085033416748 23.97009658813477 8.388699531555176 23.57062530517578 8.157750129699707 L 13.00865650177002 2.0860595703125 C 12.90777587890625 2.028149604797363 12.81342601776123 2 12.72021579742432 2 M 12.72021579742432 0 C 13.14745616912842 0 13.58593654632568 0.1113300323486328 14.00439643859863 0.3515605926513672 L 24.56738662719727 6.423830032348633 C 26.47949600219727 7.529299736022949 26.47949600219727 10.47069931030273 24.56738662719727 11.57616996765137 L 14.00439643859863 17.65233993530273 C 12.19140243530273 18.69141006469727 10.00048637390137 17.28320121765137 10.00048637390137 15.07421970367432 L 10.00048637390137 14.20116996765137 L 4.00390625 17.65233993530273 C 2.195323944091797 18.69140625 -3.814697265625e-06 17.28320121765137 -3.814697265625e-06 15.07421970367432 L -3.814697265625e-06 2.925780296325684 C -3.814697265625e-06 0.7148380279541016 2.195314407348633 -0.6914100646972656 4.00390625 0.3515605926513672 L 10.00048637390137 3.798830032348633 L 10.00048637390137 2.925780296325684 C 10.00048637390137 1.224609375 11.29687595367432 0 12.72021579742432 0 Z" stroke="none" fill="#000"/></g><g transform="translate(26 0) rotate(90)" fill="none"><path d="M6.425,14.564a3.027,3.027,0,0,0,5.149,0L17.65,4a2.729,2.729,0,0,0-2.575-4H2.925A2.729,2.729,0,0,0,.35,4Z" stroke="none"/><path d="M 8.999999046325684 14 C 9.138898849487305 14 9.610058784484863 13.96877956390381 9.841129302978516 13.56711959838867 L 15.91615867614746 3.007139682769775 C 15.95712947845459 2.935919761657715 16.08181953430176 2.719169616699219 15.91665935516357 2.433619737625122 C 15.85781860351562 2.331889629364014 15.62324905395508 1.999999761581421 15.07501888275146 1.999999761581421 L 2.924978971481323 1.999999761581421 C 2.376749038696289 1.999999761581421 2.142179012298584 2.331889629364014 2.083338975906372 2.433619737625122 C 1.918179035186768 2.719169616699219 2.042869091033936 2.935919761657715 2.083838939666748 3.007129669189453 L 8.158848762512207 13.56711006164551 C 8.389928817749023 13.96877956390381 8.861099243164062 14 8.999999046325684 14 M 8.999998092651367 16 C 7.987916469573975 16 6.975833892822266 15.52147960662842 6.425259113311768 14.56443977355957 L 0.3502390384674072 4.004449844360352 C -0.692160964012146 2.192469835281372 0.7175290584564209 -2.801513687700208e-07 2.924978971481323 -2.801513687700208e-07 L 15.07501888275146 -2.801513687700208e-07 C 17.28246879577637 -2.801513687700208e-07 18.69215965270996 2.192469835281372 17.64975929260254 4.004449844360352 L 11.57472896575928 14.56443977355957 C 11.02415943145752 15.52147960662842 10.0120792388916 16 8.999998092651367 16 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(-0.476 2.439)"><g transform="translate(-8032 -18791)" fill="none"><path d="M8045.476,18810.635v-.873l-6,3.447a2.728,2.728,0,0,1-4-2.574v-12.148a2.732,2.732,0,0,1,4-2.578l6,3.451v-.873a2.731,2.731,0,0,1,4-2.578l10.563,6.076a3.031,3.031,0,0,1,0,5.152l-10.563,6.072a2.566,2.566,0,0,1-1.284.352A2.825,2.825,0,0,1,8045.476,18810.635Z" stroke="none"/><path d="M 8048.1953125 18811.560546875 C 8048.28857421875 18811.560546875 8048.3828125 18811.533203125 8048.48291015625 18811.474609375 L 8059.04150390625 18805.404296875 C 8059.4453125 18805.171875 8059.4765625 18804.69921875 8059.4765625 18804.560546875 C 8059.4765625 18804.421875 8059.4453125 18803.94921875 8059.04541015625 18803.71875 L 8048.48486328125 18797.642578125 C 8048.38671875 18797.587890625 8048.29296875 18797.560546875 8048.19921875 18797.560546875 C 8047.89599609375 18797.560546875 8047.4755859375 18797.880859375 8047.4755859375 18798.486328125 L 8047.4755859375 18802.818359375 L 8038.48291015625 18797.642578125 C 8038.3857421875 18797.5859375 8038.29345703125 18797.560546875 8038.20068359375 18797.560546875 C 8037.896484375 18797.560546875 8037.47509765625 18797.880859375 8037.47509765625 18798.486328125 L 8037.47509765625 18810.634765625 C 8037.47509765625 18810.99609375 8037.61865234375 18811.21875 8037.73876953125 18811.34375 C 8037.8720703125 18811.48046875 8038.0390625 18811.560546875 8038.1962890625 18811.560546875 C 8038.28955078125 18811.560546875 8038.38232421875 18811.533203125 8038.482421875 18811.474609375 L 8047.4755859375 18806.3046875 L 8047.4755859375 18810.634765625 C 8047.4755859375 18811.23828125 8047.8935546875 18811.560546875 8048.1953125 18811.560546875 M 8048.1953125 18813.560546875 C 8046.77197265625 18813.560546875 8045.4755859375 18812.3359375 8045.4755859375 18810.634765625 L 8045.4755859375 18809.76171875 L 8039.47900390625 18813.208984375 C 8037.67041015625 18814.251953125 8035.47509765625 18812.845703125 8035.47509765625 18810.634765625 L 8035.47509765625 18798.486328125 C 8035.47509765625 18796.27734375 8037.6689453125 18794.87109375 8039.47900390625 18795.908203125 L 8045.4755859375 18799.359375 L 8045.4755859375 18798.486328125 C 8045.47509765625 18796.275390625 8047.6669921875 18794.87109375 8049.4794921875 18795.908203125 L 8060.04248046875 18801.984375 C 8061.95458984375 18803.08984375 8061.95458984375 18806.03125 8060.04248046875 18807.13671875 L 8049.4794921875 18813.208984375 C 8049.06103515625 18813.44921875 8048.62255859375 18813.560546875 8048.1953125 18813.560546875 Z" stroke="none" fill="#000"/></g><g transform="translate(19.476 4.561) rotate(90)" fill="none"><path d="M6.425,1.436a3.027,3.027,0,0,1,5.149,0L17.65,12a2.729,2.729,0,0,1-2.575,4H2.925A2.729,2.729,0,0,1,.35,12Z" stroke="none"/><path d="M 9 2 C 8.861100196838379 2 8.38992977142334 2.031220436096191 8.158860206604004 2.432880401611328 L 2.083840370178223 12.99286079406738 C 2.042869567871094 13.06408023834229 1.918180465698242 13.28083038330078 2.083339691162109 13.56638050079346 C 2.142180442810059 13.66810989379883 2.376749992370605 14 2.924980163574219 14 L 15.07503032684326 14 C 15.62325000762939 14 15.85782051086426 13.66810989379883 15.91666030883789 13.56639003753662 C 16.08181953430176 13.28083038330078 15.95713043212891 13.06408023834229 15.91616058349609 12.99287033081055 L 9.841150283813477 2.432889938354492 C 9.61007022857666 2.031220436096191 9.138899803161621 2 9 2 M 9 0 C 10.01208305358887 0 11.02416515350342 0.478520393371582 11.57473945617676 1.43556022644043 L 17.64975929260254 11.99555015563965 C 18.69215965270996 13.80753040313721 17.282470703125 16 15.07503032684326 16 L 2.924980163574219 16 C 0.717529296875 16 -0.6921596527099609 13.80753040313721 0.3502407073974609 11.99555015563965 L 6.425259590148926 1.43556022644043 C 6.975834846496582 0.478520393371582 7.987917900085449 0 9 0 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.667 4)"><g transform="translate(-0.668 -0.857)"><g transform="translate(-131.314 -5.143)" fill="none" stroke-linejoin="round"><path d="M151.315,12V28a2.864,2.864,0,0,1-3,3h-14a2.864,2.864,0,0,1-3-3V8a2.864,2.864,0,0,1,3-3h10Z" stroke="none"/><path d="M 134.3154296875 7 C 133.6518859863281 7 133.3154296875 7.336450576782227 133.3154296875 8 L 133.3154296875 28 C 133.3154296875 28.66354942321777 133.6518859863281 29 134.3154296875 29 L 148.3154296875 29 C 148.9789733886719 29 149.3154296875 28.66354942321777 149.3154296875 28 L 149.3154296875 12.82842063903809 L 143.4870147705078 7 L 134.3154296875 7 M 134.3154296875 5 L 144.3154296875 5 L 151.3154296875 12 L 151.3154296875 28 C 151.3154296875 29.79517936706543 150.0643463134766 31 148.3154296875 31 L 134.3154296875 31 C 132.5665130615234 31 131.3154296875 29.79517936706543 131.3154296875 28 L 131.3154296875 8 C 131.3154296875 6.20482063293457 132.5665130615234 5 134.3154296875 5 Z" stroke="none" fill="#000"/></g><path d="M148.477,11.915h-6v-6Z" transform="translate(-129.477 -5.058)" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g><path d="M1,0H7" transform="translate(5.333 13.999)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line y2="6" transform="translate(9.333 11)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><path d="M6301,23194c-.489,0-1-.117-1-1v-16c0-.885.506-1,1-1h7v-5c0-.885.506-1,1-1h8.016l4.982,5v12c0,.881-.506,1-1,1h-7v5c0,.885-.507,1-1,1Z" transform="translate(-6295 -23166)" fill="rgba(0,0,0,0)" stroke="#000" stroke-linejoin="round" stroke-width="2"/><g transform="translate(5 10)"><path d="M145.314,24h-12c-.495,0-1-.119-1-1V7c0-.881.505-1,1-1h8.013l4.987,5V23C146.314,23.881,145.809,24,145.314,24Z" transform="translate(-132.314 -6)" fill="rgba(0,0,0,0)" stroke="#000" stroke-linejoin="round" stroke-width="2"/><path d="M146.478,9.916h-4v-4Z" transform="translate(-133.478 -4.917)" stroke="#000" stroke-linejoin="round" stroke-width="2"/><path d="M146.478,9.916h-4v-4Z" transform="translate(-125.479 -10.916)" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.667 4)"><g transform="translate(-0.668 -0.857)"><g transform="translate(-131.314 -5.143)" fill="none" stroke-linejoin="round"><path d="M151.315,12V28a2.864,2.864,0,0,1-3,3h-14a2.864,2.864,0,0,1-3-3V8a2.864,2.864,0,0,1,3-3h10Z" stroke="none"/><path d="M 134.3154296875 7 C 133.6518859863281 7 133.3154296875 7.336450576782227 133.3154296875 8 L 133.3154296875 28 C 133.3154296875 28.66354942321777 133.6518859863281 29 134.3154296875 29 L 148.3154296875 29 C 148.9789733886719 29 149.3154296875 28.66354942321777 149.3154296875 28 L 149.3154296875 12.82842063903809 L 143.4870147705078 7 L 134.3154296875 7 M 134.3154296875 5 L 144.3154296875 5 L 151.3154296875 12 L 151.3154296875 28 C 151.3154296875 29.79517936706543 150.0643463134766 31 148.3154296875 31 L 134.3154296875 31 C 132.5665130615234 31 131.3154296875 29.79517936706543 131.3154296875 28 L 131.3154296875 8 C 131.3154296875 6.20482063293457 132.5665130615234 5 134.3154296875 5 Z" stroke="none" fill="#000"/></g><path d="M148.477,11.915h-6v-6Z" transform="translate(-129.477 -5.058)" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g><path d="M1,0H7" transform="translate(5.333 14)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.334 4)"><g transform="translate(-2.334 4)"><g transform="translate(-131.314 -8)" fill="none" stroke-linejoin="round"><path d="M149.314,11.172V26.333A2.431,2.431,0,0,1,146.743,29H133.886a2.431,2.431,0,0,1-2.571-2.667V7.667A2.431,2.431,0,0,1,133.886,5h9.2Z" stroke="none"/><path d="M 133.8858795166016 7 C 133.6359558105469 7 133.4942474365234 7.05426025390625 133.4449462890625 7.105030059814453 C 133.3847503662109 7.16703987121582 133.314453125 7.351339340209961 133.314453125 7.666669845581055 L 133.314453125 26.33333015441895 C 133.314453125 26.64866065979004 133.3847503662109 26.83296012878418 133.4449462890625 26.89496994018555 C 133.4942474365234 26.94573974609375 133.6359558105469 27 133.8858795166016 27 L 146.7430419921875 27 C 146.9929504394531 27 147.1346740722656 26.94575119018555 147.1839599609375 26.89496994018555 C 147.2441558837891 26.83296012878418 147.314453125 26.6486701965332 147.314453125 26.33333015441895 L 147.314453125 12.00579643249512 L 142.2656860351562 7 L 133.8858795166016 7 M 133.8858795166016 5 L 143.089111328125 5 L 149.314453125 11.17235946655273 L 149.314453125 26.33333015441895 C 149.314453125 27.99041938781738 148.3169860839844 29 146.7430419921875 29 L 133.8858795166016 29 C 132.3119354248047 29 131.314453125 27.99041938781738 131.314453125 26.33333015441895 L 131.314453125 7.666669845581055 C 131.314453125 6.009580612182617 132.3119354248047 5 133.8858795166016 5 Z" stroke="none" fill="#000"/></g><path d="M146.478,9.917h-4v-4Z" transform="translate(-130.478 -6.915)" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g><g transform="translate(17.666 -1)"><line y2="8" transform="translate(3)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x1="6" y2="4" transform="translate(0 2)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x1="6" y1="4" transform="translate(0 2)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.999 3.143)"><g transform="translate(-131.314 -5.143)" fill="none" stroke-linejoin="round"><path d="M151.315,12V28a2.864,2.864,0,0,1-3,3h-14a2.864,2.864,0,0,1-3-3V8a2.864,2.864,0,0,1,3-3h10Z" stroke="none"/><path d="M 134.3154296875 7 C 133.6518859863281 7 133.3154296875 7.336450576782227 133.3154296875 8 L 133.3154296875 28 C 133.3154296875 28.66354942321777 133.6518859863281 29 134.3154296875 29 L 148.3154296875 29 C 148.9789733886719 29 149.3154296875 28.66354942321777 149.3154296875 28 L 149.3154296875 12.82842063903809 L 143.4870147705078 7 L 134.3154296875 7 M 134.3154296875 5 L 144.3154296875 5 L 151.3154296875 12 L 151.3154296875 28 C 151.3154296875 29.79517936706543 150.0643463134766 31 148.3154296875 31 L 134.3154296875 31 C 132.5665130615234 31 131.3154296875 29.79517936706543 131.3154296875 28 L 131.3154296875 8 C 131.3154296875 6.20482063293457 132.5665130615234 5 134.3154296875 5 Z" stroke="none" fill="#000"/></g><path d="M148.477,11.915h-6v-6Z" transform="translate(-129.477 -5.058)" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.667 5.333)"><line x2="22" transform="translate(-1.667 2.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="22" transform="translate(-1.667 10.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="22" transform="translate(-1.667 18.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(0.333 -0.334)" stroke="#000" stroke-width="1"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2.5" fill="none"/></g><g transform="translate(12.333 7.666)" stroke="#000" stroke-width="1"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2.5" fill="none"/></g><g transform="translate(7.333 15.666)" stroke="#000" stroke-width="1"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2.5" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.371 3)"><g transform="translate(674.381 -65.96)" stroke-linejoin="round"><path d="M -662.2048950195312 90.95999145507812 C -662.3107299804688 90.95999145507812 -662.4077758789062 90.92786407470703 -662.49365234375 90.86445617675781 L -667.0604858398438 87.06781768798828 L -667.0735473632812 87.05696105957031 L -667.0869750976562 87.04653930664062 C -667.5095825195312 86.71884155273438 -667.751953125 86.24175262451172 -667.751953125 85.73760223388672 L -667.751953125 78.85758972167969 C -667.751953125 78.50293731689453 -667.8397827148438 77.69725799560547 -668.1716918945312 77.18000030517578 L -673.5753784179688 68.69412994384766 C -673.87353515625 68.22946929931641 -673.7302856445312 67.81752014160156 -673.6185302734375 67.61305236816406 C -673.3965454101562 67.20680999755859 -672.964111328125 66.96427154541016 -672.4618530273438 66.96427154541016 L -657.0423583984375 66.95999145507812 C -656.5393676757812 66.95999145507812 -656.1063842773438 67.20339965820312 -655.8843994140625 67.61110687255859 C -655.77294921875 67.81582641601562 -655.63037109375 68.22804260253906 -655.927978515625 68.68857574462891 L -655.9334106445312 68.697021484375 L -655.9386596679688 68.70556640625 L -661.3329467773438 77.43450927734375 C -661.6071166992188 77.86263275146484 -661.751953125 78.35444641113281 -661.751953125 78.85758972167969 L -661.751953125 90.59654998779297 C -661.751953125 90.844482421875 -662.022216796875 90.95999145507812 -662.2048950195312 90.95999145507812 Z" stroke="none"/><path d="M -657.0425415039062 67.95997619628906 L -657.0421142578125 67.95997619628906 L -672.4618530273438 67.96427154541016 C -672.710205078125 67.96427154541016 -672.7515258789062 68.11821746826172 -672.7523803710938 68.11821746826172 C -672.7523803710938 68.11821746826172 -672.7523803710938 68.11820983886719 -672.7523803710938 68.11820220947266 C -672.7517700195312 68.12110900878906 -672.7474365234375 68.13270568847656 -672.735595703125 68.15122222900391 C -672.7343139648438 68.15315246582031 -672.7330932617188 68.15506744384766 -672.7318725585938 68.15699768066406 L -667.329833984375 76.64030456542969 C -666.7681884765625 77.51592254638672 -666.751953125 78.72252655029297 -666.751953125 78.85758972167969 L -666.751953125 85.73760223388672 C -666.751953125 85.93035888671875 -666.6506958007812 86.11941528320312 -666.4741821289062 86.25630187988281 C -666.456298828125 86.27017974853516 -666.4385986328125 86.28437042236328 -666.4212036132812 86.29885101318359 L -662.751953125 89.34928894042969 L -662.751953125 78.85758972167969 C -662.751953125 78.1658935546875 -662.5542602539062 77.49059295654297 -662.1799926757812 76.90298461914062 L -656.7893676757812 68.17987060546875 C -656.7822875976562 68.16847229003906 -656.775146484375 68.15715026855469 -656.7678833007812 68.14588928222656 C -656.7561645507812 68.12775421142578 -656.7517700195312 68.11681365966797 -656.751708984375 68.11818695068359 C -656.7517700195312 68.11660766601562 -656.7930297851562 67.96001434326172 -657.0425415039062 67.95997619628906 M -657.0426635742188 65.95997619628906 C -655.2591552734375 65.95997619628906 -654.161376953125 67.79706573486328 -655.0880126953125 69.23126220703125 L -660.4871215820312 77.96805572509766 C -660.66064453125 78.23664855957031 -660.751953125 78.54389190673828 -660.751953125 78.85758972167969 L -660.751953125 90.59654998779297 C -660.751953125 91.74710845947266 -662.1736450195312 92.37779235839844 -663.1163330078125 91.64723968505859 L -667.6997680664062 87.8367919921875 C -668.3661499023438 87.32004547119141 -668.751953125 86.54975128173828 -668.751953125 85.73760223388672 L -668.751953125 78.85758972167969 C -668.751953125 78.54495239257812 -668.8421020507812 77.98490905761719 -669.0143432617188 77.71846771240234 L -674.4188842773438 69.23126220703125 C -675.3397827148438 67.79598236083984 -674.2432250976562 65.96427154541016 -672.4618530273438 65.96427154541016 L -657.0426635742188 65.95997619628906 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.371 3)"><g transform="translate(674.381 -65.96)" fill="none" stroke-linejoin="round"><path d="M-672.462,65.964l15.419,0a2.154,2.154,0,0,1,1.955,3.271l-5.4,8.737a1.636,1.636,0,0,0-.265.89V90.6a1.455,1.455,0,0,1-2.364,1.051l-4.583-3.81a2.66,2.66,0,0,1-1.052-2.1v-6.88a2.589,2.589,0,0,0-.262-1.139l-5.4-8.487A2.154,2.154,0,0,1-672.462,65.964Z" stroke="none"/><path d="M -657.0425415039062 67.95997619628906 L -657.0421142578125 67.95997619628906 L -672.4618530273438 67.96427154541016 C -672.710205078125 67.96427154541016 -672.7515258789062 68.11821746826172 -672.7523803710938 68.11821746826172 C -672.7523803710938 68.11821746826172 -672.7523803710938 68.11820983886719 -672.7523803710938 68.11820220947266 C -672.7517700195312 68.12110900878906 -672.7474365234375 68.13270568847656 -672.735595703125 68.15122222900391 C -672.7343139648438 68.15315246582031 -672.7330932617188 68.15506744384766 -672.7318725585938 68.15699768066406 L -667.329833984375 76.64030456542969 C -666.7681884765625 77.51592254638672 -666.751953125 78.72252655029297 -666.751953125 78.85758972167969 L -666.751953125 85.73760223388672 C -666.751953125 85.93035888671875 -666.6506958007812 86.11941528320312 -666.4741821289062 86.25630187988281 C -666.456298828125 86.27017974853516 -666.4385986328125 86.28437042236328 -666.4212036132812 86.29885101318359 L -662.751953125 89.34928894042969 L -662.751953125 78.85758972167969 C -662.751953125 78.1658935546875 -662.5542602539062 77.49059295654297 -662.1799926757812 76.90298461914062 L -656.7893676757812 68.17987060546875 C -656.7822875976562 68.16847229003906 -656.775146484375 68.15715026855469 -656.7678833007812 68.14588928222656 C -656.7561645507812 68.12775421142578 -656.7517700195312 68.11681365966797 -656.751708984375 68.11818695068359 C -656.7517700195312 68.11660766601562 -656.7930297851562 67.96001434326172 -657.0425415039062 67.95997619628906 M -657.0426635742188 65.95997619628906 C -655.2591552734375 65.95997619628906 -654.161376953125 67.79706573486328 -655.0880126953125 69.23126220703125 L -660.4871215820312 77.96805572509766 C -660.66064453125 78.23664855957031 -660.751953125 78.54389190673828 -660.751953125 78.85758972167969 L -660.751953125 90.59654998779297 C -660.751953125 91.74710845947266 -662.1736450195312 92.37779235839844 -663.1163330078125 91.64723968505859 L -667.6997680664062 87.8367919921875 C -668.3661499023438 87.32004547119141 -668.751953125 86.54975128173828 -668.751953125 85.73760223388672 L -668.751953125 78.85758972167969 C -668.751953125 78.54495239257812 -668.8421020507812 77.98490905761719 -669.0143432617188 77.71846771240234 L -674.4188842773438 69.23126220703125 C -675.3397827148438 67.79598236083984 -674.2432250976562 65.96427154541016 -672.4618530273438 65.96427154541016 L -657.0426635742188 65.95997619628906 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.667 5.333)"><path d="M17.888-830.507c3.925.769,6.176,2.506,6.176,4.769,0,2.933-5.271,5.231-12,5.231s-12-2.3-12-5.231c0-2.263,2.252-4,6.176-4.769" transform="translate(-2.73 844.173)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M7.451,16.379v-16h10l-4,4,4,4h-10" transform="translate(1.882 -2.713)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><ellipse cx="3" cy="1.5" rx="3" ry="1.5" transform="translate(6.333 16.666)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.669 5.328)"><g transform="translate(0.331 -0.328)" fill="none"><path d="M1,21a2,2,0,0,1-2-2V2.407A2.53,2.53,0,0,1,1.287.006l8,0,1.113,0L12.7,3H25a2,2,0,0,1,2,2V19a2,2,0,0,1-2,2Z" stroke="none"/><path d="M 25.00020027160645 18.99970054626465 L 25 18.99900054931641 L 25.00020027160645 4.999700546264648 L 11.70983982086182 4.999700546264648 L 9.409381866455078 2.002314805984497 L 9.282688140869141 2.001802682876587 L 1.337342143058777 2.006272792816162 C 1.205820202827454 2.058528900146484 1.014733791351318 2.28501296043396 1.000099539756775 2.410799026489258 L 0.9998995661735535 18.99970054626465 L 25.00020027160645 18.99970054626465 M 25.00020027160645 20.99970054626465 L 0.9998995661735535 20.99970054626465 C -0.1044004112482071 20.99970054626465 -0.9999004006385803 20.10420036315918 -0.9999004006385803 18.99900054931641 L -0.9999004006385803 4.999500751495361 C -0.9999004006385803 4.199270725250244 -0.9999004006385803 3.10088062286377 -0.9999004006385803 2.406600475311279 C -0.9999004006385803 1.206900596618652 0.1448995918035507 0.01350054144859314 1.286999583244324 0.006300541572272778 L 9.285299301147461 0.001800541649572551 L 10.39859962463379 0.006300541572272778 L 12.69599914550781 2.999700546264648 L 25.00020027160645 2.999700546264648 C 26.10449981689453 2.999700546264648 27 3.89430046081543 27 4.999500751495361 L 27 18.99900054931641 C 27 20.10420036315918 26.10449981689453 20.99970054626465 25.00020027160645 20.99970054626465 Z" stroke="none" fill="#000"/></g><path d="M3.662,19.1l5-9h20" transform="translate(-2.332 -0.429)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.333 8)"><line y2="16" transform="translate(14.667)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><g transform="translate(-3.333 -2)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><rect width="28" height="20" stroke="none"/><rect x="1" y="1" width="26" height="18" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 7)"><path d="M-51,68.914h-4a3.008,3.008,0,0,0-2.278.709A2.636,2.636,0,0,0-58,71.748V83.082a2.64,2.64,0,0,0,.722,2.125A3.007,3.007,0,0,0-55,85.914h20a3.007,3.007,0,0,0,2.278-.707A2.634,2.634,0,0,0-32,83.082V71.748a2.634,2.634,0,0,0-.722-2.125A3.008,3.008,0,0,0-35,68.914h-4" transform="translate(57 -68.914)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(59.1 -66.417)" fill="none" stroke-miterlimit="10"><path d="M-51.306,84.416h8.4l.719,1.594c.306.678-.28,1.406-1.132,1.406h-7.572c-.85,0-1.436-.726-1.134-1.4Z" stroke="none"/><path d="M -51.30584335327148 84.41600036621094 L -42.90125274658203 84.41600036621094 L -42.18243026733398 86.00969696044922 C -41.87671279907227 86.68733215332031 -42.46275329589844 87.41600036621094 -43.31435012817383 87.41600036621094 L -50.88618087768555 87.41600036621094 C -51.73614120483398 87.41600036621094 -52.32218170166016 86.69011688232422 -52.01974105834961 86.01249694824219 L -51.30584335327148 84.41600036621094 Z" stroke="none" fill="#000"/></g><path d="M-49.5,74.181l4,4,4-4" transform="translate(57.5 -66.514)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y1="9" transform="translate(12 0.998)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.333 5.333)"><g transform="translate(-2.333 -2.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="12" height="12" rx="2" stroke="none"/><rect x="1" y="1" width="10" height="10" rx="1" fill="none"/></g><g transform="translate(-2.333 11.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="12" height="12" rx="2" stroke="none"/><rect x="1" y="1" width="10" height="10" rx="1" fill="none"/></g><g transform="translate(11.667 -2.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="12" height="12" rx="2" stroke="none"/><rect x="1" y="1" width="10" height="10" rx="1" fill="none"/></g><g transform="translate(11.667 11.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="12" height="12" rx="2" stroke="none"/><rect x="1" y="1" width="10" height="10" rx="1" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2 3)"><line x2="10" transform="translate(17 5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="10" transform="translate(22)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(0 1)"><g transform="translate(1 10)" fill="none" stroke="#000" stroke-width="2"><rect width="10" height="10" rx="5" stroke="none"/><rect x="1" y="1" width="8" height="8" rx="4" fill="none"/></g><path d="M0,0A5,5,0,0,1,5,5a5,5,0,0,1-5,5" transform="translate(1 26) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g><g transform="translate(0 1)"><g transform="translate(12 13)" fill="none" stroke="#000" stroke-width="2"><rect width="8" height="8" rx="4" stroke="none"/><rect x="1" y="1" width="6" height="6" rx="3" fill="none"/></g><path d="M0,0A4,4,0,0,1,4,4,4,4,0,0,1,0,8" transform="translate(12 26) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2 5.444)"><g transform="translate(1 1.557)" fill="none" stroke="#000" stroke-width="2"><rect width="12" height="12" rx="6" stroke="none"/><rect x="1" y="1" width="10" height="10" rx="5" fill="none"/></g><path d="M0,0A6,6,0,0,1,6,6a6,6,0,0,1-6,6" transform="translate(1 20.555) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><path d="M0,0A5,5,0,0,1,5,5a5,5,0,0,1-5,5" transform="translate(17 20.555) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><g transform="translate(17 4.557)" fill="none" stroke="#000" stroke-width="2"><rect width="10" height="10" rx="5" stroke="none"/><rect x="1" y="1" width="8" height="8" rx="4" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2 4)"><g transform="translate(554 -67.531)" stroke-miterlimit="10"><path d="M -540 90.531005859375 C -540.1371459960938 90.531005859375 -540.2698364257812 90.47766876220703 -540.3641357421875 90.38467407226562 L -551.0101928710938 79.92605590820312 C -552.2933349609375 78.66538238525391 -553 76.99039459228516 -553 75.20967864990234 C -553 73.42894744873047 -552.2933349609375 71.75396728515625 -551.0101928710938 70.4932861328125 C -549.7223510742188 69.22787475585938 -548.008544921875 68.531005859375 -546.1844482421875 68.531005859375 C -544.3604736328125 68.531005859375 -542.6467895507812 69.22787475585938 -541.3590087890625 70.49324798583984 L -540.7007446289062 71.13982391357422 L -539.9998779296875 71.82826232910156 L -539.2991333007812 71.13969421386719 L -538.6412353515625 70.49323272705078 C -537.3533325195312 69.22788238525391 -535.6395263671875 68.531005859375 -533.8155517578125 68.531005859375 C -531.9916381835938 68.531005859375 -530.2777709960938 69.22789764404297 -528.98974609375 70.49329376220703 C -527.7066650390625 71.75401306152344 -527 73.42900848388672 -527 75.20967864990234 C -527 76.99033355712891 -527.7066650390625 78.66533660888672 -528.9898071289062 79.92612457275391 L -539.63330078125 90.38322448730469 C -539.7289428710938 90.4771728515625 -539.862548828125 90.531005859375 -540 90.531005859375 Z" stroke="none"/><path d="M -546.1844482421875 69.531005859375 C -547.7447509765625 69.531005859375 -549.2096557617188 70.12605285644531 -550.309326171875 71.20661926269531 C -551.3995971679688 72.27774810791016 -552 73.69939422607422 -552 75.20967864990234 C -552 76.71994781494141 -551.3995971679688 78.14160919189453 -550.3093872070312 79.21269226074219 L -539.9994506835938 89.34107971191406 L -529.690673828125 79.21282958984375 C -528.6004028320312 78.14157867431641 -528 76.71989440917969 -528 75.20967864990234 C -528 73.69944763183594 -528.6004028320312 72.27777862548828 -529.6905517578125 71.20664215087891 C -530.7904663085938 70.1260986328125 -532.25537109375 69.531005859375 -533.8155517578125 69.531005859375 C -535.3757934570312 69.531005859375 -536.8406982421875 70.12607574462891 -537.9403686523438 71.20651245117188 L -539.999755859375 73.2301025390625 L -542.0598754882812 71.20652770996094 C -543.1594848632812 70.12605285644531 -544.6243286132812 69.531005859375 -546.1844482421875 69.531005859375 M -546.1844482421875 67.531005859375 C -544.0973510742188 67.531005859375 -542.1338500976562 68.32992553710938 -540.6581420898438 69.77995300292969 L -540 70.42641448974609 L -539.3421020507812 69.77995300292969 C -537.8662719726562 68.32992553710938 -535.9026489257812 67.531005859375 -533.8155517578125 67.531005859375 C -531.728271484375 67.531005859375 -529.764892578125 68.32992553710938 -528.2889404296875 69.77995300292969 C -526.813232421875 71.22992706298828 -526 73.15789794921875 -526 75.20967864990234 C -526 77.26029205322266 -526.813232421875 79.18941497802734 -528.2889404296875 80.63941955566406 L -538.9324951171875 91.0965576171875 C -539.2159423828125 91.37510681152344 -539.599853515625 91.531005859375 -540 91.531005859375 C -540.4002075195312 91.531005859375 -540.7840576171875 91.37510681152344 -541.06640625 91.0965576171875 L -551.7109985351562 80.63941955566406 C -553.1868286132812 79.18941497802734 -554 77.26142883300781 -554 75.20967864990234 C -554 73.1590576171875 -553.1868286132812 71.22992706298828 -551.7109985351562 69.77995300292969 C -550.2352905273438 68.32992553710938 -548.2716674804688 67.531005859375 -546.1844482421875 67.531005859375 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2 4)"><g transform="translate(554 -67.531)" fill="none" stroke-miterlimit="10"><path d="M-533.816,67.531a7.837,7.837,0,0,0-5.527,2.249l-.658.646-.658-.646a7.836,7.836,0,0,0-5.526-2.249,7.836,7.836,0,0,0-5.527,2.249A7.563,7.563,0,0,0-554,75.21a7.561,7.561,0,0,0,2.289,5.43L-541.066,91.1a1.518,1.518,0,0,0,1.066.434,1.523,1.523,0,0,0,1.068-.434l10.644-10.457A7.563,7.563,0,0,0-526,75.21a7.561,7.561,0,0,0-2.289-5.43A7.837,7.837,0,0,0-533.816,67.531Z" stroke="none"/><path d="M -546.1844482421875 69.53099822998047 C -547.7447509765625 69.53099822998047 -549.2096557617188 70.12604522705078 -550.309326171875 71.20661163330078 C -551.3995971679688 72.27774047851562 -552 73.69938659667969 -552 75.20967102050781 C -552 76.71994781494141 -551.3995971679688 78.14160919189453 -550.3093872070312 79.21269989013672 L -539.9994506835938 89.34107971191406 L -529.690673828125 79.21282958984375 C -528.6004028320312 78.14157867431641 -528 76.71990203857422 -528 75.20967102050781 C -528 73.69944000244141 -528.6004028320312 72.27777099609375 -529.6905517578125 71.20663452148438 C -530.7904663085938 70.12609100341797 -532.25537109375 69.53099822998047 -533.8155517578125 69.53099822998047 C -535.375732421875 69.53099822998047 -536.8406982421875 70.12606811523438 -537.9403076171875 71.20649719238281 L -539.999755859375 73.23012542724609 L -542.0598754882812 71.20652770996094 C -543.1594848632812 70.12604522705078 -544.6243286132812 69.53099822998047 -546.1844482421875 69.53099822998047 M -546.1844482421875 67.53099822998047 C -544.0973510742188 67.53099822998047 -542.1338500976562 68.32992553710938 -540.6581420898438 69.77994537353516 L -540 70.42641448974609 L -539.3421020507812 69.77994537353516 C -537.8662719726562 68.32992553710938 -535.9026489257812 67.53099822998047 -533.8155517578125 67.53099822998047 C -531.728271484375 67.53099822998047 -529.764892578125 68.32992553710938 -528.2889404296875 69.77994537353516 C -526.813232421875 71.22991943359375 -526 73.15789794921875 -526 75.20967102050781 C -526 77.26028442382812 -526.813232421875 79.18941497802734 -528.2889404296875 80.63941955566406 L -538.9324951171875 91.0965576171875 C -539.2159423828125 91.37510681152344 -539.599853515625 91.53099822998047 -540 91.53099822998047 C -540.4002075195312 91.53099822998047 -540.7840576171875 91.37510681152344 -541.06640625 91.0965576171875 L -551.7109985351562 80.63941955566406 C -553.1868286132812 79.18941497802734 -554 77.26142120361328 -554 75.20967102050781 C -554 73.1590576171875 -553.1868286132812 71.22991943359375 -551.7109985351562 69.77994537353516 C -550.2352905273438 68.32992553710938 -548.2716674804688 67.53099822998047 -546.1844482421875 67.53099822998047 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3 6.334)"><path d="M.289,6.423,7.657,13.8,20.289,1.136,12.921-6.2Z" transform="translate(4.711 3.867)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><path d="M6.089,7.8l4.2,4.2-2.8,2.8h-2.8l-1.4-1.4V10.6Z" transform="translate(-0.289 4.868)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><path d="M2.289,11.8l-2,2,2,1,2-2Z" transform="translate(0.711 6.868)" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.333 2.753)"><g transform="translate(-0.333 0.247)" fill="rgba(0,0,0,0)" stroke-miterlimit="10"><path d="M 12.00049591064453 24.99928092956543 L 8.000125885009766 24.99920082092285 C 7.285126209259033 24.99825096130371 6.532956123352051 24.65635108947754 5.937786102294922 24.06119155883789 C 5.342746257781982 23.46615028381348 5.001126289367676 22.71442031860352 5.000506401062012 21.99874114990234 L 5.000506401062012 13.12650108337402 L 5.000506401062012 12.12650108337402 L 4.000506401062012 12.12650108337402 L 1.692896366119385 12.12650108337402 C 1.489395380020142 12.12586784362793 1.333836078643799 12.10609340667725 1.206862330436707 12.06429004669189 C 1.076960206031799 12.01883125305176 1.047551035881042 11.9750804901123 1.033336281776428 11.95394134521484 C 1.026206374168396 11.94211101531982 1.018476366996765 11.91622066497803 1.017916321754456 11.90355110168457 L 1.017956376075745 11.90009117126465 L 1.017986297607422 11.8985013961792 C 1.018145442008972 11.87161445617676 1.018571615219116 11.80046558380127 1.104555606842041 11.66526317596436 C 1.181066989898682 11.5475902557373 1.287948250770569 11.43204784393311 1.440686345100403 11.30186080932617 L 1.445816278457642 11.2974910736084 L 1.450886368751526 11.29305076599121 L 12.67558097839355 1.461541175842285 C 13.0303430557251 1.164495348930359 13.50092697143555 1.000647187232971 14.00169658660889 1.000000953674316 C 14.50133609771729 1.000648975372314 14.97334098815918 1.165639638900757 15.32876205444336 1.464666366577148 L 26.56596565246582 11.1698112487793 L 26.56844711303711 11.17196083068848 L 26.57094573974609 11.17409133911133 C 26.71883201599121 11.30013179779053 26.82921600341797 11.41964912414551 26.90824317932129 11.53934955596924 C 26.98307228088379 11.65753364562988 26.99323081970215 11.72660350799561 26.9936466217041 11.77368068695068 C 26.99377632141113 11.78885078430176 26.98535537719727 11.81601142883301 26.9786262512207 11.8265209197998 C 26.96637535095215 11.84482860565186 26.94707679748535 11.86847877502441 26.90006446838379 11.89411163330078 C 26.79821968078613 11.94753932952881 26.65578651428223 11.99692344665527 26.31521987915039 11.99959564208984 L 23.99426651000977 11.99690055847168 L 22.99230575561523 11.99574089050293 L 22.99310684204102 12.99770069122314 L 23.00030708312988 22.00040054321289 C 22.99968719482422 22.71437072753906 22.65798568725586 23.4660816192627 22.06282615661621 24.06111145019531 C 21.46747589111328 24.65632057189941 20.71504592895508 24.99825096130371 19.99847602844238 24.99920082092285 L 16.00120544433594 24.99920082092285 L 16.00119590759277 18.99990081787109 L 16.00119590759277 18.00035095214844 L 15.00164604187012 17.99990081787109 L 13.00094604492188 17.99900054931641 L 12.00049591064453 17.99855041503906 L 12.00049591064453 18.99900054931641 L 12.00049591064453 24.99928092956543 Z" stroke="none"/><path d="M 11.00049591064453 23.9992618560791 L 11.00049591064453 16.99810028076172 L 17.00119590759277 17.00080108642578 L 17.0012035369873 23.99920082092285 L 19.99713706970215 23.99920082092285 C 20.95109558105469 23.9979305267334 21.99948692321777 22.95051002502441 22.00030708312988 22.00120162963867 L 21.99150657653809 10.9945707321167 L 24.83696937561035 10.997878074646 L 14.68089008331299 2.226459264755249 C 14.5059871673584 2.081173181533813 14.26477146148682 2.000854253768921 14.00040626525879 2.000007390975952 C 13.73806762695312 2.00084662437439 13.49869155883789 2.079753160476685 13.32441520690918 2.22258996963501 L 3.15876579284668 11.12650108337402 L 6.000506401062012 11.12650108337402 L 6.000506401062012 21.99788093566895 C 6.001326560974121 22.95051002502441 7.049246311187744 23.9979305267334 8.00014591217041 23.99920082092285 L 11.00049591064453 23.9992618560791 M 13.00049591064453 25.99930000305176 L 8.000105857849121 25.99920082092285 C 5.946006298065186 25.99646186828613 4.002276420593262 24.05273056030273 4.000506401062012 21.99960136413574 L 4.000506401062012 13.12650108337402 L 1.692896366119385 13.12650108337402 C 1.374146342277527 13.12552070617676 1.117626309394836 13.08891105651855 0.8856063485145569 13.01130104064941 C 0.5822763442993164 12.90686130523682 0.3591363131999969 12.74348068237305 0.2034063190221786 12.51180076599121 C 0.08459632843732834 12.33624076843262 0.01528632547706366 12.10476112365723 0.01800632476806641 11.89260101318359 C 0.01954632624983788 11.63139057159424 0.09991632401943207 11.37998104095459 0.2636963129043579 11.12400054931641 C 0.3945363163948059 10.9218111038208 0.5624163150787354 10.73649120330811 0.7920063138008118 10.54080104827881 L 12.02399635314941 0.7029009461402893 C 12.55934619903564 0.2505709528923035 13.2612361907959 0.0009509552037343383 14.00040626525879 9.552002211421495e-07 C 14.73976612091064 0.0009509552037343383 15.44198608398438 0.2509009540081024 15.97769641876221 0.7038009762763977 L 27.21959686279297 10.41300106048584 C 27.44290542602539 10.60332107543945 27.6157169342041 10.79409122467041 27.74790573120117 10.99620056152344 C 27.9109058380127 11.25095081329346 27.99127578735352 11.50236129760742 27.99360656738281 11.76480102539062 C 27.99544715881348 11.98117065429688 27.92787551879883 12.20719051361084 27.80820655822754 12.38490104675293 C 27.69982719421387 12.54707050323486 27.55265617370605 12.67879104614258 27.37080574035645 12.77640056610107 C 27.08105659484863 12.9297513961792 26.76640701293945 12.99650096893311 26.31870651245117 12.99960136413574 L 23.99310684204102 12.99690055847168 L 24.00030708312988 21.99960136413574 C 23.99853706359863 24.05273056030273 22.05436706542969 25.99646186828613 19.99980545043945 25.99920082092285 L 15.00120639801025 25.99920082092285 L 15.00119590759277 18.99990081787109 L 13.00049591064453 18.99900054931641 L 13.00049591064453 25.99930000305176 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(7.999 3.999)"><path d="M200.433,257.189c0-.572,1.967-1.785,3-2.889a10.728,10.728,0,0,0,3-7.222v-2.889h-18v2.889a10.723,10.723,0,0,0,3,7.222c1.033,1.1,3,2.317,3,2.889s-1.967,1.785-3,2.889a10.724,10.724,0,0,0-3,7.222v2.889h18V267.3a10.734,10.734,0,0,0-3-7.222C202.4,258.973,200.433,257.763,200.433,257.189Z" transform="translate(-189.433 -245.189)" fill="none" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/><line x1="16" transform="translate(0.001 6)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><path d="M6,0C7.657,0,9,2.686,9,6s-1.343,6-3,6" transform="translate(2.001 30) rotate(-90)" stroke="#000" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.667 5.333)"><g transform="translate(27.333 0.666) rotate(90)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="20" height="28" rx="2" stroke="none"/><rect x="1" y="1" width="18" height="26" rx="1" fill="none"/></g><path d="M-550.534,88.088l13-13,9,9" transform="translate(554.867 -68.421)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><circle cx="2" cy="2" r="2" transform="translate(4.333 5.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-542.622,77.258l4,4,5-5" transform="translate(554.956 -65.592)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3.2 3.2)"><circle cx="14" cy="14" r="14" transform="translate(-1.2 -1.199)"/><line y1="10" transform="translate(12.8 11.801)" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y1="2" transform="translate(12.8 3.801)" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.667 2.666)"><line y2="2" transform="translate(13.333 6.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="7" transform="translate(13.333 13.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><g transform="translate(-0.667 -0.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6 4.418)"><line x1="14" transform="translate(6 0.583)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="14" transform="translate(0 22.583)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="8" y2="22" transform="translate(6 0.582)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><path d="M15234.5,23850v-5l10.419-10.424a8,8,0,1,1,5.026,5.01l-1.218,1.242-.228.174h-2v2h-2l-1,1v2h-2v2l-2,2Z" transform="translate(-15231.5 -23821)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><circle cx="2.5" cy="2.5" r="2.5" transform="translate(20 7)"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2 2)"><g fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13" fill="none"/></g><line x2="24" transform="translate(2 9)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><line x2="24" transform="translate(2 19)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><path d="M0,5S6.5,0,13,0,26,5,26,5" transform="translate(8 26.999) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><path d="M0,0S6.5,5,13,5,26,0,26,0" transform="translate(15 26.999) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 3.244)"><path d="M3.405,23.667,5.17,17.119a.282.282,0,0,1,.507-.081A3.125,3.125,0,1,0,6.9,12.508a.28.28,0,0,1-.4-.322l1.765-6.55,6.59,1.756a.281.281,0,0,0,.324-.4,3.084,3.084,0,0,1-.216-2.184,3.135,3.135,0,0,1,6.084,1.51,3.1,3.1,0,0,1-1.311,1.888.279.279,0,0,0,.082.5l6.588,1.756L21.545,28.5Z" transform="translate(-3.405 -2.744)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.667 2.666)"><path d="M7564.333,18705.334a4.968,4.968,0,0,1-3.277-1.2,3.99,3.99,0,0,1-1.406-2.875l2-2v1.863a2.006,2.006,0,0,0,.728,1.5,3.084,3.084,0,0,0,3.92,0,2.032,2.032,0,0,0,.723-1.5v-3.605l.465-.559a18.957,18.957,0,0,0,2.718-4.15,12.184,12.184,0,0,0,.97-3.072l2.158-2.158,0,.1c0,.049,0,.1,0,.145a13.8,13.8,0,0,1-1.314,5.826,21.077,21.077,0,0,1-3,4.6v2.883a4.02,4.02,0,0,1-1.409,3.01A4.968,4.968,0,0,1,7564.333,18705.334Zm-6.948-10.3v0c-.272-.465-.518-.936-.732-1.4a13.785,13.785,0,0,1-1.319-5.816,8.21,8.21,0,0,1,2.653-6.02,9.4,9.4,0,0,1,12.664-.029l-1.416,1.416a7.4,7.4,0,0,0-9.882.074,6.219,6.219,0,0,0-2.019,4.559,11.622,11.622,0,0,0,1.136,4.977c.122.262.251.521.386.77l-1.469,1.467Z" transform="translate(-7555 -18679)"/><path d="M7568.333,18699.334h-6.756l2-2h4.756v2Z" transform="translate(-7555 -18679)"/><line y1="24" x2="24" transform="translate(-2.667 1.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.667 2.667)"><g transform="translate(178.333 -66.166)" fill="none" stroke-miterlimit="10"><path d="M-160,74.988a8.232,8.232,0,0,0-2.653-6.018A9.255,9.255,0,0,0-169,66.5a9.256,9.256,0,0,0-6.347,2.47A8.232,8.232,0,0,0-178,74.988a13.682,13.682,0,0,0,1.321,5.817,21.257,21.257,0,0,0,2.994,4.584v2.9a4,4,0,0,0,1.407,3.007A4.96,4.96,0,0,0-169,92.5a4.96,4.96,0,0,0,3.278-1.2,4,4,0,0,0,1.407-3.007V85.411a21.054,21.054,0,0,0,3-4.6A13.746,13.746,0,0,0-160,74.988Z" stroke="none"/><path d="M -168.9999694824219 68.49997711181641 C -170.8851928710938 68.49997711181641 -172.6533660888672 69.18486785888672 -173.9798126220703 70.42948150634766 C -175.2834014892578 71.65084838867188 -176.0008392333984 73.26956939697266 -175.9999847412109 74.98954772949219 C -176.0009307861328 76.68714904785156 -175.6295776367188 78.31449127197266 -174.8650360107422 79.96385192871094 C -174.2469940185547 81.29582214355469 -173.3577728271484 82.65280914306641 -172.1465454101562 84.11238098144531 L -171.6856231689453 84.66780853271484 L -171.6856231689453 88.29554748535156 C -171.6863250732422 89.04930114746094 -171.2327423095703 89.55825042724609 -170.9588928222656 89.79753112792969 C -170.4427947998047 90.25052642822266 -169.7471008300781 90.50000762939453 -168.9999694824219 90.50000762939453 C -168.2528533935547 90.50000762939453 -167.5571746826172 90.25052642822266 -167.0376586914062 89.79454040527344 C -166.7672119140625 89.55824279785156 -166.3136138916016 89.04929351806641 -166.3143463134766 88.29367065429688 L -166.3143463134766 84.68759155273438 L -165.8515167236328 84.13153839111328 C -164.6382141113281 82.67391967773438 -163.7478332519531 81.31491088867188 -163.1298370361328 79.97756195068359 C -162.3686065673828 78.32862854003906 -161.9990234375 76.69703674316406 -161.9999542236328 74.98745727539062 C -161.9991149902344 73.26956939697266 -162.716552734375 71.65084838867188 -164.0212249755859 70.428466796875 C -165.3465881347656 69.18486785888672 -167.11474609375 68.49997711181641 -168.9999694824219 68.49997711181641 M -168.9999694824219 66.49997711181641 C -166.5305786132812 66.49997711181641 -164.2839508056641 67.43937683105469 -162.6527099609375 68.96999359130859 C -161.0214691162109 70.49835205078125 -159.9987945556641 72.63262176513672 -159.9999542236328 74.98844146728516 C -159.9987945556641 77.11251831054688 -160.4983062744141 79.0489501953125 -161.3139801025391 80.81582641601562 C -162.0834655761719 82.48098754882812 -163.1353302001953 83.99461364746094 -164.3143463134766 85.41104888916016 L -164.3143463134766 88.29367065429688 C -164.3132019042969 89.48403930664062 -164.8678283691406 90.55455780029297 -165.7217254638672 91.30063629150391 C -166.5756072998047 92.05011749267578 -167.7343444824219 92.50000762939453 -168.9999694824219 92.50000762939453 C -170.2655944824219 92.50000762939453 -171.4243469238281 92.05011749267578 -172.2782287597656 91.30063629150391 C -173.1321411132812 90.55455780029297 -173.6867370605469 89.48403930664062 -173.6856231689453 88.29367065429688 L -173.6856231689453 85.38957977294922 C -174.860107421875 83.97428131103516 -175.9097595214844 82.46401214599609 -176.6792449951172 80.80565643310547 C -177.4982452392578 79.03880310058594 -178.0011596679688 77.10459899902344 -177.9999847412109 74.98844146728516 C -178.0011596679688 72.63262176513672 -176.9784851074219 70.49835205078125 -175.3472442626953 68.96999359130859 C -173.7159881591797 67.43937683105469 -171.4693756103516 66.49997711181641 -168.9999694824219 66.49997711181641 Z" stroke="none" fill="#000"/></g><line x2="8" transform="translate(5.333 19.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><line x1="3" y2="4" transform="translate(9.333 10.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-172.261,76.4l3,4v4" transform="translate(178.594 -66.063)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 4)"><path d="M-606.212,80.532a6.344,6.344,0,0,0,8.79,1.248,6.17,6.17,0,0,0,.68-.579l3.767-3.71a6.115,6.115,0,0,0-.154-8.743,6.351,6.351,0,0,0-8.725,0l-2.16,2.114" transform="translate(615.212 -67.011)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-600,77.155a6.344,6.344,0,0,0-8.79-1.248,6.186,6.186,0,0,0-.68.579l-3.767,3.71a6.115,6.115,0,0,0,.155,8.743,6.351,6.351,0,0,0,8.725,0l2.148-2.114" transform="translate(615 -66.676)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.333 3.999)"><line y2="4" transform="translate(10.667 15)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(-1.333 8)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="24" height="18" rx="3" stroke="none"/><rect x="1" y="1" width="22" height="16" rx="2" fill="none"/></g><path d="M259.1,13V9.536A4.785,4.785,0,0,1,264.1,5h0a4.784,4.784,0,0,1,5,4.536V13" transform="translate(-253.428 -5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 4)"><path d="M763.833,4.5h5.333a3.208,3.208,0,0,1,2.667,2.667V25.833a3.213,3.213,0,0,1-2.667,2.667h-5.333" transform="translate(-747.833 -4.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M757.444,21.611l6-6-6-6" transform="translate(-745.444 -3.612)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="16" transform="translate(0 12)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 4)"><path d="M771.833,4.5H766.5a3.208,3.208,0,0,0-2.667,2.667V25.833A3.213,3.213,0,0,0,766.5,28.5h5.333" transform="translate(-763.833 -4.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M757.444,21.611l6-6-6-6" transform="translate(-739.444 -3.612)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="16" transform="translate(6 12)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2 7)"><g transform="translate(0 -1)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"><rect width="28" height="20" rx="2" stroke="none"/><rect x="1" y="1" width="26" height="18" rx="1" fill="none"/></g><path d="M21.05,6.008v4h4" transform="translate(-16.05 3.992)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M0,0V4H4" transform="translate(23.001 8) rotate(180)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5 12)"><line x2="18" transform="translate(0 8)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="14" transform="translate(0 4)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="22" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.333 5.334)"><g transform="translate(-0.333 15.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3" fill="none"/></g><g transform="translate(13.666 15.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3" fill="none"/></g><path d="M81.125,8.588l-4-4-4,4" transform="translate(-66.458 -5.588)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="11" transform="translate(10.667 0.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M75.091,21.977l5-5,5,5" transform="translate(-69.424 -5.31)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3.2 6.667)"><g transform="translate(-0.2 10.334)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"><rect width="11" height="9" rx="1" stroke="none"/><rect x="1" y="1" width="9" height="7" fill="none"/></g><path d="M24.05,10.008v-4h-6" transform="translate(0.75 -5.676)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M4,6V0H0" transform="translate(24.8 14.333) rotate(90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M0,0V6H4" transform="translate(6.8 0.334) rotate(90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 4)"><path d="M68.888,22.487a2.717,2.717,0,0,1-2.889-3v-12a2.717,2.717,0,0,1,2.889-3H89.111a2.717,2.717,0,0,1,2.889,3v12a2.717,2.717,0,0,1-2.889,3" transform="translate(-67 -5.486)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(0 2)"><path d="M0,0A3,3,0,0,1,3,3,3,3,0,0,1,0,6" transform="translate(9 24) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(-13 -0.68)" stroke-miterlimit="10"><path d="M 25.00000381469727 19.67900276184082 C 24.46724319458008 19.67900276184082 23.96476364135742 19.47050285339355 23.58513450622559 19.09192276000977 C 23.20850372314453 18.7142333984375 23.00000381469727 18.21175193786621 23.00000381469727 17.67900276184082 C 23.00000381469727 17.14527320861816 23.20850372314453 16.64226341247559 23.58708381652832 16.26263236999512 C 23.96379470825195 15.886962890625 24.46627426147461 15.67900276184082 25.00000381469727 15.67900276184082 C 25.53373336791992 15.67900276184082 26.03620338439941 15.886962890625 26.41485404968262 16.26457214355469 C 26.7918529510498 16.64157295227051 27.00000381469727 17.14423370361328 27.00000381469727 17.67900276184082 C 27.00000381469727 18.21279335021973 26.79184341430664 18.71493339538574 26.41388320922852 19.09290313720703 C 26.03523445129395 19.47051239013672 25.53276443481445 19.67900276184082 25.00000381469727 19.67900276184082 Z" stroke="none"/><path d="M 25.00000381469727 16.67900276184082 C 24.65928649902344 16.67900276184082 24.42787170410156 16.8371467590332 24.29323959350586 16.97069931030273 C 24.18279647827148 17.08208084106445 24.00000381469727 17.32065200805664 24.00000381469727 17.67900276184082 C 24.00000381469727 18.01902770996094 24.15946578979492 18.25118827819824 24.29384994506836 18.38641357421875 C 24.42925453186035 18.52052688598633 24.66101837158203 18.67900276184082 25.00000381469727 18.67900276184082 C 25.34115409851074 18.67900276184082 25.57370376586914 18.51850318908691 25.70676422119141 18.38580322265625 C 25.84054374694824 18.25202369689941 26.00000381469727 18.02081298828125 26.00000381469727 17.67900276184082 C 26.00000381469727 17.33595275878906 25.84054374694824 17.10448265075684 25.7087230682373 16.97265243530273 C 25.57439422607422 16.83869361877441 25.34239387512207 16.67900276184082 25.00000381469727 16.67900276184082 M 25.00000381469727 14.67900276184082 C 25.82950401306152 14.67900276184082 26.57650375366211 15.01350212097168 27.12099456787109 15.55650329589844 C 27.66549301147461 16.10100364685059 28.00000381469727 16.84950256347656 28.00000381469727 17.67900276184082 C 28.00000381469727 18.50850296020508 27.66549301147461 19.2554931640625 27.12099456787109 19.80000305175781 C 26.57650375366211 20.34300231933594 25.82950401306152 20.67900276184082 25.00000381469727 20.67900276184082 C 24.17050361633301 20.67900276184082 23.42350387573242 20.34300231933594 22.87900352478027 19.80000305175781 C 22.33600425720215 19.2554931640625 22.00000381469727 18.50850296020508 22.00000381469727 17.67900276184082 C 22.00000381469727 16.84950256347656 22.33600425720215 16.10100364685059 22.87900352478027 15.55650329589844 C 23.42350387573242 15.01350212097168 24.17050361633301 14.67900276184082 25.00000381469727 14.67900276184082 Z" stroke="none" fill="#000"/></g></g><g transform="translate(-5 -11)"><path d="M0,0A3,3,0,0,1,3,3,3,3,0,0,1,0,6" transform="translate(9 24) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(-13 -0.68)" fill="none" stroke-miterlimit="10"><path d="M22,17.679a3,3,0,1,1,.879,2.121A2.994,2.994,0,0,1,22,17.679Z" stroke="none"/><path d="M 25.00000381469727 16.67900276184082 C 24.65928649902344 16.67900276184082 24.42787170410156 16.8371467590332 24.29323959350586 16.97069931030273 C 24.18279647827148 17.08208084106445 24.00000381469727 17.32065200805664 24.00000381469727 17.67900276184082 C 24.00000381469727 18.01902770996094 24.15946578979492 18.25118827819824 24.29384994506836 18.38641357421875 C 24.42925453186035 18.52052688598633 24.66101837158203 18.67900276184082 25.00000381469727 18.67900276184082 C 25.34115409851074 18.67900276184082 25.57370376586914 18.51850318908691 25.70676422119141 18.38580322265625 C 25.84054374694824 18.25202369689941 26.00000381469727 18.02081298828125 26.00000381469727 17.67900276184082 C 26.00000381469727 17.33595275878906 25.84054374694824 17.10448265075684 25.7087230682373 16.97265243530273 C 25.57439422607422 16.83869361877441 25.34239387512207 16.67900276184082 25.00000381469727 16.67900276184082 M 25.00000381469727 14.67900276184082 C 25.82950401306152 14.67900276184082 26.57650375366211 15.01350212097168 27.12099456787109 15.55650329589844 C 27.66549301147461 16.10100364685059 28.00000381469727 16.84950256347656 28.00000381469727 17.67900276184082 C 28.00000381469727 18.50850296020508 27.66549301147461 19.2554931640625 27.12099456787109 19.80000305175781 C 26.57650375366211 20.34300231933594 25.82950401306152 20.67900276184082 25.00000381469727 20.67900276184082 C 24.17050361633301 20.67900276184082 23.42350387573242 20.34300231933594 22.87900352478027 19.80000305175781 C 22.33600425720215 19.2554931640625 22.00000381469727 18.50850296020508 22.00000381469727 17.67900276184082 C 22.00000381469727 16.84950256347656 22.33600425720215 16.10100364685059 22.87900352478027 15.55650329589844 C 23.42350387573242 15.01350212097168 24.17050361633301 14.67900276184082 25.00000381469727 14.67900276184082 Z" stroke="none" fill="#000"/></g></g><g transform="translate(5 -11)"><path d="M0,0A3,3,0,0,1,3,3,3,3,0,0,1,0,6" transform="translate(9 24) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(-13 -0.68)" fill="none" stroke-miterlimit="10"><path d="M22,17.679a3,3,0,1,1,.879,2.121A2.994,2.994,0,0,1,22,17.679Z" stroke="none"/><path d="M 25.00000381469727 16.67900276184082 C 24.65928649902344 16.67900276184082 24.42787170410156 16.8371467590332 24.29323959350586 16.97069931030273 C 24.18279647827148 17.08208084106445 24.00000381469727 17.32065200805664 24.00000381469727 17.67900276184082 C 24.00000381469727 18.01902770996094 24.15946578979492 18.25118827819824 24.29384994506836 18.38641357421875 C 24.42925453186035 18.52052688598633 24.66101837158203 18.67900276184082 25.00000381469727 18.67900276184082 C 25.34115409851074 18.67900276184082 25.57370376586914 18.51850318908691 25.70676422119141 18.38580322265625 C 25.84054374694824 18.25202369689941 26.00000381469727 18.02081298828125 26.00000381469727 17.67900276184082 C 26.00000381469727 17.33595275878906 25.84054374694824 17.10448265075684 25.7087230682373 16.97265243530273 C 25.57439422607422 16.83869361877441 25.34239387512207 16.67900276184082 25.00000381469727 16.67900276184082 M 25.00000381469727 14.67900276184082 C 25.82950401306152 14.67900276184082 26.57650375366211 15.01350212097168 27.12099456787109 15.55650329589844 C 27.66549301147461 16.10100364685059 28.00000381469727 16.84950256347656 28.00000381469727 17.67900276184082 C 28.00000381469727 18.50850296020508 27.66549301147461 19.2554931640625 27.12099456787109 19.80000305175781 C 26.57650375366211 20.34300231933594 25.82950401306152 20.67900276184082 25.00000381469727 20.67900276184082 C 24.17050361633301 20.67900276184082 23.42350387573242 20.34300231933594 22.87900352478027 19.80000305175781 C 22.33600425720215 19.2554931640625 22.00000381469727 18.50850296020508 22.00000381469727 17.67900276184082 C 22.00000381469727 16.84950256347656 22.33600425720215 16.10100364685059 22.87900352478027 15.55650329589844 C 23.42350387573242 15.01350212097168 24.17050361633301 14.67900276184082 25.00000381469727 14.67900276184082 Z" stroke="none" fill="#000"/></g></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(31.667 13.867) rotate(90)"><circle cx="3" cy="3" r="3" transform="translate(-0.867 3.666)"/><circle cx="3" cy="3" r="3" transform="translate(-0.867 12.666)"/><circle cx="3" cy="3" r="3" transform="translate(-0.867 21.667)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(13.333 5.333)"><circle cx="3" cy="3" r="3" transform="translate(-0.333 -1.334)"/><circle cx="3" cy="3" r="3" transform="translate(-0.333 7.666)"/><circle cx="3" cy="3" r="3" transform="translate(-0.333 16.666)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 6.666)"><path d="M15,14.334l-5,.055V27.334c0,1.879.845,3,2.5,3s2.5-1.121,2.5-3v-19H34v19a2.94,2.94,0,0,1-3,3H13" transform="translate(-10 -9)" fill="none" stroke="#000" stroke-width="2"/><line x2="5" transform="translate(10 15.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="9" transform="translate(10 5.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="9" transform="translate(10 10.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(8.883 9)"><rect width="10" height="5.002" rx="0.5" transform="translate(7.117 -1)" fill="none" stroke="#000" stroke-width="2"/><rect width="10" height="5" rx="0.5" transform="translate(7.117 10)" fill="none" stroke="#000" stroke-width="2"/><path d="M813.017,75.449h1.258V71.436l-1.376.353V70.424l2.887-.7v5.728H816.9v1.272h-3.882Z" transform="translate(-816.782 -71.721)"/><path d="M812.712,81.876a1.875,1.875,0,0,1,1.144-1.939l1.211-.639a.681.681,0,0,0,.361-.719v-.368c0-.359-.146-.522-.451-.522h-.587c-.309,0-.455.157-.455.522v.747H812.7v-.67c0-1.3.626-1.937,1.758-1.937h.455c1.139,0,1.756.643,1.756,1.914v.37a1.859,1.859,0,0,1-1.142,1.916l-1.206.641a.629.629,0,0,0-.372.639v.224H816.7v1.3h-3.984Z" transform="translate(-816.579 -67.35)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3 3)"><line x2="16" transform="translate(5 6)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x2="9" transform="translate(5 12)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><g transform="translate(-1 -1)" fill="none" stroke="#000" stroke-width="2"><rect width="28" height="28" rx="2" stroke="none"/><rect x="1" y="1" width="26" height="26" rx="1" fill="none"/></g><path d="M5.031,28.873c4.543,0,6.857-7,6.857-7l17.143,6.9-24,.1Z" transform="translate(-4.031 -2.873)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(8 3)"><g transform="translate(3)"><g transform="translate(-3 6)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="16" height="11" rx="3" stroke="none"/><rect x="1" y="1" width="14" height="9" rx="2" fill="none"/></g><path d="M259.1,10V7.835c0-1.565,1.791-2.835,4-2.835h0c2.209,0,4,1.269,4,2.835V10" transform="translate(-258.095 -4)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g><g transform="translate(-2 20)"><line y2="5" transform="translate(2)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="4" y2="2.5" transform="translate(0 1.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="4" y1="2.5" transform="translate(0 1.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g><g transform="translate(6 20)"><line y2="5" transform="translate(2)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="4" y2="2.5" transform="translate(0 1.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="4" y1="2.5" transform="translate(0 1.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g><g transform="translate(14 20)"><line y2="5" transform="translate(2)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="4" y2="2.5" transform="translate(0 1.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="4" y1="2.5" transform="translate(0 1.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.333 6.668)"><line x2="6" transform="translate(5.667 15.332)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="15" transform="translate(5.667 9.333)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="10" transform="translate(5.667 3.332)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M812.958,72.994h.629V70.7l-.688.2v-.781l1.443-.4v3.273h.557v.727h-1.941Z" transform="translate(-813.232 -68.387)" stroke="rgba(0,0,0,0)" stroke-width="1"/><path d="M812.7,79.508a1.1,1.1,0,0,1,.572-1.108l.606-.365c.134-.085.181-.187.181-.411v-.21c0-.205-.073-.3-.226-.3h-.293c-.154,0-.227.089-.227.3v.427h-.62v-.383c0-.744.313-1.107.879-1.107h.227c.569,0,.878.367.878,1.094v.211a1.087,1.087,0,0,1-.571,1.095l-.6.366a.369.369,0,0,0-.186.365v.128H814.7v.741H812.7Z" transform="translate(-813.028 -69.017)" stroke="rgba(0,0,0,0)" stroke-width="1"/><path d="M814.687,85.724v.12c0,.727-.3,1.089-.865,1.089h-.269c-.566,0-.866-.361-.866-1.074v-.323h.608V85.9c0,.186.076.28.225.28h.326c.148,0,.227-.1.227-.293v-.343c0-.189-.066-.287-.211-.287h-.484v-.692h.449c.143,0,.209-.093.209-.286v-.314c0-.194-.075-.287-.22-.287h-.275c-.143,0-.217.091-.217.274v.335h-.611V84c0-.711.3-1.07.864-1.07h.21c.564,0,.863.359.863,1.089v.1c0,.418-.157.707-.459.786C814.522,84.967,814.687,85.29,814.687,85.724Z" transform="translate(-813.02 -69.599)" stroke="rgba(0,0,0,0)" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 4)"><path d="M68.888,22.487a2.717,2.717,0,0,1-2.889-3v-12a2.717,2.717,0,0,1,2.889-3H89.111a2.717,2.717,0,0,1,2.889,3v12a2.717,2.717,0,0,1-2.889,3" transform="translate(-67 -5.486)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M68.785,14.039l4-4h6l4-4" transform="translate(-63.785 -2.039)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><g transform="translate(0 2)"><path d="M0,0A3,3,0,0,1,3,3,3,3,0,0,1,0,6" transform="translate(9 24) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(-13 -0.68)" stroke-miterlimit="10"><path d="M 25.00000381469727 19.67900276184082 C 24.46724319458008 19.67900276184082 23.96476364135742 19.47050285339355 23.58513450622559 19.09192276000977 C 23.20850372314453 18.7142333984375 23.00000381469727 18.21175193786621 23.00000381469727 17.67900276184082 C 23.00000381469727 17.14527320861816 23.20850372314453 16.64226341247559 23.58708381652832 16.26263236999512 C 23.96379470825195 15.886962890625 24.46627426147461 15.67900276184082 25.00000381469727 15.67900276184082 C 25.53373336791992 15.67900276184082 26.03620338439941 15.886962890625 26.41485404968262 16.26457214355469 C 26.7918529510498 16.64157295227051 27.00000381469727 17.14423370361328 27.00000381469727 17.67900276184082 C 27.00000381469727 18.21279335021973 26.79184341430664 18.71493339538574 26.41388320922852 19.09290313720703 C 26.03523445129395 19.47051239013672 25.53276443481445 19.67900276184082 25.00000381469727 19.67900276184082 Z" stroke="none"/><path d="M 25.00000381469727 16.67900276184082 C 24.65928649902344 16.67900276184082 24.42787170410156 16.8371467590332 24.29323959350586 16.97069931030273 C 24.18279647827148 17.08208084106445 24.00000381469727 17.32065200805664 24.00000381469727 17.67900276184082 C 24.00000381469727 18.01902770996094 24.15946578979492 18.25118827819824 24.29384994506836 18.38641357421875 C 24.42925453186035 18.52052688598633 24.66101837158203 18.67900276184082 25.00000381469727 18.67900276184082 C 25.34115409851074 18.67900276184082 25.57370376586914 18.51850318908691 25.70676422119141 18.38580322265625 C 25.84054374694824 18.25202369689941 26.00000381469727 18.02081298828125 26.00000381469727 17.67900276184082 C 26.00000381469727 17.33595275878906 25.84054374694824 17.10448265075684 25.7087230682373 16.97265243530273 C 25.57439422607422 16.83869361877441 25.34239387512207 16.67900276184082 25.00000381469727 16.67900276184082 M 25.00000381469727 14.67900276184082 C 25.82950401306152 14.67900276184082 26.57650375366211 15.01350212097168 27.12099456787109 15.55650329589844 C 27.66549301147461 16.10100364685059 28.00000381469727 16.84950256347656 28.00000381469727 17.67900276184082 C 28.00000381469727 18.50850296020508 27.66549301147461 19.2554931640625 27.12099456787109 19.80000305175781 C 26.57650375366211 20.34300231933594 25.82950401306152 20.67900276184082 25.00000381469727 20.67900276184082 C 24.17050361633301 20.67900276184082 23.42350387573242 20.34300231933594 22.87900352478027 19.80000305175781 C 22.33600425720215 19.2554931640625 22.00000381469727 18.50850296020508 22.00000381469727 17.67900276184082 C 22.00000381469727 16.84950256347656 22.33600425720215 16.10100364685059 22.87900352478027 15.55650329589844 C 23.42350387573242 15.01350212097168 24.17050361633301 14.67900276184082 25.00000381469727 14.67900276184082 Z" stroke="none" fill="#000"/></g></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.667 7)"><line x2="22" transform="translate(-1.667)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="16" transform="translate(-1.667 6)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="10" transform="translate(-1.667 12)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="4" transform="translate(-1.667 18)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.667 8)"><line x2="22" transform="translate(-1.667 17)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="16" transform="translate(-1.667 11)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="10" transform="translate(-1.667 5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="4" transform="translate(-1.667 -1)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.667 2.666)"><g transform="translate(4.334 0.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="16" height="22" rx="2" stroke="none"/><rect x="1" y="1" width="14" height="20" rx="1" fill="none"/></g><path d="M14.5,26.5h-9a2.665,2.665,0,0,1-3-3V8.5" transform="translate(-1.167 -1.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="6" transform="translate(9.333 7.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="6" transform="translate(9.333 12.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(11.733 6.4)"><line y2="20" transform="translate(0.267 -0.4)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="20" transform="translate(8.267 -0.4)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 9.334)"><line x1="13" transform="translate(12 0.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x1="13" transform="translate(12 6.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x1="26" transform="translate(-1 13.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><rect width="8" height="8" transform="translate(-1 -0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(8.666 2.667)"><g transform="translate(-1.665 -0.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="18" height="28" rx="2.999" stroke="none"/><rect x="1" y="1" width="16" height="26" rx="1.999" fill="none"/></g><circle cx="2" cy="2" r="2" transform="translate(5.334 19.334)"/><rect width="6" height="3" rx="1" transform="translate(4.334 0.334)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.667 1.664)"><g transform="translate(0.332 0.336)"><path d="M 10.00087547302246 26.56051635742188 C 9.092597007751465 25.59293174743652 7.433465480804443 23.73740386962891 5.81493091583252 21.47211265563965 C 4.402390956878662 19.4951229095459 3.2794508934021 17.58149337768555 2.477300882339478 15.78438282012939 C 1.498230934143066 13.59089279174805 1.001800894737244 11.57809257507324 1.001800894737244 9.801902770996094 C 1.001800894737244 4.950002670288086 5.038731098175049 1.002702713012695 10.00080108642578 1.002702713012695 C 14.96237087249756 1.002702713012695 18.9989013671875 4.950002670288086 18.9989013671875 9.801902770996094 C 18.9989013671875 11.57916259765625 18.50251007080078 13.59262275695801 17.52351188659668 15.78635311126709 C 16.72148132324219 17.58355331420898 15.59866142272949 19.49708366394043 14.18623065948486 21.47378349304199 C 12.56859493255615 23.73765563964844 10.90906620025635 25.59320449829102 10.00087547302246 26.56051635742188 Z M 10.00170135498047 5.000302791595459 C 7.244910717010498 5.000302791595459 5.002100944519043 7.243512630462646 5.002100944519043 10.00080299377441 C 5.002100944519043 12.75759315490723 7.244910717010498 15.00040245056152 10.00170135498047 15.00040245056152 C 12.75849056243896 15.00040245056152 15.00130081176758 12.75759315490723 15.00130081176758 10.00080299377441 C 15.00130081176758 7.243512630462646 12.75849056243896 5.000302791595459 10.00170135498047 5.000302791595459 Z" stroke="none"/><path d="M 10.00095748901367 25.0807991027832 C 10.91359233856201 24.06321716308594 12.15641689300537 22.59444618225098 13.37260055541992 20.89240264892578 C 14.74619102478027 18.97006225585938 15.83551120758057 17.11502265930176 16.61032104492188 15.37882232666016 C 17.53171157836914 13.31417274475098 17.9989013671875 11.43782234191895 17.9989013671875 9.801902770996094 C 17.9989013671875 5.501412868499756 14.41097068786621 2.002702713012695 10.00080108642578 2.002702713012695 C 5.590140819549561 2.002702713012695 2.001801013946533 5.501412868499756 2.001801013946533 9.801902770996094 C 2.001801013946533 11.43673229217529 2.469020843505859 13.31239318847656 3.390460968017578 15.37679290771484 C 4.165400981903076 17.1129322052002 5.254860877990723 18.96810340881348 6.628591060638428 20.89076232910156 C 7.84550666809082 22.59395027160645 9.088288307189941 24.06297492980957 10.00095748901367 25.0807991027832 M 10.00170135498047 4.000302791595459 C 13.30989074707031 4.000302791595459 16.00130081176758 6.692112922668457 16.00130081176758 10.00080299377441 C 16.00130081176758 13.30899238586426 13.30989074707031 16.00040245056152 10.00170135498047 16.00040245056152 C 6.693511009216309 16.00040245056152 4.002100944519043 13.30899238586426 4.002100944519043 10.00080299377441 C 4.002100944519043 6.692112922668457 6.693511009216309 4.000302791595459 10.00170135498047 4.000302791595459 M 10.00080108642578 27.99990272521973 L 10.00010108947754 27.99921226501465 C 9.974921226501465 27.97448348999023 7.453640937805176 25.48577308654785 5.001280784606934 22.05346298217773 C 3.549931049346924 20.02215194702148 2.393511056900024 18.05007362365723 1.564140915870667 16.19198226928711 C 0.5274509787559509 13.86940288543701 0.001800952129997313 11.71947288513184 0.001800952129997313 9.801902770996094 C 0.001800952129997313 4.398602485656738 4.487330913543701 0.002702719066292048 10.00080108642578 0.002702719066292048 C 15.51377105712891 0.002702719066292048 19.9989013671875 4.398602485656738 19.9989013671875 9.801902770996094 C 19.9989013671875 11.72051239013672 19.47330093383789 13.8710823059082 18.43670082092285 16.19388198852539 C 17.60744094848633 18.0521125793457 16.45112037658691 20.02412223815918 14.99987125396729 22.05515289306641 C 12.54876136779785 25.4854736328125 10.02669048309326 27.97447204589844 10.00150108337402 27.99921226501465 L 10.00080108642578 27.99990272521973 Z M 10.00170135498047 6.000302791595459 C 7.796310901641846 6.000302791595459 6.002100944519043 7.794922828674316 6.002100944519043 10.00080299377441 C 6.002100944519043 12.20619297027588 7.796310901641846 14.00040245056152 10.00170135498047 14.00040245056152 C 12.20709133148193 14.00040245056152 14.00130081176758 12.20619297027588 14.00130081176758 10.00080299377441 C 14.00130081176758 7.794922828674316 12.20709133148193 6.000302791595459 10.00170135498047 6.000302791595459 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6 2.001)"><g transform="translate(6 5.998)" fill="none" stroke="#000" stroke-width="2"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3" fill="none"/></g><g fill="none"><path d="M10,0A9.9,9.9,0,0,1,20,9.8C20,18.212,10,28,10,28S0,18.207,0,9.8A9.9,9.9,0,0,1,10,0Z" stroke="none"/><path d="M 10 2 C 5.588789939880371 2 2 5.499069213867188 2 9.799999237060547 C 2 12.80506038665771 3.5872802734375 16.62197875976562 6.590229988098145 20.83811950683594 C 7.831257820129395 22.58052444458008 9.084859848022461 24.06386566162109 10.00087833404541 25.08491706848145 C 10.90546321868896 24.07710647583008 12.14008045196533 22.61674880981445 13.37277030944824 20.8917293548584 C 16.39992904663086 16.65554046630859 18 12.8200798034668 18 9.799999237060547 C 18 5.499069213867188 14.41121006011963 2 10 2 M 10 0 C 15.52285003662109 0 20 4.387609481811523 20 9.799999237060547 C 20 18.21210861206055 10 28 10 28 C 10 28 0 18.20746040344238 0 9.799999237060547 C 0 4.387609481811523 4.477149963378906 0 10 0 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 4)"><path d="M21.361,4.408l8.651,26L4.062,21.741S2.194,4.408,21.361,4.408Z" transform="translate(-5.012 -5.408)" fill="rgba(0,0,0,0)" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M6.293,21.972a15.119,15.119,0,0,1,.023-3.338,14.759,14.759,0,0,1,1.449-3.019,15.007,15.007,0,0,1,1.5-2.994,15.465,15.465,0,0,1,2.637-2.1,15.242,15.242,0,0,1,2.671-2.061,15.667,15.667,0,0,1,3.306-.77A15.224,15.224,0,0,1,21.2,6.972" transform="translate(-4.2 -4.972)" fill="rgba(0,0,0,0)" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M17.149,12.794a2.356,2.356,0,0,0-3.223,3.225.784.784,0,0,0,.581.38.8.8,0,0,0,.674-.23l.18-.154,1.014,1.455L18.6,15.241,17.145,14.2l.154-.158a.806.806,0,0,0,.23-.675.783.783,0,0,0-.38-.58Z" transform="translate(-2.603 -6.47)"/><path d="M5,17.852s-.3-4.227,4.7-2.865,2.821,5.73,2.821,5.73" transform="translate(0.335 0.283)" fill="none" stroke="#000" stroke-width="2"/><path d="M5,16.807s-.189-2.818,2.938-1.91A2.637,2.637,0,0,1,9.7,18.717" transform="translate(14.662 34.303) rotate(-135)" fill="none" stroke="#000" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6 3)"><g transform="translate(24) rotate(90)" fill="none"><path d="M11.241,3.247a2,2,0,0,1,3.517,0l9.642,17.8A2,2,0,0,1,22.642,24H3.358A2,2,0,0,1,1.6,21.047Z" stroke="none"/><path d="M 13 4.199190139770508 L 3.357889175415039 22 L 22.64211082458496 22 L 13 4.199190139770508 M 13 2.199184417724609 C 13.69017028808594 2.199184417724609 14.38033962249756 2.548328399658203 14.75858020782471 3.246620178222656 L 24.40069007873535 21.04742813110352 C 25.12252044677734 22.38003921508789 24.15764999389648 24 22.64211082458496 24 L 3.357889175415039 24 C 1.842350006103516 24 0.8774795532226562 22.38003921508789 1.599309921264648 21.04742813110352 L 11.24141979217529 3.246620178222656 C 11.61966037750244 2.548328399658203 12.30982971191406 2.199184417724609 13 2.199184417724609 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2 6.309)" fill="none"><path d="M2,19.693a2,2,0,0,1-2-2v-12a2,2,0,0,1,2-2H3v-2a2,2,0,0,1,2-2h5a2,2,0,0,1,2,2v2h4v-2a2,2,0,0,1,2-2h5a2,2,0,0,1,2,2v2h1a2,2,0,0,1,2,2v12a2,2,0,0,1-2,2Z" stroke="none"/><path d="M 26.00010108947754 17.69289970397949 L 25.99990081787109 17.69309997558594 L 26.00010108947754 5.692699909210205 L 22.99930000305176 5.692699909210205 L 22.9995002746582 1.693099856376648 L 17.99930000305176 1.692899823188782 L 17.99930000305176 5.692699909210205 L 9.999700546264648 5.692699909210205 L 9.999900817871094 1.693099856376648 L 4.999701023101807 1.692899823188782 L 4.999701023101807 5.692699909210205 L 2.002700805664062 5.69249963760376 L 2.002500772476196 17.69289970397949 L 26.00010108947754 17.69289970397949 M 26.00010108947754 19.69289970397949 L 2.002500772476196 19.69289970397949 C 0.8982008099555969 19.69289970397949 0.002700811717659235 18.79739952087402 0.002700811717659235 17.69309997558594 L 0.002700811717659235 5.69249963760376 C 0.002700811717659235 4.588199615478516 0.8982008099555969 3.692699909210205 2.002500772476196 3.692699909210205 L 2.999700784683228 3.692699909210205 L 2.999700784683228 1.692899823188782 C 2.999700784683228 0.5885998606681824 3.895200729370117 -0.3069001734256744 5.000401020050049 -0.3069001734256744 L 9.999900817871094 -0.3069001734256744 C 11.10420036315918 -0.3069001734256744 11.99970054626465 0.5885998606681824 11.99970054626465 1.692899823188782 L 11.99970054626465 3.692699909210205 L 15.99930095672607 3.692699909210205 L 15.99930095672607 1.692899823188782 C 15.99930095672607 0.5885998606681824 16.89480018615723 -0.3069001734256744 18 -0.3069001734256744 L 22.9995002746582 -0.3069001734256744 C 24.10380172729492 -0.3069001734256744 24.99930000305176 0.5885998606681824 24.99930000305176 1.692899823188782 L 24.99930000305176 3.692699909210205 L 26.00010108947754 3.692699909210205 C 27.10440063476562 3.692699909210205 27.99990081787109 4.588199615478516 27.99990081787109 5.69249963760376 L 27.99990081787109 17.69309997558594 C 27.99990081787109 18.79739952087402 27.10440063476562 19.69289970397949 26.00010108947754 19.69289970397949 Z" stroke="none" fill="#000"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4.333 4.333)"><g transform="translate(-0.333 -0.334)" fill="none" stroke="#000" stroke-width="2"><circle cx="12" cy="12" r="12" stroke="none"/><circle cx="12" cy="12" r="11" fill="none"/></g><g transform="translate(7.667 7.666)" stroke="#000" stroke-width="1"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3.5" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 6.33)"><g transform="translate(-6 -7.907)" fill="none" stroke-miterlimit="10"><path d="M30,10.576H6a1.836,1.836,0,0,0-2,2v11a1.812,1.812,0,0,0,2,2H9v3a1.843,1.843,0,0,0,2,2H25a1.843,1.843,0,0,0,2-2v-3h3a1.836,1.836,0,0,0,2-2v-11A1.836,1.836,0,0,0,30,10.576Z" stroke="none"/><path d="M 6 12.576171875 L 6 23.576171875 L 11 23.576171875 L 11 28.576171875 L 25 28.576171875 L 25 23.576171875 L 30 23.576171875 L 30 12.576171875 L 6 12.576171875 M 6 10.576171875 L 30 10.576171875 C 31.24250030517578 10.576171875 32 11.31110191345215 32 12.576171875 L 32 23.576171875 C 32 24.84242248535156 31.24250030517578 25.576171875 30 25.576171875 L 27 25.576171875 L 27 28.576171875 C 27 29.83410263061523 26.23550033569336 30.576171875 25 30.576171875 L 11 30.576171875 C 9.764499664306641 30.576171875 9 29.83410263061523 9 28.576171875 L 9 25.576171875 L 6 25.576171875 C 4.701169967651367 25.57317161560059 4 24.84242248535156 4 23.576171875 L 4 12.576171875 C 4 11.31110191345215 4.757499694824219 10.576171875 6 10.576171875 Z" stroke="none" fill="#000"/></g><line x2="3" transform="translate(17 8.67)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(7 -2.33)"><path d="M20.627,6.587h-2v-2Z" transform="translate(-10.626 -4.589)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><path d="M10.726,10.585v-4a1.8,1.8,0,0,1,2-2h6l2,2v4" transform="translate(-10.726 -4.585)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/></g><g transform="translate(-4.635 -2.314)" fill="none" stroke-miterlimit="10"><path d="M7.635,15.984h18v7a2.3,2.3,0,0,1-2.25,2H9.885a2.3,2.3,0,0,1-2.25-2Z" stroke="none"/><path d="M 9.635080337524414 17.9839973449707 L 9.635282516479492 22.8363094329834 C 9.701507568359375 22.90571784973145 9.820964813232422 22.97884559631348 9.885278701782227 22.98437881469727 L 23.38172912597656 22.98437881469727 C 23.44999313354492 22.97712707519531 23.5690975189209 22.90340614318848 23.63525199890137 22.8337516784668 L 23.63505172729492 17.9839973449707 L 9.635080337524414 17.9839973449707 M 7.634998321533203 15.9839973449707 L 25.63496780395508 15.9839973449707 L 25.63525772094727 22.98437881469727 C 25.63525772094727 23.98057746887207 24.51025772094727 24.98437881469727 23.38525772094727 24.98437881469727 L 9.885278701782227 24.98437881469727 C 8.760288238525391 24.98437881469727 7.635288238525391 23.98664855957031 7.635288238525391 22.98437881469727 L 7.634998321533203 15.9839973449707 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.668 4)"><g transform="translate(17.333 -1)"><line x2="10" transform="translate(-1.001 5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="10" transform="translate(3.999)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g><g transform="translate(1.332 1.332)"><path d="M7913.624,19587.336a3,3,0,0,1,0-5.328,6,6,0,0,1,10.761,0,3,3,0,0,1,0,5.328,6,6,0,0,1-10.752,0Z" transform="translate(-7912 -19576.002)" fill="rgba(0,0,0,0)" stroke="#000" stroke-width="2"/><path d="M0,0A8,8,0,0,1,8,8a8,8,0,0,1-8,8" transform="translate(-1 24.666) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><rect width="6" height="6" rx="3" transform="translate(0 5.668)" fill="rgba(0,0,0,0)" stroke="#000" stroke-width="2"/><rect width="6" height="6" rx="3" transform="translate(8 5.668)" fill="rgba(0,0,0,0)" stroke="#000" stroke-width="2"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(8 5.334)"><path d="M8031.2,19589.588a4,4,0,0,1,0-7.84,7.005,7.005,0,0,1,11.6,0,4,4,0,0,1,0,7.84,7,7,0,0,1-11.6,0Z" transform="translate(-8029 -19579)" fill="rgba(0,0,0,0)" stroke="#000" stroke-width="2"/><path d="M0,0A9,9,0,0,1,9,9a9,9,0,0,1-9,9" transform="translate(-1 24.666) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><rect width="8" height="8" rx="4" transform="translate(-1 2.666)" fill="none" stroke="#000" stroke-width="2"/><rect width="8" height="8" rx="4" transform="translate(9 2.666)" fill="none" stroke="#000" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.333 5.334)"><path d="M6085.649,17680.67a2.22,2.22,0,0,1-1.7-.791,11.534,11.534,0,0,1-2.264-3.984l1.664-1.664c.011.074.021.146.036.23a8.977,8.977,0,0,0,2.095,4.131.216.216,0,0,0,.173.076.239.239,0,0,0,.165-.066l10.788-10.789a.22.22,0,0,0,.066-.172.228.228,0,0,0-.08-.164,8.88,8.88,0,0,0-4.362-2.127l1.665-1.664a11.609,11.609,0,0,1,3.984,2.26,2.23,2.23,0,0,1,.138,3.283l-10.784,10.789A2.239,2.239,0,0,1,6085.649,17680.67Zm-5.938-11.289v0l-3.789-3.785a.215.215,0,0,0-.155-.066l-1.509-.008a1.6,1.6,0,0,1-1.123-2.725l7.655-7.66a1.6,1.6,0,0,1,2.729,1.123l.009,1.508a.219.219,0,0,0,.066.16l3.786,3.785-1.414,1.414-3.787-3.783a2.244,2.244,0,0,1-.652-1.566l0-.541-6.292,6.293h.545a2.217,2.217,0,0,1,1.563.652l3.788,3.787-1.414,1.412Z" transform="translate(-6075 -17657)"/><line x2="5" y2="5" transform="translate(17.667 17.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y1="24" x2="24" transform="translate(-1.333 -1.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.333 5.334)"><path d="M30.342,17.819c-3.424-2.88-6.319-2.55-7.566-2.2a1.227,1.227,0,0,1-1.209-.309L15.994,9.739a1.224,1.224,0,0,1-.359-.86l-.007-1.509a.6.6,0,0,0-1.02-.418L6.951,14.608a.6.6,0,0,0,.418,1.02l1.509.007a1.224,1.224,0,0,1,.86.359l5.572,5.572a1.227,1.227,0,0,1,.309,1.209c-.352,1.248-.682,4.142,2.2,7.566a1.235,1.235,0,0,0,1.811.074L30.416,19.63A1.235,1.235,0,0,0,30.342,17.819Z" transform="translate(-8.108 -8.108)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><line x2="5" y2="5" transform="translate(17.667 17.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.667 2.667)"><g transform="translate(-0.667 -0.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="9" height="9" rx="2" stroke="none"/><rect x="1" y="1" width="7" height="7" rx="1" fill="none"/></g><g transform="translate(-0.667 18.332)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="9" height="9" rx="2" stroke="none"/><rect x="1" y="1" width="7" height="7" rx="1" fill="none"/></g><g transform="translate(18.333 -0.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="9" height="9" rx="2" stroke="none"/><rect x="1" y="1" width="7" height="7" rx="1" fill="none"/></g><path d="M128.927,78h12v3" transform="translate(-128.594 -64.667)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="7" transform="translate(13.333 0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="8" transform="translate(26.333 11.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M138.928,87.084V89.75h5v-8" transform="translate(-126.594 -63.417)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M143.5,78h5v3" transform="translate(-126.167 -64.667)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M0,0V3H3" transform="translate(23.333 26.333) rotate(-90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.667 2.667)"><circle cx="14" cy="14" r="14" transform="translate(-0.667 -0.666)"/><path d="M10.943,10.016A5.2,5.2,0,0,1,17.5,7.1a4.5,4.5,0,0,1,3.442,4.859c0,3.236-5,4.859-5,4.859" transform="translate(-2.61 -2.485)" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y1="2" transform="translate(13.333 20.334)" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.999 3)"><g transform="translate(-0.999 -1)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 6)"><path d="M28.834,10.7h-15c-4.37,0-7,2.68-7,5.984V16.7c0,3.305,2.629,6,7,6h5.1" transform="translate(-6.834 -4.7)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M6.127,7.285l6,6-6,6" transform="translate(11.872 -7.285)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4.267 4.334)"><g transform="translate(0 3.2)"><line x2="3" y2="3" transform="translate(2.733 3.467)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><circle cx="2" cy="2" r="2" transform="translate(-1.267 -0.533)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g><g transform="translate(10.667 1)"><line y2="4" transform="translate(1.066 2.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><circle cx="2" cy="2" r="2" transform="translate(-0.934 -1.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g><g transform="translate(17.133 2.2)"><line x1="3" y2="3" transform="translate(0.6 4.467)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><circle cx="2" cy="2" r="2" transform="translate(3.6 0.467)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g><g transform="translate(-1.267 0.666)"><path d="M0,0A4,4,0,0,1,4,4,4,4,0,0,1,0,8" transform="translate(9 24) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(-13 -3.68)" fill="none" stroke-miterlimit="10"><path d="M22,18.679a4,4,0,1,1,1.172,2.828A3.992,3.992,0,0,1,22,18.679Z" stroke="none"/><path d="M 26.00000190734863 16.67899894714355 C 25.46699523925781 16.67899894714355 24.96502685546875 16.88645172119141 24.58621215820312 17.26321601867676 C 24.20816230773926 17.6433162689209 24.00000190734863 18.1460018157959 24.00000190734863 18.67899894714355 C 24.00000190734863 19.21070861816406 24.20815277099609 19.71267509460449 24.58621406555176 20.09278106689453 C 24.96631050109863 20.47083282470703 25.46829223632812 20.67899894714355 26.00000190734863 20.67899894714355 C 26.53262138366699 20.67899894714355 27.03540229797363 20.47011947631836 27.41376113891602 20.09280967712402 C 27.79180145263672 19.71474838256836 28.00000190734863 19.21264839172363 28.00000190734863 18.67899894714355 C 28.00000190734863 18.1440486907959 27.79180145263672 17.64124870300293 27.41572189331055 17.2651481628418 C 27.03669166564941 16.88716888427734 26.53391265869141 16.67899894714355 26.00000190734863 16.67899894714355 M 26.00000190734863 14.67899894714355 C 27.10599136352539 14.67899894714355 28.10200119018555 15.12499809265137 28.8279914855957 15.8489990234375 C 29.55398178100586 16.57499885559082 30.00000190734863 17.572998046875 30.00000190734863 18.67899894714355 C 30.00000190734863 19.78499984741211 29.55398178100586 20.7809886932373 28.8279914855957 21.50699996948242 C 28.10200119018555 22.23099899291992 27.10599136352539 22.67899894714355 26.00000190734863 22.67899894714355 C 24.89400100708008 22.67899894714355 23.89800262451172 22.23099899291992 23.1720027923584 21.50699996948242 C 22.44800186157227 20.7809886932373 22.00000190734863 19.78499984741211 22.00000190734863 18.67899894714355 C 22.00000190734863 17.572998046875 22.44800186157227 16.57499885559082 23.1720027923584 15.8489990234375 C 23.89800262451172 15.12499809265137 24.89400100708008 14.67899894714355 26.00000190734863 14.67899894714355 Z" stroke="none" fill="#000"/></g></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 6.889)"><path d="M23.732,22.791A9.7,9.7,0,0,1,16.536,26a9.9,9.9,0,0,1-9.8-10" transform="translate(-4.732 -6.889)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M9.767,9.329a10.225,10.225,0,0,1,6.837-2.6,10.083,10.083,0,0,1,10.163,10" transform="translate(-4.767 -7.618)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M9.5,17.387l-3-3-3,3" transform="translate(-4.5 -7.276)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M22.047,14.387l3,3,3-3" transform="translate(-3.047 -6.275)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(1.667 1.667)"><g transform="translate(0.333 0.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13" fill="none"/></g><line x2="10" transform="translate(9.333 14.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 16)"><line x2="24" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(8 8)"><line x2="24" transform="translate(-4 10)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="24" transform="translate(-4 6)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M77.813,6.868l-4-4-4,4" transform="translate(-65.813 -6.868)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M8,4,4,0,0,4" transform="translate(12 19.999) rotate(180)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4.333 6.333)"><path d="M-351,67l4,4-4,4" transform="translate(369.666 -68.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-347,75l-4-4,4-4" transform="translate(351.667 -54.333)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-365,77V74a3.177,3.177,0,0,1,3.331-3H-345" transform="translate(365.667 -68.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-345,71v3a3.177,3.177,0,0,1-3.331,3H-365" transform="translate(367.667 -60.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.664 5.334)"><g transform="translate(16.002 8.667)"><path d="M0,0,3,3,6,0" transform="translate(5.333 1.999) rotate(180)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="6" transform="translate(2.333 1)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g><g transform="translate(0.336 -0.334)" fill="none"><path d="M1,21a2,2,0,0,1-2-2V2.407A2.53,2.53,0,0,1,1.287.006l8,0,1.113,0L12.7,3H25a2,2,0,0,1,2,2V19a2,2,0,0,1-2,2Z" stroke="none"/><path d="M 25.00020027160645 18.99970054626465 L 25 18.99900054931641 L 25.00020027160645 4.999700546264648 L 11.70983982086182 4.999700546264648 L 9.409381866455078 2.002314805984497 L 9.282688140869141 2.001802682876587 L 1.337342143058777 2.006272792816162 C 1.205820202827454 2.058528900146484 1.014733791351318 2.28501296043396 1.000099539756775 2.410799026489258 L 0.9998995661735535 18.99970054626465 L 25.00020027160645 18.99970054626465 M 25.00020027160645 20.99970054626465 L 0.9998995661735535 20.99970054626465 C -0.1044004112482071 20.99970054626465 -0.9999004006385803 20.10420036315918 -0.9999004006385803 18.99900054931641 L -0.9999004006385803 4.999500751495361 C -0.9999004006385803 4.199270725250244 -0.9999004006385803 3.10088062286377 -0.9999004006385803 2.406600475311279 C -0.9999004006385803 1.206900596618652 0.1448995918035507 0.01350054144859314 1.286999583244324 0.006300541572272778 L 9.285299301147461 0.001800541649572551 L 10.39859962463379 0.006300541572272778 L 12.69599914550781 2.999700546264648 L 25.00020027160645 2.999700546264648 C 26.10449981689453 2.999700546264648 27 3.89430046081543 27 4.999500751495361 L 27 18.99900054931641 C 27 20.10420036315918 26.10449981689453 20.99970054626465 25.00020027160645 20.99970054626465 Z" stroke="none" fill="#000"/></g></g></svg>
|