zova-ui-empty 5.0.93
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/.editorconfig +9 -0
- package/.eslintignore +8 -0
- package/.eslintrc.cjs +4 -0
- package/.gitattributes +2 -0
- package/.gitignore +65 -0
- package/.npmrc +27 -0
- package/.vscode/extensions.json +9 -0
- package/.vscode/settings.json +57 -0
- package/.vscode/zova.code-snippets +18 -0
- package/LICENSE +21 -0
- package/README.md +1 -0
- package/env/.env +29 -0
- package/env/.env.development +0 -0
- package/env/.env.production +0 -0
- package/index.html +14 -0
- package/package.json +50 -0
- package/pnpm-workspace.yaml +7 -0
- package/prettier.config.cjs +2 -0
- package/public/favicon.ico +0 -0
- package/src/boot/app.vue +9 -0
- package/src/boot/main.ts +15 -0
- package/src/boot/router.ts +14 -0
- package/src/boot/zova.ts +14 -0
- package/src/css/settings.scss +19 -0
- package/src/front/_config/config/config.app.ts +16 -0
- package/src/front/_config/config/config.ts +17 -0
- package/src/front/_config/config/config.web.ts +15 -0
- package/src/front/_config/locale/en-us.ts +5 -0
- package/src/front/_config/locale/zh-cn.ts +5 -0
- package/src/front/_config/locales.ts +7 -0
- package/src/front/_config/monkey.ts +24 -0
- package/src/front/typing/env.d.ts +5 -0
- package/src/front/typing/shims-vue.d.ts +10 -0
- package/src/front/typing/types.d.ts +2 -0
- package/src/module/.gitkeep +0 -0
- package/src/module-vendor/.gitkeep +0 -0
- package/src/suite/a-demo/modules/a-demo/package.json +29 -0
- package/src/suite/a-demo/modules/a-demo/src/assets/css/module.scss +0 -0
- package/src/suite/a-demo/modules/a-demo/src/bean/.gitkeep +0 -0
- package/src/suite/a-demo/modules/a-demo/src/component/card/controller.ts +25 -0
- package/src/suite/a-demo/modules/a-demo/src/component/card/index.vue +12 -0
- package/src/suite/a-demo/modules/a-demo/src/component/card/render.tsx +35 -0
- package/src/suite/a-demo/modules/a-demo/src/config/config.ts +5 -0
- package/src/suite/a-demo/modules/a-demo/src/config/constants.ts +1 -0
- package/src/suite/a-demo/modules/a-demo/src/config/errors.ts +1 -0
- package/src/suite/a-demo/modules/a-demo/src/config/index.ts +4 -0
- package/src/suite/a-demo/modules/a-demo/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-demo/modules/a-demo/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-demo/modules/a-demo/src/config/locales.ts +7 -0
- package/src/suite/a-demo/modules/a-demo/src/index.ts +7 -0
- package/src/suite/a-demo/modules/a-demo/src/page/component/controller.ts +9 -0
- package/src/suite/a-demo/modules/a-demo/src/page/component/index.vue +10 -0
- package/src/suite/a-demo/modules/a-demo/src/page/component/render.tsx +39 -0
- package/src/suite/a-demo/modules/a-demo/src/page/state/controller.ts +21 -0
- package/src/suite/a-demo/modules/a-demo/src/page/state/index.vue +10 -0
- package/src/suite/a-demo/modules/a-demo/src/page/state/render.tsx +18 -0
- package/src/suite/a-demo/modules/a-demo/src/resource/beans.ts +4 -0
- package/src/suite/a-demo/modules/a-demo/src/resource/components.ts +3 -0
- package/src/suite/a-demo/modules/a-demo/src/resource/index.ts +3 -0
- package/src/suite/a-demo/modules/a-demo/src/resource/scope.ts +30 -0
- package/src/suite/a-demo/modules/a-demo/src/resource/this.ts +4 -0
- package/src/suite/a-demo/modules/a-demo/src/routes.ts +8 -0
- package/src/suite/a-demo/modules/a-demo/src/types.ts +1 -0
- package/src/suite/a-demo/modules/a-demo/src/typings.ts +1 -0
- package/src/suite/a-demo/modules/a-demo/tsconfig.json +5 -0
- package/src/suite/a-demo/package.json +11 -0
- package/src/suite/a-demo/tsconfig.base.json +4 -0
- package/src/suite/a-home/README.md +1 -0
- package/src/suite/a-home/modules/a-home/README.md +1 -0
- package/src/suite/a-home/modules/a-home/package.json +28 -0
- package/src/suite/a-home/modules/a-home/src/assets/css/module.scss +0 -0
- package/src/suite/a-home/modules/a-home/src/bean/.gitkeep +0 -0
- package/src/suite/a-home/modules/a-home/src/component/.gitkeep +0 -0
- package/src/suite/a-home/modules/a-home/src/config/config.ts +5 -0
- package/src/suite/a-home/modules/a-home/src/config/constants.ts +1 -0
- package/src/suite/a-home/modules/a-home/src/config/errors.ts +1 -0
- package/src/suite/a-home/modules/a-home/src/config/index.ts +4 -0
- package/src/suite/a-home/modules/a-home/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-home/modules/a-home/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-home/modules/a-home/src/config/locales.ts +7 -0
- package/src/suite/a-home/modules/a-home/src/index.ts +7 -0
- package/src/suite/a-home/modules/a-home/src/page/home/controller.ts +4 -0
- package/src/suite/a-home/modules/a-home/src/page/home/index.vue +10 -0
- package/src/suite/a-home/modules/a-home/src/page/home/render.tsx +21 -0
- package/src/suite/a-home/modules/a-home/src/resource/beans.ts +4 -0
- package/src/suite/a-home/modules/a-home/src/resource/components.ts +1 -0
- package/src/suite/a-home/modules/a-home/src/resource/index.ts +3 -0
- package/src/suite/a-home/modules/a-home/src/resource/scope.ts +30 -0
- package/src/suite/a-home/modules/a-home/src/resource/this.ts +4 -0
- package/src/suite/a-home/modules/a-home/src/routes.ts +4 -0
- package/src/suite/a-home/modules/a-home/src/types.ts +1 -0
- package/src/suite/a-home/modules/a-home/src/typings.ts +4 -0
- package/src/suite/a-home/modules/a-home/tsconfig.json +5 -0
- package/src/suite/a-home/modules/home-api/package.json +34 -0
- package/src/suite/a-home/modules/home-api/src/bean/store.api.ts +22 -0
- package/src/suite/a-home/modules/home-api/src/component/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-api/src/config/config.ts +5 -0
- package/src/suite/a-home/modules/home-api/src/config/constants.ts +1 -0
- package/src/suite/a-home/modules/home-api/src/config/errors.ts +1 -0
- package/src/suite/a-home/modules/home-api/src/config/index.ts +4 -0
- package/src/suite/a-home/modules/home-api/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-home/modules/home-api/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-home/modules/home-api/src/config/locales.ts +7 -0
- package/src/suite/a-home/modules/home-api/src/index.ts +7 -0
- package/src/suite/a-home/modules/home-api/src/monkey.ts +24 -0
- package/src/suite/a-home/modules/home-api/src/page/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-api/src/resource/beans.ts +8 -0
- package/src/suite/a-home/modules/home-api/src/resource/components.ts +1 -0
- package/src/suite/a-home/modules/home-api/src/resource/index.ts +3 -0
- package/src/suite/a-home/modules/home-api/src/resource/scope.ts +26 -0
- package/src/suite/a-home/modules/home-api/src/resource/this.ts +4 -0
- package/src/suite/a-home/modules/home-api/src/routes.ts +3 -0
- package/src/suite/a-home/modules/home-api/src/types.ts +13 -0
- package/src/suite/a-home/modules/home-api/src/typings.ts +1 -0
- package/src/suite/a-home/modules/home-api/tsconfig.json +5 -0
- package/src/suite/a-home/modules/home-icon/icons/auth/dingtalk-square.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/auth/github.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/auth/password.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/auth/sms.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/auth/wechat-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/auth/wxwork-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/coupon.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/course.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/distribution.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/hotsprings.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/kitchen-set.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/money-bag.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/party.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/provider.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/purchase.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/store.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/add.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/alert.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/archive.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-back.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-cycle.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-down-left.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-down-right.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-down.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-drop-down.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-drop-up.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-forward.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-left.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-repeat.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-right-left.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-right.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-shuffle.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-up-down.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-up-left.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-up-right.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-up.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/article.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/attachment-line.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/book.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/cabloy.svg +4 -0
- package/src/suite/a-home/modules/home-icon/icons/default/checkbox-checked.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/checkbox-intermediate.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/checkbox-off.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/checkbox.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/chevron-left.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/chevron-right.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/close.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/comment-dots.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/construction.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/copyright.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/cross-circle.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/dashboard.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/database.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/delete-forever.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/delete.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/developer-board.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/done.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/dot.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/draft.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/drive-file-move.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/edit.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/expand-more.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/export.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/fast-forward.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/flow-chart.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/folder-open.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/folder.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/fullscreen-exit.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/fullscreen.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/grading.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/group-work.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/group.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/groups.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/heart.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/home.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/identification.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/import.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/info-circle.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/information-filled.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/information.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/label.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/language.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/layers.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/layout-columns.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/location-on.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/lock-open.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/lock.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/mail.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/mark-as-unread.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/mark-email-read.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/menu.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/message.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/module.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/more-horiz.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/notebook.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/open-in-new.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/open-with.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/people.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/person.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/play-arrow.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/popup.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/preview.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/radio-button-checked.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/radio-button-unchecked.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/redo.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/remove.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/reply.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/reset.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/round-person-add.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/save-and-return.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/save-and-submit.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/save-as-draft.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/save.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/search.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/send.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/settings.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/share.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/sort.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/star.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/stats-chart.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/stop.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/text-fields.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/timeline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/undo.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/view-list.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/visibility.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/zoom-in.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/zoom-out.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/add-box-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/add-box.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/bookmark-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/bookmark.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/code-block.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/code.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-align-center.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-align-left.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-align-right.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-bold.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-italic.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-list-bulleted.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-list-numbered.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-quote.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-strikethrough.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-underlined.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/grid-on.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/horizontal-rule.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/image-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/image.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/insert-link-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/paragraph-break.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/paragraph.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/redo.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/source-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/subscript.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/superscript.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/task-alt.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/title.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/undo.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/activity-none.svg +17 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/activity-service.svg +30 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/activity-user-task.svg +27 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/end-event-atom.svg +24 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/end-event-none.svg +22 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/gateway-exclusive.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/gateway-inclusive.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/gateway-parallel.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/start-event-atom.svg +16 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/start-event-none.svg +16 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/start-event-timer.svg +16 -0
- package/src/suite/a-home/modules/home-icon/icons/login/call-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/login/chevron-left.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/login/done.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/login/lock-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/login/person-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/add-circle-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/alert-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/apps-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/archive-lock-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/archive-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/article-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/backspace-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/build-circle-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/calendar-today-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/check-circle-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/checkbox-checked-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/checkbox-off-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/checkbox-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/copy-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/data-list-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/database-lock-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/delete-forever-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/delete-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/dict-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/draft-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/folder-transfer-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/group-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/heart-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/insert-emoticon-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/key-reset-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/label-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/layout-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/login-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/logout-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/mail-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/note-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/software-resource-cluster-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/software-resource-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/star-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/theme-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/timer-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/visibility-off-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/visibility-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/work-history-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/collaboration.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/level.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/organization.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/position.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/relation.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/role.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/shield-key.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/template.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/social/chat.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/social/facebook.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/social/github.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/social/public.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/social/record-voice-over.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/social/school.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/social/twitter.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/tools/pomotodo.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/tools/spreadsheet.svg +1 -0
- package/src/suite/a-home/modules/home-icon/package.json +34 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/auth.svg +8 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/business.svg +12 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/default.svg +114 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/editor.svg +32 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/flow.svg +13 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/login.svg +7 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/outline.svg +41 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/role.svg +10 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/social.svg +9 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/tools.svg +4 -0
- package/src/suite/a-home/modules/home-icon/src/bean/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-icon/src/component/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-icon/src/config/config.ts +5 -0
- package/src/suite/a-home/modules/home-icon/src/config/constants.ts +1 -0
- package/src/suite/a-home/modules/home-icon/src/config/errors.ts +1 -0
- package/src/suite/a-home/modules/home-icon/src/config/icons.ts +23 -0
- package/src/suite/a-home/modules/home-icon/src/config/index.ts +5 -0
- package/src/suite/a-home/modules/home-icon/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-home/modules/home-icon/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-home/modules/home-icon/src/config/locales.ts +7 -0
- package/src/suite/a-home/modules/home-icon/src/index.ts +6 -0
- package/src/suite/a-home/modules/home-icon/src/page/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-icon/src/resource/beans.ts +4 -0
- package/src/suite/a-home/modules/home-icon/src/resource/components.ts +1 -0
- package/src/suite/a-home/modules/home-icon/src/resource/icons.ts +235 -0
- package/src/suite/a-home/modules/home-icon/src/resource/index.ts +4 -0
- package/src/suite/a-home/modules/home-icon/src/resource/scope.ts +26 -0
- package/src/suite/a-home/modules/home-icon/src/resource/this.ts +4 -0
- package/src/suite/a-home/modules/home-icon/src/routes.ts +3 -0
- package/src/suite/a-home/modules/home-icon/src/types.ts +1 -0
- package/src/suite/a-home/modules/home-icon/src/typings.ts +1 -0
- package/src/suite/a-home/modules/home-icon/tsconfig.json +5 -0
- package/src/suite/a-home/modules/home-layout/package.json +29 -0
- package/src/suite/a-home/modules/home-layout/src/assets/css/module.scss +14 -0
- package/src/suite/a-home/modules/home-layout/src/bean/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-layout/src/component/essentialLink/controller.ts +21 -0
- package/src/suite/a-home/modules/home-layout/src/component/essentialLink/index.vue +12 -0
- package/src/suite/a-home/modules/home-layout/src/component/essentialLink/render.tsx +27 -0
- package/src/suite/a-home/modules/home-layout/src/component/layoutDefault/controller.ts +31 -0
- package/src/suite/a-home/modules/home-layout/src/component/layoutDefault/index.vue +12 -0
- package/src/suite/a-home/modules/home-layout/src/component/layoutDefault/render.tsx +46 -0
- package/src/suite/a-home/modules/home-layout/src/component/layoutEmpty/controller.ts +16 -0
- package/src/suite/a-home/modules/home-layout/src/component/layoutEmpty/index.vue +12 -0
- package/src/suite/a-home/modules/home-layout/src/component/layoutEmpty/render.tsx +15 -0
- package/src/suite/a-home/modules/home-layout/src/config/config.ts +5 -0
- package/src/suite/a-home/modules/home-layout/src/config/constants.ts +1 -0
- package/src/suite/a-home/modules/home-layout/src/config/errors.ts +1 -0
- package/src/suite/a-home/modules/home-layout/src/config/index.ts +4 -0
- package/src/suite/a-home/modules/home-layout/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-home/modules/home-layout/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-home/modules/home-layout/src/config/locales.ts +7 -0
- package/src/suite/a-home/modules/home-layout/src/index.ts +7 -0
- package/src/suite/a-home/modules/home-layout/src/page/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-layout/src/resource/beans.ts +4 -0
- package/src/suite/a-home/modules/home-layout/src/resource/components.ts +7 -0
- package/src/suite/a-home/modules/home-layout/src/resource/index.ts +3 -0
- package/src/suite/a-home/modules/home-layout/src/resource/scope.ts +30 -0
- package/src/suite/a-home/modules/home-layout/src/resource/this.ts +4 -0
- package/src/suite/a-home/modules/home-layout/src/routes.ts +3 -0
- package/src/suite/a-home/modules/home-layout/src/types.ts +1 -0
- package/src/suite/a-home/modules/home-layout/src/typings.ts +1 -0
- package/src/suite/a-home/modules/home-layout/tsconfig.json +5 -0
- package/src/suite/a-home/modules/home-mock/package.json +30 -0
- package/src/suite/a-home/modules/home-mock/src/bean/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-mock/src/component/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-mock/src/config/config.ts +5 -0
- package/src/suite/a-home/modules/home-mock/src/config/constants.ts +1 -0
- package/src/suite/a-home/modules/home-mock/src/config/errors.ts +1 -0
- package/src/suite/a-home/modules/home-mock/src/config/index.ts +4 -0
- package/src/suite/a-home/modules/home-mock/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-home/modules/home-mock/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-home/modules/home-mock/src/config/locales.ts +7 -0
- package/src/suite/a-home/modules/home-mock/src/index.ts +6 -0
- package/src/suite/a-home/modules/home-mock/src/mock/menu.fake.ts +42 -0
- package/src/suite/a-home/modules/home-mock/src/page/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-mock/src/resource/beans.ts +4 -0
- package/src/suite/a-home/modules/home-mock/src/resource/components.ts +1 -0
- package/src/suite/a-home/modules/home-mock/src/resource/index.ts +3 -0
- package/src/suite/a-home/modules/home-mock/src/resource/scope.ts +30 -0
- package/src/suite/a-home/modules/home-mock/src/resource/this.ts +4 -0
- package/src/suite/a-home/modules/home-mock/src/routes.ts +3 -0
- package/src/suite/a-home/modules/home-mock/src/types.ts +1 -0
- package/src/suite/a-home/modules/home-mock/src/typings.ts +1 -0
- package/src/suite/a-home/modules/home-mock/tsconfig.json +5 -0
- package/src/suite/a-home/modules/home-pagesystem/package.json +34 -0
- package/src/suite/a-home/modules/home-pagesystem/src/bean/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-pagesystem/src/component/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-pagesystem/src/config/config.ts +5 -0
- package/src/suite/a-home/modules/home-pagesystem/src/config/constants.ts +1 -0
- package/src/suite/a-home/modules/home-pagesystem/src/config/errors.ts +1 -0
- package/src/suite/a-home/modules/home-pagesystem/src/config/index.ts +4 -0
- package/src/suite/a-home/modules/home-pagesystem/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-home/modules/home-pagesystem/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-home/modules/home-pagesystem/src/config/locales.ts +7 -0
- package/src/suite/a-home/modules/home-pagesystem/src/index.ts +6 -0
- package/src/suite/a-home/modules/home-pagesystem/src/page/errorNotFound/controller.ts +4 -0
- package/src/suite/a-home/modules/home-pagesystem/src/page/errorNotFound/index.vue +10 -0
- package/src/suite/a-home/modules/home-pagesystem/src/page/errorNotFound/render.tsx +24 -0
- package/src/suite/a-home/modules/home-pagesystem/src/resource/beans.ts +4 -0
- package/src/suite/a-home/modules/home-pagesystem/src/resource/components.ts +1 -0
- package/src/suite/a-home/modules/home-pagesystem/src/resource/index.ts +3 -0
- package/src/suite/a-home/modules/home-pagesystem/src/resource/scope.ts +30 -0
- package/src/suite/a-home/modules/home-pagesystem/src/resource/this.ts +4 -0
- package/src/suite/a-home/modules/home-pagesystem/src/routes.ts +22 -0
- package/src/suite/a-home/modules/home-pagesystem/src/types.ts +1 -0
- package/src/suite/a-home/modules/home-pagesystem/src/typings.ts +1 -0
- package/src/suite/a-home/modules/home-pagesystem/tsconfig.json +5 -0
- package/src/suite/a-home/modules/home-router/package.json +37 -0
- package/src/suite/a-home/modules/home-router/src/bean/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-router/src/component/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-router/src/config/config.ts +5 -0
- package/src/suite/a-home/modules/home-router/src/config/constants.ts +1 -0
- package/src/suite/a-home/modules/home-router/src/config/errors.ts +1 -0
- package/src/suite/a-home/modules/home-router/src/config/index.ts +4 -0
- package/src/suite/a-home/modules/home-router/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-home/modules/home-router/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-home/modules/home-router/src/config/locales.ts +7 -0
- package/src/suite/a-home/modules/home-router/src/index.ts +7 -0
- package/src/suite/a-home/modules/home-router/src/local/router.ts +12 -0
- package/src/suite/a-home/modules/home-router/src/monkey.ts +17 -0
- package/src/suite/a-home/modules/home-router/src/page/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-router/src/resource/beans.ts +4 -0
- package/src/suite/a-home/modules/home-router/src/resource/components.ts +1 -0
- package/src/suite/a-home/modules/home-router/src/resource/index.ts +3 -0
- package/src/suite/a-home/modules/home-router/src/resource/scope.ts +26 -0
- package/src/suite/a-home/modules/home-router/src/resource/this.ts +4 -0
- package/src/suite/a-home/modules/home-router/src/routes.ts +3 -0
- package/src/suite/a-home/modules/home-router/src/types.ts +1 -0
- package/src/suite/a-home/modules/home-router/src/typings.ts +1 -0
- package/src/suite/a-home/modules/home-router/tsconfig.json +5 -0
- package/src/suite/a-home/package.json +17 -0
- package/src/suite/a-home/tsconfig.base.json +4 -0
- package/src/suite-vendor/.gitkeep +0 -0
- package/tsconfig.base.cjs.json +3 -0
- package/tsconfig.base.esm.json +12 -0
- package/tsconfig.base.json +6 -0
- package/tsconfig.json +5 -0
- package/tsconfig.vue-tsc.json +5 -0
- package/vite.config.ts +41 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { BeanScopeBase, Scope, TypeLocaleBase, TypeModuleResource } from 'zova';
|
|
2
|
+
import { config, Errors, locales, constants } from '../config/index.js';
|
|
3
|
+
import { components } from './components.js';
|
|
4
|
+
|
|
5
|
+
@Scope()
|
|
6
|
+
export class ScopeModuleHomeApi extends BeanScopeBase {}
|
|
7
|
+
|
|
8
|
+
export interface ScopeModuleHomeApi
|
|
9
|
+
extends TypeModuleResource<
|
|
10
|
+
typeof components,
|
|
11
|
+
typeof config,
|
|
12
|
+
typeof Errors,
|
|
13
|
+
(typeof locales)[TypeLocaleBase],
|
|
14
|
+
typeof constants
|
|
15
|
+
> {}
|
|
16
|
+
|
|
17
|
+
import 'zova';
|
|
18
|
+
declare module 'zova' {
|
|
19
|
+
export interface IBeanScopeRecord {
|
|
20
|
+
'home-api': ScopeModuleHomeApi;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface IBeanScopeConfig {
|
|
24
|
+
'home-api': ReturnType<typeof config>;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AxiosInstance } from 'axios';
|
|
2
|
+
import { StoreApiLike } from './bean/store.api.js';
|
|
3
|
+
|
|
4
|
+
import 'zova';
|
|
5
|
+
declare module 'zova' {
|
|
6
|
+
export interface AppMeta {
|
|
7
|
+
$axios: AxiosInstance;
|
|
8
|
+
$api: StoreApiLike;
|
|
9
|
+
}
|
|
10
|
+
export interface BeanBase {
|
|
11
|
+
$api: StoreApiLike;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type * as AHome from 'zova-module-a-home';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 1024 1024"><path fill="currentColor" d="M880 112H144c-17.7 0-32 14.3-32 32v736c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V144c0-17.7-14.3-32-32-32zM739 449.3c-1 4.2-3.5 10.4-7 17.8h.1l-.4.7c-20.3 43.1-73.1 127.7-73.1 127.7s-.1-.2-.3-.5l-15.5 26.8h74.5L575.1 810l32.3-128h-58.6l20.4-84.7c-16.5 3.9-35.9 9.4-59 16.8c0 0-31.2 18.2-89.9-35c0 0-39.6-34.7-16.6-43.4c9.8-3.7 47.4-8.4 77-12.3c40-5.4 64.6-8.2 64.6-8.2S422 517 392.7 512.5c-29.3-4.6-66.4-53.1-74.3-95.8c0 0-12.2-23.4 26.3-12.3c38.5 11.1 197.9 43.2 197.9 43.2s-207.4-63.3-221.2-78.7c-13.8-15.4-40.6-84.2-37.1-126.5c0 0 1.5-10.5 12.4-7.7c0 0 153.3 69.7 258.1 107.9c104.8 37.9 195.9 57.3 184.2 106.7z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--mdi" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12 2A10 10 0 0 0 2 12c0 4.42 2.87 8.17 6.84 9.5c.5.08.66-.23.66-.5v-1.69c-2.77.6-3.36-1.34-3.36-1.34c-.46-1.16-1.11-1.47-1.11-1.47c-.91-.62.07-.6.07-.6c1 .07 1.53 1.03 1.53 1.03c.87 1.52 2.34 1.07 2.91.83c.09-.65.35-1.09.63-1.34c-2.22-.25-4.55-1.11-4.55-4.92c0-1.11.38-2 1.03-2.71c-.1-.25-.45-1.29.1-2.64c0 0 .84-.27 2.75 1.02c.79-.22 1.65-.33 2.5-.33c.85 0 1.71.11 2.5.33c1.91-1.29 2.75-1.02 2.75-1.02c.55 1.35.2 2.39.1 2.64c.65.71 1.03 1.6 1.03 2.71c0 3.82-2.34 4.66-4.57 4.91c.36.31.69.92.69 1.85V21c0 .27.16.59.67.5C19.14 20.16 22 16.42 22 12A10 10 0 0 0 12 2Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ic" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M3 17h18c.55 0 1 .45 1 1s-.45 1-1 1H3c-.55 0-1-.45-1-1s.45-1 1-1zm-.5-4.43c.36.21.82.08 1.03-.28l.47-.82l.48.83c.21.36.67.48 1.03.28c.36-.21.48-.66.28-1.02l-.49-.84h.95c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H5.3l.47-.82c.21-.36.09-.82-.27-1.03a.764.764 0 0 0-1.03.28L4 8.47l-.47-.82a.764.764 0 0 0-1.03-.28c-.36.21-.48.67-.27 1.03l.47.82h-.95c-.41 0-.75.34-.75.75s.34.75.75.75h.95l-.48.83c-.2.36-.08.82.28 1.02zm8 0c.36.21.82.08 1.03-.28l.47-.82l.48.83c.21.36.67.48 1.03.28c.36-.21.48-.66.28-1.02l-.48-.83h.95c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.96l.47-.82a.76.76 0 0 0-.27-1.03a.746.746 0 0 0-1.02.27l-.48.82l-.47-.82a.742.742 0 0 0-1.02-.27c-.36.21-.48.67-.27 1.03l.47.82h-.96a.74.74 0 0 0-.75.74c0 .41.34.75.75.75h.95l-.48.83c-.2.36-.08.82.28 1.02zM23 9.97c0-.41-.34-.75-.75-.75h-.95l.47-.82a.76.76 0 0 0-.27-1.03a.746.746 0 0 0-1.02.27l-.48.83l-.47-.82a.742.742 0 0 0-1.02-.27c-.36.21-.48.67-.27 1.03l.47.82h-.95a.743.743 0 0 0-.76.74c0 .41.34.75.75.75h.95l-.48.83a.74.74 0 0 0 .28 1.02c.36.21.82.08 1.03-.28l.47-.82l.48.83c.21.36.67.48 1.03.28c.36-.21.48-.66.28-1.02l-.48-.83h.95c.4-.01.74-.35.74-.76z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--fa6-solid" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 512 512"><path fill="currentColor" d="M256 32C114.6 32 .014 125.1.014 240c0 49.59 21.39 95 56.99 130.7c-12.5 50.39-54.31 95.3-54.81 95.8C0 468.8-.594 472.2.688 475.2C1.1 478.2 4.813 480 8 480c66.31 0 116-31.8 140.6-51.41C181.3 440.9 217.6 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm-88.7 239.9c-3.4 19.2-21 32.1-46.2 32.1a80.54 80.54 0 0 1-12.59-1c-7.41-1.2-15.7-4.2-23.01-6.9c-8.312-3-14.06-12.66-11.09-20.97S85 261.1 93.38 264.9c6.979 2.498 14.53 5.449 20.88 6.438C125.7 273.1 135 271 135.8 266.4c1.053-5.912-10.84-8.396-24.56-12.34c-12.12-3.531-44.28-12.97-38.63-46c4.062-23.38 27.31-35.91 58-31.09c5.906.906 12.44 2.844 18.59 4.969c8.344 2.875 12.78 12 9.906 20.34C156.3 210.7 147.2 215.1 138.8 212.2c-4.344-1.5-8.938-2.938-13.09-3.594c-11.22-1.656-20.72.406-21.5 4.906c-1.01 5.688 9.39 7.988 20.19 11.088c17 4.9 48.7 13.9 42.9 47.3zM320 288c0 8.844-7.156 16-16 16s-16-7.2-16-16v-48l-19.19 25.59c-6.062 8.062-19.55 8.062-25.62 0L224 240v48c0 8.844-7.156 16-16 16s-16-7.2-16-16v-96c0-6.875 4.406-12.1 10.94-15.18c6.5-2.094 13.71.059 17.87 5.59L256 229.3l35.19-46.93c4.156-5.531 11.4-7.652 17.87-5.59C315.6 179 320 185.1 320 192v96zm119.3-16.1c-3.4 19.2-21 32.1-46.2 32.1a80.54 80.54 0 0 1-12.59-1c-8.25-1.25-16.56-4.25-23.88-6.906c-8.312-3-14.06-12.66-11.09-20.97s10.59-13.16 18.97-10.19c6.979 2.498 14.53 5.449 20.88 6.438c11.44 1.719 20.78-.375 21.56-4.938c1.053-5.912-10.84-8.396-24.56-12.34c-12.12-3.531-44.28-12.97-38.63-46c4.031-23.38 27.25-35.91 58-31.09c5.906.906 12.44 2.844 18.59 4.969c8.344 2.875 12.78 12 9.906 20.34c-2.875 8.344-11.94 12.81-20.34 9.906c-4.344-1.5-8.938-2.938-13.09-3.594c-11.19-1.656-20.72.406-21.5 4.906C375.2 219.2 385.6 221.5 396.4 224.6c17 4.9 48.7 13.9 42.9 47.3z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 1025 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3129" width="200" height="200"><path d="M498.816 345.056c26.336 0 43.936-17.632 43.936-43.904 0-26.56-17.568-43.744-43.936-43.744s-52.832 17.184-52.832 43.744C446.016 327.424 472.48 345.056 498.816 345.056zM253.088 257.408c-26.336 0-52.96 17.184-52.96 43.744 0 26.272 26.624 43.904 52.96 43.904 26.24 0 43.808-17.632 43.808-43.904C296.864 274.592 279.328 257.408 253.088 257.408zM1024 626.112c0-138.88-128.832-257.216-286.976-269.536 0.224-1.728 0.32-3.52-0.064-5.312-31.712-147.84-190.688-259.296-369.824-259.296C164.704 91.968 0 233.12 0 406.624c0 93.088 47.52 176.96 137.568 243.104l-31.392 94.368c-2.016 6.144-0.192 12.896 4.704 17.152 2.976 2.56 6.72 3.904 10.496 3.904 2.432 0 4.896-0.576 7.168-1.696L246.4 704.48l14.528 2.944c36.288 7.456 67.616 13.92 106.208 13.92 11.36 0 22.88-0.512 34.176-1.472 4.576-0.384 8.448-2.688 11.072-6.016 42.496 106.336 159.616 183.104 297.44 183.104 35.296 0 71.04-8.512 103.104-16.544l90.848 49.664c2.4 1.312 5.056 1.984 7.68 1.984 3.584 0 7.168-1.216 10.048-3.552 5.056-4.096 7.136-10.848 5.248-17.024l-23.2-77.152C981.344 772.864 1024 699.328 1024 626.112zM398.592 687.968c-10.4 0.896-20.96 1.344-31.424 1.344-35.328 0-65.216-6.112-99.776-13.248L247.296 672c-3.456-0.736-7.104-0.256-10.272 1.376l-88.288 44.192 22.944-68.928c2.24-6.752-0.224-14.112-6.016-18.176C76.96 568.64 32 493.312 32 406.624c0-155.84 150.336-282.656 335.136-282.656 163.36 0 308 99.392 337.856 231.584-171.296 2.24-309.888 122.656-309.888 270.56 0 21.504 3.264 42.336 8.768 62.432C402.208 688.128 400.448 687.808 398.592 687.968zM875.456 815.552c-5.344 4.032-7.616 10.976-5.696 17.376l15.136 50.336-62.112-33.984c-2.368-1.312-5.024-1.984-7.68-1.984-1.312 0-2.624 0.16-3.904 0.512-33.312 8.416-67.776 17.088-101.344 17.088-155.904 0-282.72-107.136-282.72-238.816 0-131.68 126.816-238.784 282.72-238.784 152.928 0 282.144 109.344 282.144 238.784C992 691.744 950.624 759.04 875.456 815.552zM612.992 511.968c-17.568 0-35.136 17.696-35.136 35.232 0 17.664 17.568 35.104 35.136 35.104 26.4 0 43.84-17.44 43.84-35.104C656.832 529.632 639.392 511.968 612.992 511.968zM806.016 511.968c-17.312 0-34.88 17.696-34.88 35.232 0 17.664 17.568 35.104 34.88 35.104 26.304 0 44.064-17.44 44.064-35.104C850.08 529.632 832.352 511.968 806.016 511.968z" p-id="3130" fill="currentColor"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 1228 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4417" width="200" height="200"><path d="M1045.84 747.027a153.563 153.563 0 0 0-53.156 21.515 129.094 129.094 0 0 1-58.092 35.1c2.953-19.828 12.783-37.926 27.633-51.3a191.186 191.186 0 0 0 26.452-62.142 56.953 56.953 0 1 1 57.164 56.827zM941.639 610.634a190.814 190.814 0 0 0-61.932-26.747 56.953 56.953 0 1 1 56.953-56.953 155.266 155.266 0 0 0 21.263 53.325 129.666 129.666 0 0 1 34.762 58.346 85.978 85.978 0 0 1-50.878-27.97h-0.21z m-93.826-200.728c-17.17-143.817-166.092-256.5-346.274-256.5-191.954 0-348.132 127.744-348.132 284.85a266.33 266.33 0 0 0 124.369 216.169 351.762 351.762 0 0 0 37.969 24.384l-15.44 61.636c5.568 2.616 10.968 5.4 16.663 7.805l77.963-38.981c11.39 2.953 23.372 4.851 35.268 6.876 7.594 1.35 15.188 2.742 22.993 3.67a401.119 401.119 0 0 0 145.547-8.353 281.011 281.011 0 0 0 11.474 62.185 481.153 481.153 0 0 1-108.675 12.698 472.5 472.5 0 0 1-97.621-10.758L262.46 846.21a31.219 31.219 0 0 1-33.877-3.543 31.64 31.64 0 0 1-10.926-32.316l25.312-101.925A330.075 330.075 0 0 1 90.125 438.256c0-192.29 184.19-348.131 411.413-348.131 215.746 0 392.428 140.653 409.64 319.444a276.919 276.919 0 0 0-29.91-2.953c-11.18 0.422-22.36 1.476-33.456 3.248zM716.399 634.47c18.943-3.797 36.957-11.053 53.157-21.515a129.094 129.094 0 0 1 58.134-35.016 86.358 86.358 0 0 1-27.675 51.216c-12.445 18.984-21.389 40.078-26.451 62.184a56.953 56.953 0 1 1-57.165-56.869z m102.6 137.025c18.816 12.614 39.741 21.727 61.763 27a56.953 56.953 0 1 1-56.953 56.953 154.406 154.406 0 0 0-21.094-53.409 129.558 129.558 0 0 1-34.51-58.514 85.888 85.888 0 0 1 50.794 28.308v-0.338z" p-id="4418" fill="currentColor"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ri" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M2 9.5V4a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1v5.5a2.5 2.5 0 1 0 0 5V20a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-5.5a2.5 2.5 0 1 0 0-5zM14 5H4v2.968a4.5 4.5 0 0 1 0 8.064V19h10V5zm2 0v14h4v-2.968a4.5 4.5 0 0 1 0-8.064V5h-4z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--carbon" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path fill="currentColor" d="M24 30H8a2.002 2.002 0 0 1-2-2V4a2.002 2.002 0 0 1 2-2h16a2.002 2.002 0 0 1 2 2v16.618l-5-2.5l-5 2.5V4H8v24h16v-4h2v4a2.003 2.003 0 0 1-2 2Zm-3-14.118l3 1.5V4h-6v13.382Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--uil" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M19 2a1 1 0 0 0-1 1v1h-5a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h5v1a1 1 0 0 0 2 0V3a1 1 0 0 0-1-1Zm-1 16h-4V6h4ZM9 2a1 1 0 0 0-1 1v2H5a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h3v2a1 1 0 0 0 2 0V3a1 1 0 0 0-1-1ZM8 17H6V7h2Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 512 512"><path fill="#FF473E" d="M349.164 318.915s.842-1.244 2.518-3.433c.927-1.132 1.662-2.397 2.568-3.849c.445-.758.936-1.417 1.456-2.337l1.628-2.765a106.887 106.887 0 0 0 6.794-13.979c2.1-5.414 3.932-11.49 4.998-18.019a87.18 87.18 0 0 0 .918-20.539c-.041-.883-.209-1.781-.296-2.67l-.131-1.337l-.062-.669c-.015-.745.013.924.003.707l-.015-.115l-.03-.229l-.06-.459l-.483-3.699l-.11-.932c-.02-.14-.033-.346-.06-.432l-.078-.267l-.299-1.066l-.554-2.184l-.722-2.638c-.198-.889-.533-1.748-.825-2.616c-.301-.866-.517-1.755-.865-2.608c-1.289-3.447-2.842-6.81-4.557-10.124c-1.856-3.246-3.837-6.447-6.113-9.493c-2.338-2.992-4.826-5.911-7.6-8.587a81.367 81.367 0 0 0-8.999-7.291c-1.44-.946-.46-.306-.809-.537l-.106-.076l-.213-.152l-.426-.304l-.852-.608l-1.703-1.217l-.851-.608l-.213-.152l-.299-.23l-.602-.465l-2.396-1.878l-2.363-1.912l-.585-.483l-.504-.458l-1.003-.918c-1.331-1.23-2.672-2.444-3.967-3.7l-3.742-3.906c-1.259-1.284-2.353-2.721-3.519-4.08l-1.712-2.068c-.566-.691-1.077-1.428-1.614-2.14c-1.056-1.44-2.126-2.862-3.113-4.337c-3.961-5.903-7.262-12.137-9.996-18.492c-1.266-3.226-2.534-6.413-3.473-9.69c-.476-1.634-1.048-3.225-1.406-4.876l-1.13-4.898c-1.271-6.54-2.083-13.031-2.1-19.364c-.124-3.161.118-6.277.258-9.333l.034-.572l.018-.286l.009-.143c-.001.102.032-1.419.026-.828l.131-.915l.261-1.821l.26-1.809c.093-.63.149-1.099.304-2c.262-1.611.56-3.201.856-4.771c.152-.778.294-1.579.46-2.322l.549-2.098c.364-1.391.736-2.764 1.119-4.117c.405-1.349.892-2.666 1.334-3.974c.475-1.3.853-2.607 1.408-3.85l1.582-3.695l.786-1.807l.881-1.746a3794.14 3794.14 0 0 1 1.766-3.403a91.604 91.604 0 0 1 16.266-21.593c5.671-5.573 11.267-9.53 15.974-12.417c2.385-1.417 4.52-2.611 6.466-3.501c1.912-.932 3.541-1.676 4.919-2.179c2.727-1.043 4.173-1.532 4.173-1.532a6.56 6.56 0 0 1 7.247 10.281l-.408.508s-.863 1.077-2.466 2.97c-.836.898-1.721 2.18-2.815 3.56c-1.126 1.343-2.218 3.085-3.511 4.879c-2.458 3.727-5.206 8.27-7.648 13.633c-2.405 5.381-4.539 11.534-5.84 18.244c-.604 3.369-1.168 6.817-1.338 10.401c-.046.894-.14 1.78-.157 2.684c.012.91.009 1.818-.004 2.726l-.019 1.363c.019.421.07.795.099 1.192c.065.784.131 1.563.159 2.339c.002.291.067 1.026.11 1.602l.142 1.822l.142 1.834l.072.921c-.007.667.018-.777.022-.599l.016.087l.033.175l.064.349c.346 1.859.548 3.735 1.061 5.575c.734 3.718 2.028 7.343 3.346 10.926a82.366 82.366 0 0 0 5.109 10.357l1.57 2.45c.488.834 1.081 1.611 1.661 2.392l.841 1.188c.268.404.559.793.882 1.162l1.836 2.271a81.574 81.574 0 0 0 8.273 8.262l2.291 1.819l.568.458l.282.229l.241.156c.32.21.639.418.945.643l.914.678l.225.174l.115.089l.22.141l.88.566l1.76 1.132l.88.566l.44.283l.22.141l.11.071c-.277-.182.775.507-.593-.39a119.187 119.187 0 0 1 17.396 13.16a115.811 115.811 0 0 1 14.374 16.206c1.024 1.477 2.047 2.951 3.029 4.446c.507.737.978 1.496 1.421 2.272l1.353 2.308c1.87 3.032 3.337 6.274 4.869 9.436c1.366 3.247 2.759 6.454 3.772 9.778c.521 1.654 1.137 3.267 1.541 4.941l1.248 4.977c.405 1.651.658 3.331.978 4.982c.293 1.658.586 3.305.737 4.965l.521 4.931c.048.391.072.835.089 1.3l.058 1.361l.096 2.705l.069 2.682l.013.667c.005.225-.013.332-.018.504l-.05.937l-.242 3.722l-.03.462l-.015.231l-.008.115c-.004-.14.016 1.606 0 .937l-.122 1.167l-.25 2.317c-.2 1.537-.337 3.059-.608 4.562c-1.978 12.051-6.015 22.916-11.084 31.95a88.807 88.807 0 0 1-17.109 21.819a212.722 212.722 0 0 1-4.459 3.838c-1.453 1.195-2.953 2.236-4.345 3.255c-1.364 1.047-2.824 1.881-4.16 2.712c-1.354.813-2.589 1.625-3.865 2.265c-2.552 1.278-4.715 2.424-6.893 3.278c-2.1.86-3.878 1.621-5.165 1.89c-2.654.747-4.121 1.069-4.121 1.069a6.878 6.878 0 0 1-8.192-5.243a6.919 6.919 0 0 1 1.028-5.323zm-118.415 5.33a6.877 6.877 0 0 0 8.192 5.243s1.467-.322 4.121-1.069c1.287-.27 3.065-1.03 5.165-1.89c2.178-.854 4.341-1.999 6.893-3.278c1.277-.64 2.511-1.452 3.865-2.265c1.336-.832 2.796-1.666 4.16-2.712c1.391-1.019 2.892-2.061 4.345-3.255a212.722 212.722 0 0 0 4.459-3.838a88.854 88.854 0 0 0 17.109-21.819c5.068-9.034 9.106-19.899 11.084-31.95c.27-1.503.408-3.026.608-4.562l.25-2.317l.122-1.167c.016.668-.004-1.078 0-.937l.008-.115l.015-.231l.03-.462l.242-3.722l.05-.937c.005-.172.023-.279.018-.504l-.013-.667l-.069-2.682l-.096-2.705l-.058-1.361a16.157 16.157 0 0 0-.089-1.3l-.521-4.931c-.151-1.66-.444-3.307-.737-4.965c-.32-1.651-.574-3.331-.978-4.982l-1.248-4.977c-.404-1.674-1.019-3.287-1.541-4.941c-1.013-3.324-2.406-6.531-3.772-9.778c-1.532-3.162-2.999-6.404-4.869-9.436l-1.353-2.308a32.32 32.32 0 0 0-1.421-2.272c-.983-1.495-2.006-2.969-3.029-4.446a115.868 115.868 0 0 0-14.374-16.206c-1.339-1.227-2.728-2.403-4.112-3.583c-1.363-1.206-2.827-2.291-4.28-3.388c-1.462-1.086-2.887-2.222-4.426-3.202l-2.281-1.507l-1.147-.742l-.574-.37l-.287-.184l-.144-.092c.266.175-.797-.521.559.369l-3.521-2.264l-.88-.566l-.22-.141l-.115-.089l-.225-.174l-.914-.678c-.306-.224-.625-.433-.945-.643l-.241-.156l-.282-.229l-.568-.458l-2.291-1.819a81.472 81.472 0 0 1-8.273-8.262l-1.836-2.271a11.066 11.066 0 0 1-.882-1.162l-.841-1.188c-.58-.781-1.173-1.558-1.662-2.392l-1.57-2.45a82.572 82.572 0 0 1-5.109-10.357c-1.318-3.584-2.612-7.208-3.346-10.926c-.514-1.84-.716-3.716-1.061-5.575l-.064-.349l-.033-.175l-.016-.087c-.004-.178-.029 1.266-.022.599l-.072-.921l-.142-1.834l-.142-1.822c-.043-.576-.108-1.312-.11-1.602c-.028-.775-.094-1.555-.159-2.339c-.029-.398-.08-.772-.099-1.192l.019-1.363c.014-.908.016-1.816.004-2.726c.017-.904.111-1.79.157-2.684c.17-3.584.734-7.032 1.338-10.401c1.301-6.71 3.436-12.864 5.84-18.244c2.442-5.363 5.189-9.907 7.648-13.633c1.293-1.794 2.385-3.537 3.511-4.879c1.094-1.38 1.979-2.663 2.815-3.56a158.701 158.701 0 0 0 2.466-2.97l.408-.508a6.56 6.56 0 0 0-7.247-10.281s-1.447.489-4.173 1.532c-1.378.504-3.006 1.247-4.919 2.179c-1.946.89-4.081 2.083-6.466 3.501c-4.708 2.887-10.304 6.844-15.974 12.417a91.625 91.625 0 0 0-16.266 21.593l-1.765 3.403l-.881 1.746l-.786 1.807l-1.582 3.695c-.555 1.243-.933 2.55-1.408 3.85c-.442 1.308-.929 2.625-1.334 3.974a214.378 214.378 0 0 0-1.119 4.117l-.549 2.098c-.166.743-.308 1.544-.46 2.322c-.296 1.569-.594 3.16-.856 4.771c-.154.9-.211 1.37-.304 2l-.26 1.809l-.261 1.821l-.131.915c.006-.59-.027.93-.026.828l-.009.143l-.018.286l-.034.572c-.141 3.056-.383 6.172-.258 9.333c.017 6.333.829 12.823 2.1 19.364l1.13 4.898c.358 1.651.93 3.242 1.406 4.876c.939 3.277 2.207 6.464 3.473 9.69c2.734 6.354 6.035 12.589 9.996 18.492c.987 1.476 2.057 2.898 3.113 4.337c.537.712 1.048 1.449 1.614 2.14l1.712 2.068c1.166 1.359 2.26 2.795 3.519 4.08l3.742 3.906c1.296 1.256 2.637 2.47 3.968 3.7l1.003.918l.504.458l.585.483l2.363 1.912l2.396 1.878l.602.465l.299.23l.213.152l.851.608l3.406 2.433c1.429.939.438.292.776.515l.073.055l.146.109l.292.218l.584.432l1.182.841c.815.522 1.529 1.185 2.29 1.779c1.556 1.151 2.895 2.556 4.359 3.802c2.774 2.676 5.261 5.595 7.6 8.587c2.277 3.045 4.258 6.247 6.113 9.493c1.715 3.314 3.268 6.676 4.557 10.124c.348.854.564 1.743.865 2.608c.292.868.628 1.728.825 2.616l.722 2.638l.554 2.184l.299 1.066l.078.267c.027.086.039.292.06.432l.11.932l.483 3.699l.06.459l.03.229l.015.115c.009.217-.018-1.452-.003-.707l.062.669l.131 1.337c.087.89.255 1.787.296 2.67a87.18 87.18 0 0 1-.918 20.539c-1.066 6.529-2.898 12.605-4.998 18.019a106.76 106.76 0 0 1-6.794 13.979l-1.628 2.765c-.52.92-1.011 1.579-1.456 2.337c-.906 1.452-1.642 2.717-2.568 3.849c-1.676 2.189-2.518 3.433-2.518 3.433a6.864 6.864 0 0 0-1.029 5.324zm-117.392 0a6.877 6.877 0 0 0 8.192 5.243s1.467-.322 4.121-1.069c1.287-.27 3.065-1.03 5.165-1.89c2.178-.854 4.341-1.999 6.893-3.278c1.277-.64 2.511-1.452 3.865-2.265c1.336-.832 2.796-1.666 4.16-2.712c1.391-1.019 2.892-2.061 4.345-3.255a212.722 212.722 0 0 0 4.459-3.838a88.854 88.854 0 0 0 17.109-21.819c5.068-9.034 9.106-19.899 11.084-31.95c.27-1.503.407-3.026.608-4.562l.25-2.317l.122-1.167c.016.668-.004-1.078 0-.937l.008-.115l.015-.231l.03-.462l.242-3.722l.05-.937c.005-.172.023-.279.018-.504l-.013-.667l-.069-2.682l-.096-2.705l-.058-1.361a16.157 16.157 0 0 0-.089-1.3l-.521-4.931c-.151-1.66-.444-3.307-.737-4.965c-.32-1.651-.574-3.331-.978-4.982l-1.248-4.977c-.404-1.674-1.019-3.287-1.541-4.941c-1.013-3.324-2.406-6.531-3.772-9.778c-1.532-3.162-2.999-6.404-4.869-9.436l-1.353-2.308a32.32 32.32 0 0 0-1.421-2.272c-.983-1.495-2.006-2.969-3.029-4.446a115.868 115.868 0 0 0-14.374-16.206c-1.339-1.227-2.728-2.403-4.112-3.583c-1.363-1.206-2.827-2.291-4.28-3.388c-1.462-1.086-2.887-2.222-4.426-3.202l-2.281-1.507l-1.147-.742l-.574-.37l-.287-.184l-.144-.092c.266.175-.797-.521.559.369l-3.521-2.264l-.88-.566l-.22-.141l-.115-.089l-.225-.174l-.914-.678c-.306-.224-.625-.433-.945-.643l-.241-.156l-.282-.229l-.568-.458l-2.291-1.819a81.472 81.472 0 0 1-8.273-8.262l-1.836-2.271a11.066 11.066 0 0 1-.882-1.162l-.841-1.188c-.58-.781-1.173-1.558-1.662-2.392l-1.57-2.45a82.572 82.572 0 0 1-5.109-10.357c-1.318-3.584-2.612-7.208-3.346-10.926c-.514-1.84-.716-3.716-1.061-5.575l-.064-.349l-.033-.175l-.016-.087c-.004-.178-.029 1.266-.022.599l-.072-.921l-.142-1.834l-.142-1.822c-.043-.576-.108-1.312-.11-1.602c-.028-.775-.094-1.555-.159-2.339c-.029-.398-.08-.772-.099-1.192l.019-1.363c.014-.908.016-1.816.004-2.726c.017-.904.111-1.79.157-2.684c.17-3.584.734-7.032 1.338-10.401c1.301-6.71 3.436-12.864 5.84-18.244c2.442-5.363 5.189-9.907 7.648-13.633c1.293-1.794 2.385-3.537 3.511-4.879c1.094-1.38 1.979-2.663 2.815-3.56a158.701 158.701 0 0 0 2.466-2.97l.408-.508a6.56 6.56 0 0 0-7.247-10.281s-1.447.489-4.173 1.532c-1.378.504-3.006 1.247-4.919 2.179c-1.946.89-4.081 2.083-6.466 3.501c-4.708 2.887-10.304 6.844-15.974 12.417a91.625 91.625 0 0 0-16.266 21.593l-1.765 3.403l-.881 1.746l-.786 1.807l-1.582 3.695c-.555 1.243-.933 2.55-1.408 3.85c-.442 1.308-.929 2.625-1.334 3.974a214.378 214.378 0 0 0-1.119 4.117l-.549 2.098c-.166.743-.308 1.544-.46 2.322c-.296 1.569-.594 3.16-.856 4.771c-.154.9-.211 1.37-.304 2l-.26 1.809l-.261 1.821l-.131.915c.006-.59-.027.93-.026.828l-.009.143l-.018.286l-.034.572c-.14 3.056-.383 6.172-.258 9.333c.017 6.333.829 12.823 2.1 19.364l1.13 4.898c.358 1.651.93 3.242 1.406 4.876c.939 3.277 2.207 6.464 3.473 9.69c2.734 6.354 6.035 12.589 9.996 18.492c.987 1.476 2.057 2.898 3.113 4.337c.537.712 1.048 1.449 1.614 2.14l1.712 2.068c1.166 1.359 2.26 2.795 3.519 4.08l3.742 3.906c1.296 1.256 2.637 2.47 3.968 3.7l1.003.918l.504.458l.585.483l2.363 1.912l2.396 1.878l.602.465l.299.23l.213.152l.851.608l3.406 2.433c1.429.939.438.292.776.515l.073.055l.146.109l.292.218l.584.432l1.182.841c.815.522 1.529 1.185 2.29 1.779c1.556 1.151 2.895 2.556 4.359 3.802c2.774 2.676 5.261 5.595 7.6 8.587c2.277 3.045 4.258 6.247 6.113 9.493c1.715 3.314 3.268 6.676 4.557 10.124c.348.854.564 1.743.865 2.608c.292.868.628 1.728.825 2.616l.722 2.638l.554 2.184l.299 1.066l.078.267c.027.086.039.292.06.432l.11.932l.483 3.699l.06.459l.03.229l.015.115c.009.217-.018-1.452-.003-.707l.062.669l.131 1.337c.087.89.255 1.787.296 2.67a87.18 87.18 0 0 1-.918 20.539c-1.066 6.529-2.898 12.605-4.998 18.019a106.76 106.76 0 0 1-6.794 13.979l-1.628 2.765c-.52.92-1.011 1.579-1.456 2.337c-.906 1.452-1.642 2.717-2.568 3.849c-1.676 2.189-2.518 3.433-2.518 3.433a6.864 6.864 0 0 0-1.029 5.324zm-42.814-83.381a7.961 7.961 0 0 0-11.031-2.252l-1.885 1.245l-2.298 1.541c-.898.562-1.999 1.418-3.241 2.371c-1.218.954-2.689 2.013-4.119 3.222c-1.44 1.217-3.039 2.529-4.703 4.035c-3.317 3.024-7.087 6.628-10.919 11.142c-1.982 2.2-3.897 4.698-5.908 7.337l-2.909 4.212c-1.019 1.426-1.894 3.002-2.877 4.562c-3.83 6.307-7.303 13.697-10.054 22.115l-1.015 3.198c-.321 1.082-.587 2.191-.865 3.308l-.817 3.39l-.641 3.488c-.201 1.176-.442 2.361-.605 3.562l-.432 3.644l-.21 1.849l-.052.465l-.026.233c.026 1.702 0 .582.003 1.011l-.049.768l-.196 3.095l-.198 3.135c-.013.115-.012.28-.005.466l.014.529l.031 1.063l.086 2.141c.137 2.835.242 5.923.629 8.464l.512 4.039l.273 2.042c.11.677.267 1.342.4 2.017l.859 4.068c.314 1.356.543 2.765.967 4.092c2.838 10.905 7.43 21.744 13.466 31.938c6.017 10.219 13.418 19.845 21.825 28.688c16.836 17.711 37.521 32.389 60.158 44.003c11.337 5.783 23.19 10.791 35.379 15.129l4.592 1.582l2.303.791l2.321.717l9.33 2.847l9.449 2.519c3.161.831 6.353 1.498 9.542 2.251c3.188.773 6.4 1.39 9.624 1.993c3.222.615 6.449 1.251 9.697 1.723c3.245.496 6.493 1.06 9.754 1.492l9.808 1.172c3.275.366 6.559.6 9.844.902c1.643.131 3.286.311 4.931.399l4.939.253c3.294.147 6.59.378 9.885.398l10.418.176l9.082-.163l2.27-.043c.359-.002.784-.021 1.221-.043l1.287-.06l5.147-.247l5.143-.258c1.722-.079 3.31-.258 4.97-.39c3.285-.302 6.57-.537 9.845-.903l9.809-1.169c3.264-.412 6.51-.991 9.756-1.482c3.248-.473 6.475-1.11 9.698-1.725c3.223-.61 6.441-1.201 9.627-1.981c3.19-.754 6.382-1.422 9.543-2.253l9.453-2.509l9.331-2.849l2.321-.718l2.303-.791l4.593-1.583c12.194-4.328 24.052-9.335 35.391-15.119c22.645-11.609 43.34-26.288 60.183-44.006c8.409-8.849 15.814-18.478 21.835-28.701c6.036-10.201 10.63-21.046 13.47-31.958c2.863-10.902 3.979-21.816 3.562-31.998l-.179-3.788l-.048-.936c-.009-.348.003.449-.023-.839l-.026-.19l-.052-.379l-.206-1.511l-.408-2.992l-.128-.864l-.156-.975l-.32-1.935l-.668-3.794l-.819-3.391c-.278-1.117-.536-2.228-.862-3.31l-1.018-3.2c-2.761-8.419-6.232-15.814-10.068-22.121c-.985-1.56-1.861-3.136-2.882-4.562l-2.913-4.211c-2.014-2.638-3.927-5.139-5.913-7.336c-3.837-4.512-7.608-8.115-10.929-11.137c-1.665-1.505-3.267-2.815-4.707-4.033c-1.441-1.218-2.845-2.203-4.046-3.141c-2.393-1.885-4.379-3.119-5.655-4.017l-1.966-1.317c-2.659-1.772-6.256-1.832-9.01.135a7.92 7.92 0 0 0-1.843 11.049l.26.364l1.252 1.753c.82 1.154 2.09 2.816 3.585 5.072c1.547 2.214 3.318 5.02 5.318 8.288c.93 1.681 2.018 3.417 2.995 5.354l1.553 2.951c.54 1.003.988 2.088 1.506 3.164c1.067 2.138 1.91 4.5 2.937 6.864l1.327 3.71c.483 1.244.79 2.573 1.207 3.881c1.481 5.296 2.728 10.968 3.14 16.968l.158 2.255c.04.756.01 1.523.04 2.284l.055 2.296l-.125 2.019l-.106 2.127l-.224 3.012l-.113 1.521l-.028.382l-.014.191c-.024-1.161-.023-.237-.035-.457l-.111.593l-.431 2.376a75.44 75.44 0 0 1-6.12 19.034c-5.914 12.613-16.129 24.844-29.614 35.681c-13.486 10.844-30.13 20.283-48.629 27.843a285.457 285.457 0 0 1-29.04 9.912a301.462 301.462 0 0 1-31.006 7.128a368.188 368.188 0 0 1-32.29 4.298c-2.725.254-5.47.385-8.206.588c-1.353.081-2.774.215-4.072.266l-3.919.168l-3.92.179l-.98.046c-.319.017-.65.032-1.048.033l-2.27.028l-9.082.121l-7.746-.107c-2.761.013-5.506-.18-8.257-.281c-2.75-.118-5.501-.208-8.235-.43c-2.736-.204-5.481-.335-8.206-.589a370.724 370.724 0 0 1-32.297-4.275c-10.6-1.858-20.98-4.237-31.013-7.123a282.718 282.718 0 0 1-29.051-9.902c-18.507-7.556-35.159-16.996-48.653-27.847c-13.493-10.846-23.714-23.089-29.628-35.716c-.45-.773-.698-1.584-1.052-2.373l-1.004-2.373c-.163-.395-.353-.786-.496-1.184l-.394-1.197l-.809-2.384c-.641-1.691-.865-2.899-1.287-4.271l-.302-1.009l-.162-.505l-.083-.253a1.155 1.155 0 0 1-.071-.317l-.454-3.109l-.448-3.069l-.111-.761c-.001.302-.037-.945-.009.63l-.014-.148l-.029-.296l-.117-1.184l-.248-2.36c-.069-.784-.065-1.561-.106-2.339l-.097-2.326l.057-2.297c.029-.762-.008-1.531.036-2.286l.161-2.256c.422-6.002 1.666-11.678 3.154-16.974c.419-1.308.727-2.637 1.212-3.881l1.331-3.71c1.03-2.363 1.87-4.727 2.942-6.863c.519-1.076.967-2.16 1.509-3.163l1.556-2.95c.976-1.939 2.069-3.672 3-5.352c.969-1.656 1.976-3.128 2.832-4.537c.861-1.423 1.691-2.553 2.417-3.667c.731-1.088 1.356-2.051 2.053-2.954L69 251.772l1.332-1.825c1.892-2.607 2.093-6.236.211-9.083z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--fa6-solid" width="36" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 576 512"><path fill="currentColor" d="M80 144c0-35.3 28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64s-64-28.7-64-64zm204.4 32c-14.5 64.1-71.9 112-140.4 112C64.47 288 0 223.5 0 144C0 64.47 64.47 0 144 0c68.5 0 125.9 47.87 140.4 112h71.8c8.8-9.8 21.6-16 35.8-16h104c26.5 0 48 21.5 48 48s-21.5 48-48 48H392c-14.2 0-27-6.2-35.8-16h-71.8zM144 48c-53.02 0-96 42.98-96 96c0 53 42.98 96 96 96c53 0 96-43 96-96c0-53.02-43-96-96-96zm280 216v8h96c13.3 0 24 10.7 24 24s-10.7 24-24 24H280c-13.3 0-24-10.7-24-24s10.7-24 24-24h96v-8c0-13.3 10.7-24 24-24s24 10.7 24 24zM288 464V352h224v112c0 26.5-21.5 48-48 48H336c-26.5 0-48-21.5-48-48zM176 320c26.5 0 48 21.5 48 48s-21.5 48-48 48h-16c0 17.7-14.3 32-32 32H64c-17.67 0-32-14.3-32-32v-80c0-8.8 7.16-16 16-16h128zm16 48c0-8.8-7.2-16-16-16h-16v32h16c8.8 0 16-7.2 16-16zm8 96c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.25 0-24-10.7-24-24s10.75-24 24-24h176z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--healthicons" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 48 48"><g fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"><path d="M28.772 24.667A4.001 4.001 0 0 0 25 22v-1h-2v1a4 4 0 1 0 0 8v4c-.87 0-1.611-.555-1.887-1.333a1 1 0 1 0-1.885.666A4.001 4.001 0 0 0 23 36v1h2v-1a4 4 0 0 0 0-8v-4a2 2 0 0 1 1.886 1.333a1 1 0 1 0 1.886-.666ZM23 24a2 2 0 1 0 0 4v-4Zm2 10a2 2 0 1 0 0-4v4Z"></path><path d="M13.153 8.621C15.607 7.42 19.633 6 24.039 6c4.314 0 8.234 1.361 10.675 2.546l.138.067c.736.364 1.33.708 1.748.987L32.906 15C41.422 23.706 48 41.997 24.039 41.997S6.479 24.038 15.069 15l-3.67-5.4c.283-.185.642-.4 1.07-.628c.212-.114.44-.231.684-.35Zm17.379 6.307l2.957-4.323c-2.75.198-6.022.844-9.172 1.756c-2.25.65-4.75.551-7.065.124a25.167 25.167 0 0 1-1.737-.386l1.92 2.827c4.115 1.465 8.981 1.465 13.097.002ZM16.28 16.63c4.815 1.86 10.602 1.86 15.417-.002a29.255 29.255 0 0 1 4.988 7.143c1.352 2.758 2.088 5.515 1.968 7.891c-.116 2.293-1.018 4.252-3.078 5.708c-2.147 1.517-5.758 2.627-11.537 2.627c-5.785 0-9.413-1.091-11.58-2.591c-2.075-1.438-2.986-3.37-3.115-5.632c-.135-2.35.585-5.093 1.932-7.87c1.285-2.648 3.078-5.197 5.005-7.274Zm-1.15-6.714c.8.238 1.636.445 2.484.602c2.15.396 4.306.454 6.146-.079a54.097 54.097 0 0 1 6.53-1.471C28.45 8.414 26.298 8 24.038 8c-3.445 0-6.658.961-8.908 1.916Z"></path></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="30.57" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 268"><path fill="#FF37AD" d="M22.498 68.97a11.845 11.845 0 1 0 0-23.687c-6.471.098-11.666 5.372-11.666 11.844c0 6.472 5.195 11.746 11.666 11.844Zm181.393-10.04a11.845 11.845 0 1 0-.003-23.688c-6.471.098-11.665 5.373-11.665 11.845c.001 6.472 5.197 11.745 11.668 11.842Z"></path><path fill="#FCC954" d="M213.503 211.097a11.845 11.845 0 1 0-.003-23.687c-6.471.098-11.665 5.373-11.664 11.845c0 6.472 5.196 11.745 11.667 11.842ZM70.872 23.689a11.845 11.845 0 1 0 0-23.688C64.4.1 59.206 5.373 59.206 11.845c0 6.472 5.195 11.746 11.666 11.844Z"></path><path fill="#2890E9" d="M140.945 105.94a9.249 9.249 0 0 1-8.974-11.484c.37-1.482.672-2.97.899-4.455a25.404 25.404 0 0 1-8.732 1.904c-5.379.205-10.195-.702-14.3-2.69a22.227 22.227 0 0 1-9.614-8.877c-4.415-7.652-4.034-17.718.964-25.645c4.765-7.568 12.836-11.664 21.586-10.995c6.74.527 12.647 3.051 17.378 7.382c.861-2.43 1.687-5.033 2.473-7.803c4.833-17.058 6.429-34.187 6.442-34.36a9.24 9.24 0 0 1 10.041-8.37a9.248 9.248 0 0 1 8.37 10.044c-.067.767-1.768 19.03-7.068 37.735c-2.676 9.445-5.838 17.426-9.42 23.798c.264 1.42.475 2.878.631 4.372c.746 7.211.152 14.974-1.714 22.445a9.256 9.256 0 0 1-8.962 6.998Zm-20.123-43.827c-.956 0-2.64.28-3.996 2.43c-1.298 2.06-1.552 4.873-.588 6.544c1.282 2.223 5.054 2.417 7.19 2.336c2.424-.092 4.908-1.612 7.338-4.382a16.203 16.203 0 0 0-1.43-2.422c-2.007-2.787-4.547-4.212-7.998-4.482c-.13-.008-.305-.024-.516-.024Z"></path><path fill="#F0A420" d="M114.361 131.268c-38.343-30.224-78.42-43.319-89.514-29.246a12.803 12.803 0 0 0-2.257 4.509a3.967 3.967 0 0 0-.156.61v.024c-.149.632-.26 1.27-.333 1.917L.393 236.18c-3.477 20.412 16.73 36.755 35.967 29.093l117.721-46.908c2.076-.826 7.185-3.982 8.583-5.724c.37-.362.717-.747 1.037-1.153c11.092-14.075-11-49.988-49.34-80.223v.003Z"></path><path fill="#FCC954" d="M163.688 211.494c11.1-14.08-10.984-50-49.327-80.226c-38.343-30.227-78.425-43.316-89.524-29.236c-11.1 14.08 10.983 50 49.326 80.226c38.343 30.227 78.425 43.316 89.525 29.236Z"></path><path fill="#F0A420" d="M156.994 203.294c9.108-11.556-10.956-42.563-44.817-69.256c-33.861-26.695-68.697-38.966-77.804-27.413c-9.11 11.556 10.954 42.563 44.815 69.256c33.86 26.695 68.697 38.969 77.806 27.413Z"></path><path fill="#2E6AC9" d="M76.059 249.456c-14.327.07-26.004-7.101-40.158-18.257C19.431 218.21 8.493 202.665 7.63 193.81l-4.668 27.327c2.16 7.798 9.523 17.683 20.202 26.101c8.883 7.004 17.844 11.813 27.135 12.48l25.76-10.266v.003Zm-14.332-49.6c-27.443-21.637-45.271-46.467-44.77-60.669l-4.549 26.63c.351 12.685 15.175 33.184 36.262 49.808c18.894 14.896 38.583 25.38 53.66 23.363l25.593-10.2c-20.62 1.425-42.376-10.147-66.196-28.931Z"></path><path fill="#2890E9" d="M118.535 145.052a11.845 11.845 0 1 0 0-23.688c-6.471.098-11.666 5.372-11.666 11.844c0 6.472 5.195 11.746 11.666 11.844Z"></path><path fill="#FF37AD" d="m182.412 122.007l.087-.097c.108-.116.308-.33.596-.621a45.36 45.36 0 0 1 2.8-2.56c3.56-2.98 7.45-5.54 11.594-7.63c10.128-5.125 25.208-9.307 44.985-4.747c5.943 1.37 11.87-2.336 13.241-8.278c1.37-5.942-2.336-11.87-8.278-13.24c-25.602-5.903-45.957-.506-59.922 6.566a82.52 82.52 0 0 0-15.857 10.449a65.47 65.47 0 0 0-4.215 3.866a45.348 45.348 0 0 0-1.53 1.615l-.12.135l-.042.048l-.02.022l-.007.008c-.003.005-.009.01 8.361 7.21l-8.37-7.2c-3.877 4.622-3.328 11.5 1.233 15.448c4.561 3.948 11.446 3.506 15.464-.994ZM73.03 43.248a11.748 11.748 0 0 0-16.23-3.664a11.759 11.759 0 0 0-3.665 16.227c.427.683 9.178 14.86 10.976 34.276c1.83 19.727-3.966 37.86-17.253 54.12c4.474 5.686 9.858 11.596 16.008 17.507c8.51-9.834 14.913-20.402 19.12-31.583c5.175-13.756 7.006-28.342 5.445-43.348c-2.487-23.874-12.874-41.11-14.402-43.535Z"></path><path fill="#2890E9" d="M220.242 156.578c6.002 1.553 10.244 3.246 12.077 4.034a11.858 11.858 0 0 0 13.94-1.12a11.867 11.867 0 0 0 4.107-8.765a11.848 11.848 0 0 0-8.06-11.426c-5.618-2.495-26.905-10.92-55.044-9.423c-18.941 1.007-37.155 6.253-54.133 15.608c-16.076 8.86-31.004 21.412-44.556 37.425a198.603 198.603 0 0 0 20.17 12.607c22.882-26.08 49.283-40.217 78.7-42.085a105.86 105.86 0 0 1 32.8 3.145Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--material-symbols" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12 13q1.45 0 2.475-1.025Q15.5 10.95 15.5 9.5q0-1.45-1.025-2.475Q13.45 6 12 6q-1.45 0-2.475 1.025Q8.5 8.05 8.5 9.5q0 1.45 1.025 2.475Q10.55 13 12 13Zm0-2q-.625 0-1.062-.438q-.438-.437-.438-1.062t.438-1.062Q11.375 8 12 8t1.062.438q.438.437.438 1.062t-.438 1.062Q12.625 11 12 11Zm0 11.5L3 17V7l9-5.5L21 7v10Zm0-2.35l3.675-2.25q-.825-.425-1.75-.662Q13 17 12 17t-1.925.238q-.925.237-1.75.662Zm-5.6-3.425q1.2-.825 2.613-1.275Q10.425 15 12 15q1.575 0 2.988.45q1.412.45 2.612 1.275l1.4-.85v-7.75L12 3.85L5 8.125v7.75Zm5.6-6.45Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--carbon" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path fill="currentColor" d="M28 6H4a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h24a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2Zm0 2v3H4V8ZM4 24V13h24v11Z"></path><path fill="currentColor" d="M6 20h10v2H6z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--material-symbols" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M5.025 21q-.825 0-1.412-.587q-.588-.588-.588-1.413v-7.95q-.575-.525-.887-1.35q-.313-.825-.013-1.8l1.05-3.4q.2-.65.713-1.075Q4.4 3 5.075 3h13.9q.675 0 1.175.412q.5.413.725 1.088l1.05 3.4q.3.975-.012 1.775q-.313.8-.888 1.375V19q0 .825-.587 1.413q-.588.587-1.413.587Zm9.2-11q.675 0 1.025-.463q.35-.462.275-1.037l-.55-3.5h-1.95v3.7q0 .525.35.913q.35.387.85.387Zm-4.5 0q.575 0 .938-.387q.362-.388.362-.913V5h-1.95l-.55 3.5q-.1.6.263 1.05q.362.45.937.45Zm-4.45 0q.45 0 .787-.325q.338-.325.413-.825L7.025 5h-1.95l-1 3.35q-.15.5.162 1.075Q4.55 10 5.275 10Zm13.5 0q.725 0 1.05-.575q.325-.575.15-1.075L18.925 5h-1.9l.55 3.85q.075.5.413.825q.337.325.787.325Zm-13.75 9h14v-7.05q-.125.05-.162.05h-.088q-.675 0-1.188-.225q-.512-.225-1.012-.725q-.45.45-1.025.7q-.575.25-1.225.25q-.675 0-1.263-.25q-.587-.25-1.037-.7q-.425.45-.987.7q-.563.25-1.213.25q-.725 0-1.313-.25q-.587-.25-1.037-.7q-.525.525-1.037.737Q5.925 12 5.275 12h-.112q-.063 0-.138-.05V19Zm14 0h-14h14Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--fluent" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M9.042 19.003h5.916a3 3 0 0 1-5.916 0Zm2.958-17a7.5 7.5 0 0 1 7.5 7.5v4l1.418 3.16A.95.95 0 0 1 20.052 18h-16.1a.95.95 0 0 1-.867-1.338l1.415-3.16V9.49l.005-.25A7.5 7.5 0 0 1 12 2.004Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="m21.704 5.29l-2.997-2.997A.996.996 0 0 0 18 2H6a.996.996 0 0 0-.707.293L2.296 5.29A.994.994 0 0 0 2 5.999V19a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5.999a.994.994 0 0 0-.296-.709zM6.414 4h11.172l1 1H5.414l1-1zM17 13v1H7v-4h2v2h6v-2h2v3z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="m8 5l-5 5l5 5"/><path d="M3 10h8c5.523 0 10 4.477 10 10v1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M22 12c0 6-4.39 10-9.806 10C7.792 22 4.24 19.665 3 16m-1-4C2 6 6.39 2 11.806 2C16.209 2 19.76 4.335 21 8"/><path d="m7 17l-4-1l-1 4M17 7l4 1l1-4"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 8v10h10"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18 18L6 6m2 12h10V8"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 20V4m-7 9l7 7l7-7"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="m7 10l5 5l5-5H7z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="m7 14l5-5l5 5H7z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="m16 5l5 5l-5 5"/><path d="M21 10h-8C7.477 10 3 14.477 3 20v1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m11 5l-7 7l7 7m-7-7h16"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="m18 2l3 3l-3 3M6 22l-3-3l3-3"/><path d="M21 5H10a7 7 0 0 0-7 7m0 7h11a7 7 0 0 0 7-7"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 6H3m18 0l-4 4m4-4l-4-4M3 18h18M3 18l4 4m-4-4l4-4"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 12h16m-7-7l7 7l-7 7"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M2 19h3.908a2 2 0 0 0 1.682-.919L11.5 12l3.91-6.082A2 2 0 0 1 17.091 5H22m0 14h-4.908a2 2 0 0 1-1.682-.919L13.428 15M2 5h3.908a2 2 0 0 1 1.682.918L9.571 9"/><path d="m19 2l3 3l-3 3m0 8l3 3l-3 3"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 3v18M6 3l4 4M6 3L2 7m16 14V3m0 18l4-4m-4 4l-4-4"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m6 6l12 12M16 6H6v10"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18 6L6 18M8 6h10v10"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 20V4m-7 7l7-7l7 7"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ri" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M20 22H4a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1zM7 6v4h4V6H7zm0 6v2h10v-2H7zm0 4v2h10v-2H7zm6-9v2h4V7h-4z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 36 36"><path fill="currentColor" d="M8.42 32.6A6.3 6.3 0 0 1 4 30.79l-.13-.13A6.2 6.2 0 0 1 2 26.22a6.77 6.77 0 0 1 2-4.82L19.5 6.07a8.67 8.67 0 0 1 12.15-.35A8 8 0 0 1 34 11.44a9 9 0 0 1-2.7 6.36L17.37 31.6A1 1 0 1 1 16 30.18l13.89-13.8A7 7 0 0 0 32 11.44a6 6 0 0 0-1.76-4.3a6.67 6.67 0 0 0-9.34.35L5.45 22.82A4.78 4.78 0 0 0 4 26.22a4.21 4.21 0 0 0 1.24 3l.13.13a4.64 4.64 0 0 0 6.5-.21l13.35-13.2A2.7 2.7 0 0 0 26 14a2.35 2.35 0 0 0-.69-1.68a2.61 2.61 0 0 0-3.66.13l-9.2 9.12a1 1 0 1 1-1.41-1.42L20.28 11a4.62 4.62 0 0 1 6.48-.13A4.33 4.33 0 0 1 28 14a4.68 4.68 0 0 1-1.41 3.34L13.28 30.58a6.91 6.91 0 0 1-4.86 2.02Z" class="clr-i-outline clr-i-outline-path-1"/><path fill="none" d="M0 0h36v36H0z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32"><path fill="currentColor" d="M19 10h7v2h-7zm0 5h7v2h-7zm0 5h7v2h-7zM6 10h7v2H6zm0 5h7v2H6zm0 5h7v2H6z"/><path fill="currentColor" d="M28 5H4a2.002 2.002 0 0 0-2 2v18a2.002 2.002 0 0 0 2 2h24a2.002 2.002 0 0 0 2-2V7a2.002 2.002 0 0 0-2-2ZM4 7h11v18H4Zm13 18V7h11v18Z"/></svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none">
|
|
2
|
+
<path d="M18.5603 12.1845Q18.9558 12.479 19.448 13.1821L22.1638 13.1821L22.1638 10.2114L20.195 10.2114Q19.3074 9.42036 18.5691 9.1523Q17.8308 8.88423 16.7497 8.88423Q15.3962 8.88423 14.2229 9.42476Q13.0495 9.96529 12.1794 10.9013Q11.3093 11.8374 10.8083 13.0898Q10.3074 14.3422 10.3074 15.7749Q10.3074 16.7329 10.5359 17.6162Q10.7644 18.4995 11.1775 19.2685Q11.5906 20.0376 12.175 20.6704Q12.7595 21.3032 13.4758 21.7514Q14.1921 22.1997 15.0183 22.4458Q15.8445 22.6918 16.7497 22.6918Q17.822 22.6918 18.7492 22.3842Q19.6765 22.0766 20.4192 21.5405Q21.1618 21.0043 21.6892 20.2705Q22.2165 19.5366 22.489 18.6752L19.6589 17.8842Q19.5007 18.2797 19.2195 18.6445Q18.9382 19.0092 18.5647 19.2905Q18.1911 19.5717 17.7341 19.7431Q17.2771 19.9145 16.7497 19.9145Q15.9939 19.9145 15.3611 19.5849Q14.7282 19.2553 14.2712 18.6928Q13.8142 18.1303 13.5549 17.3789Q13.2956 16.6274 13.2956 15.7749Q13.2956 14.9311 13.5593 14.1796Q13.823 13.4282 14.2844 12.8613Q14.7458 12.2944 15.3786 11.9648Q16.0115 11.6352 16.7497 11.6352Q17.2507 11.6352 17.7077 11.7626Q18.1648 11.8901 18.5603 12.1845Z" fill="#000000FF"/>
|
|
3
|
+
<path d="M0 5.81818C0 5.04665 0.147629 4.30447 0.442883 3.59166C0.738136 2.87885 1.15855 2.24966 1.70411 1.70411C2.24966 1.15855 2.87885 0.738136 3.59166 0.442886C4.30447 0.147629 5.04664 0 5.81818 0L26.1818 0C26.9534 0 27.6955 0.147629 28.4083 0.442886C29.1211 0.738136 29.7503 1.15855 30.2959 1.70411C30.8414 2.24966 31.2619 2.87885 31.5571 3.59166C31.8524 4.30447 32 5.04665 32 5.81818L32 26.1818C32 26.9534 31.8524 27.6955 31.5571 28.4083C31.2619 29.1211 30.8414 29.7503 30.2959 30.2959C29.7503 30.8414 29.1211 31.2619 28.4083 31.5571C27.6955 31.8524 26.9534 32 26.1818 32L5.81818 32C5.04664 32 4.30447 31.8524 3.59166 31.5571C2.87885 31.2619 2.24966 30.8414 1.70411 30.2959C1.15855 29.7503 0.738136 29.1211 0.442883 28.4083C0.147629 27.6955 0 26.9534 0 26.1818L0 5.81818ZM5.81818 2.90909L26.1818 2.90909C26.9851 2.90909 27.6708 3.19311 28.2389 3.76115C28.8069 4.32918 29.0909 5.01486 29.0909 5.81818L29.0909 26.1818C29.0909 26.9851 28.8069 27.6708 28.2389 28.2389C27.6708 28.8069 26.9851 29.0909 26.1818 29.0909L5.81818 29.0909C5.01486 29.0909 4.32918 28.8069 3.76114 28.2389C3.19311 27.6708 2.90909 26.9851 2.90909 26.1818L2.90909 5.81818C2.90909 5.01486 3.19311 4.32918 3.76114 3.76115C4.32918 3.19311 5.01486 2.90909 5.81818 2.90909Z" fill-rule="evenodd" fill="#000000"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="m10 17l-5-5l1.41-1.42L10 14.17l7.59-7.59L19 8m0-5H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 16H5V5h14v14m-2-2H7V7h10v10Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M20.84 22.73L19.1 21H5a2 2 0 0 1-2-2V4.9L1.11 3l1.28-1.27l19.72 19.73l-1.27 1.27M21 5a2 2 0 0 0-2-2H6.2L21 17.8V5Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M19 3H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 20 20"><path fill="currentColor" d="M12.452 4.516c.446.436.481 1.043 0 1.576L8.705 10l3.747 3.908c.481.533.446 1.141 0 1.574c-.445.436-1.197.408-1.615 0c-.418-.406-4.502-4.695-4.502-4.695a1.095 1.095 0 0 1 0-1.576s4.084-4.287 4.502-4.695c.418-.409 1.17-.436 1.615 0z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 20 20"><path fill="currentColor" d="M9.163 4.516c.418.408 4.502 4.695 4.502 4.695a1.095 1.095 0 0 1 0 1.576s-4.084 4.289-4.502 4.695c-.418.408-1.17.436-1.615 0c-.446-.434-.481-1.041 0-1.574L11.295 10L7.548 6.092c-.481-.533-.446-1.141 0-1.576c.445-.436 1.197-.409 1.615 0z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M19 6.41L17.59 5L12 10.59L6.41 5L5 6.41L10.59 12L5 17.59L6.41 19L12 13.41L17.59 19L19 17.59L13.41 12z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 512 512"><path fill="currentColor" d="M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32s-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32s-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32s-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2l-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29c7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1l-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160s-93.3 160-208 160z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="m20.99 17.99l-4.94-4.94l-2.12 2.12l4.94 4.94c.59.59 1.54.59 2.12 0c.58-.59.58-1.54 0-2.12zM17.65 10c1.93 0 3.5-1.57 3.5-3.5c0-.58-.16-1.12-.41-1.6l-2.7 2.7l-1.49-1.49l2.7-2.7c-.48-.25-1.02-.41-1.6-.41c-1.93 0-3.5 1.57-3.5 3.5c0 .41.08.8.21 1.16l-1.85 1.85l-1.78-1.78a.996.996 0 0 0 0-1.41l-.71-.71l2.12-2.12a3 3 0 0 0-4.24 0L5.08 6.32a.996.996 0 0 0 0 1.41l.71.71H3.25c-.19 0-.37.07-.5.21a.7.7 0 0 0 0 1l2.54 2.54a.7.7 0 0 0 1 0c.13-.13.21-.31.21-.5V9.15l.7.7c.39.39 1.02.39 1.41 0l1.78 1.78l-6.35 6.35a1.49 1.49 0 0 0 0 2.12c.59.59 1.54.59 2.12 0L16.48 9.79c.37.13.76.21 1.17.21z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ic" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23c.23.01.44.05.63.13c.2.09.38.21.52.36s.25.33.34.53s.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29s-.4-.73-.7-1.01s-.66-.5-1.08-.66s-.88-.23-1.39-.23c-.65 0-1.22.11-1.7.34s-.88.53-1.2.92s-.56.84-.71 1.36S8 11.29 8 11.87v.27c0 .58.08 1.12.23 1.64s.39.97.71 1.35s.72.69 1.2.91c.48.22 1.05.34 1.7.34c.47 0 .91-.08 1.32-.23s.77-.36 1.08-.63s.56-.58.74-.94s.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58s-.21.33-.36.46s-.32.23-.52.3c-.19.07-.39.09-.6.1c-.36-.01-.66-.08-.89-.23c-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88s-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8s8 3.59 8 8s-3.59 8-8 8z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M19.1 4.9C15.2 1 8.8 1 4.9 4.9S1 15.2 4.9 19.1s10.2 3.9 14.1 0s4-10.3.1-14.2zm-4.3 11.3L12 13.4l-2.8 2.8l-1.4-1.4l2.8-2.8l-2.8-2.8l1.4-1.4l2.8 2.8l2.8-2.8l1.4 1.4l-2.8 2.8l2.8 2.8l-1.4 1.4z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M4 13h6c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1zm0 8h6c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm10 0h6c.55 0 1-.45 1-1v-8c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1zM13 4v4c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12 10c4.418 0 8-1.79 8-4s-3.582-4-8-4s-8 1.79-8 4s3.582 4 8 4Zm6.328.17A7.61 7.61 0 0 0 20 9.053V18c0 2.21-3.582 4-8 4s-8-1.79-8-4V9.053a7.61 7.61 0 0 0 1.672 1.117C7.37 11.018 9.608 11.5 12 11.5c2.392 0 4.63-.482 6.328-1.33Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M6 19a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7H6v12m2.46-7.12l1.41-1.41L12 12.59l2.12-2.12l1.41 1.41L13.41 14l2.12 2.12l-1.41 1.41L12 15.41l-2.12 2.12l-1.41-1.41L10.59 14l-2.13-2.12M15.5 4l-1-1h-5l-1 1H5v2h14V4h-3.5Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M19 4h-3.5l-1-1h-5l-1 1H5v2h14M6 19a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7H6v12Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--fluent" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M15.25 2a.75.75 0 0 1 .743.648L16 2.75v2.325A3.754 3.754 0 0 1 18.925 8h2.325a.75.75 0 0 1 .102 1.493l-.102.007H19v1.75h2.25a.75.75 0 0 1 .743.648L22 12a.75.75 0 0 1-.648.743l-.102.007H19v1.75h2.25a.75.75 0 0 1 .743.648l.007.102a.75.75 0 0 1-.648.743L21.25 16h-2.325A3.754 3.754 0 0 1 16 18.926v2.325a.75.75 0 0 1-1.493.102l-.007-.102V19h-1.751l.001 2.251a.75.75 0 0 1-.648.743L12 22a.75.75 0 0 1-.743-.648l-.007-.102l-.001-2.251H9.5v2.251a.75.75 0 0 1-.648.743L8.75 22a.75.75 0 0 1-.743-.648L8 21.25v-2.325A3.754 3.754 0 0 1 5.075 16H2.75a.75.75 0 0 1-.102-1.493l.102-.007L5 14.499v-1.75l-2.25.001a.75.75 0 0 1-.743-.648L2 12a.75.75 0 0 1 .648-.743l.102-.007L5 11.249v-1.75L2.75 9.5a.75.75 0 0 1-.743-.648L2 8.75a.75.75 0 0 1 .648-.743L2.75 8l2.325-.001A3.754 3.754 0 0 1 8 5.075V2.75a.75.75 0 0 1 1.493-.102l.007.102v2.249h1.749l.001-2.249a.75.75 0 0 1 .648-.743L12 2a.75.75 0 0 1 .743.648l.007.102l-.001 2.249H14.5V2.75a.75.75 0 0 1 .55-.723l.098-.02L15.25 2Zm0 4.5h-6.5A2.25 2.25 0 0 0 6.5 8.75v6.5a2.25 2.25 0 0 0 2.25 2.25h6.5a2.25 2.25 0 0 0 2.25-2.25v-6.5a2.25 2.25 0 0 0-2.25-2.25Zm-3.245 2.505a3 3 0 1 1 0 6a3 3 0 0 1 0-6Zm0 1.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0-3Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="m9 16.2l-3.5-3.5a.984.984 0 0 0-1.4 0a.984.984 0 0 0 0 1.4l4.19 4.19c.39.39 1.02.39 1.41 0L20.3 7.7a.984.984 0 0 0 0-1.4a.984.984 0 0 0-1.4 0L9 16.2z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--bi" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 16 16"><path fill="currentColor" d="M8 9.5a1.5 1.5 0 1 0 0-3a1.5 1.5 0 0 0 0 3z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M20 2a1 1 0 0 1 1 1v3.757l-8.999 9l-.006 4.238l4.246.006L21 15.242V21a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h16zm1.778 6.808l1.414 1.414L15.414 18l-1.416-.002l.002-1.412l7.778-7.778zM12 12H7v2h5v-2zm3-4H7v2h8V8z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ic" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6 12v-3h-4v-4h4V8l5 5l-5 5z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M4.42 20.579a1 1 0 0 1-.737-.326a.988.988 0 0 1-.263-.764l.245-2.694L14.983 5.481l3.537 3.536L7.205 20.33l-2.694.245a.95.95 0 0 1-.091.004ZM19.226 8.31L15.69 4.774l2.121-2.121a1 1 0 0 1 1.415 0l2.121 2.121a1 1 0 0 1 0 1.415l-2.12 2.12l-.001.001Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M15.88 9.29L12 13.17L8.12 9.29a.996.996 0 1 0-1.41 1.41l4.59 4.59c.39.39 1.02.39 1.41 0l4.59-4.59a.996.996 0 0 0 0-1.41c-.39-.38-1.03-.39-1.42 0z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><ellipse cx="12" cy="6" rx="8" ry="3"/><path d="M4 6v6c0 1.657 3.582 3 8 3a19.84 19.84 0 0 0 3.302-.267M20 12V6"/><path d="M4 12v6c0 1.599 3.335 2.905 7.538 2.995M20 14v-2m-6 7h7m-3-3l3 3l-3 3"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="m5.58 16.89l5.77-4.07c.56-.4.56-1.24 0-1.63L5.58 7.11C4.91 6.65 4 7.12 4 7.93v8.14c0 .81.91 1.28 1.58.82zM13 7.93v8.14c0 .81.91 1.28 1.58.82l5.77-4.07c.56-.4.56-1.24 0-1.63l-5.77-4.07c-.67-.47-1.58 0-1.58.81z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M6 21.5A3.5 3.5 0 1 1 9.355 17H15v-2h2V9.242L14.757 7H9v2H3V3h6v2h5.757L18 1.756L22.243 6L19 9.241V15h2v6h-6v-2H9.355A3.501 3.501 0 0 1 6 21.5zm0-5a1.5 1.5 0 1 0 .001 3.001A1.5 1.5 0 0 0 6 16.5zm13 .5h-2v2h2v-2zM18 4.586L16.586 6L18 7.414L19.414 6L18 4.586zM7 5H5v2h2V5z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M6 16h2v2c0 .55.45 1 1 1s1-.45 1-1v-3c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1zm2-8H6c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1s-1 .45-1 1v2zm7 11c.55 0 1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm1-11V6c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1h-2z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M6 14c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1H7v-2c0-.55-.45-1-1-1zm0-4c.55 0 1-.45 1-1V7h2c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm11 7h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1s-1 .45-1 1v2zM14 6c0 .55.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V6c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M5 7h14c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zm0 6h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h5c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h5c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zm10.41-2.83l-.71-.71a.996.996 0 1 0-1.41 1.41l1.42 1.42c.39.39 1.02.39 1.41 0l3.17-3.17a.996.996 0 1 0-1.41-1.41l-2.47 2.46zM4 4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2zM8 17.5a2.5 2.5 0 0 1 0-5a2.5 2.5 0 0 1 0 5zM9.5 8a2.5 2.5 0 0 1 5 0a2.5 2.5 0 0 1-5 0zm6.5 9.5a2.5 2.5 0 0 1 0-5a2.5 2.5 0 0 1 0 5z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5S5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05c.02.01.03.03.04.04c1.14.83 1.93 1.94 1.93 3.41V18c0 .35-.07.69-.18 1H22c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12 12.75c1.63 0 3.07.39 4.24.9c1.08.48 1.76 1.56 1.76 2.73V17c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-.61c0-1.18.68-2.26 1.76-2.73c1.17-.52 2.61-.91 4.24-.91zM4 13c1.1 0 2-.9 2-2s-.9-2-2-2s-2 .9-2 2s.9 2 2 2zm1.13 1.1c-.37-.06-.74-.1-1.13-.1c-.99 0-1.93.21-2.78.58A2.01 2.01 0 0 0 0 16.43V17c0 .55.45 1 1 1h3.5v-1.61c0-.83.23-1.61.63-2.29zM20 13c1.1 0 2-.9 2-2s-.9-2-2-2s-2 .9-2 2s.9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85A6.95 6.95 0 0 0 20 14c-.39 0-.76.04-1.13.1c.4.68.63 1.46.63 2.29V18H23c.55 0 1-.45 1-1v-.57zM12 6c1.66 0 3 1.34 3 3s-1.34 3-3 3s-3-1.34-3-3s1.34-3 3-3z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 1024 1024"><path fill="currentColor" d="M923 283.6a260.04 260.04 0 0 0-56.9-82.8a264.4 264.4 0 0 0-84-55.5A265.34 265.34 0 0 0 679.7 125c-49.3 0-97.4 13.5-139.2 39c-10 6.1-19.5 12.8-28.5 20.1c-9-7.3-18.5-14-28.5-20.1c-41.8-25.5-89.9-39-139.2-39c-35.5 0-69.9 6.8-102.4 20.3c-31.4 13-59.7 31.7-84 55.5a258.44 258.44 0 0 0-56.9 82.8c-13.9 32.3-21 66.6-21 101.9c0 33.3 6.8 68 20.3 103.3c11.3 29.5 27.5 60.1 48.2 91c32.8 48.9 77.9 99.9 133.9 151.6c92.8 85.7 184.7 144.9 188.6 147.3l23.7 15.2c10.5 6.7 24 6.7 34.5 0l23.7-15.2c3.9-2.5 95.7-61.6 188.6-147.3c56-51.7 101.1-102.7 133.9-151.6c20.7-30.9 37-61.5 48.2-91c13.5-35.3 20.3-70 20.3-103.3c.1-35.3-7-69.6-20.9-101.9z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M10 19v-5h4v5c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-7h1.7c.46 0 .68-.57.33-.87L12.67 3.6c-.38-.34-.96-.34-1.34 0l-8.36 7.53c-.34.3-.13.87.33.87H5v7c0 .55.45 1 1 1h3c.55 0 1-.45 1-1z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32"><path fill="currentColor" d="M28 6v20H4V6h24m0-2H4a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h24a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z"/><path fill="currentColor" d="M6 10h7v2H6zm0 4h4v2H6zm17 4h-6a3 3 0 0 0-3 3v2h2v-2a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v2h2v-2a3 3 0 0 0-3-3zm-3-1a4 4 0 1 0-4-4a4 4 0 0 0 4 4zm0-6a2 2 0 1 1-2 2a2 2 0 0 1 2-2z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><ellipse cx="12" cy="6" rx="8" ry="3"/><path d="M4 6v8m5.009.783c.924.14 1.933.217 2.991.217c4.418 0 8-1.343 8-3V6"/><path d="M11.252 20.987c.246.009.496.013.748.013c4.418 0 8-1.343 8-3v-6M2 19h7m-3-3l3 3l-3 3"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 1024 1024"><path fill="currentColor" d="M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448s448-200.6 448-448S759.4 64 512 64zm32 664c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V456c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v272zm-32-344a48.01 48.01 0 0 1 0-96a48.01 48.01 0 0 1 0 96z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32"><path fill="none" d="M16 8a1.5 1.5 0 1 1-1.5 1.5A1.5 1.5 0 0 1 16 8Zm4 13.875h-2.875v-8H13v2.25h1.875v5.75H12v2.25h8Z"/><path fill="currentColor" d="M16 2a14 14 0 1 0 14 14A14 14 0 0 0 16 2Zm0 6a1.5 1.5 0 1 1-1.5 1.5A1.5 1.5 0 0 1 16 8Zm4 16.125h-8v-2.25h2.875v-5.75H13v-2.25h4.125v8H20Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32"><path fill="currentColor" d="M17 22v-8h-4v2h2v6h-3v2h8v-2h-3zM16 8a1.5 1.5 0 1 0 1.5 1.5A1.5 1.5 0 0 0 16 8z"/><path fill="currentColor" d="M16 30a14 14 0 1 1 14-14a14 14 0 0 1-14 14Zm0-26a12 12 0 1 0 12 12A12 12 0 0 0 16 4Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84l3.96-5.58a.99.99 0 0 0 0-1.16l-3.96-5.58z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ion" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 512 512"><path fill="currentColor" d="m478.33 433.6l-90-218a22 22 0 0 0-40.67 0l-90 218a22 22 0 1 0 40.67 16.79L316.66 406h102.67l18.33 44.39A22 22 0 0 0 458 464a22 22 0 0 0 20.32-30.4ZM334.83 362L368 281.65L401.17 362Zm-66.99-19.08a22 22 0 0 0-4.89-30.7c-.2-.15-15-11.13-36.49-34.73c39.65-53.68 62.11-114.75 71.27-143.49H330a22 22 0 0 0 0-44H214V70a22 22 0 0 0-44 0v20H54a22 22 0 0 0 0 44h197.25c-9.52 26.95-27.05 69.5-53.79 108.36c-31.41-41.68-43.08-68.65-43.17-68.87a22 22 0 0 0-40.58 17c.58 1.38 14.55 34.23 52.86 83.93c.92 1.19 1.83 2.35 2.74 3.51c-39.24 44.35-77.74 71.86-93.85 80.74a22 22 0 1 0 21.07 38.63c2.16-1.18 48.6-26.89 101.63-85.59c22.52 24.08 38 35.44 38.93 36.1a22 22 0 0 0 30.75-4.9Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ic" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12.6 18.06c-.36.28-.87.28-1.23 0l-6.15-4.78a.991.991 0 0 0-1.22 0a.997.997 0 0 0 0 1.57l6.76 5.26c.72.56 1.73.56 2.46 0l6.76-5.26c.51-.4.51-1.17 0-1.57l-.01-.01a.991.991 0 0 0-1.22 0l-6.15 4.79zm.63-3.02l6.76-5.26c.51-.4.51-1.18 0-1.58l-6.76-5.26c-.72-.56-1.73-.56-2.46 0L4.01 8.21c-.51.4-.51 1.18 0 1.58l6.76 5.26c.72.56 1.74.56 2.46-.01z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--tabler" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><rect width="16" height="16" x="4" y="4" rx="2"></rect><path d="M12 4v16"></path></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ic" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12 2c-4.2 0-8 3.22-8 8.2c0 3.18 2.45 6.92 7.34 11.23c.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2C20 5.22 16.2 2 12 2zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2s2 .9 2 2s-.9 2-2 2z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M18 10H9V7c0-1.654 1.346-3 3-3s3 1.346 3 3h2c0-2.757-2.243-5-5-5S7 4.243 7 7v3H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2zm-7.939 5.499A2.002 2.002 0 0 1 14 16a1.99 1.99 0 0 1-1 1.723V20h-2v-2.277a1.992 1.992 0 0 1-.939-2.224z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M20 12c0-1.103-.897-2-2-2h-1V7c0-2.757-2.243-5-5-5S7 4.243 7 7v3H6c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-8zM9 7c0-1.654 1.346-3 3-3s3 1.346 3 3v3H9V7z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-.4 4.25l-6.54 4.09c-.65.41-1.47.41-2.12 0L4.4 8.25a.85.85 0 1 1 .9-1.44L12 11l6.7-4.19a.85.85 0 1 1 .9 1.44z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M16.23 7h2.6c-.06-.47-.36-.94-.79-1.17L11.4 2.45c-.56-.29-1.23-.29-1.8-.01L2.8 5.83c-.48.26-.8.81-.8 1.34V15c0 1.1.9 2 2 2V7.4L10.5 4l5.73 3z"/><path fill="currentColor" d="M20 8H7c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2zm0 3.46c0 .33-.19.64-.48.79l-5.61 2.88a.89.89 0 0 1-.81 0l-5.61-2.88a.887.887 0 1 1 .81-1.58l5.2 2.67l5.2-2.67c.6-.31 1.3.12 1.3.79z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M18.05 21.29a.996.996 0 0 1-1.41 0l-2.12-2.12a.996.996 0 1 1 1.41-1.41l1.41 1.41l3.54-3.54a.996.996 0 1 1 1.41 1.41l-4.24 4.25zM12.08 20H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2v6.68A6.995 6.995 0 0 0 12 19c0 .34.03.67.08 1zm-.61-7.33c.32.2.74.2 1.06 0l7.07-4.42a.85.85 0 1 0-.9-1.44L12 11L5.3 6.81a.85.85 0 1 0-.9 1.44l7.07 4.42z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M4 18h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-3 12H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--material-symbols" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M16.675 11.5q-.425 0-.712-.288q-.288-.287-.288-.712v-4q0-.425.288-.713q.287-.287.712-.287H20q.425 0 .712.287q.288.288.288.713v4q0 .425-.288.712q-.287.288-.712.288Zm-6.325 0q-.425 0-.713-.288q-.287-.287-.287-.712v-4q0-.425.287-.713q.288-.287.713-.287h3.325q.425 0 .713.287q.287.288.287.713v4q0 .425-.287.712q-.288.288-.713.288Zm-6.325 0q-.425 0-.713-.288q-.287-.287-.287-.712v-4q0-.425.287-.713q.288-.287.713-.287H7.35q.425 0 .712.287q.288.288.288.713v4q0 .425-.288.712q-.287.288-.712.288Zm0 7q-.425 0-.713-.288q-.287-.287-.287-.712v-4q0-.425.287-.713q.288-.287.713-.287H7.35q.425 0 .712.287q.288.288.288.713v4q0 .425-.288.712q-.287.288-.712.288Zm6.325 0q-.425 0-.713-.288q-.287-.287-.287-.712v-4q0-.425.287-.713q.288-.287.713-.287h3.325q.425 0 .713.287q.287.288.287.713v4q0 .425-.287.712q-.288.288-.713.288Zm6.325 0q-.425 0-.712-.288q-.288-.287-.288-.712v-4q0-.425.288-.713q.287-.287.712-.287H20q.425 0 .712.287q.288.288.288.713v4q0 .425-.288.712q-.287.288-.712.288Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M6 10c-1.1 0-2 .9-2 2s.9 2 2 2s2-.9 2-2s-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2s2-.9 2-2s-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2s2-.9 2-2s-.9-2-2-2z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32"><path fill="currentColor" d="M19 10h7v2h-7zm0 5h7v2h-7zm0 5h7v2h-7z"/><path fill="currentColor" d="M28 5H4a2.002 2.002 0 0 0-2 2v18a2.002 2.002 0 0 0 2 2h24a2.003 2.003 0 0 0 2-2V7a2.002 2.002 0 0 0-2-2ZM4 7h11v18H4Zm13 18V7h11l.002 18Z"/></svg>
|