@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="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 4.166)"><line x2="5" transform="translate(3.5 7.833)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="10" transform="translate(3.5 3.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="7" transform="translate(3.5 -0.167)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(-2 -1.667)" fill="none" stroke="#000" stroke-width="1"><circle cx="1.5" cy="1.5" r="1.5" stroke="none"/><circle cx="1.5" cy="1.5" r="1" fill="none"/></g><g transform="translate(-2 2.333)" fill="none" stroke="#000" stroke-width="1"><circle cx="1.5" cy="1.5" r="1.5" stroke="none"/><circle cx="1.5" cy="1.5" r="1" fill="none"/></g><g transform="translate(-2 6.333)" fill="none" stroke="#000" stroke-width="1"><circle cx="1.5" cy="1.5" r="1.5" stroke="none"/><circle cx="1.5" cy="1.5" r="1" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.667 0.167)"><line y2="2" transform="translate(5.167 0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line y2="2" transform="translate(12.167 0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="14" transform="translate(1.667 5.333)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="2" transform="translate(4.167 8.333)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="2" transform="translate(11.167 8.333)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="2" transform="translate(4.167 12.333)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="2" transform="translate(11.167 12.333)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(0.667 0.833)" fill="none" stroke="#000" stroke-width="1"><rect width="16" height="15" rx="2" stroke="none"/><rect x="0.5" y="0.5" width="15" height="14" rx="1.5" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-1 1.5)"><path d="M13163.5,18685h-9.882l1-1h8.883c.747,0,1-.252,1-1v-7c0-.713-.231-.975-.884-1l.84-.84a1.8,1.8,0,0,1,1.043,1.838v7A1.789,1.789,0,0,1,13163.5,18685Zm-13.547-.576v0a2.083,2.083,0,0,1-.451-1.426v-7a1.789,1.789,0,0,1,2-2h1l1-1h4l1,1h1.88l-1,1h-1.29l-1-1h-3.17l-1,1h-1.417c-.747,0-1,.252-1,1v7a1.2,1.2,0,0,0,.164.719l-.709.707Z" transform="translate(-13148.5 -18672.5)"/><path d="M13156.731,18681.891h0l1.662-1.664A2.494,2.494,0,0,1,13156.731,18681.891Zm-2.968-1.275v0a2.468,2.468,0,0,1-.262-1.113,2.5,2.5,0,0,1,3.615-2.236l-.775.775a1.488,1.488,0,0,0-.34-.041,1.5,1.5,0,0,0-1.5,1.5,1.457,1.457,0,0,0,.039.34l-.774.773Z" transform="translate(-13148.5 -18672.5)"/><line y1="14" x2="14" transform="translate(2 -0.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-1 1.5)"><g transform="translate(-251 -6.281)" fill="none" stroke-miterlimit="10"><path d="M266,7.781h-5l-1-1h-4l-1,1h-1a1.8,1.8,0,0,0-2,2v7a1.794,1.794,0,0,0,2,2h12a1.8,1.8,0,0,0,2-2v-7A1.8,1.8,0,0,0,266,7.781Z" stroke="none"/><path d="M 256.4142150878906 7.78125 L 255.4142150878906 8.78125 L 254 8.78125 C 253.2523498535156 8.78125 253 9.033590316772461 253 9.78125 L 253 16.78125 C 253 17.52890968322754 253.2523498535156 17.78125 254 17.78125 L 266 17.78125 C 266.7476806640625 17.78125 267 17.52890968322754 267 16.78125 L 267 9.78125 C 267 9.033590316772461 266.7476806640625 8.78125 266 8.78125 L 260.5857849121094 8.78125 L 259.5857849121094 7.78125 L 256.4142150878906 7.78125 M 256 6.78125 L 260 6.78125 L 261 7.78125 L 266 7.78125 C 267.2962341308594 7.78125 268 8.476490020751953 268 9.78125 L 268 16.78125 C 268 18.08267974853516 267.2978515625 18.78125 266 18.78125 L 254 18.78125 C 252.6979370117188 18.78125 252 18.08216094970703 252 16.78125 L 252 9.78125 C 252 8.484369277954102 252.7000732421875 7.78125 254 7.78125 L 255 7.78125 L 256 6.78125 Z" stroke="none" fill="#000"/></g><g transform="translate(5 4.501)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="2.5" cy="2.5" r="2.5" stroke="none"/><circle cx="2.5" cy="2.5" r="2" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.667 1.334)"><g transform="translate(-0.667 -1.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><path d="M2,0h9a1,1,0,0,1,1,1V15a1,1,0,0,1-1,1H2a2,2,0,0,1-2-2V2A2,2,0,0,1,2,0Z" stroke="none"/><path d="M2,.5h9a.5.5,0,0,1,.5.5V15a.5.5,0,0,1-.5.5H2A1.5,1.5,0,0,1,.5,14V2A1.5,1.5,0,0,1,2,.5Z" fill="none"/></g><line x2="5" transform="translate(2.833 7.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="3" transform="translate(2.833 10.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="10" transform="translate(0.333 3.166)" fill="none" stroke="#000" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 17 17"><g transform="translate(0.5 0.5)"><rect width="16" height="16" fill="#fff" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1" opacity="0"/><g transform="translate(1.374 0.545)"><path d="M204.9,447.9a4.5,4.5,0,1,1-4.5,4.5,4.5,4.5,0,0,1,4.5-4.5Z" transform="translate(-198.273 -447.946)" fill="none" stroke="#000" stroke-miterlimit="22.926" stroke-width="1"/><path d="M205.057,451.061a1.5,1.5,0,1,1-1.5,1.5,1.5,1.5,0,0,1,1.5-1.5Z" transform="translate(-198.431 -448.106)" fill="none" stroke="#000" stroke-miterlimit="22.926" stroke-width="1"/><path d="M201.543,456.352l-3,4,2.3.5.7,2.5,3.5-4,3.5,4,.693-2.5,2.3-.5-3-4" transform="translate(-198.417 -448.396)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 17 17"><g transform="translate(0.5 0.5)"><rect width="16" height="16" fill="#fff" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1" opacity="0"/><g transform="translate(0.5 2.498)"><path d="M12851,24049h-1.5a4.5,4.5,0,0,1,0-9h6a4.118,4.118,0,0,1,4.5,4.5,4.281,4.281,0,0,1-4.5,4.5l-1.5,3Z" transform="translate(-12845.005 -24039.994)" fill="none" stroke="#000" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.667 -0.666)"><path d="M70.5,1.935,71.728.891a.78.78,0,0,1,1.264.43l.407,1.6a.8.8,0,0,0,.807.614l1.581-.089A.822.822,0,0,1,76.57,4.57L76,6.116a.849.849,0,0,0,.308.993l1.329.9a.849.849,0,0,1,0,1.39l-1.329.9a.849.849,0,0,0-.308.993l.57,1.546a.822.822,0,0,1-.781,1.125l-1.581-.089a.8.8,0,0,0-.807.614l-.407,1.6a.78.78,0,0,1-1.264.43L70.5,15.474a.764.764,0,0,0-1,0l-1.229,1.044a.78.78,0,0,1-1.264-.43l-.407-1.6a.8.8,0,0,0-.807-.614l-1.581.089a.822.822,0,0,1-.781-1.125L64,11.293a.849.849,0,0,0-.308-.993l-1.329-.9a.849.849,0,0,1,0-1.39l1.329-.9A.849.849,0,0,0,64,6.116l-.57-1.546a.822.822,0,0,1,.781-1.125l1.581.089a.8.8,0,0,0,.807-.614l.407-1.6a.78.78,0,0,1,1.264-.43L69.5,1.935A.764.764,0,0,0,70.5,1.935Z" transform="translate(-61.333 -0.038)"/><path d="M11.244,18.273l2.5,2.5,4.5-4.45" transform="translate(-6.077 -10.107)" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.333 0.334)"><g transform="translate(-0.333 -0.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g><path d="M10.458,16.773l3,3,6-6" transform="translate(-7.291 -8.607)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1 3.1)"><path d="M-426,79.9l4,4,9-9" transform="translate(426.497 -74.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="16" height="16" rx="3" stroke="none"/><rect x="0.5" y="0.5" width="15" height="15" rx="2.5" fill="none"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.333 0.334)"><g transform="translate(-0.333 -0.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g><path d="M11,13.5l3.5,3,3.5-3" transform="translate(-6.833 -6.333)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.5 5.5)"><path d="M6,0,0,6.5,6,13" transform="translate(0 6) rotate(-90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.333 0.334)"><g transform="translate(-0.333 -0.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g><path d="M202.5,11l-3,3.5,3,3.5" transform="translate(-193.334 -6.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(7 5)"><path d="M132-49l-6,6.5,6,6.5" transform="translate(-127.5 45.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.333 0.334)"><g transform="translate(-0.333 -0.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g><path d="M-420.479,72.942l2.86,3.583-3,3.417" transform="translate(426.786 -68.776)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" transform="translate(0 16) rotate(-90)" fill="#fff" opacity="0"/><g transform="translate(5.5 14.5) rotate(-90)"><path d="M0,0,6.5,6,13,0" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.333 1.334)"><g transform="translate(-1.333 -1.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g><path d="M-609,78.5l3.5-3,3.5,3" transform="translate(612.167 -70.335)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.5 5.5)"><path d="M6,0,0,6.5,6,13" transform="translate(13) rotate(90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 1.334)"><line x2="13" transform="translate(-0.5 6.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="13" transform="translate(-0.5 14.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><g transform="translate(2)"><path d="M0,0A2,2,0,0,1,2,2,2,2,0,0,1,0,4" transform="translate(-1 5.667) rotate(-90)" fill="none" stroke="#000" stroke-width="1"/><g transform="translate(-23 -15.013)" fill="none" stroke-miterlimit="10"><path d="M22,16.679a2,2,0,1,1,.586,1.414A2,2,0,0,1,22,16.679Z" stroke="none"/><path d="M 24.00000381469727 15.67900276184082 C 23.7330436706543 15.67900276184082 23.48165321350098 15.78308296203613 23.2940845489502 15.97013282775879 C 23.10444450378418 16.16030311584473 23.00000381469727 16.41204261779785 23.00000381469727 16.67900276184082 C 23.00000381469727 16.9453125 23.10444450378418 17.19670295715332 23.29213333129883 17.38492202758789 C 23.48230361938477 17.57456207275391 23.73369407653809 17.67900276184082 24.00000381469727 17.67900276184082 C 24.26631355285645 17.67900276184082 24.51770401000977 17.57456207275391 24.70688438415527 17.38589286804199 C 24.89590454101562 17.19687271118164 25.00000381469727 16.94583320617676 25.00000381469727 16.67900276184082 C 25.00000381469727 16.41153335571289 24.89590454101562 16.16013336181641 24.70785331726074 15.97207260131836 C 24.51834297180176 15.78308296203613 24.26696395874023 15.67900276184082 24.00000381469727 15.67900276184082 M 24.00000381469727 14.67900276184082 C 24.55300331115723 14.67900276184082 25.05100440979004 14.90200233459473 25.41399383544922 15.26400184631348 C 25.7769947052002 15.62700271606445 26.00000381469727 16.12600326538086 26.00000381469727 16.67900276184082 C 26.00000381469727 17.23200225830078 25.7769947052002 17.73000335693359 25.41399383544922 18.09300231933594 C 25.05100440979004 18.45500183105469 24.55300331115723 18.67900276184082 24.00000381469727 18.67900276184082 C 23.4470043182373 18.67900276184082 22.94900321960449 18.45500183105469 22.58600425720215 18.09300231933594 C 22.2240047454834 17.73000335693359 22.00000381469727 17.23200225830078 22.00000381469727 16.67900276184082 C 22.00000381469727 16.12600326538086 22.2240047454834 15.62700271606445 22.58600425720215 15.26400184631348 C 22.94900321960449 14.90200233459473 23.4470043182373 14.67900276184082 24.00000381469727 14.67900276184082 Z" stroke="none" fill="#000"/></g></g><g transform="translate(8)"><path d="M0,0A2,2,0,0,1,2,2,2,2,0,0,1,0,4" transform="translate(-1 5.667) rotate(-90)" fill="none" stroke="#000" stroke-width="1"/><g transform="translate(-23 -15.013)" fill="none" stroke-miterlimit="10"><path d="M22,16.679a2,2,0,1,1,.586,1.414A2,2,0,0,1,22,16.679Z" stroke="none"/><path d="M 24.00000381469727 15.67900276184082 C 23.7330436706543 15.67900276184082 23.48165321350098 15.78308296203613 23.2940845489502 15.97013282775879 C 23.10444450378418 16.16030311584473 23.00000381469727 16.41204261779785 23.00000381469727 16.67900276184082 C 23.00000381469727 16.9453125 23.10444450378418 17.19670295715332 23.29213333129883 17.38492202758789 C 23.48230361938477 17.57456207275391 23.73369407653809 17.67900276184082 24.00000381469727 17.67900276184082 C 24.26631355285645 17.67900276184082 24.51770401000977 17.57456207275391 24.70688438415527 17.38589286804199 C 24.89590454101562 17.19687271118164 25.00000381469727 16.94583320617676 25.00000381469727 16.67900276184082 C 25.00000381469727 16.41153335571289 24.89590454101562 16.16013336181641 24.70785331726074 15.97207260131836 C 24.51834297180176 15.78308296203613 24.26696395874023 15.67900276184082 24.00000381469727 15.67900276184082 M 24.00000381469727 14.67900276184082 C 24.55300331115723 14.67900276184082 25.05100440979004 14.90200233459473 25.41399383544922 15.26400184631348 C 25.7769947052002 15.62700271606445 26.00000381469727 16.12600326538086 26.00000381469727 16.67900276184082 C 26.00000381469727 17.23200225830078 25.7769947052002 17.73000335693359 25.41399383544922 18.09300231933594 C 25.05100440979004 18.45500183105469 24.55300331115723 18.67900276184082 24.00000381469727 18.67900276184082 C 23.4470043182373 18.67900276184082 22.94900321960449 18.45500183105469 22.58600425720215 18.09300231933594 C 22.2240047454834 17.73000335693359 22.00000381469727 17.23200225830078 22.00000381469727 16.67900276184082 C 22.00000381469727 16.12600326538086 22.2240047454834 15.62700271606445 22.58600425720215 15.26400184631348 C 22.94900321960449 14.90200233459473 23.4470043182373 14.67900276184082 24.00000381469727 14.67900276184082 Z" stroke="none" fill="#000"/></g></g><g transform="translate(5 8)"><path d="M0,0A2,2,0,0,1,2,2,2,2,0,0,1,0,4" transform="translate(-1 5.667) rotate(-90)" fill="none" stroke="#000" stroke-width="1"/><g transform="translate(-23 -15.013)" fill="none" stroke-miterlimit="10"><path d="M22,16.679a2,2,0,1,1,.586,1.414A2,2,0,0,1,22,16.679Z" stroke="none"/><path d="M 24.00000381469727 15.67900276184082 C 23.7330436706543 15.67900276184082 23.48165321350098 15.78308296203613 23.2940845489502 15.97013282775879 C 23.10444450378418 16.16030311584473 23.00000381469727 16.41204261779785 23.00000381469727 16.67900276184082 C 23.00000381469727 16.9453125 23.10444450378418 17.19670295715332 23.29213333129883 17.38492202758789 C 23.48230361938477 17.57456207275391 23.73369407653809 17.67900276184082 24.00000381469727 17.67900276184082 C 24.26631355285645 17.67900276184082 24.51770401000977 17.57456207275391 24.70688438415527 17.38589286804199 C 24.89590454101562 17.19687271118164 25.00000381469727 16.94583320617676 25.00000381469727 16.67900276184082 C 25.00000381469727 16.41153335571289 24.89590454101562 16.16013336181641 24.70785331726074 15.97207260131836 C 24.51834297180176 15.78308296203613 24.26696395874023 15.67900276184082 24.00000381469727 15.67900276184082 M 24.00000381469727 14.67900276184082 C 24.55300331115723 14.67900276184082 25.05100440979004 14.90200233459473 25.41399383544922 15.26400184631348 C 25.7769947052002 15.62700271606445 26.00000381469727 16.12600326538086 26.00000381469727 16.67900276184082 C 26.00000381469727 17.23200225830078 25.7769947052002 17.73000335693359 25.41399383544922 18.09300231933594 C 25.05100440979004 18.45500183105469 24.55300331115723 18.67900276184082 24.00000381469727 18.67900276184082 C 23.4470043182373 18.67900276184082 22.94900321960449 18.45500183105469 22.58600425720215 18.09300231933594 C 22.2240047454834 17.73000335693359 22.00000381469727 17.23200225830078 22.00000381469727 16.67900276184082 C 22.00000381469727 16.12600326538086 22.2240047454834 15.62700271606445 22.58600425720215 15.26400184631348 C 22.94900321960449 14.90200233459473 23.4470043182373 14.67900276184082 24.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="17" height="17" viewBox="0 0 17 17"><g transform="translate(0.5 0.5)"><rect width="16" height="16" fill="#fff" opacity="0"/><circle cx="8" cy="8" r="8" stroke="#000" stroke-width="1"/><g transform="translate(5.333 5.333)"><line y1="6" x2="6" transform="translate(-0.333 -0.334)" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="6" y2="6" transform="translate(-0.333 -0.334)" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.002" viewBox="0 0 16 16.002"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.667 2.666)"><rect width="7" height="10" transform="translate(0.333 0.334)" fill="none"/><path d="M12797.21,17008.336h-9.876a.5.5,0,0,1,0-1h10.876l-1,1Z" transform="translate(-12788.5 -17008.5)"/><path d="M0,3.5A.5.5,0,0,1-.5,3V0A.5.5,0,0,1,0-.5.5.5,0,0,1,.5,0V3A.5.5,0,0,1,0,3.5Z" transform="translate(-1.167 -2.166)"/><line x1="3" transform="translate(3.833 12.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><path d="M12793.832,17021.836a.549.549,0,0,1-.5-.586v-4.793l1-1v5.793A.549.549,0,0,1,12793.832,17021.836Zm-.5-9.623v-3.8a.506.506,0,1,1,1,0v2.8l-1,1Z" transform="translate(-12788.5 -17008.5)"/><line y1="14" x2="14" transform="translate(-1.667 -1.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.667 -0.666)"><g transform="translate(0.667 0.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g><g transform="translate(5.499 5.501)"><line y1="7" x2="7" transform="translate(-0.332 -0.336)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="7" y2="7" transform="translate(-0.332 -0.336)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(4 4)"><line y1="8" x2="8" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="8" y2="8" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16.414" height="16.414" viewBox="0 0 16.414 16.414"><g transform="translate(0.207 0.207)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.5 0.5)"><line y1="15" x2="15" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="15" y2="15" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 17 17"><g transform="translate(0.5 0.5)"><rect width="16" height="16" fill="#fff" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1" opacity="0"/><g transform="translate(-0.349 -1.213)"><g transform="translate(1.349 5.213)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"><path d="M.686,0h9.628A.686.686,0,0,1,11,.686V3.5A5.5,5.5,0,0,1,5.5,9h0A5.5,5.5,0,0,1,0,3.5V.686A.686.686,0,0,1,.686,0Z" stroke="none"/><path d="M.832.5h9.336A.332.332,0,0,1,10.5.832V3.5a5,5,0,0,1-5,5h0a5,5,0,0,1-5-5V.832A.332.332,0,0,1,.832.5Z" fill="none"/></g><g transform="translate(11.349 11.213) rotate(-90)" fill="none" stroke="#000" stroke-width="1"><path d="M0,0H6A0,0,0,0,1,6,0V1A3,3,0,0,1,3,4H3A3,3,0,0,1,0,1V0A0,0,0,0,1,0,0Z" stroke="none"/><path d="M.5.5h5a0,0,0,0,1,0,0V1A2.5,2.5,0,0,1,3,3.5H3A2.5,2.5,0,0,1,.5,1V.5A0,0,0,0,1,.5.5Z" fill="none"/></g><line x2="15" transform="translate(0.849 14.713)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y1="2" transform="translate(2.849 2.213)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line y1="2" transform="translate(6.849 2.213)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line y1="2" transform="translate(10.849 2.213)" 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" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16" viewBox="0 0 16 16"><defs><radialGradient id="a" cx="0.5" cy="0.5" r="0.5" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="red"/><stop offset="0.148" stop-color="#ff9d00"/><stop offset="0.32" stop-color="#ffe200"/><stop offset="0.493" stop-color="#00ff27"/><stop offset="0.66" stop-color="blue"/><stop offset="0.833" stop-color="#f0f"/><stop offset="1" stop-color="red"/></radialGradient></defs><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.651 0.652)"><g transform="translate(-0.651 -0.652)" stroke="#fff" stroke-width="1" fill="url(#a)"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.001 4)"><path d="M1286.177,6.648V4.109a5.5,5.5,0,0,0-11,0v1.2" transform="translate(-1273.677 -2.147)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M1288.25,8.8v2.471a5.592,5.592,0,0,1-1,3.529" transform="translate(-1277.752 -7.299)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M1279.529,1.43c0,1.733,6.184,3.375,8.5,3.5" transform="translate(-1276.031 -3.429)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M1279.58,4.471a5.4,5.4,0,0,0-2,3.556v.889a4.306,4.306,0,0,0,2,3.556" transform="translate(-1274.081 -4.471)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M1286.128,18.705h.375c1.995.011,3.618-2.156,3.625-4.837,0-.055,0-.109,0-.164" transform="translate(-1277.63 -8.206)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M1293.193,8.08h-1v4h1a.95.95,0,0,0,1-.889V8.968A.951.951,0,0,0,1293.193,8.08Z" transform="translate(-1279.694 -5.58)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M1273.685,8.08h1v4h-1a.949.949,0,0,1-1-.887V8.97a.949.949,0,0,1,1-.89h0Z" transform="translate(-1273.186 -5.582)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><g transform="translate(5.999 9)" fill="none" stroke="#000" stroke-width="1"><circle cx="1.5" cy="1.5" r="1.5" stroke="none"/><circle cx="1.5" cy="1.5" r="1" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(3.333 1.334)"><g transform="translate(0.667 -1.333)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="10" height="14" rx="2" stroke="none"/><rect x="0.5" y="0.5" width="9" height="13" rx="1.5" fill="none"/></g><path d="M9.5,18.5H4c-1.1,0-1.5-.4-1.5-1.5V8.5" transform="translate(-3.333 -4.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0 1.775)"><g transform="translate(53 -7.438)" fill="none" stroke-miterlimit="10"><path d="M-37.272,11.679l-7.49-3.957a.51.51,0,0,0-.476,0l-7.49,3.957a.509.509,0,0,0,0,.9L-50,14.072v3.592a1.8,1.8,0,0,0,2,2h6a1.8,1.8,0,0,0,2-2V14.072l2.728-1.493A.509.509,0,0,0-37.272,11.679Z" stroke="none"/><path d="M -45.00037002563477 8.726720809936523 L -51.45432662963867 12.13645839691162 L -49.00000381469727 13.47955322265625 L -49.00000381469727 17.6640625 C -49.00000381469727 18.41172409057617 -48.74766540527344 18.6640625 -48.00000381469727 18.6640625 L -42.00000381469727 18.6640625 C -41.25234222412109 18.6640625 -41.00000381469727 18.41172409057617 -41.00000381469727 17.6640625 L -41.00000381469727 13.47963333129883 L -38.54629516601562 12.13652324676514 L -45.00037002563477 8.726720809936523 M -45.00037002563477 7.662500381469727 C -44.91853713989258 7.662500381469727 -44.83670806884766 7.682157516479492 -44.76237487792969 7.721473693847656 L -37.2719841003418 11.67878246307373 C -36.91000366210938 11.87002277374268 -36.91000366210938 12.38776302337646 -37.2719841003418 12.57899284362793 L -40.00000381469727 14.07226276397705 L -40.00000381469727 17.6640625 C -40.00000381469727 18.96406173706055 -40.70000457763672 19.6640625 -42.00000381469727 19.6640625 L -48.00000381469727 19.6640625 C -49.29507446289062 19.6640625 -50.00000381469727 18.96878242492676 -50.00000381469727 17.6640625 L -50.00000381469727 14.07226276397705 L -52.72875213623047 12.57899284362793 C -53.09074401855469 12.38776302337646 -53.09074401855469 11.87002277374268 -52.72875213623047 11.67878246307373 L -45.23836517333984 7.721473693847656 C -45.16402816772461 7.682157516479492 -45.08219909667969 7.662500381469727 -45.00037002563477 7.662500381469727 Z" stroke="none" fill="#000"/></g><g transform="translate(53 -7.436)" fill="none" stroke-miterlimit="10"><path d="M-45.238,16.6l-7.49-3.987a.514.514,0,0,1,0-.907l7.49-3.987a.506.506,0,0,1,.476,0l7.49,3.987a.514.514,0,0,1,0,.907l-7.49,3.987A.506.506,0,0,1-45.238,16.6Z" stroke="none"/><path d="M -45.0003662109375 15.59692192077637 L -38.54824829101562 12.16250038146973 L -45.00037002563477 8.728068351745605 L -51.45248031616211 12.16250419616699 L -45.0003662109375 15.59692192077637 M -45.00037002563477 16.66250228881836 C -45.08219909667969 16.66250228881836 -45.16402816772461 16.6426944732666 -45.23836517333984 16.60308074951172 L -52.72875213623047 12.61599063873291 C -53.09074401855469 12.42331027984619 -53.09074401855469 11.90167999267578 -52.72875213623047 11.70901012420654 L -45.23836517333984 7.72191047668457 C -45.08968353271484 7.642688751220703 -44.91103363037109 7.642692089080811 -44.76237487792969 7.72191047668457 L -37.2719841003418 11.70901012420654 C -36.91000366210938 11.90167999267578 -36.91000366210938 12.42331027984619 -37.2719841003418 12.61599063873291 L -44.76237487792969 16.60308074951172 C -44.83670806884766 16.6426944732666 -44.91853713989258 16.66250228881836 -45.00037002563477 16.66250228881836 Z" stroke="none" fill="#000"/></g><rect width="1" height="5" rx="0.5" transform="translate(15 4.226)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.667 -0.4)"><g transform="translate(0.333 0.4)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="6" height="6" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="5" height="5" rx="0.5" fill="none"/></g><g transform="translate(8.333 10.4)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="6" height="6" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="5" height="5" rx="0.5" fill="none"/></g><g transform="translate(8.333 0.4)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="6" height="9" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="5" height="8" rx="0.5" fill="none"/></g><g transform="translate(0.333 7.4)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="6" height="9" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="5" height="8" rx="0.5" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.667 2.666)"><path d="M135.648,24.4l3,3,3-3" transform="translate(-133.315 -18.564)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y1="10" transform="translate(5.333 -1.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M16-3V0H1V-3" transform="translate(-3.167 11.833)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(5.333 0.166)"><line y2="15" transform="translate(5.667 0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line y2="15" transform="translate(2.667 0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line y2="15" transform="translate(-0.333 0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.002" viewBox="0 0 16 16.002"><rect width="16" height="16" transform="translate(0 0.002)" fill="#fff" opacity="0"/><g transform="translate(-0.157 -1.154)"><g transform="translate(-12908 -20860)" fill="rgba(0,0,0,0)" stroke-miterlimit="10"><path d="M 12917.154296875 20876.65625 L 12910.1552734375 20876.65625 C 12909.330078125 20876.65625 12908.658203125 20875.982421875 12908.658203125 20875.154296875 L 12908.658203125 20868.154296875 C 12908.658203125 20867.328125 12909.330078125 20866.654296875 12910.1552734375 20866.654296875 L 12913.1572265625 20866.654296875 L 12913.6572265625 20866.654296875 L 12913.6572265625 20866.154296875 L 12913.6572265625 20863.15625 C 12913.6572265625 20862.328125 12914.330078125 20861.654296875 12915.158203125 20861.654296875 L 12922.158203125 20861.654296875 C 12922.9833984375 20861.654296875 12923.654296875 20862.328125 12923.654296875 20863.15625 L 12923.654296875 20870.15625 C 12923.654296875 20870.984375 12922.9833984375 20871.658203125 12922.158203125 20871.658203125 L 12919.15625 20871.658203125 L 12918.65625 20871.658203125 L 12918.65625 20872.158203125 L 12918.65625 20875.154296875 C 12918.65625 20875.982421875 12917.982421875 20876.65625 12917.154296875 20876.65625 Z" stroke="none"/><path d="M 12917.154296875 20876.15625 C 12917.70703125 20876.15625 12918.15625 20875.70703125 12918.15625 20875.154296875 L 12918.15625 20871.158203125 L 12922.158203125 20871.158203125 C 12922.70703125 20871.158203125 12923.154296875 20870.708984375 12923.154296875 20870.15625 L 12923.154296875 20863.15625 C 12923.154296875 20862.603515625 12922.70703125 20862.154296875 12922.158203125 20862.154296875 L 12915.158203125 20862.154296875 C 12914.6064453125 20862.154296875 12914.1572265625 20862.603515625 12914.1572265625 20863.15625 L 12914.1572265625 20867.154296875 L 12910.1552734375 20867.154296875 C 12909.60546875 20867.154296875 12909.158203125 20867.603515625 12909.158203125 20868.154296875 L 12909.158203125 20875.154296875 C 12909.158203125 20875.70703125 12909.60546875 20876.15625 12910.1552734375 20876.15625 L 12917.154296875 20876.15625 M 12917.154296875 20877.15625 L 12910.1552734375 20877.15625 C 12909.0546875 20877.15625 12908.158203125 20876.259765625 12908.158203125 20875.154296875 L 12908.158203125 20868.154296875 C 12908.158203125 20867.048828125 12909.0546875 20866.154296875 12910.1552734375 20866.154296875 L 12913.1572265625 20866.154296875 L 12913.1572265625 20863.15625 C 12913.1572265625 20862.05078125 12914.052734375 20861.154296875 12915.158203125 20861.154296875 L 12922.158203125 20861.154296875 C 12923.263671875 20861.154296875 12924.154296875 20862.05078125 12924.154296875 20863.15625 L 12924.154296875 20870.15625 C 12924.154296875 20871.26171875 12923.263671875 20872.158203125 12922.158203125 20872.158203125 L 12919.15625 20872.158203125 L 12919.15625 20875.154296875 C 12919.15625 20876.259765625 12918.2607421875 20877.15625 12917.154296875 20877.15625 Z" stroke="none" fill="#000"/></g><g transform="translate(5.157 1.156)" fill="rgba(0,0,0,0)" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="11" height="11" rx="2" stroke="none"/><rect x="0.5" y="0.5" width="10" height="10" rx="1.5" fill="none"/></g><g transform="translate(9.03 4.283)"><line x2="4" transform="translate(-0.373 2.373)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line y2="4" transform="translate(1.627 0.373)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.011" viewBox="0 0 16 16.011"><rect width="16" height="16" transform="translate(0 0.011)" fill="#fff" opacity="0"/><g transform="translate(0 0.011)"><line x2="3" y2="3" transform="translate(10 3)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"/><line x2="4" y2="4" transform="translate(2 10)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(180.729 -66.831)" fill="none" stroke-miterlimit="10"><path d="M-166.873,67.546l1.414,1.414a1.719,1.719,0,0,1,.132,2.7l-9.45,9.45a1.174,1.174,0,0,1-.683.334l-4.206,1.193a.793.793,0,0,1-.86-.861l1.215-4.274a1.173,1.173,0,0,1,.336-.68l9.406-9.406a1.716,1.716,0,0,1,2.7.132Z" stroke="none"/><path d="M -168.3228149414062 67.82054901123047 C -168.5205383300781 67.82054901123047 -168.7257385253906 67.98423767089844 -168.8630523681641 68.12155914306641 L -178.2751312255859 77.53357696533203 C -178.3054504394531 77.56334686279297 -178.317138671875 77.60749816894531 -178.3215942382812 77.63928985595703 L -178.3311767578125 77.70747375488281 L -179.4166259765625 81.52448272705078 L -175.6658935546875 80.46072387695312 L -175.5963745117188 80.45118713378906 C -175.5641479492188 80.44676971435547 -175.5195465087891 80.43524169921875 -175.4901123046875 80.40538024902344 L -175.4851226806641 80.40035247802734 L -166.0346374511719 70.94998168945312 C -165.7197723388672 70.63512420654297 -165.5123443603516 70.32128143310547 -166.1662292480469 69.66738128662109 L -167.5804901123047 68.25315093994141 C -167.8594512939453 67.97418212890625 -168.1230773925781 67.82054901123047 -168.3228149414062 67.82054901123047 M -168.3228149414062 66.82054901123047 C -167.8462066650391 66.82054901123047 -167.3568267822266 67.06258392333984 -166.8733673095703 67.54605865478516 L -166.8733520507812 67.54605865478516 L -165.4591369628906 68.96027374267578 C -164.5407257080078 69.87867736816406 -164.4969024658203 70.82646942138672 -165.3275299072266 71.65708923339844 L -174.7780151367188 81.10746002197266 C -174.9573059082031 81.28931427001953 -175.1948394775391 81.40548706054688 -175.4605407714844 81.44191741943359 L -179.6668090820312 82.63488006591797 C -180.1388549804688 82.69935607910156 -180.5934448242188 82.24393463134766 -180.5272979736328 81.77425384521484 L -179.3118743896484 77.50018310546875 C -179.2746124267578 77.23493194580078 -179.1574859619141 76.99857330322266 -178.9759216308594 76.82021331787109 L -169.5701599121094 67.41445159912109 C -169.174072265625 67.01837158203125 -168.753662109375 66.82054901123047 -168.3228149414062 66.82054901123047 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.002" viewBox="0 0 16 16.002"><rect width="16" height="16" transform="translate(0 0.002)" fill="#fff" opacity="0"/><g transform="translate(1.334 1.334)"><g transform="translate(-1.333 -1.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="16" height="11" rx="2" stroke="none"/><rect x="0.5" y="0.5" width="15" height="10" rx="1.5" fill="none"/></g><line x2="13" transform="translate(0.167 13.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(1.667 11.666)" fill="none" stroke="#000" stroke-width="1"><circle cx="1.5" cy="1.5" r="1.5" stroke="none"/><circle cx="1.5" cy="1.5" r="1" fill="none"/></g><path d="M2.106,1.789a1,1,0,0,1,1.789,0L5.276,4.553A1,1,0,0,1,4.382,6H1.618A1,1,0,0,1,.724,4.553Z" transform="translate(10.666 1.166) rotate(90)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.667 2.001)"><g transform="translate(16.667 -0.001) rotate(90)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="12" height="16" rx="2" stroke="none"/><rect x="0.5" y="0.5" width="11" height="15" rx="1.5" fill="none"/></g><path d="M377.771-362.477l7,4.5,7-4.5" transform="translate(-376.104 363.477)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.334 -0.334)"><line y2="8" transform="translate(8.334 1.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y2="2" transform="translate(8.334 12.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.334 -0.334)"><line y2="5" transform="translate(8.333 3.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y2="1" transform="translate(8.333 11.833)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><g transform="translate(0.334 0.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(3.667 2)"><g transform="translate(-1.667 -2)"><g transform="translate(-42.668 3.725)" fill="none" stroke-miterlimit="10"><path d="M45.668,12.029a.632.632,0,0,1-1,0,11.769,11.769,0,0,1-2-3.713V-2.347A1.4,1.4,0,0,1,44.1-3.725h2.141a1.4,1.4,0,0,1,1.43,1.378V8.317A11.769,11.769,0,0,1,45.668,12.029Z" stroke="none"/><path d="M 45.16794204711914 11.049485206604 C 45.77964019775391 10.20328521728516 46.56356048583984 8.69914436340332 46.66796493530273 8.26326847076416 L 46.66800308227539 -2.347212076187134 C 46.66800308227539 -2.555521965026855 46.47510528564453 -2.72500205039978 46.23799514770508 -2.72500205039978 L 44.09728240966797 -2.72500205039978 C 43.86057281494141 -2.72500205039978 43.66800308227539 -2.555521965026855 43.66800308227539 -2.347212076187134 L 43.66796493530273 8.263269424438477 C 43.77238464355469 8.699199676513672 44.55646896362305 10.20363521575928 45.16794204711914 11.049485206604 M 45.16769790649414 12.27500057220459 C 44.98974990844727 12.27500057220459 44.81189346313477 12.19308280944824 44.66796493530273 12.02924823760986 C 43.93225479125977 11.19075775146484 42.66796493530273 8.847098350524902 42.66796493530273 8.316557884216309 L 42.66800308227539 -2.347212076187134 C 42.66800308227539 -3.108351945877075 43.3079948425293 -3.72500205039978 44.09728240966797 -3.72500205039978 L 46.23799514770508 -3.72500205039978 C 47.02799224853516 -3.72500205039978 47.66800308227539 -3.108351945877075 47.66800308227539 -2.347212076187134 L 47.66796493530273 8.316557884216309 C 47.66796493530273 8.847098350524902 46.40368270874023 11.19075775146484 45.66796493530273 12.02924823760986 C 45.52367782592773 12.19308280944824 45.34564590454102 12.27500057220459 45.16769790649414 12.27500057220459 Z" stroke="none" fill="#000"/></g><line x2="3" transform="translate(1 4.014)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g><g transform="translate(5.333 0)"><g transform="translate(0 -2)" fill="none"><path d="M0,0H5V16H0Z" stroke="none"/><path d="M 1 1 L 1 15 L 4 15 L 4 1 L 1 1 M 0 0 L 5 0 L 5 16 L 0 16 L 0 0 Z" stroke="none" fill="#000"/></g><line x2="2" transform="translate(0.5 1.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="2" transform="translate(0.5 4.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="2" transform="translate(0.5 7.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="2" transform="translate(0.5 10.5)" 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="16.207" height="16.708" viewBox="0 0 16.207 16.708"><g transform="translate(0 0.207)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 0.668)"><path d="M-539,78.667v4a2.1,2.1,0,0,1-2,2h-10a2.1,2.1,0,0,1-2-2v-10a2.1,2.1,0,0,1,2-2h4" transform="translate(551.5 -69.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-538.333,67h4v4" transform="translate(547.833 -67.168)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y1="8" x2="8" transform="translate(5.5 -0.168)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.666 3.332)"><line x2="7" transform="translate(1.834 3.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="4" transform="translate(1.834 6.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><path d="M-2871.324,225.505v-4h-4" transform="translate(2883.157 -223.339)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-2875.273,239.905h4v-4" transform="translate(2883.108 -228.738)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-2892.122,221.558h-4v4" transform="translate(2894.957 -223.392)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-2896.071,235.958v4h4" transform="translate(2894.905 -228.791)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><circle cx="1.5" cy="1.5" r="1.5" transform="translate(10.334 9.666)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16.002" height="16" viewBox="0 0 16.002 16"><rect width="16" height="16" transform="translate(0.001)" fill="#fff" opacity="0"/><g transform="translate(2.668 2.666)"><path d="M12793.834,21130.836a2.991,2.991,0,0,1-.779-.1l.9-.9a2,2,0,0,0,1.872-1.871l.9-.9a3,3,0,0,1-2.9,3.779Zm-2.9-2.225v0a2.923,2.923,0,0,1-.1-.775,3,3,0,0,1,3.776-2.9l-.9.9a2,2,0,0,0-1.869,1.869l-.9.9Z" transform="translate(-12788.5 -21122.5)" fill="#040405"/><path d="M12793.834,21132.836a10.545,10.545,0,0,1-2.576-.307l.843-.842a10.108,10.108,0,0,0,1.733.145,8.81,8.81,0,0,0,3.507-.668,6.782,6.782,0,0,0,2.8-2.232,5.814,5.814,0,0,0,.642-1.088,6.942,6.942,0,0,0-2.223-2.619l.717-.717a7.954,7.954,0,0,1,.864.742,7.439,7.439,0,0,1,1.665,2.445.378.378,0,0,1,.006.266,6.326,6.326,0,0,1-.859,1.564,7.846,7.846,0,0,1-3.215,2.557A9.822,9.822,0,0,1,12793.834,21132.836Zm-5.472-1.652v0a7.51,7.51,0,0,1-.887-.766,6.879,6.879,0,0,1-1.618-2.455.377.377,0,0,1,0-.266,6.847,6.847,0,0,1,.9-1.555,8.052,8.052,0,0,1,3.23-2.551,9.485,9.485,0,0,1,3.846-.754h.011a10.309,10.309,0,0,1,2.56.311l-.838.838a9.646,9.646,0,0,0-1.722-.15h-.011a8.581,8.581,0,0,0-3.448.668,7.056,7.056,0,0,0-2.827,2.238,1.662,1.662,0,0,0,.631,2.971,6.651,6.651,0,0,0,.9.754l-.717.717Z" transform="translate(-12788.5 -21122.5)"/><line y1="14" x2="14" transform="translate(-1.667 -1.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="17.003" height="16" viewBox="0 0 17.003 16"><g transform="translate(0.502)"><rect width="16" height="16" transform="translate(0)" fill="#fff" opacity="0"/><g transform="translate(0 2.001)"><path d="M20.48,13.363a7.364,7.364,0,0,0-1.669-2.445,8.014,8.014,0,0,0-2.457-1.665A9.537,9.537,0,0,0,12.5,8.5a9.534,9.534,0,0,0-3.85.753,8.021,8.021,0,0,0-3.23,2.553,6.641,6.641,0,0,0-.9,1.557.4.4,0,0,0,0,.264A7.005,7.005,0,0,0,6.146,16.08,7.817,7.817,0,0,0,8.6,17.747a9.738,9.738,0,0,0,3.9.753,9.738,9.738,0,0,0,3.9-.753,7.772,7.772,0,0,0,3.213-2.558,6.334,6.334,0,0,0,.861-1.562A.4.4,0,0,0,20.48,13.363Z" transform="translate(-4.504 -7.5)" fill="none" stroke="#000" stroke-width="1"/><circle cx="3" cy="3" r="3" transform="translate(5 3)" fill="none" stroke="#000" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.009" viewBox="0 0 16 16.009"><rect width="16" height="16" transform="translate(16 16) rotate(180)" fill="#fff" opacity="0"/><g transform="translate(0.5 1.5)"><rect width="3" height="8" rx="1" transform="translate(12 0)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/><path d="M11.788,10.656h.749l-.059.4h-.69a.978.978,0,1,0,0,1.956h1.5l3.5-.013s-.918,3.612,1.3,4.8c1.424.686,1.7-.6,1.7-.6V14.5l1-.5s1.992-1.2,2-2.5v-6a1.314,1.314,0,0,0-1.5-1.5h-8a1.1,1.1,0,0,0-1.12.978.993.993,0,0,0,1,.978h.068l-.059.4h-.7a.978.978,0,1,0,0,1.955h.408l-.059.4H11.788a.978.978,0,1,0,0,1.956Z" transform="translate(-10.786 -3.997)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" transform="translate(0)" fill="#fff" opacity="0"/><g transform="translate(0 3)"><g transform="translate(15.999 10.002) rotate(180)" fill="none"><path d="M6,1.625v.359L2.5.2A1.7,1.7,0,0,0,0,1.625V8.377A1.7,1.7,0,0,0,2.5,9.8L6,8.02v.357A1.7,1.7,0,0,0,8.5,9.8l6.6-3.373a1.588,1.588,0,0,0,0-2.857L8.5.2A1.775,1.775,0,0,0,7.7,0,1.665,1.665,0,0,0,6,1.625Z" stroke="none"/><path d="M 7.701175689697266 1 C 7.363955497741699 1 6.999996185302734 1.238949775695801 6.999996185302734 1.625 L 6.999996185302734 3.619639873504639 L 2.04909610748291 1.085399627685547 C 1.938705444335938 1.02886962890625 1.822065353393555 1.000209808349609 1.702415466308594 1.000209808349609 C 1.364605903625488 1.000209808349609 0.9999961853027344 1.239080429077148 0.9999961853027344 1.625 L 0.9999961853027344 8.376950263977051 C 0.9999961853027344 8.761670112609863 1.36452579498291 8.999810218811035 1.702256202697754 8.999810218811035 C 1.821986198425293 8.999810218811035 1.938685417175293 8.971139907836914 2.050025939941406 8.914130210876465 L 6.999996185302734 6.385879993438721 L 6.999996185302734 8.376950263977051 C 6.999996185302734 8.761670112609863 7.363696098327637 8.999810218811035 7.700665473937988 8.999810218811035 C 7.821075439453125 8.999810218811035 7.938715934753418 8.970930099487305 8.049785614013672 8.914250373840332 L 14.64741611480713 5.542220115661621 C 14.96583557128906 5.378570079803467 14.99972534179688 5.108230113983154 14.99951553344727 4.999589920043945 C 14.99930572509766 4.892230033874512 14.96491622924805 4.625259876251221 14.64876556396484 4.464340209960938 L 8.052366256713867 1.08705997467041 C 7.938515663146973 1.029290199279785 7.820365905761719 1 7.701175689697266 1 M 7.701175689697266 0 C 7.967775344848633 0 8.243165969848633 0.0625 8.504885673522949 0.1953096389770508 L 15.10449600219727 3.574220180511475 C 16.29785537719727 4.181640148162842 16.29785537719727 5.818359851837158 15.10449600219727 6.431639671325684 L 8.504885673522949 9.804690361022949 C 7.368165016174316 10.38477039337158 5.999996185302734 9.601559638977051 5.999996185302734 8.376950263977051 L 5.999996185302734 8.019530296325684 L 2.504885673522949 9.804690361022949 C 1.372066497802734 10.38476943969727 -3.814697265625e-06 9.601560592651367 -3.814697265625e-06 8.376950263977051 L -3.814697265625e-06 1.625 C -3.814697265625e-06 0.3984403610229492 1.372067451477051 -0.3847675323486328 2.504885673522949 0.1953096389770508 L 5.999996185302734 1.984370231628418 L 5.999996185302734 1.625 C 5.999996185302734 0.6816396713256836 6.809565544128418 0 7.701175689697266 0 Z" stroke="none" fill="#000"/></g><g transform="translate(15.999) rotate(90)" fill="none"><path d="M3.57,9.1a1.589,1.589,0,0,0,2.861,0L9.805,2.5A1.7,1.7,0,0,0,8.375,0H1.625A1.7,1.7,0,0,0,.195,2.5Z" stroke="none"/><path d="M 4.999999046325684 9.000006675720215 C 5.108179092407227 9.000006675720215 5.377368927001953 8.965657234191895 5.540069103240967 8.647486686706543 L 8.915079116821289 2.047487020492554 C 9.036998748779297 1.809057116508484 9.026759147644043 1.530997037887573 8.887688636779785 1.303677082061768 C 8.818299293518066 1.190267086029053 8.659428596496582 0.999997079372406 8.375019073486328 0.999997079372406 L 1.624989032745361 0.999997079372406 C 1.340569019317627 0.999997079372406 1.18169903755188 1.190267086029053 1.112309098243713 1.30368709564209 C 0.9732390642166138 1.531007051467896 0.9629990458488464 1.809057116508484 1.084919095039368 2.047487020492554 L 4.4599289894104 8.647477149963379 C 4.622639179229736 8.965657234191895 4.891819000244141 9.000006675720215 4.999999046325684 9.000006675720215 M 4.999999046325684 10.00000190734863 C 4.437731742858887 10.00000190734863 3.875463962554932 9.700926780700684 3.569589138031006 9.102777481079102 L 0.1945790499448776 2.502777099609375 C -0.3845309615135193 1.370297074317932 0.3986290395259857 -2.913513071689522e-06 1.624989032745361 -2.913513071689522e-06 L 8.375019073486328 -2.913513071689522e-06 C 9.60136890411377 -2.913513071689522e-06 10.38452911376953 1.370297074317932 9.805418968200684 2.502777099609375 L 6.430408954620361 9.102777481079102 C 6.124534130096436 9.700926780700684 5.56226634979248 10.00000190734863 4.999999046325684 10.00000190734863 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.999 3.332)"><g transform="translate(-12668 -18787)" fill="none"><path d="M12672,18795.045v-.359l-3.5,1.789a1.7,1.7,0,0,1-2.5-1.43v-6.752a1.7,1.7,0,0,1,2.5-1.428l3.5,1.785v-.357a1.7,1.7,0,0,1,2.5-1.428l6.6,3.373a1.588,1.588,0,0,1,0,2.857l-6.6,3.379a1.775,1.775,0,0,1-.8.2A1.665,1.665,0,0,1,12672,18795.045Z" stroke="none"/><path d="M 12673.7021484375 18795.669921875 C 12673.8212890625 18795.669921875 12673.939453125 18795.640625 12674.0498046875 18795.583984375 L 12680.6513671875 18792.205078125 C 12680.9658203125 18792.044921875 12681 18791.77734375 12681.0009765625 18791.669921875 C 12681.0009765625 18791.5625 12680.966796875 18791.291015625 12680.650390625 18791.12890625 L 12674.0517578125 18787.755859375 C 12673.939453125 18787.69921875 12673.822265625 18787.669921875 12673.701171875 18787.669921875 C 12673.3642578125 18787.669921875 12673.0009765625 18787.908203125 12673.0009765625 18788.29296875 L 12673.0009765625 18790.283203125 L 12668.0498046875 18787.755859375 C 12667.939453125 18787.69921875 12667.8232421875 18787.669921875 12667.703125 18787.669921875 C 12667.365234375 18787.669921875 12667.0009765625 18787.908203125 12667.0009765625 18788.29296875 L 12667.0009765625 18795.044921875 C 12667.0009765625 18795.212890625 12667.06640625 18795.357421875 12667.1943359375 18795.474609375 C 12667.330078125 18795.59765625 12667.515625 18795.669921875 12667.703125 18795.669921875 C 12667.8232421875 18795.669921875 12667.939453125 18795.640625 12668.0498046875 18795.583984375 L 12673.0009765625 18793.05078125 L 12673.0009765625 18795.044921875 C 12673.0009765625 18795.431640625 12673.365234375 18795.669921875 12673.7021484375 18795.669921875 M 12673.7021484375 18796.669921875 C 12672.810546875 18796.669921875 12672.0009765625 18795.98828125 12672.0009765625 18795.044921875 L 12672.0009765625 18794.685546875 L 12668.505859375 18796.474609375 C 12667.373046875 18797.056640625 12666 18796.271484375 12666.0009765625 18795.044921875 L 12666.0009765625 18788.29296875 C 12666.001953125 18787.0703125 12667.3740234375 18786.28515625 12668.505859375 18786.865234375 L 12672.0009765625 18788.650390625 L 12672.0009765625 18788.29296875 C 12672.001953125 18787.0703125 12673.3681640625 18786.28515625 12674.505859375 18786.865234375 L 12681.10546875 18790.23828125 C 12682.298828125 18790.8515625 12682.298828125 18792.48828125 12681.10546875 18793.095703125 L 12674.505859375 18796.474609375 C 12674.244140625 18796.607421875 12673.96875 18796.669921875 12673.7021484375 18796.669921875 Z" stroke="none" fill="#000"/></g><g transform="translate(8.001 -0.332) rotate(90)" fill="none"><path d="M3.57.9A1.589,1.589,0,0,1,6.43.9L9.805,7.5A1.7,1.7,0,0,1,8.375,10H1.625A1.7,1.7,0,0,1,.195,7.5Z" stroke="none"/><path d="M 4.999999046325684 0.9999933242797852 C 4.891819000244141 0.9999933242797852 4.622629165649414 1.034342765808105 4.4599289894104 1.352513313293457 L 1.084918975830078 7.952512741088867 C 0.9629993438720703 8.190942764282227 0.9732389450073242 8.468993186950684 1.112309455871582 8.69631290435791 C 1.181698799133301 8.809732437133789 1.340569496154785 9.000002861022949 1.62498950958252 9.000002861022949 L 8.375019073486328 9.000002861022949 C 8.659429550170898 9.000002861022949 8.818299293518066 8.809732437133789 8.887688636779785 8.696323394775391 C 9.026759147644043 8.469002723693848 9.036998748779297 8.190942764282227 8.915079116821289 7.952512741088867 L 5.540069103240967 1.352522850036621 C 5.377358913421631 1.034342765808105 5.108179092407227 0.9999933242797852 4.999999046325684 0.9999933242797852 M 4.999999046325684 -1.9073486328125e-06 C 5.56226634979248 -1.9073486328125e-06 6.124534130096436 0.2990732192993164 6.430408954620361 0.8972225189208984 L 9.805418968200684 7.497222900390625 C 10.38452911376953 8.629702568054199 9.60136890411377 10.00000286102295 8.375019073486328 10.00000286102295 L 1.62498950958252 10.00000286102295 C 0.3986291885375977 10.00000286102295 -0.3845310211181641 8.629702568054199 0.1945791244506836 7.497222900390625 L 3.569589138031006 0.8972225189208984 C 3.875463962554932 0.2990732192993164 4.437731742858887 -1.9073486328125e-06 4.999999046325684 -1.9073486328125e-06 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(3.334 2)"><path d="M1,0H6" transform="translate(1.166 7.001)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line y2="5" transform="translate(4.666 4.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(-0.001)"><g transform="translate(-132.648 -7)" fill="none" stroke-linejoin="round"><path d="M143.315,9V19.222A1.621,1.621,0,0,1,141.6,21h-8.572a1.621,1.621,0,0,1-1.714-1.778V6.778A1.621,1.621,0,0,1,133.029,5h6.287Z" stroke="none"/><path d="M 133.0288238525391 6.000001907348633 C 132.6755676269531 6.000001907348633 132.3144378662109 6.092411041259766 132.3144378662109 6.777780532836914 L 132.3144378662109 19.22222137451172 C 132.3144378662109 19.90759086608887 132.6755676269531 20 133.0288238525391 20 L 141.6006927490234 20 C 141.9539489746094 20 142.3150787353516 19.90759086608887 142.3150787353516 19.22219085693359 L 142.3154144287109 9.414207458496094 L 138.9012145996094 6.000001907348633 L 133.0288238525391 6.000001907348633 M 133.0288238525391 5.000001907348633 L 139.3154296875 5.000001907348633 L 143.3154296875 9.000001907348633 L 143.3150787353516 19.22222137451172 C 143.3150787353516 20.32695007324219 142.6500549316406 21 141.6006927490234 21 L 133.0288238525391 21 C 131.9794616699219 21 131.3144378662109 20.32695007324219 131.3144378662109 19.22222137451172 L 131.3144378662109 6.777780532836914 C 131.3144378662109 5.673051834106445 131.9794616699219 5.000001907348633 133.0288238525391 5.000001907348633 Z" stroke="none" fill="#000"/></g><path d="M146.478,9.917h-4v-4Z" transform="translate(-136.312 -7.415)" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-232 -5782)"><path d="M13261.284,23185.5a.731.731,0,0,1-.786-.832v-9.332a.732.732,0,0,1,.786-.838h4.219v-3.166a.727.727,0,0,1,.785-.832h4.5l2.712,2.705v7.461a.731.731,0,0,1-.792.832h-4.213v3.17a.727.727,0,0,1-.785.832Z" transform="translate(-13027 -17388)" fill="rgba(0,0,0,0)" stroke="#000" stroke-linejoin="round" stroke-width="1"/><g transform="translate(234.333 5788)"><g transform="translate(-132.648 -7)" fill="none" stroke-linejoin="round"><path d="M140.315,8v7.667A1.216,1.216,0,0,1,139.029,17H132.6a1.216,1.216,0,0,1-1.286-1.333V6.333A1.216,1.216,0,0,1,132.6,5h4.715Z" stroke="none"/><path d="M 132.6002197265625 6.000001907348633 C 132.4343109130859 6.000001907348633 132.3144226074219 6.000001907348633 132.3144226074219 6.333331108093262 L 132.3144226074219 15.66667079925537 C 132.3144226074219 16 132.4343109130859 16 132.6002197265625 16 L 139.0291137695312 16 C 139.1950378417969 16 139.3149108886719 16 139.3149108886719 15.66663074493408 L 139.3151702880859 8.414206504821777 L 136.9009704589844 6.000001907348633 L 132.6002197265625 6.000001907348633 M 132.6002197265625 5.000001907348633 L 137.315185546875 5.000001907348633 L 140.315185546875 8.000000953674316 L 140.3149108886719 15.66667079925537 C 140.3149108886719 16.49521064758301 139.8161468505859 17 139.0291137695312 17 L 132.6002197265625 17 C 131.8132019042969 17 131.3144226074219 16.49521064758301 131.3144226074219 15.66667079925537 L 131.3144226074219 6.333331108093262 C 131.3144226074219 5.504791259765625 131.8132019042969 5.000001907348633 132.6002197265625 5.000001907348633 Z" stroke="none" fill="#000"/></g><path d="M145.478,8.917h-3v-3Z" transform="translate(-138.312 -7.416)" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g><path d="M145.478,8.917h-3v-3Z" transform="translate(101.021 5776.584)" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(3.334 2)"><path d="M1,0H6" transform="translate(1.166 7)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><g transform="translate(-0.001)"><g transform="translate(-132.648 -7)" fill="none" stroke-linejoin="round"><path d="M143.315,9V19.222A1.621,1.621,0,0,1,141.6,21h-8.572a1.621,1.621,0,0,1-1.714-1.778V6.778A1.621,1.621,0,0,1,133.029,5h6.287Z" stroke="none"/><path d="M 133.0288238525391 6.000001907348633 C 132.6755676269531 6.000001907348633 132.3144378662109 6.092411041259766 132.3144378662109 6.777780532836914 L 132.3144378662109 19.22222137451172 C 132.3144378662109 19.90759086608887 132.6755676269531 20 133.0288238525391 20 L 141.6006927490234 20 C 141.9539489746094 20 142.3150787353516 19.90759086608887 142.3150787353516 19.22219085693359 L 142.3154144287109 9.414207458496094 L 138.9012145996094 6.000001907348633 L 133.0288238525391 6.000001907348633 M 133.0288238525391 5.000001907348633 L 139.3154296875 5.000001907348633 L 143.3154296875 9.000001907348633 L 143.3150787353516 19.22222137451172 C 143.3150787353516 20.32695007324219 142.6500549316406 21 141.6006927490234 21 L 133.0288238525391 21 C 131.9794616699219 21 131.3144378662109 20.32695007324219 131.3144378662109 19.22222137451172 L 131.3144378662109 6.777780532836914 C 131.3144378662109 5.673051834106445 131.9794616699219 5.000001907348633 133.0288238525391 5.000001907348633 Z" stroke="none" fill="#000"/></g><path d="M146.478,9.917h-4v-4Z" transform="translate(-136.312 -7.415)" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.667 2)"><g transform="translate(10 -1.5)"><line y2="5" transform="translate(0.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="4" y2="3" transform="translate(-1.167 1)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="4" y2="3" transform="translate(-1.167 1)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g><g transform="translate(0.666 4)"><g transform="translate(-132.648 -7)" fill="none" stroke-linejoin="round"><path d="M140.315,8v7.667A1.216,1.216,0,0,1,139.029,17H132.6a1.216,1.216,0,0,1-1.286-1.333V6.333A1.216,1.216,0,0,1,132.6,5h4.715Z" stroke="none"/><path d="M 132.6002197265625 6.000001907348633 C 132.4343109130859 6.000001907348633 132.3144226074219 6.000001907348633 132.3144226074219 6.333331108093262 L 132.3144226074219 15.66667079925537 C 132.3144226074219 16 132.4343109130859 16 132.6002197265625 16 L 139.0291137695312 16 C 139.1950378417969 16 139.3149108886719 16 139.3149108886719 15.66663074493408 L 139.3151702880859 8.414206504821777 L 136.9009704589844 6.000001907348633 L 132.6002197265625 6.000001907348633 M 132.6002197265625 5.000001907348633 L 137.315185546875 5.000001907348633 L 140.315185546875 8.000000953674316 L 140.3149108886719 15.66667079925537 C 140.3149108886719 16.49521064758301 139.8161468505859 17 139.0291137695312 17 L 132.6002197265625 17 C 131.8132019042969 17 131.3144226074219 16.49521064758301 131.3144226074219 15.66667079925537 L 131.3144226074219 6.333331108093262 C 131.3144226074219 5.504791259765625 131.8132019042969 5.000001907348633 132.6002197265625 5.000001907348633 Z" stroke="none" fill="#000"/></g><path d="M145.478,8.917h-3v-3Z" transform="translate(-138.312 -7.416)" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(3.333 2)"><g transform="translate(-132.648 -7)" fill="none" stroke-linejoin="round"><path d="M143.315,9V19.222A1.621,1.621,0,0,1,141.6,21h-8.572a1.621,1.621,0,0,1-1.714-1.778V6.778A1.621,1.621,0,0,1,133.029,5h6.287Z" stroke="none"/><path d="M 133.0288238525391 6.000001907348633 C 132.6755676269531 6.000001907348633 132.3144378662109 6.092411041259766 132.3144378662109 6.777780532836914 L 132.3144378662109 19.22222137451172 C 132.3144378662109 19.90759086608887 132.6755676269531 20 133.0288238525391 20 L 141.6006927490234 20 C 141.9539489746094 20 142.3150787353516 19.90759086608887 142.3150787353516 19.22219085693359 L 142.3154144287109 9.414207458496094 L 138.9012145996094 6.000001907348633 L 133.0288238525391 6.000001907348633 M 133.0288238525391 5.000001907348633 L 139.3154296875 5.000001907348633 L 143.3154296875 9.000001907348633 L 143.3150787353516 19.22222137451172 C 143.3150787353516 20.32695007324219 142.6500549316406 21 141.6006927490234 21 L 133.0288238525391 21 C 131.9794616699219 21 131.3144378662109 20.32695007324219 131.3144378662109 19.22222137451172 L 131.3144378662109 6.777780532836914 C 131.3144378662109 5.673051834106445 131.9794616699219 5.000001907348633 133.0288238525391 5.000001907348633 Z" stroke="none" fill="#000"/></g><path d="M146.478,9.917h-4v-4Z" transform="translate(-136.312 -7.415)" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(3.333 4.666)"><g transform="translate(0 -4)"><line x2="9" transform="translate(-2.833 10.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="2" transform="translate(10.167 10.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(5.667 8.334)" fill="none" stroke="#000" stroke-width="1"><circle cx="2.5" cy="2.5" r="2.5" stroke="none"/><circle cx="2.5" cy="2.5" r="2" fill="none"/></g></g><g transform="translate(0 -11)"><line x2="2" transform="translate(-2.833 10.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="9" transform="translate(3.167 10.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(-1.333 8.334)" fill="none" stroke="#000" stroke-width="1"><circle cx="2.5" cy="2.5" r="2.5" stroke="none"/><circle cx="2.5" cy="2.5" r="2" fill="none"/></g></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.009" viewBox="0 0 16 16.009"><rect width="16" height="16" transform="translate(0 0.001)" fill="#fff" opacity="0"/><g transform="translate(3.333 2.001)"><g transform="translate(673.419 -67.961)" stroke-linejoin="round"><path d="M -666.623779296875 81.46867370605469 C -666.70947265625 81.46867370605469 -666.788330078125 81.44034576416016 -666.8580322265625 81.38449096679688 L -666.88818359375 81.36032867431641 L -666.9216918945312 81.34108734130859 L -670.8352661132812 79.09435272216797 C -671.1005249023438 78.86886596679688 -671.251953125 78.54673767089844 -671.251953125 78.205078125 L -671.251953125 73.93792724609375 C -671.251953125 73.73109436035156 -671.3007202148438 73.26187896728516 -671.4853515625 72.96644592285156 L -671.4918212890625 72.95611572265625 L -671.498779296875 72.94610595703125 L -675.1333618164062 67.7154541015625 C -675.2872314453125 67.46045684814453 -675.2926635742188 67.16593933105469 -675.1478881835938 66.90561676025391 C -674.9935913085938 66.62825012207031 -674.7057495117188 66.46265411376953 -674.3779296875 66.46265411376953 L -663.1260375976562 66.45998382568359 C -662.7977294921875 66.45998382568359 -662.509521484375 66.62615966796875 -662.3552856445312 66.90449523925781 C -662.21044921875 67.165771484375 -662.216796875 67.46089172363281 -662.3721923828125 67.71567535400391 L -666.0053100585938 73.00754547119141 L -666.0114135742188 73.01646423339844 L -666.0171508789062 73.02565002441406 C -666.1707763671875 73.27154541015625 -666.251953125 73.55392456054688 -666.251953125 73.84224700927734 L -666.251953125 81.123046875 C -666.251953125 81.3614501953125 -666.4693603515625 81.46867370605469 -666.623779296875 81.46867370605469 Z" stroke="none"/><path d="M -663.1260986328125 66.95998382568359 L -663.1259155273438 66.95998382568359 L -674.3779296875 66.96265411376953 C -674.5850830078125 66.96265411376953 -674.6798095703125 67.09273529052734 -674.7109375 67.14866638183594 C -674.7493896484375 67.21779632568359 -674.779541015625 67.32441711425781 -674.711669921875 67.44607543945312 L -671.088134765625 72.66078948974609 C -671.078857421875 72.67414093017578 -671.0699462890625 72.68769836425781 -671.0613403320312 72.70148468017578 C -670.7606201171875 73.18267059326172 -670.751953125 73.86204528808594 -670.751953125 73.93792724609375 L -670.751953125 78.205078125 C -670.751953125 78.38613128662109 -670.67578125 78.55857849121094 -670.5411376953125 78.68667602539062 L -666.751953125 80.86200714111328 L -666.751953125 73.84224700927734 C -666.751953125 73.46012878417969 -666.6444702148438 73.08613586425781 -666.441162109375 72.76070404052734 C -666.4335327148438 72.74848937988281 -666.4256591796875 72.73643493652344 -666.41748046875 72.72455596923828 L -662.793701171875 67.44622802734375 C -662.7238159179688 67.32410430908203 -662.7539672851562 67.21654510498047 -662.7926025390625 67.14689636230469 C -662.82373046875 67.0906982421875 -662.9185791015625 66.96000671386719 -663.1260986328125 66.95998382568359 M -663.1261596679688 65.95998382568359 C -662.0560302734375 65.95998382568359 -661.3973999023438 67.09939575195312 -661.9533081054688 67.98892974853516 L -665.5930786132812 73.29055023193359 C -665.6971435546875 73.45713043212891 -665.751953125 73.64768981933594 -665.751953125 73.84224700927734 L -665.751953125 81.123046875 C -665.751953125 81.83664703369141 -666.6050415039062 82.22783660888672 -667.170654296875 81.77470397949219 L -671.1206665039062 79.50704956054688 C -671.5203857421875 79.18655395507812 -671.751953125 78.70879364013672 -671.751953125 78.205078125 L -671.751953125 73.93792724609375 C -671.751953125 73.74403381347656 -671.8060913085938 73.39667510986328 -671.9093627929688 73.23141479492188 L -675.5521850585938 67.98892974853516 C -676.1047973632812 67.09872436523438 -675.4468383789062 65.96265411376953 -674.3779296875 65.96265411376953 L -663.1261596679688 65.95998382568359 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.009" viewBox="0 0 16 16.009"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.999 0)"><g transform="translate(674.752 -65.96)" fill="none" stroke-linejoin="round"><path d="M-674.378,65.963l11.252,0a1.335,1.335,0,0,1,1.173,2.029l-3.64,5.3a1.04,1.04,0,0,0-.159.552v7.281a.87.87,0,0,1-1.419.652l-3.95-2.268a1.67,1.67,0,0,1-.631-1.3V73.938a1.652,1.652,0,0,0-.157-.707l-3.643-5.242A1.335,1.335,0,0,1-674.378,65.963Z" stroke="none"/><path d="M -663.1260986328125 66.95998382568359 L -663.1259155273438 66.95998382568359 L -674.3779296875 66.96265411376953 C -674.5850830078125 66.96265411376953 -674.6798095703125 67.09273529052734 -674.7109375 67.14866638183594 C -674.7493896484375 67.21779632568359 -674.779541015625 67.32441711425781 -674.711669921875 67.44607543945312 L -671.088134765625 72.66078948974609 C -671.078857421875 72.67414093017578 -671.0699462890625 72.68769836425781 -671.0613403320312 72.70148468017578 C -670.7606201171875 73.18267059326172 -670.751953125 73.86204528808594 -670.751953125 73.93792724609375 L -670.751953125 78.205078125 C -670.751953125 78.38613128662109 -670.67578125 78.55857849121094 -670.5411376953125 78.68667602539062 L -666.751953125 80.86200714111328 L -666.751953125 73.84224700927734 C -666.751953125 73.46012878417969 -666.6444702148438 73.08613586425781 -666.441162109375 72.76070404052734 C -666.4335327148438 72.74848937988281 -666.4256591796875 72.73643493652344 -666.41748046875 72.72455596923828 L -662.793701171875 67.44622802734375 C -662.7238159179688 67.32410430908203 -662.7539672851562 67.21654510498047 -662.7926025390625 67.14689636230469 C -662.82373046875 67.0906982421875 -662.9185791015625 66.96000671386719 -663.1260986328125 66.95998382568359 M -663.1261596679688 65.95998382568359 C -662.0560302734375 65.95998382568359 -661.3973999023438 67.09939575195312 -661.9533081054688 67.98892974853516 L -665.5930786132812 73.29055023193359 C -665.6971435546875 73.45713043212891 -665.751953125 73.64768981933594 -665.751953125 73.84224700927734 L -665.751953125 81.123046875 C -665.751953125 81.83664703369141 -666.6050415039062 82.22783660888672 -667.170654296875 81.77470397949219 L -671.1206665039062 79.50704956054688 C -671.5203857421875 79.18655395507812 -671.751953125 78.70879364013672 -671.751953125 78.205078125 L -671.751953125 73.93792724609375 C -671.751953125 73.74403381347656 -671.8060913085938 73.39667510986328 -671.9093627929688 73.23141479492188 L -675.5521850585938 67.98892974853516 C -676.1047973632812 67.09872436523438 -675.4468383789062 65.96265411376953 -674.3779296875 65.96265411376953 L -663.1261596679688 65.95998382568359 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.049 1.199)"><path d="M8.976-830.507c1.962.461,3.088,1.5,3.088,2.861,0,1.76-2.636,3.139-6,3.139s-6-1.379-6-3.139c0-1.358,1.126-2.4,3.088-2.861" transform="translate(0.387 838.808)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(5.785 -1.033)"><path d="M7.451,11.879V.379h7l-3,2.5,3,2.5h-7" transform="translate(-6.785 -0.045)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.156 1.518)"><g transform="translate(0.156 0.482)" fill="none"><path d="M2,12a2,2,0,0,1-2-2V3c0-.02,0-.04,0-.06V.6A1.638,1.638,0,0,1,1.43-1l5,0,.693,0L8.559,1H14a2,2,0,0,1,2,2v7a2,2,0,0,1-2,2Z" stroke="none"/><path d="M 14.00040054321289 10.99970054626465 C 14.55169010162354 10.99970054626465 15.00020027160645 10.55079078674316 15.00020027160645 9.999000549316406 L 15.00020027160645 2.999700307846069 C 15.00020027160645 2.447910308837891 14.55169010162354 1.999000310897827 14.00040054321289 1.999000310897827 L 8.046740531921387 1.999000310897827 L 6.609145641326904 0.000567753566429019 L 6.429960250854492 0.0001003410361590795 L 1.435529828071594 0.001898515853099525 C 1.313629150390625 0.01016018912196159 1.001800298690796 0.3027100265026093 1.001800298690796 0.6039003133773804 L 1.001370310783386 2.969350337982178 C 1.001080274581909 2.979450225830078 1.000900268554688 2.989530324935913 1.000900268554688 2.999700307846069 L 1.000900268554688 9.999000549316406 C 1.000900268554688 10.55079078674316 1.449410319328308 10.99970054626465 2.000700235366821 10.99970054626465 L 14.00040054321289 10.99970054626465 M 14.00040054321289 11.99970054626465 L 2.000700235366821 11.99970054626465 C 0.8964002728462219 11.99970054626465 0.0009002700680866838 11.10420036315918 0.0009002700680866838 9.999000549316406 L 0.0009002700680866838 2.999700307846069 C 0.0009002700680866838 2.979730367660522 0.001220270060002804 2.959940433502197 0.001800270052626729 2.940110445022583 C 0.001800270052626729 2.634180307388306 0.001800270052626729 1.307190299034119 0.001800270052626729 0.6039003133773804 C 0.001800270052626729 -0.1970996558666229 0.7128002643585205 -0.994499683380127 1.430100321769714 -0.998099684715271 L 6.429600238800049 -0.999899685382843 L 7.122600078582764 -0.998099684715271 L 8.559240341186523 0.9990003705024719 L 14.00040054321289 0.9990003705024719 C 15.10470008850098 0.9990003705024719 16.00020027160645 1.894500374794006 16.00020027160645 2.999700307846069 L 16.00020027160645 9.999000549316406 C 16.00020027160645 11.10420036315918 15.10470008850098 11.99970054626465 14.00040054321289 11.99970054626465 Z" stroke="none" fill="#000"/></g><path d="M3.1,16.588l4-5.5h10" transform="translate(-1.947 -5.105)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.333 1.6)"><line y2="11" transform="translate(11.833 0.899)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><g transform="translate(0.333 0.399)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"><rect width="16" height="12" rx="2" stroke="none"/><rect x="0.5" y="0.5" width="15" height="11" rx="1.5" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16.006" height="16" viewBox="0 0 16.006 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 4)"><path d="M-53.833,68.915h-2.5a1.568,1.568,0,0,0-1.25.417A1.569,1.569,0,0,0-58,70.582v6.667a1.571,1.571,0,0,0,.417,1.25,1.568,1.568,0,0,0,1.25.417h11.667a1.568,1.568,0,0,0,1.25-.417A1.568,1.568,0,0,0-43,77.248V70.414c0-.531.086-.864-.261-1.213s-.71-.286-1.239-.286h-2.667" transform="translate(56.5 -70.415)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(55.101 -75.415)" fill="none" stroke-miterlimit="10"><path d="M-51.624,84.416h5.043l.431,1.062a.7.7,0,0,1-.679.938h-4.543a.7.7,0,0,1-.68-.936Z" stroke="none"/><path d="M -51.62363815307617 84.41600799560547 L -46.58088684082031 84.41600799560547 L -46.14959716796875 85.47846984863281 C -45.96616744995117 85.93022918701172 -46.31779861450195 86.41600799560547 -46.82875823974609 86.41600799560547 L -51.37184906005859 86.41600799560547 C -51.88182830810547 86.41600799560547 -52.23344802856445 85.93209075927734 -52.05198669433594 85.4803466796875 L -51.62363815307617 84.41600799560547 Z" stroke="none" fill="#000"/></g><path d="M-49.5,74.181l2,2,2-2" transform="translate(53.5 -70.682)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y1="6" transform="translate(6 -1.001)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.667 0.666)"><g transform="translate(-0.667 -0.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="7" height="7" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="6" height="6" rx="0.5" fill="none"/></g><g transform="translate(-0.667 8.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="7" height="7" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="6" height="6" rx="0.5" fill="none"/></g><g transform="translate(8.333 -0.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="7" height="7" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="6" height="6" rx="0.5" fill="none"/></g><g transform="translate(8.333 8.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="7" height="7" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="6" height="6" rx="0.5" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.001" viewBox="0 0 16 16.001"><g transform="translate(0)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.333 2)"><g transform="translate(5.667 7)" fill="none" stroke="#000" stroke-width="1"><rect width="5" height="5" rx="2.5" stroke="none"/><rect x="0.5" y="0.5" width="4" height="4" rx="2" fill="none"/></g><g transform="translate(-1.333 5)" fill="none" stroke="#000" stroke-width="1"><rect width="6" height="6" rx="3" stroke="none"/><rect x="0.5" y="0.5" width="5" height="5" rx="2.5" fill="none"/></g><path d="M0,0A2,2,0,0,1,2,2,2,2,0,0,1,0,4" transform="translate(6.167 14.001) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/><path d="M0,0A2.5,2.5,0,0,1,2.5,2.5,2.5,2.5,0,0,1,0,5" transform="translate(-0.833 14.001) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/><g transform="translate(9.167 -1)"><line x2="6" transform="translate(-1 2.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line y2="6" transform="translate(2 -0.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g transform="translate(0)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.333 1.334)"><g transform="translate(-1.333 0.666)" fill="none" stroke="#000" stroke-width="1"><rect width="8" height="8" rx="4" stroke="none"/><rect x="0.5" y="0.5" width="7" height="7" rx="3.5" fill="none"/></g><path d="M0,0A3.5,3.5,0,0,1,3.5,3.5,3.5,3.5,0,0,1,0,7" transform="translate(-0.833 12.666) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/><path d="M0,0A2.5,2.5,0,0,1,2.5,2.5,2.5,2.5,0,0,1,0,5" transform="translate(9.167 12.666) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/><g transform="translate(8.667 3.666)" fill="none" stroke="#000" stroke-width="1"><rect width="6" height="6" rx="3" stroke="none"/><rect x="0.5" y="0.5" width="5" height="5" rx="2.5" fill="none"/></g></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0 1)"><g transform="translate(554 -67.531)" stroke-miterlimit="10"><path d="M -545.999755859375 80.47274780273438 L -551.9839477539062 74.47150421142578 C -552.63916015625 73.81432342529297 -553 72.94020080566406 -553 72.01023864746094 C -553 71.08026885986328 -552.63916015625 70.20616149902344 -551.98388671875 69.54892730712891 C -551.3294677734375 68.89250946044922 -550.4594116210938 68.53101348876953 -549.5339965820312 68.53101348876953 C -548.6087036132812 68.53101348876953 -547.73876953125 68.89250946044922 -547.0843505859375 69.54891967773438 L -546.7080078125 69.92622375488281 L -545.999755859375 70.63623809814453 L -545.2918090820312 69.92600250244141 L -544.9158325195312 69.54888916015625 C -544.261474609375 68.89252471923828 -543.3914184570312 68.53101348876953 -542.466064453125 68.53101348876953 C -541.5407104492188 68.53101348876953 -540.670654296875 68.89252471923828 -540.0161743164062 69.5489501953125 C -539.3609008789062 70.20623779296875 -539 71.08035278320312 -539 72.01023864746094 C -539 72.94013214111328 -539.3609008789062 73.81425476074219 -540.0162353515625 74.47157287597656 L -545.999755859375 80.47274780273438 Z" stroke="none"/><path d="M -549.5339965820312 69.53101348876953 C -550.1917724609375 69.53101348876953 -550.810302734375 69.78810882568359 -551.2756958007812 70.25497436523438 C -551.7427978515625 70.72344207763672 -552 71.34680938720703 -552 72.01023864746094 C -552 72.67366790771484 -551.7427978515625 73.29705047607422 -551.27587890625 73.76540374755859 L -545.999755859375 79.05648803710938 L -540.7244262695312 73.76554870605469 C -540.2572631835938 73.29697418212891 -540 72.67359161376953 -540 72.01023864746094 C -540 71.34689331054688 -540.2572631835938 70.72351837158203 -540.724365234375 70.2550048828125 C -541.1898193359375 69.78813171386719 -541.8084106445312 69.53101348876953 -542.466064453125 69.53101348876953 C -543.1237182617188 69.53101348876953 -543.7423095703125 69.78813171386719 -544.2076416015625 70.2548828125 L -545.9995727539062 72.05245971679688 L -547.7925415039062 70.25494384765625 C -548.2579345703125 69.78810882568359 -548.8764038085938 69.53101348876953 -549.5339965820312 69.53101348876953 M -549.5339965820312 67.53101348876953 C -548.3413696289062 67.53101348876953 -547.2194213867188 67.99704742431641 -546.3761596679688 68.84290313720703 L -546 69.22000885009766 L -545.6240844726562 68.84290313720703 C -544.78076171875 67.99704742431641 -543.65869140625 67.53101348876953 -542.466064453125 67.53101348876953 C -541.2733764648438 67.53101348876953 -540.1513671875 67.99704742431641 -539.3080444335938 68.84290313720703 C -538.4647827148438 69.688720703125 -538 70.81336975097656 -538 72.01023864746094 C -538 73.20642852783203 -538.4647827148438 74.33176422119141 -539.3080444335938 75.17760467529297 L -545.3900756835938 81.27760314941406 C -545.552001953125 81.44007873535156 -545.7714233398438 81.53102111816406 -546 81.53102111816406 C -546.2286987304688 81.53102111816406 -546.4480590820312 81.44007873535156 -546.609375 81.27760314941406 L -552.6920776367188 75.17760467529297 C -553.5353393554688 74.33176422119141 -554 73.20709228515625 -554 72.01023864746094 C -554 70.81404876708984 -553.5353393554688 69.688720703125 -552.6920776367188 68.84290313720703 C -551.8488159179688 67.99704742431641 -550.7267456054688 67.53101348876953 -549.5339965820312 67.53101348876953 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0 1)"><g transform="translate(554 -67.531)" fill="none" stroke-miterlimit="10"><path d="M-542.466,67.531a4.431,4.431,0,0,0-3.158,1.312l-.376.377-.376-.377a4.431,4.431,0,0,0-3.158-1.312,4.431,4.431,0,0,0-3.158,1.312A4.458,4.458,0,0,0-554,72.01a4.457,4.457,0,0,0,1.308,3.167l6.083,6.1a.858.858,0,0,0,.609.253.861.861,0,0,0,.61-.253l6.082-6.1A4.458,4.458,0,0,0-538,72.01a4.457,4.457,0,0,0-1.308-3.167A4.431,4.431,0,0,0-542.466,67.531Z" stroke="none"/><path d="M -549.5339965820312 68.53101348876953 C -550.4594116210938 68.53101348876953 -551.3295288085938 68.89251708984375 -551.98388671875 69.54894256591797 C -552.63916015625 70.20616149902344 -553 71.08026123046875 -553 72.01024627685547 C -553 72.94020080566406 -552.63916015625 73.81431579589844 -551.9839477539062 74.47149658203125 L -545.999755859375 80.47276306152344 L -540.0162353515625 74.47156524658203 C -539.3609008789062 73.81424713134766 -539 72.94012451171875 -539 72.01024627685547 C -539 71.08034515380859 -539.3609008789062 70.20624542236328 -540.0162353515625 69.5489501953125 C -540.670654296875 68.89252471923828 -541.5407104492188 68.53101348876953 -542.466064453125 68.53101348876953 C -543.3914184570312 68.53101348876953 -544.261474609375 68.89252471923828 -544.9158325195312 69.54889678955078 L -545.999755859375 70.63624572753906 L -547.0843505859375 69.54891967773438 C -547.73876953125 68.89251708984375 -548.6087036132812 68.53101348876953 -549.5339965820312 68.53101348876953 M -549.5339965820312 67.53101348876953 C -548.3413696289062 67.53101348876953 -547.2194213867188 67.99703979492188 -546.3761596679688 68.84290313720703 L -546 69.22001647949219 L -545.6240844726562 68.84290313720703 C -544.78076171875 67.99703979492188 -543.65869140625 67.53101348876953 -542.466064453125 67.53101348876953 C -541.2733764648438 67.53101348876953 -540.1513671875 67.99703979492188 -539.3080444335938 68.84290313720703 C -538.4647827148438 69.68871307373047 -538 70.81336975097656 -538 72.01024627685547 C -538 73.20643615722656 -538.4647827148438 74.33175659179688 -539.3080444335938 75.17759704589844 L -545.3900756835938 81.27760314941406 C -545.552001953125 81.44007110595703 -545.7714233398438 81.53101348876953 -546 81.53101348876953 C -546.2286987304688 81.53101348876953 -546.4480590820312 81.44007110595703 -546.609375 81.27760314941406 L -552.6920776367188 75.17759704589844 C -553.5353393554688 74.33175659179688 -554 73.20708465576172 -554 72.01024627685547 C -554 70.81405639648438 -553.5353393554688 69.68871307373047 -552.6920776367188 68.84290313720703 C -551.8488159179688 67.99703979492188 -550.7267456054688 67.53101348876953 -549.5339965820312 67.53101348876953 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g transform="translate(0 0)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 2.666)"><path d="M.289,1.513,4.575,5.8l7.714-7.714L8-6.2Z" transform="translate(1.211 4.035)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/><path d="M4.789,7.8l2.5,2.5-1.5,1.5h-1.5l-1-1V9.3Z" transform="translate(-2.789 -0.964)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M1.289,11.8l-1,.667,1,.333,1-.667Z" transform="translate(-0.789 -1.465)" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" transform="translate(0)" fill="#fff" opacity="0"/><g transform="translate(-0.09 -0.352)"><g transform="translate(0.09 0.352)" fill="rgba(0,0,0,0)" stroke-miterlimit="10"><path d="M 6.500200271606445 14.49947547912598 L 5.000430107116699 14.49940013885498 C 4.14663028717041 14.49806976318359 3.501140117645264 13.77134037017822 3.49970006942749 12.80895042419434 L 3.49970006942749 7.999199867248535 L 3.49970006942749 7.499199867248535 L 2.99970006942749 7.499199867248535 L 0.9567001461982727 7.499199867248535 C 0.8324501514434814 7.499199867248535 0.7371201515197754 7.486480236053467 0.6567001342773438 7.459159851074219 C 0.5731701254844666 7.430240154266357 0.5416601300239563 7.396399974822998 0.5222301483154297 7.367249965667725 C 0.5104201436042786 7.349760055541992 0.499780148267746 7.318809986114502 0.4999901354312897 7.29095983505249 C 0.5001983642578125 7.249019145965576 0.5079524517059326 7.19917106628418 0.5624661445617676 7.111691474914551 C 0.6091914772987366 7.039515495300293 0.6727991104125977 6.969462394714355 0.7620422840118408 6.891958713531494 L 7.181450366973877 1.796520113945007 L 7.188390254974365 1.791020035743713 L 7.195120334625244 1.785280108451843 C 7.410820007324219 1.601250052452087 7.696700096130371 1.499900102615356 8.000100135803223 1.499900102615356 C 8.303520202636719 1.499900102615356 8.589179992675781 1.601380109786987 8.804470062255859 1.785660028457642 L 8.811530113220215 1.791700124740601 L 8.81881046295166 1.797470092773438 L 15.23848438262939 6.891508102416992 C 15.3276424407959 6.969587326049805 15.39114284515381 7.039757251739502 15.43764019012451 7.111541271209717 C 15.491868019104 7.198548793792725 15.49979400634766 7.249892711639404 15.50022983551025 7.292409896850586 C 15.50042057037354 7.318809986114502 15.48978042602539 7.349760055541992 15.47966003417969 7.364729881286621 L 15.47825050354004 7.366819858551025 L 15.4768705368042 7.368919849395752 C 15.46095561981201 7.39299201965332 15.43653964996338 7.414951324462891 15.40792465209961 7.430988788604736 C 15.3406867980957 7.466127872467041 15.24885272979736 7.498362064361572 15.04147052764893 7.499199867248535 L 13.0004997253418 7.499199867248535 L 12.5004997253418 7.499199867248535 L 12.5004997253418 7.999199867248535 L 12.5004997253418 12.99960041046143 C 12.49917030334473 13.89498043060303 11.89577007293701 14.49800968170166 10.99902057647705 14.49940013885498 L 9.5 14.49940013885498 L 9.5 11.00069999694824 L 9.5 10.50069999694824 L 9 10.50069999694824 L 7.000200271606445 10.50069999694824 L 6.500200271606445 10.50069999694824 L 6.500200271606445 11.00069999694824 L 6.500200271606445 14.49947547912598 Z" stroke="none"/><path d="M 6.000200271606445 13.99944972991943 L 6.000200271606445 10.00069999694824 L 10 10.00069999694824 L 10 13.99940013885498 L 10.99824047088623 13.99940013885498 C 11.62489032745361 13.9984302520752 11.9995698928833 13.62411022186279 12.0004997253418 12.99960041046143 L 12.0004997253418 6.999199867248535 L 14.56981563568115 6.999207973480225 L 8.479340553283691 2.165510177612305 C 8.354570388793945 2.058720111846924 8.184370040893555 1.999900102615356 8.000100135803223 1.999900102615356 C 7.815560340881348 1.999900102615356 7.644930362701416 2.058770179748535 7.51963996887207 2.165650129318237 L 7.492310047149658 2.18815016746521 L 1.431184887886047 6.999199867248535 L 3.99970006942749 6.999199867248535 L 3.99970006942749 12.8082103729248 C 4.000730037689209 13.49752998352051 4.422240257263184 13.99849987030029 5.000450134277344 13.99940013885498 L 6.000200271606445 13.99944972991943 M 7.000200271606445 14.9995002746582 L 5.000400066375732 14.99940013885498 C 3.861670017242432 14.99763011932373 3.001560211181641 14.05626010894775 2.99970006942749 12.80970001220703 L 2.99970006942749 7.999199867248535 L 0.9567001461982727 7.999199867248535 C 0.776120126247406 7.999199867248535 0.6296901106834412 7.978040218353271 0.4959001243114471 7.932600021362305 C 0.3229501247406006 7.872730255126953 0.1954801380634308 7.778520107269287 0.106200136244297 7.644599914550781 C 0.03779013454914093 7.543320178985596 -0.0009198642219416797 7.413080215454102 1.358032193365943e-07 7.287300109863281 C 0.0007701357826590538 7.135960102081299 0.0453801341354847 6.994969844818115 0.1404001414775848 6.843600273132324 C 0.2152901291847229 6.727020263671875 0.3113701343536377 6.620069980621338 0.4428001344203949 6.506999969482422 L 6.87060022354126 1.404900074005127 C 7.17671012878418 1.143740057945251 7.577850341796875 0.9999000430107117 8.000100135803223 0.9999000430107117 C 8.422659873962402 0.9999000430107117 8.823790550231934 1.144050121307373 9.129600524902344 1.405800104141235 L 15.55830001831055 6.506999969482422 C 15.68955993652344 6.620759963989258 15.78534984588623 6.727710247039795 15.85980033874512 6.843600273132324 C 15.95403003692627 6.993710041046143 15.9986400604248 7.134690284729004 16.00020027160645 7.287300109863281 C 16.00111961364746 7.413090229034424 15.96240997314453 7.543320178985596 15.89400005340576 7.644599914550781 C 15.83250999450684 7.737639904022217 15.74629974365234 7.816070079803467 15.644700050354 7.871399879455566 C 15.47735023498535 7.959949970245361 15.29755973815918 7.998169898986816 15.04349994659424 7.999199867248535 L 13.0004997253418 7.999199867248535 L 13.0004997253418 12.99960041046143 C 12.99874973297119 14.17522048950195 12.17603015899658 14.9975700378418 10.99979972839355 14.99940013885498 L 9 14.99940013885498 L 9 11.00069999694824 L 7.000200271606445 11.00069999694824 L 7.000200271606445 14.9995002746582 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 0.375)"><path d="M195.767,251.689c0-.33,1.2-1.03,1.833-1.667a6.017,6.017,0,0,0,1.833-4.167v-1.667h-11v1.667a6.014,6.014,0,0,0,1.833,4.167c.631.637,1.833,1.337,1.833,1.667s-1.2,1.03-1.833,1.667a6.015,6.015,0,0,0-1.833,4.167v1.667h11v-1.667a6.02,6.02,0,0,0-1.833-4.167C196.968,252.718,195.767,252.02,195.767,251.689Z" transform="translate(-187.933 -244.064)" fill="none" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1"/><line x1="9" transform="translate(1.5 4.125)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><ellipse cx="4" cy="1" rx="4" ry="1" transform="translate(2 13.625)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.667 0.999)"><g transform="translate(16.667 1.001) rotate(90)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="12" height="16" rx="2" stroke="none"/><rect x="0.5" y="0.5" width="11" height="15" rx="1.5" fill="none"/></g><path d="M-551.037,82.09l9.5-5.5,3.5,5.5" transform="translate(553.2 -70.088)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><circle cx="1.5" cy="1.5" r="1.5" transform="translate(2.667 3.001)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M9.165,8l1,2,2.5-1.5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.001" viewBox="0 0 16 16.001"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.333 0.334)"><circle cx="8" cy="8" r="8" transform="translate(-0.333 -0.333)"/><line y1="5" transform="translate(7.667 7.166)" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line y1="1" transform="translate(7.668 3.166)" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.334 -0.334)"><line y2="1" transform="translate(8.334 3.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y2="5" transform="translate(8.334 7.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><g transform="translate(0.334 0.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.265" viewBox="0 0 16 16.265"><g transform="translate(0 0.131)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.699 1.301)"><line x1="7" transform="translate(3.801 -0.8)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x1="7" transform="translate(-0.199 14.2)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x1="5" y2="15" transform="translate(2.801 -0.8)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.004" viewBox="0 0 16 16.004"><g transform="translate(0 0.002)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-948 -1896)"><path d="M22191,24962h-2.5v-2.707l.145-.15,6.5-6.5.063-.064a4.252,4.252,0,1,1,8.289-1.332,4.255,4.255,0,0,1-5.578,4.035l-.066.066-1.5,1.5-.145.15h-1.709v2h-2v1.705l-.143.15-1,1-.143.15Z" transform="translate(-21240 -23050.5)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/><circle cx="1" cy="1" r="1" transform="translate(959 1899)"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g><line x2="14" transform="translate(1 5)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"/><line x2="14" transform="translate(1 11)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"/><path d="M0,2A16.394,16.394,0,0,1,7,0a16.394,16.394,0,0,1,7,2" transform="translate(4.5 15) rotate(-90)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><path d="M0,0A16.394,16.394,0,0,0,7,2a16.394,16.394,0,0,0,7-2" transform="translate(9.5 15) rotate(-90)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.007" viewBox="0 0 16 16.007"><g transform="translate(0 0.007)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.5 0.5)"><path d="M3.4,14.712l1-3.778a.158.158,0,0,1,.287-.047,1.762,1.762,0,0,0,3.161-.452A1.8,1.8,0,0,0,6.621,8.15a1.741,1.741,0,0,0-1.242.124.16.16,0,0,1-.225-.186l1-3.779L9.876,5.322a.161.161,0,0,0,.183-.229,1.812,1.812,0,0,1-.122-1.26A1.768,1.768,0,0,1,12.19,2.586,1.807,1.807,0,0,1,13.376,4.7a1.788,1.788,0,0,1-.741,1.089.162.162,0,0,0,.046.291L16.405,7.1,13.658,17.5Z" transform="translate(-3.405 -2.5)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><path d="M12197,18688a2.8,2.8,0,0,1-1.825-.648,2.119,2.119,0,0,1-.778-1.617v-.014l1-1v1.018a1.109,1.109,0,0,0,.432.854,1.784,1.784,0,0,0,1.173.408,1.8,1.8,0,0,0,1.173-.408,1.143,1.143,0,0,0,.431-.857v-1.924l.239-.281a10.14,10.14,0,0,0,1.524-2.252,6.226,6.226,0,0,0,.606-2.135l1-1a4.332,4.332,0,0,1,.022.434,7.244,7.244,0,0,1-.731,3.137,11.083,11.083,0,0,1-1.665,2.473v1.553a2.124,2.124,0,0,1-.784,1.617A2.772,2.772,0,0,1,12197,18688Zm-3.755-5.369v0a9,9,0,0,1-.513-.924,7.153,7.153,0,0,1-.731-3.133,4.328,4.328,0,0,1,1.473-3.242,5.336,5.336,0,0,1,7.055,0,.027.027,0,0,0,.006.008h0l0,0-.71.709a4.344,4.344,0,0,0-5.684.023,3.347,3.347,0,0,0-1.145,2.5,6.2,6.2,0,0,0,.633,2.7c.1.205.21.412.34.631l-.726.725Z" transform="translate(-12189 -18673)"/><line y1="14" x2="14" transform="translate(1 1)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.666 0.443)"><g transform="translate(178.333 -65.943)" fill="none" stroke-miterlimit="10"><path d="M-168,71.071a4.372,4.372,0,0,0-1.474-3.241A5.233,5.233,0,0,0-173,66.5a5.233,5.233,0,0,0-3.527,1.33A4.372,4.372,0,0,0-178,71.071a7.179,7.179,0,0,0,.734,3.132,11.418,11.418,0,0,0,1.663,2.468v1.564a2.126,2.126,0,0,0,.782,1.619A2.808,2.808,0,0,0-173,80.5a2.808,2.808,0,0,0,1.821-.646,2.126,2.126,0,0,0,.782-1.619V76.683a11.308,11.308,0,0,0,1.667-2.474A7.213,7.213,0,0,0-168,71.071Z" stroke="none"/><path d="M -172.9994964599609 67.49998474121094 C -174.0811309814453 67.49998474121094 -175.0946350097656 67.87992095947266 -175.8538513183594 68.5703125 C -176.5934295654297 69.24186706542969 -177.0004730224609 70.12965393066406 -176.9999847412109 71.07126617431641 C -177.0005187988281 71.99250793457031 -176.7924957275391 72.87577819824219 -176.3642272949219 73.77119445800781 C -176.0182189941406 74.49388122558594 -175.5207214355469 75.22975158691406 -174.8433074951172 76.0208740234375 L -174.6028900146484 76.30164337158203 L -174.6028900146484 78.23600769042969 C -174.6033020019531 78.66413116455078 -174.3348083496094 78.95545196533203 -174.1730041503906 79.09246826171875 C -173.8640441894531 79.35525512695312 -173.4472961425781 79.49998474121094 -172.9994964599609 79.49998474121094 C -172.5516967773438 79.49998474121094 -172.1349334716797 79.35525512695312 -171.8242950439453 79.09102630615234 C -171.6641998291016 78.95546722412109 -171.3956909179688 78.66412353515625 -171.3961181640625 78.23503112792969 L -171.3961181640625 76.31236267089844 L -171.1547241210938 76.03130340576172 C -170.4760589599609 75.24112701416016 -169.9778900146484 74.50409698486328 -169.6318969726562 73.77846527099609 C -169.2055053710938 72.88332366943359 -168.9984893798828 71.99778747558594 -168.9990081787109 71.07018280029297 C -168.99853515625 70.12965393066406 -169.4055786132812 69.24185180664062 -170.1456756591797 68.56982421875 C -170.9043579101562 67.87992095947266 -171.9178619384766 67.49998474121094 -172.9994964599609 67.49998474121094 M -172.9994964599609 66.49998474121094 C -171.6274719238281 66.49998474121094 -170.3792419433594 67.00580596923828 -169.472900390625 67.82997131347656 C -168.5665740966797 68.65294647216797 -167.9983673095703 69.80216217041016 -167.9990081787109 71.07068634033203 C -167.9983673095703 72.21441650390625 -168.2759094238281 73.25711822509766 -168.7290954589844 74.20850372314453 C -169.1566162109375 75.10513305664062 -169.7410583496094 75.92015838623047 -170.3961181640625 76.68285369873047 L -170.3961181640625 78.23503112792969 C -170.3954772949219 78.87599182128906 -170.7036437988281 79.45243835449219 -171.1780700683594 79.85417175292969 C -171.6524963378906 80.25772094726562 -172.2962951660156 80.49998474121094 -172.9994964599609 80.49998474121094 C -173.7026977539062 80.49998474121094 -174.3464965820312 80.25772094726562 -174.8209228515625 79.85417175292969 C -175.2953796386719 79.45243835449219 -175.603515625 78.87599182128906 -175.6028900146484 78.23503112792969 L -175.6028900146484 76.67128753662109 C -176.2554321289062 75.90921783447266 -176.8386383056641 75.09599304199219 -177.2661743164062 74.20303344726562 C -177.7212219238281 73.25164794921875 -178.0006408691406 72.21015167236328 -177.9999847412109 71.07068634033203 C -178.0006408691406 69.80216217041016 -177.4324340820312 68.65294647216797 -176.5260925292969 67.82997131347656 C -175.6197509765625 67.00580596923828 -174.3715209960938 66.49998474121094 -172.9994964599609 66.49998474121094 Z" stroke="none" fill="#000"/></g><line x2="4" transform="translate(3.335 10.557)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"/><line x1="1" y2="3" transform="translate(5.334 6.057)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-172.261,76.4l1,2.5v1.5" transform="translate(176.595 -70.339)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.479" viewBox="0 0 16 16.479"><g transform="translate(0 0.24)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.5 0.5)"><path d="M-606.212,75.462a3.82,3.82,0,0,0,5.371.78,3.8,3.8,0,0,0,.416-.362l2.3-2.319a3.883,3.883,0,0,0-.094-5.464,3.819,3.819,0,0,0-5.332,0l-1.32,1.321" transform="translate(612.045 -67.011)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-605.834,76.226a3.82,3.82,0,0,0-5.371-.78,3.806,3.806,0,0,0-.416.362l-2.3,2.319a3.883,3.883,0,0,0,.094,5.464,3.819,3.819,0,0,0,5.332,0l1.313-1.321" transform="translate(615 -69.676)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.194 -1.481)"><line y2="3" transform="translate(8.194 10.481)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(0.194 6.481)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="16" height="11" rx="2" stroke="none"/><rect x="0.5" y="0.5" width="15" height="10" rx="1.5" fill="none"/></g><path d="M259.1,10V7.835C259.1,6.269,260.662,5,262.6,5h0c1.933,0,3.5,1.269,3.5,2.835V10" transform="translate(-254.401 -3.019)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
|