@sd-angular/core 19.0.0-beta.1 → 19.0.0-beta.100
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +723 -64
- package/assets/scss/README.md +524 -0
- package/assets/scss/ckeditor5.scss +61 -4
- package/assets/scss/core/bootstrap.scss +0 -83
- package/assets/scss/core/form.scss +36 -16
- package/assets/scss/core/utilities/_base.scss +333 -0
- package/assets/scss/core/utilities/_border.scss +22 -0
- package/assets/scss/core/utilities/_display.scss +10 -0
- package/assets/scss/core/utilities/_elevation.scss +80 -0
- package/assets/scss/core/utilities/_flexbox.scss +54 -0
- package/assets/scss/core/utilities/_gap.scss +9 -0
- package/assets/scss/core/utilities/_grid.scss +142 -0
- package/assets/scss/core/utilities/_index.scss +17 -0
- package/assets/scss/core/utilities/_misc.scss +20 -0
- package/assets/scss/core/utilities/_overflow.scss +9 -0
- package/assets/scss/core/utilities/_position.scss +8 -0
- package/assets/scss/core/utilities/_sizing.scss +28 -0
- package/assets/scss/core/utilities/_spacing.scss +31 -0
- package/assets/scss/core/utilities/_typography.scss +99 -0
- package/assets/scss/sd-core.scss +8 -5
- package/assets/scss/themes/material-theme.scss +82 -40
- package/components/anchor/index.d.ts +1 -1
- package/components/anchor/src/components/anchor/anchor.component.d.ts +22 -0
- package/components/anchor/src/components/anchor-item/anchor-item.component.d.ts +9 -11
- package/components/anchor/src/components/anchor-nav/anchor-nav.component.d.ts +21 -0
- package/components/anchor/src/components/index.d.ts +1 -1
- package/components/anchor/src/models/index.d.ts +1 -0
- package/components/anchor/src/models/sd-anchor.model.d.ts +7 -0
- package/components/autoid-inspector/index.d.ts +8 -0
- package/components/autoid-inspector/src/autoid-inspector.component.d.ts +55 -0
- package/components/autoid-inspector/src/models/autoid-element.model.d.ts +55 -0
- package/components/autoid-inspector/src/models/autoid-export-format.model.d.ts +6 -0
- package/components/autoid-inspector/src/models/autoid-inspector-config.model.d.ts +8 -0
- package/components/autoid-inspector/src/services/autoid-audit.service.d.ts +19 -0
- package/components/autoid-inspector/src/services/autoid-export.service.d.ts +21 -0
- package/components/autoid-inspector/src/services/autoid-highlight.service.d.ts +12 -0
- package/components/autoid-inspector/src/services/autoid-scanner.service.d.ts +23 -0
- package/components/avatar/index.d.ts +1 -0
- package/components/avatar/src/avatar.component.d.ts +19 -0
- package/components/badge/src/badge.component.d.ts +74 -20
- package/components/button/src/button.component.d.ts +30 -28
- package/components/chart/index.d.ts +4 -0
- package/components/chart/src/bar-chart.component.d.ts +18 -0
- package/components/chart/src/doughnut-chart.component.d.ts +16 -0
- package/components/chart/src/line-chart.component.d.ts +18 -0
- package/components/chart/src/pie-chart.component.d.ts +16 -0
- package/components/code-editor/index.d.ts +1 -0
- package/components/code-editor/src/code-editor.component.d.ts +25 -0
- package/components/document-builder/index.d.ts +1 -0
- package/components/document-builder/src/components/header-footer-builder/header-footer-builder.component.d.ts +4 -1
- package/components/document-builder/src/document-builder.component.d.ts +14 -42
- package/components/document-builder/src/document-builder.config.d.ts +21 -0
- package/components/document-builder/src/document-builder.model.d.ts +22 -12
- package/components/document-builder/src/document-builder.utils.d.ts +10 -0
- package/components/document-builder/src/plugins/block-space/block-space.plugin.d.ts +9 -0
- package/components/document-builder/src/plugins/ck-comment/ck-comment.plugin.d.ts +44 -0
- package/components/document-builder/src/plugins/ck-comment/ck-comment.plugin.model.d.ts +57 -0
- package/components/document-builder/src/plugins/heading/heading.plugin.d.ts +5 -0
- package/components/document-builder/src/plugins/highlight-range/highlight-range.plugin.d.ts +4 -0
- package/components/document-builder/src/plugins/image-custom/image-custom.plugin.d.ts +31 -0
- package/components/document-builder/src/plugins/{image-upload.plugin.d.ts → image-upload/image-upload.plugin.d.ts} +0 -4
- package/components/document-builder/src/plugins/index.d.ts +11 -5
- package/components/document-builder/src/plugins/{page-orientation.plugin.d.ts → page-orientation/page-orientation.plugin.d.ts} +2 -2
- package/components/document-builder/src/plugins/paste-handler/filters/bookmark.d.ts +14 -0
- package/components/document-builder/src/plugins/paste-handler/filters/br.d.ts +15 -0
- package/components/document-builder/src/plugins/paste-handler/filters/image.d.ts +25 -0
- package/components/document-builder/src/plugins/paste-handler/filters/list.d.ts +29 -0
- package/components/document-builder/src/plugins/paste-handler/filters/parse.d.ts +35 -0
- package/components/document-builder/src/plugins/paste-handler/filters/removeboldwrapper.d.ts +15 -0
- package/components/document-builder/src/plugins/paste-handler/filters/removegooglesheetstag.d.ts +15 -0
- package/components/document-builder/src/plugins/paste-handler/filters/removeinvalidtablewidth.d.ts +15 -0
- package/components/document-builder/src/plugins/paste-handler/filters/removemsattributes.d.ts +15 -0
- package/components/document-builder/src/plugins/paste-handler/filters/removestyleblock.d.ts +15 -0
- package/components/document-builder/src/plugins/paste-handler/filters/removexmlns.d.ts +15 -0
- package/components/document-builder/src/plugins/paste-handler/filters/replacemsfootnotes.d.ts +54 -0
- package/components/document-builder/src/plugins/paste-handler/filters/replacetabswithinprewithspaces.d.ts +24 -0
- package/components/document-builder/src/plugins/paste-handler/filters/space.d.ts +27 -0
- package/components/document-builder/src/plugins/paste-handler/filters/table.d.ts +16 -0
- package/components/document-builder/src/plugins/paste-handler/filters/utils.d.ts +25 -0
- package/components/document-builder/src/plugins/paste-handler/index.d.ts +35 -0
- package/components/document-builder/src/plugins/paste-handler/normalizers/googledocsnormalizer.d.ts +31 -0
- package/components/document-builder/src/plugins/paste-handler/normalizers/googlesheetsnormalizer.d.ts +31 -0
- package/components/document-builder/src/plugins/paste-handler/normalizers/mswordnormalizer.d.ts +29 -0
- package/components/document-builder/src/plugins/paste-handler/types.d.ts +30 -0
- package/components/document-builder/src/plugins/table-custom/index.d.ts +34 -0
- package/components/document-builder/src/plugins/variable/variable.plugin.d.ts +51 -0
- package/components/editor/index.d.ts +3 -0
- package/components/editor/src/configurations/editor.configuration.d.ts +12 -0
- package/components/editor/src/configurations/index.d.ts +1 -0
- package/components/editor/src/editor.component.d.ts +52 -0
- package/components/editor/src/models/editor.model.d.ts +10 -0
- package/components/editor/src/models/image-upload.plugin.model.d.ts +51 -0
- package/components/editor/src/models/index.d.ts +2 -0
- package/components/editor/src/plugins/image-upload/image-upload.plugin.d.ts +22 -0
- package/components/editor/src/plugins/image-upload/utils/batch.utils.d.ts +14 -0
- package/components/editor/src/plugins/image-upload/utils/index.d.ts +3 -0
- package/components/editor/src/plugins/image-upload/utils/style.utils.d.ts +3 -0
- package/components/editor/src/plugins/image-upload/utils/validate.utils.d.ts +4 -0
- package/components/{workflow → form-generic}/src/components/form-builder/components/attribute-table/attribute-table.component.d.ts +6 -4
- package/components/{workflow → form-generic}/src/components/form-builder/components/attribute-template/attribute-template.component.d.ts +4 -4
- package/components/{workflow → form-generic}/src/components/form-builder/components/configure-validation/configure-validation.component.d.ts +4 -4
- package/components/{workflow → form-generic}/src/components/form-builder/components/expression-builder/expression-builder.component.d.ts +1 -1
- package/components/form-generic/src/components/form-builder/components/group/attribute/group-attribute.component.d.ts +23 -0
- package/components/form-generic/src/components/form-builder/components/group/index.d.ts +1 -0
- package/components/{workflow → form-generic}/src/components/form-builder/components/index.d.ts +1 -0
- package/components/{workflow → form-generic}/src/components/form-builder/components/table/control/table-control.component.d.ts +3 -0
- package/components/form-generic/src/components/form-builder/form-builder.component.d.ts +120 -0
- package/components/{workflow → form-generic}/src/components/form-render/form-render.component.d.ts +4 -4
- package/components/{workflow → form-generic}/src/components/sd-feel-expression/sd-feel-expression.component.d.ts +1 -1
- package/components/{workflow/src/configurations/workflow.configuration.d.ts → form-generic/src/configurations/form-generic.configuration.d.ts} +2 -2
- package/components/form-generic/src/configurations/index.d.ts +2 -0
- package/components/{workflow → form-generic}/src/models/form-generic-component.model.d.ts +27 -6
- package/components/{workflow → form-generic}/src/models/form-generic-expression.model.d.ts +1 -0
- package/components/{workflow → form-generic}/src/models/index.d.ts +1 -0
- package/components/{workflow → form-generic}/src/pipes/html.pipe.d.ts +4 -4
- package/components/{workflow → form-generic}/src/services/form-generic.service.d.ts +3 -3
- package/components/index.d.ts +9 -2
- package/components/mini-editor/index.d.ts +2 -0
- package/components/mini-editor/src/mini-editor.component.d.ts +91 -0
- package/components/mini-editor/src/mini-editor.model.d.ts +44 -0
- package/components/modal/index.d.ts +1 -1
- package/components/modal/src/modal.component.d.ts +29 -0
- package/components/preview/index.d.ts +3 -0
- package/components/preview/src/preview-image/preview-image.component.d.ts +84 -24
- package/components/preview/src/preview-image/preview-image.types.d.ts +53 -0
- package/components/preview/src/preview-pdf/preview-pdf.component.d.ts +186 -0
- package/components/preview/src/preview-pdf/preview-pdf.types.d.ts +84 -0
- package/components/quick-action/src/quick-action.component.d.ts +5 -6
- package/components/section/index.d.ts +1 -0
- package/components/section/src/section-item/section-item.component.d.ts +7 -0
- package/components/section/src/section.component.d.ts +11 -12
- package/components/side-drawer/src/side-drawer.component.d.ts +17 -26
- package/components/splitter/index.d.ts +3 -0
- package/components/splitter/src/splitter-handle/splitter-handle.component.d.ts +24 -0
- package/components/splitter/src/splitter-panel/splitter-panel.component.d.ts +16 -0
- package/components/splitter/src/splitter-state.service.d.ts +26 -0
- package/components/splitter/src/splitter.component.d.ts +28 -0
- package/components/splitter/src/splitter.models.d.ts +23 -0
- package/components/tab-router/src/components/tab-router-item/tab-router-item.component.d.ts +4 -1
- package/components/tab-router/src/components/tab-router-nav/tab-router-nav.component.d.ts +5 -6
- package/components/tab-router/src/components/tab-router-outlet/tab-router-outlet.component.d.ts +6 -17
- package/components/table/index.d.ts +3 -0
- package/components/table/src/components/column-title/column-title.component.d.ts +10 -0
- package/components/table/src/components/command/desktop-command.component.d.ts +14 -0
- package/components/table/src/components/command/pipes/command.pipe.d.ts +30 -0
- package/components/table/src/components/command/pipes/filter.pipe.d.ts +35 -0
- package/components/table/src/components/config/config.component.d.ts +7 -14
- package/components/table/src/components/desktop-cell/desktop-cell.component.d.ts +19 -12
- package/components/table/src/components/desktop-cell/view/view.component.d.ts +24 -0
- package/components/table/src/components/filter/column-filter/column-filter.component.d.ts +36 -0
- package/components/table/src/components/filter/external-filter/external-filter.component.d.ts +27 -0
- package/components/table/src/components/filter/index.d.ts +3 -0
- package/components/table/src/components/filter/mobile-filter/mobile-filter.component.d.ts +42 -0
- package/components/table/src/components/index.d.ts +2 -2
- package/components/table/src/components/selector-action/action-filter.pipe.d.ts +11 -10
- package/components/table/src/components/selector-action/selector-action.component.d.ts +7 -6
- package/components/table/src/directives/index.d.ts +5 -0
- package/components/table/src/directives/sd-column-resize.directive.d.ts +13 -0
- package/components/table/src/directives/sd-table-cell-def.directive.d.ts +4 -5
- package/components/table/src/directives/sd-table-column-filter-def.directive.d.ts +8 -0
- package/components/table/src/directives/sd-table-expand-def.directive.d.ts +3 -4
- package/components/table/src/directives/sd-table-filter-def.directive.d.ts +4 -6
- package/components/table/src/directives/sd-table-footer-def.directive.d.ts +2 -3
- package/components/table/src/directives/sd-table-title-def.directive.d.ts +8 -0
- package/components/table/src/directives/sticky-shadow.directive.d.ts +17 -0
- package/components/table/src/models/index.d.ts +1 -0
- package/components/table/src/models/table-column.model.d.ts +49 -40
- package/components/table/src/models/table-command.model.d.ts +7 -3
- package/components/table/src/models/table-item.model.d.ts +15 -3
- package/components/table/src/models/table-option-config.model.d.ts +5 -0
- package/components/table/src/models/table-option-export.model.d.ts +3 -2
- package/components/table/src/models/table-option-selector.model.d.ts +65 -10
- package/components/table/src/models/table-option-style.model.d.ts +6 -1
- package/components/table/src/models/table-option-tree.model.d.ts +12 -0
- package/components/table/src/models/table-option.model.d.ts +137 -8
- package/components/table/src/pipes/index.d.ts +1 -0
- package/components/table/src/pipes/sd-tree.pipe.d.ts +9 -0
- package/components/table/src/services/column-width.util.d.ts +7 -0
- package/components/table/src/services/config.service.d.ts +5 -0
- package/components/table/src/services/index.d.ts +3 -0
- package/components/table/src/services/table-export/table-export.service.d.ts +26 -0
- package/components/table/src/services/table-filter/table-filter.model.d.ts +6 -5
- package/components/table/src/services/table-format/table-format.service.d.ts +16 -0
- package/components/table/src/services/tree/tree.util.d.ts +14 -0
- package/components/table/src/table.component.d.ts +58 -57
- package/components/upload-file/src/configurations/upload-file.configuration.d.ts +34 -1
- package/components/upload-file/src/services/upload-file.service.d.ts +0 -1
- package/components/upload-file/src/upload-file.component.d.ts +58 -54
- package/components/view/index.d.ts +1 -0
- package/components/view/src/view.component.d.ts +16 -0
- package/configurations/src/sd-core.configuration.d.ts +2 -0
- package/directives/index.d.ts +2 -0
- package/directives/src/sd-href.directive.d.ts +9 -0
- package/directives/src/sd-tooltip.directive.d.ts +26 -0
- package/fesm2022/sd-angular-core-components-anchor.mjs +139 -214
- package/fesm2022/sd-angular-core-components-anchor.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-autoid-inspector.mjs +723 -0
- package/fesm2022/sd-angular-core-components-autoid-inspector.mjs.map +1 -0
- package/fesm2022/sd-angular-core-components-avatar.mjs +103 -0
- package/fesm2022/sd-angular-core-components-avatar.mjs.map +1 -0
- package/fesm2022/sd-angular-core-components-badge.mjs +102 -93
- package/fesm2022/sd-angular-core-components-badge.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-base.mjs +3 -3
- package/fesm2022/sd-angular-core-components-button.mjs +72 -98
- package/fesm2022/sd-angular-core-components-button.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-chart.mjs +290 -0
- package/fesm2022/sd-angular-core-components-chart.mjs.map +1 -0
- package/fesm2022/sd-angular-core-components-code-editor.mjs +128 -0
- package/fesm2022/sd-angular-core-components-code-editor.mjs.map +1 -0
- package/fesm2022/sd-angular-core-components-document-builder.mjs +4478 -813
- package/fesm2022/sd-angular-core-components-document-builder.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-editor.mjs +1078 -0
- package/fesm2022/sd-angular-core-components-editor.mjs.map +1 -0
- package/fesm2022/sd-angular-core-components-form-generic.mjs +6714 -0
- package/fesm2022/sd-angular-core-components-form-generic.mjs.map +1 -0
- package/fesm2022/sd-angular-core-components-history.mjs +9 -8
- package/fesm2022/sd-angular-core-components-history.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-import-excel.mjs +35 -33
- package/fesm2022/sd-angular-core-components-import-excel.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-mini-editor.mjs +332 -0
- package/fesm2022/sd-angular-core-components-mini-editor.mjs.map +1 -0
- package/fesm2022/sd-angular-core-components-modal.mjs +70 -93
- package/fesm2022/sd-angular-core-components-modal.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-preview.mjs +1963 -89
- package/fesm2022/sd-angular-core-components-preview.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-query-builder.mjs +3 -3
- package/fesm2022/sd-angular-core-components-quick-action.mjs +10 -21
- package/fesm2022/sd-angular-core-components-quick-action.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-section.mjs +42 -44
- package/fesm2022/sd-angular-core-components-section.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-side-drawer.mjs +91 -91
- package/fesm2022/sd-angular-core-components-side-drawer.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-splitter.mjs +646 -0
- package/fesm2022/sd-angular-core-components-splitter.mjs.map +1 -0
- package/fesm2022/sd-angular-core-components-tab-router.mjs +304 -288
- package/fesm2022/sd-angular-core-components-tab-router.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-table.mjs +2558 -1589
- package/fesm2022/sd-angular-core-components-table.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-upload-file.mjs +422 -463
- package/fesm2022/sd-angular-core-components-upload-file.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-view.mjs +45 -0
- package/fesm2022/sd-angular-core-components-view.mjs.map +1 -0
- package/fesm2022/sd-angular-core-components.mjs +9 -2
- package/fesm2022/sd-angular-core-components.mjs.map +1 -1
- package/fesm2022/sd-angular-core-configurations.mjs.map +1 -1
- package/fesm2022/sd-angular-core-directives.mjs +303 -40
- package/fesm2022/sd-angular-core-directives.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-autocomplete.mjs +311 -347
- package/fesm2022/sd-angular-core-forms-autocomplete.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-checkbox.mjs +14 -15
- package/fesm2022/sd-angular-core-forms-checkbox.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-chip-calendar.mjs +195 -195
- package/fesm2022/sd-angular-core-forms-chip-calendar.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-chip.mjs +202 -200
- package/fesm2022/sd-angular-core-forms-chip.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-date-range.mjs +222 -258
- package/fesm2022/sd-angular-core-forms-date-range.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-date.mjs +217 -273
- package/fesm2022/sd-angular-core-forms-date.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-datetime.mjs +627 -307
- package/fesm2022/sd-angular-core-forms-datetime.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-directives.mjs +12 -12
- package/fesm2022/sd-angular-core-forms-input-number.mjs +236 -326
- package/fesm2022/sd-angular-core-forms-input-number.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-input.mjs +233 -286
- package/fesm2022/sd-angular-core-forms-input.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-label.mjs +3 -3
- package/fesm2022/sd-angular-core-forms-models.mjs +65 -2
- package/fesm2022/sd-angular-core-forms-models.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-radio.mjs +32 -17
- package/fesm2022/sd-angular-core-forms-radio.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-select.mjs +411 -436
- package/fesm2022/sd-angular-core-forms-select.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-switch.mjs +15 -21
- package/fesm2022/sd-angular-core-forms-switch.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-textarea.mjs +211 -221
- package/fesm2022/sd-angular-core-forms-textarea.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms.mjs +4 -4
- package/fesm2022/sd-angular-core-handlers.mjs +10 -9
- package/fesm2022/sd-angular-core-handlers.mjs.map +1 -1
- package/fesm2022/sd-angular-core-i18n.mjs +2547 -0
- package/fesm2022/sd-angular-core-i18n.mjs.map +1 -0
- package/fesm2022/sd-angular-core-interceptors.mjs +37 -10
- package/fesm2022/sd-angular-core-interceptors.mjs.map +1 -1
- package/fesm2022/sd-angular-core-models.mjs +6 -0
- package/fesm2022/sd-angular-core-models.mjs.map +1 -0
- package/fesm2022/sd-angular-core-modules-auth.mjs +137 -0
- package/fesm2022/sd-angular-core-modules-auth.mjs.map +1 -0
- package/fesm2022/sd-angular-core-modules-authom.mjs +360 -0
- package/fesm2022/sd-angular-core-modules-authom.mjs.map +1 -0
- package/fesm2022/sd-angular-core-modules-keycloak.mjs +127 -0
- package/fesm2022/sd-angular-core-modules-keycloak.mjs.map +1 -0
- package/fesm2022/sd-angular-core-modules-layout.mjs +957 -516
- package/fesm2022/sd-angular-core-modules-layout.mjs.map +1 -1
- package/fesm2022/sd-angular-core-modules-permission.mjs +166 -80
- package/fesm2022/sd-angular-core-modules-permission.mjs.map +1 -1
- package/fesm2022/sd-angular-core-modules.mjs +3 -1
- package/fesm2022/sd-angular-core-modules.mjs.map +1 -1
- package/fesm2022/sd-angular-core-pipes.mjs +35 -16
- package/fesm2022/sd-angular-core-pipes.mjs.map +1 -1
- package/fesm2022/sd-angular-core-services-api.mjs +31 -51
- package/fesm2022/sd-angular-core-services-api.mjs.map +1 -1
- package/fesm2022/sd-angular-core-services-cache.mjs +3 -3
- package/fesm2022/sd-angular-core-services-confirm.mjs +83 -44
- package/fesm2022/sd-angular-core-services-confirm.mjs.map +1 -1
- package/fesm2022/sd-angular-core-services-docx.mjs +300 -0
- package/fesm2022/sd-angular-core-services-docx.mjs.map +1 -0
- package/fesm2022/sd-angular-core-services-excel.mjs +33 -27
- package/fesm2022/sd-angular-core-services-excel.mjs.map +1 -1
- package/fesm2022/sd-angular-core-services-license.mjs +3 -3
- package/fesm2022/sd-angular-core-services-loading.mjs +3 -3
- package/fesm2022/sd-angular-core-services-notify.mjs +24 -24
- package/fesm2022/sd-angular-core-services-notify.mjs.map +1 -1
- package/fesm2022/sd-angular-core-services-storage.mjs +8 -3
- package/fesm2022/sd-angular-core-services-storage.mjs.map +1 -1
- package/fesm2022/sd-angular-core-services.mjs +1 -0
- package/fesm2022/sd-angular-core-services.mjs.map +1 -1
- package/fesm2022/sd-angular-core-utilities-data-state.mjs +38 -0
- package/fesm2022/sd-angular-core-utilities-data-state.mjs.map +1 -0
- package/fesm2022/sd-angular-core-utilities-extensions.mjs +90 -792
- package/fesm2022/sd-angular-core-utilities-extensions.mjs.map +1 -1
- package/fesm2022/sd-angular-core-utilities-models.mjs +42 -105
- package/fesm2022/sd-angular-core-utilities-models.mjs.map +1 -1
- package/fesm2022/sd-angular-core-utilities.mjs +1 -0
- package/fesm2022/sd-angular-core-utilities.mjs.map +1 -1
- package/fesm2022/sd-angular-core.mjs +0 -1
- package/fesm2022/sd-angular-core.mjs.map +1 -1
- package/forms/autocomplete/src/autocomplete.component.d.ts +61 -52
- package/forms/checkbox/src/checkbox.component.d.ts +6 -3
- package/forms/chip/src/chip.component.d.ts +44 -41
- package/forms/chip-calendar/src/chip-calendar.component.d.ts +44 -39
- package/forms/date/src/date.component.d.ts +53 -45
- package/forms/date-range/src/date-range.component.d.ts +42 -38
- package/forms/datetime/src/datetime.component.d.ts +67 -49
- package/forms/datetime/src/popup/sd-datetime-picker.component.d.ts +37 -0
- package/forms/datetime/src/popup/sd-time-spinner.component.d.ts +41 -0
- package/forms/input/src/input.component.d.ts +64 -56
- package/forms/input-number/src/input-number.component.d.ts +59 -52
- package/forms/models/index.d.ts +1 -0
- package/forms/models/src/form-control-state.d.ts +23 -0
- package/forms/radio/src/radio.component.d.ts +11 -3
- package/forms/select/src/select.component.d.ts +74 -61
- package/forms/switch/src/switch.component.d.ts +9 -6
- package/forms/textarea/src/textarea.component.d.ts +49 -42
- package/i18n/index.d.ts +5 -0
- package/i18n/src/en.d.ts +442 -0
- package/i18n/src/i18n.messages.d.ts +2 -0
- package/i18n/src/i18n.pipe.d.ts +9 -0
- package/i18n/src/i18n.service.d.ts +14 -0
- package/i18n/src/i18n.token.d.ts +1 -0
- package/i18n/src/i18n.types.d.ts +31 -0
- package/i18n/src/ja.d.ts +2 -0
- package/i18n/src/ko.d.ts +2 -0
- package/i18n/src/vi.d.ts +2 -0
- package/i18n/src/zh.d.ts +2 -0
- package/interceptors/index.d.ts +1 -0
- package/interceptors/unauthorized/unauthorized.interceptor.d.ts +12 -0
- package/models/index.d.ts +1 -0
- package/models/src/language.model.d.ts +2 -0
- package/modules/auth/configurations/auth.configuration.d.ts +19 -0
- package/modules/auth/configurations/index.d.ts +1 -0
- package/modules/auth/guards/auth.guard.d.ts +11 -0
- package/modules/auth/guards/index.d.ts +2 -0
- package/modules/auth/guards/portal.guard.d.ts +11 -0
- package/modules/auth/index.d.ts +3 -0
- package/modules/auth/services/auth.model.d.ts +8 -0
- package/modules/auth/services/auth.service.d.ts +17 -0
- package/modules/auth/services/index.d.ts +2 -0
- package/modules/authom/authom.configuration.d.ts +17 -0
- package/modules/authom/authom.interceptor.d.ts +3 -0
- package/modules/authom/authom.module.d.ts +16 -0
- package/modules/authom/authom.service.d.ts +32 -0
- package/modules/authom/index.d.ts +35 -0
- package/modules/index.d.ts +3 -1
- package/modules/keycloak/index.d.ts +4 -0
- package/modules/keycloak/keycloak.configuration.d.ts +11 -0
- package/modules/keycloak/keycloak.interceptor.d.ts +2 -0
- package/modules/keycloak/keycloak.module.d.ts +18 -0
- package/modules/keycloak/keycloak.service.d.ts +14 -0
- package/modules/layout/components/index.d.ts +2 -0
- package/modules/layout/components/layout-main/layout-main.component.d.ts +8 -12
- package/modules/layout/components/page/page.component.d.ts +5 -7
- package/modules/layout/components/sidebar-mobile-v1/components/sidebar/sidebar.component.d.ts +35 -0
- package/modules/layout/components/sidebar-mobile-v1/components/user/user.component.d.ts +24 -0
- package/modules/layout/components/sidebar-mobile-v1/main.component.d.ts +21 -0
- package/modules/layout/components/sidebar-v1/components/sidebar/sidebar.component.d.ts +29 -29
- package/modules/layout/components/sidebar-v1/components/user/user.component.d.ts +11 -17
- package/modules/layout/components/sidebar-v1/main.component.d.ts +14 -14
- package/modules/layout/configurations/layout.configuration.d.ts +54 -3
- package/modules/layout/modules/forbidden/pages/root/root.component.d.ts +3 -8
- package/modules/layout/modules/home/components/home-page/home-page.component.d.ts +27 -5
- package/modules/layout/modules/not-found/pages/root/root.component.d.ts +3 -8
- package/modules/layout/pipes/high-light-search.pipe.d.ts +1 -1
- package/modules/layout/services/index.d.ts +1 -0
- package/modules/layout/services/layout.service.d.ts +10 -0
- package/modules/layout/services/menu/menu.model.d.ts +4 -1
- package/modules/layout/services/storage/storage.service.d.ts +2 -3
- package/modules/permission/src/configurations/permission.configuration.d.ts +56 -2
- package/modules/permission/src/directives/permission.directive.d.ts +5 -8
- package/modules/permission/src/guards/permission.guard.d.ts +2 -1
- package/modules/permission/src/services/permission.service.d.ts +6 -9
- package/package.json +118 -73
- package/pipes/index.d.ts +1 -0
- package/pipes/src/empty.pipe.d.ts +7 -0
- package/pipes/src/format-number.pipe.d.ts +1 -1
- package/public-api.d.ts +0 -1
- package/sd-angular-core-19.0.0-beta.100.tgz +0 -0
- package/services/api/src/api.model.d.ts +7 -1
- package/services/api/src/api.service.d.ts +3 -7
- package/services/api/src/interceptors/api.interceptor.d.ts +2 -4
- package/services/confirm/src/lib/components/dialog-confirm/dialog-confirm.component.d.ts +8 -0
- package/services/confirm/src/lib/confirm.service.d.ts +19 -0
- package/services/docx/index.d.ts +1 -0
- package/services/docx/src/lib/docx.model.d.ts +9 -0
- package/services/docx/src/lib/docx.service.d.ts +15 -0
- package/services/docx/src/lib/pandoc-core.d.ts +11 -0
- package/services/docx/src/public-api.d.ts +2 -0
- package/services/index.d.ts +1 -0
- package/services/notify/index.d.ts +1 -0
- package/services/notify/src/components/toast/toast.component.d.ts +3 -3
- package/services/notify/src/components/toast-container.component.d.ts +3 -4
- package/services/storage/src/storage.model.d.ts +1 -0
- package/utilities/data-state/index.d.ts +1 -0
- package/utilities/data-state/src/data-state.d.ts +11 -0
- package/utilities/extensions/index.d.ts +1 -0
- package/utilities/extensions/src/array.extension.d.ts +1 -7
- package/utilities/extensions/src/color.extension.d.ts +5 -0
- package/utilities/extensions/src/date.extension.d.ts +1 -18
- package/utilities/extensions/src/number.extension.d.ts +1 -10
- package/utilities/extensions/src/string.extension.d.ts +33 -2
- package/utilities/extensions/src/utility.extension.d.ts +7 -0
- package/utilities/index.d.ts +1 -0
- package/utilities/models/index.d.ts +3 -0
- package/utilities/models/src/color.model.d.ts +4 -1
- package/utilities/models/src/empty.model.d.ts +3 -0
- package/utilities/models/src/filter.model.d.ts +12 -11
- package/utilities/models/src/icon.model.d.ts +2 -0
- package/utilities/models/src/maybe-async.model.d.ts +10 -3
- package/utilities/models/src/nested-key-of.model.d.ts +4 -0
- package/utilities/models/src/operator.model.d.ts +9 -4
- package/utilities/models/src/order.model.d.ts +4 -4
- package/utilities/models/src/paging.model.d.ts +8 -15
- package/utilities/models/src/pattern.model.d.ts +16 -3
- package/utilities/models/src/size.model.d.ts +4 -1
- package/utilities/models/src/unwrap-signal.model.d.ts +6 -0
- package/assets/img/1D UX System.zip +0 -0
- package/assets/img/Popup/Vector.png +0 -0
- package/assets/img/empty.png +0 -0
- package/assets/img/empty.svg +0 -27
- package/assets/img/file-types/eps/001-file.eps +0 -143
- package/assets/img/file-types/eps/002-file-1.eps +0 -136
- package/assets/img/file-types/eps/003-file-2.eps +0 -130
- package/assets/img/file-types/eps/004-file-3.eps +0 -127
- package/assets/img/file-types/eps/005-file-4.eps +0 -120
- package/assets/img/file-types/eps/006-file-5.eps +0 -133
- package/assets/img/file-types/eps/007-file-6.eps +0 -133
- package/assets/img/file-types/eps/008-file-7.eps +0 -144
- package/assets/img/file-types/eps/009-file-8.eps +0 -150
- package/assets/img/file-types/eps/010-file-9.eps +0 -155
- package/assets/img/file-types/eps/011-file-10.eps +0 -124
- package/assets/img/file-types/eps/012-file-11.eps +0 -147
- package/assets/img/file-types/eps/013-file-12.eps +0 -125
- package/assets/img/file-types/eps/014-file-13.eps +0 -129
- package/assets/img/file-types/eps/015-file-14.eps +0 -143
- package/assets/img/file-types/eps/016-file-15.eps +0 -130
- package/assets/img/file-types/eps/017-file-16.eps +0 -197
- package/assets/img/file-types/eps/018-file-17.eps +0 -146
- package/assets/img/file-types/eps/019-file-18.eps +0 -131
- package/assets/img/file-types/eps/020-file-19.eps +0 -137
- package/assets/img/file-types/eps/021-file-20.eps +0 -134
- package/assets/img/file-types/eps/022-file-21.eps +0 -130
- package/assets/img/file-types/eps/023-file-22.eps +0 -161
- package/assets/img/file-types/eps/024-file-23.eps +0 -144
- package/assets/img/file-types/eps/025-file-24.eps +0 -164
- package/assets/img/file-types/eps/026-file-25.eps +0 -135
- package/assets/img/file-types/eps/027-file-26.eps +0 -124
- package/assets/img/file-types/eps/028-file-27.eps +0 -120
- package/assets/img/file-types/eps/029-file-28.eps +0 -141
- package/assets/img/file-types/eps/030-file-29.eps +0 -130
- package/assets/img/file-types/eps/031-file-30.eps +0 -157
- package/assets/img/file-types/eps/032-file-31.eps +0 -139
- package/assets/img/file-types/eps/033-file-32.eps +0 -139
- package/assets/img/file-types/eps/034-file-33.eps +0 -189
- package/assets/img/file-types/eps/035-file-34.eps +0 -162
- package/assets/img/file-types/eps/036-file-35.eps +0 -142
- package/assets/img/file-types/eps/037-file-36.eps +0 -123
- package/assets/img/file-types/eps/038-file-37.eps +0 -127
- package/assets/img/file-types/eps/039-file-38.eps +0 -146
- package/assets/img/file-types/eps/040-file-39.eps +0 -126
- package/assets/img/file-types/eps/041-file-40.eps +0 -117
- package/assets/img/file-types/eps/042-file-41.eps +0 -156
- package/assets/img/file-types/eps/043-file-42.eps +0 -118
- package/assets/img/file-types/eps/044-file-43.eps +0 -172
- package/assets/img/file-types/eps/045-file-44.eps +0 -201
- package/assets/img/file-types/eps/046-file-45.eps +0 -94
- package/assets/img/file-types/eps/047-file-46.eps +0 -176
- package/assets/img/file-types/eps/048-file-47.eps +0 -238
- package/assets/img/file-types/eps/049-file-48.eps +0 -187
- package/assets/img/file-types/eps/050-file-49.eps +0 -137
- package/assets/img/file-types/license/license.pdf +0 -0
- package/assets/img/file-types/png/3ds.png +0 -0
- package/assets/img/file-types/png/ai.png +0 -0
- package/assets/img/file-types/png/asp.png +0 -0
- package/assets/img/file-types/png/avi.png +0 -0
- package/assets/img/file-types/png/bin.png +0 -0
- package/assets/img/file-types/png/com.png +0 -0
- package/assets/img/file-types/png/css.png +0 -0
- package/assets/img/file-types/png/csv.png +0 -0
- package/assets/img/file-types/png/dbf.png +0 -0
- package/assets/img/file-types/png/dll.png +0 -0
- package/assets/img/file-types/png/doc.png +0 -0
- package/assets/img/file-types/png/docx.png +0 -0
- package/assets/img/file-types/png/dwg.png +0 -0
- package/assets/img/file-types/png/eml.png +0 -0
- package/assets/img/file-types/png/eps.png +0 -0
- package/assets/img/file-types/png/exe.png +0 -0
- package/assets/img/file-types/png/file.png +0 -0
- package/assets/img/file-types/png/fla.png +0 -0
- package/assets/img/file-types/png/gif.png +0 -0
- package/assets/img/file-types/png/htm.png +0 -0
- package/assets/img/file-types/png/ico.png +0 -0
- package/assets/img/file-types/png/ini.png +0 -0
- package/assets/img/file-types/png/iso.png +0 -0
- package/assets/img/file-types/png/jar.png +0 -0
- package/assets/img/file-types/png/jpg.png +0 -0
- package/assets/img/file-types/png/js.png +0 -0
- package/assets/img/file-types/png/mkv.png +0 -0
- package/assets/img/file-types/png/mov.png +0 -0
- package/assets/img/file-types/png/mp3.png +0 -0
- package/assets/img/file-types/png/mp4.png +0 -0
- package/assets/img/file-types/png/nfo.png +0 -0
- package/assets/img/file-types/png/obj.png +0 -0
- package/assets/img/file-types/png/otf.png +0 -0
- package/assets/img/file-types/png/pdf.png +0 -0
- package/assets/img/file-types/png/pkg.png +0 -0
- package/assets/img/file-types/png/png.png +0 -0
- package/assets/img/file-types/png/ppt.png +0 -0
- package/assets/img/file-types/png/pptx.png +0 -0
- package/assets/img/file-types/png/psd.png +0 -0
- package/assets/img/file-types/png/rtf.png +0 -0
- package/assets/img/file-types/png/svg.png +0 -0
- package/assets/img/file-types/png/tiff.png +0 -0
- package/assets/img/file-types/png/ttf.png +0 -0
- package/assets/img/file-types/png/txt.png +0 -0
- package/assets/img/file-types/png/vcf.png +0 -0
- package/assets/img/file-types/png/wav.png +0 -0
- package/assets/img/file-types/png/wmv.png +0 -0
- package/assets/img/file-types/png/xls.png +0 -0
- package/assets/img/file-types/png/xlsx.png +0 -0
- package/assets/img/file-types/png/xml.png +0 -0
- package/assets/img/file-types/png/zip.png +0 -0
- package/assets/img/file-types/psd/001-file.psd +0 -0
- package/assets/img/file-types/psd/002-file-1.psd +0 -0
- package/assets/img/file-types/psd/003-file-2.psd +0 -0
- package/assets/img/file-types/psd/004-file-3.psd +0 -0
- package/assets/img/file-types/psd/005-file-4.psd +0 -0
- package/assets/img/file-types/psd/006-file-5.psd +0 -0
- package/assets/img/file-types/psd/007-file-6.psd +0 -0
- package/assets/img/file-types/psd/008-file-7.psd +0 -0
- package/assets/img/file-types/psd/009-file-8.psd +0 -0
- package/assets/img/file-types/psd/010-file-9.psd +0 -0
- package/assets/img/file-types/psd/011-file-10.psd +0 -0
- package/assets/img/file-types/psd/012-file-11.psd +0 -0
- package/assets/img/file-types/psd/013-file-12.psd +0 -0
- package/assets/img/file-types/psd/014-file-13.psd +0 -0
- package/assets/img/file-types/psd/015-file-14.psd +0 -0
- package/assets/img/file-types/psd/016-file-15.psd +0 -0
- package/assets/img/file-types/psd/017-file-16.psd +0 -0
- package/assets/img/file-types/psd/018-file-17.psd +0 -0
- package/assets/img/file-types/psd/019-file-18.psd +0 -0
- package/assets/img/file-types/psd/020-file-19.psd +0 -0
- package/assets/img/file-types/psd/021-file-20.psd +0 -0
- package/assets/img/file-types/psd/022-file-21.psd +0 -0
- package/assets/img/file-types/psd/023-file-22.psd +0 -0
- package/assets/img/file-types/psd/024-file-23.psd +0 -0
- package/assets/img/file-types/psd/025-file-24.psd +0 -0
- package/assets/img/file-types/psd/026-file-25.psd +0 -0
- package/assets/img/file-types/psd/027-file-26.psd +0 -0
- package/assets/img/file-types/psd/028-file-27.psd +0 -0
- package/assets/img/file-types/psd/029-file-28.psd +0 -0
- package/assets/img/file-types/psd/030-file-29.psd +0 -0
- package/assets/img/file-types/psd/031-file-30.psd +0 -0
- package/assets/img/file-types/psd/032-file-31.psd +0 -0
- package/assets/img/file-types/psd/033-file-32.psd +0 -0
- package/assets/img/file-types/psd/034-file-33.psd +0 -0
- package/assets/img/file-types/psd/035-file-34.psd +0 -0
- package/assets/img/file-types/psd/036-file-35.psd +0 -0
- package/assets/img/file-types/psd/037-file-36.psd +0 -0
- package/assets/img/file-types/psd/038-file-37.psd +0 -0
- package/assets/img/file-types/psd/039-file-38.psd +0 -0
- package/assets/img/file-types/psd/040-file-39.psd +0 -0
- package/assets/img/file-types/psd/041-file-40.psd +0 -0
- package/assets/img/file-types/psd/042-file-41.psd +0 -0
- package/assets/img/file-types/psd/043-file-42.psd +0 -0
- package/assets/img/file-types/psd/044-file-43.psd +0 -0
- package/assets/img/file-types/psd/045-file-44.psd +0 -0
- package/assets/img/file-types/psd/046-file-45.psd +0 -0
- package/assets/img/file-types/psd/047-file-46.psd +0 -0
- package/assets/img/file-types/psd/048-file-47.psd +0 -0
- package/assets/img/file-types/psd/049-file-48.psd +0 -0
- package/assets/img/file-types/psd/050-file-49.psd +0 -0
- package/assets/img/file-types/svg/001-file.svg +0 -1
- package/assets/img/file-types/svg/002-file-1.svg +0 -1
- package/assets/img/file-types/svg/003-file-2.svg +0 -1
- package/assets/img/file-types/svg/004-file-3.svg +0 -1
- package/assets/img/file-types/svg/005-file-4.svg +0 -1
- package/assets/img/file-types/svg/006-file-5.svg +0 -1
- package/assets/img/file-types/svg/007-file-6.svg +0 -1
- package/assets/img/file-types/svg/008-file-7.svg +0 -1
- package/assets/img/file-types/svg/009-file-8.svg +0 -1
- package/assets/img/file-types/svg/010-file-9.svg +0 -1
- package/assets/img/file-types/svg/011-file-10.svg +0 -1
- package/assets/img/file-types/svg/012-file-11.svg +0 -1
- package/assets/img/file-types/svg/013-file-12.svg +0 -1
- package/assets/img/file-types/svg/014-file-13.svg +0 -1
- package/assets/img/file-types/svg/015-file-14.svg +0 -1
- package/assets/img/file-types/svg/016-file-15.svg +0 -1
- package/assets/img/file-types/svg/017-file-16.svg +0 -1
- package/assets/img/file-types/svg/018-file-17.svg +0 -1
- package/assets/img/file-types/svg/019-file-18.svg +0 -1
- package/assets/img/file-types/svg/020-file-19.svg +0 -1
- package/assets/img/file-types/svg/021-file-20.svg +0 -1
- package/assets/img/file-types/svg/022-file-21.svg +0 -1
- package/assets/img/file-types/svg/023-file-22.svg +0 -1
- package/assets/img/file-types/svg/024-file-23.svg +0 -1
- package/assets/img/file-types/svg/025-file-24.svg +0 -1
- package/assets/img/file-types/svg/026-file-25.svg +0 -1
- package/assets/img/file-types/svg/027-file-26.svg +0 -1
- package/assets/img/file-types/svg/028-file-27.svg +0 -1
- package/assets/img/file-types/svg/029-file-28.svg +0 -1
- package/assets/img/file-types/svg/030-file-29.svg +0 -1
- package/assets/img/file-types/svg/031-file-30.svg +0 -1
- package/assets/img/file-types/svg/032-file-31.svg +0 -1
- package/assets/img/file-types/svg/033-file-32.svg +0 -1
- package/assets/img/file-types/svg/034-file-33.svg +0 -1
- package/assets/img/file-types/svg/035-file-34.svg +0 -1
- package/assets/img/file-types/svg/036-file-35.svg +0 -1
- package/assets/img/file-types/svg/037-file-36.svg +0 -1
- package/assets/img/file-types/svg/038-file-37.svg +0 -1
- package/assets/img/file-types/svg/039-file-38.svg +0 -1
- package/assets/img/file-types/svg/040-file-39.svg +0 -1
- package/assets/img/file-types/svg/041-file-40.svg +0 -1
- package/assets/img/file-types/svg/042-file-41.svg +0 -1
- package/assets/img/file-types/svg/043-file-42.svg +0 -1
- package/assets/img/file-types/svg/044-file-43.svg +0 -1
- package/assets/img/file-types/svg/045-file-44.svg +0 -1
- package/assets/img/file-types/svg/046-file-45.svg +0 -1
- package/assets/img/file-types/svg/047-file-46.svg +0 -1
- package/assets/img/file-types/svg/048-file-47.svg +0 -1
- package/assets/img/file-types/svg/049-file-48.svg +0 -1
- package/assets/img/file-types/svg/050-file-49.svg +0 -1
- package/assets/img/plus-search-zoom-white.png +0 -0
- package/assets/scss/core/cursor.scss +0 -3
- package/assets/scss/core/elevation.scss +0 -57
- package/assets/scss/core/print.scss +0 -47
- package/assets/scss/core/typography.scss +0 -121
- package/components/anchor/src/components/anchor-horizontal/anchor-list/anchor-list.component.d.ts +0 -16
- package/components/anchor/src/components/anchor-vertical/anchor-list/anchor-list.component.d.ts +0 -17
- package/components/anchor/src/components/main/main.component.d.ts +0 -24
- package/components/anchor/src/models/anchor.model.d.ts +0 -5
- package/components/anchor/src/services/anchor.service.d.ts +0 -12
- package/components/anchor/src/services/index.d.ts +0 -1
- package/components/anchor-v2/index.d.ts +0 -1
- package/components/anchor-v2/src/components/anchor-item-v2/anchor-item-v2.component.d.ts +0 -12
- package/components/anchor-v2/src/components/anchor-v2/anchor-v2.component.d.ts +0 -25
- package/components/anchor-v2/src/components/anchor-vertical-v2/anchor-vertical-list-v2.component.d.ts +0 -17
- package/components/anchor-v2/src/components/index.d.ts +0 -2
- package/components/anchor-v2/src/models/index.d.ts +0 -1
- package/components/anchor-v2/src/models/sd-anchor-v2.model.d.ts +0 -7
- package/components/document-builder/src/plugins/comment.plugin.d.ts +0 -4
- package/components/document-builder/src/plugins/table-fit.plugin.d.ts +0 -4
- package/components/document-builder/src/plugins/variable.plugin.d.ts +0 -6
- package/components/modal/src/modal/modal.component.d.ts +0 -31
- package/components/table/src/components/column-filter/column-filter.component.d.ts +0 -40
- package/components/table/src/components/desktop-cell-view/desktop-cell-view.component.d.ts +0 -14
- package/components/table/src/components/desktop-command/desktop-command.component.d.ts +0 -15
- package/components/table/src/components/external-filter/external-filter.component.d.ts +0 -36
- package/components/table/src/pipes/command-disable.pipe.d.ts +0 -9
- package/components/table/src/pipes/command-filter.pipe.d.ts +0 -25
- package/components/table/src/pipes/command-title.pipe.d.ts +0 -9
- package/components/workflow/src/components/form-builder/form-builder.component.d.ts +0 -77
- package/components/workflow/src/configurations/index.d.ts +0 -1
- package/fesm2022/sd-angular-core-components-anchor-v2.mjs +0 -226
- package/fesm2022/sd-angular-core-components-anchor-v2.mjs.map +0 -1
- package/fesm2022/sd-angular-core-components-workflow.mjs +0 -6400
- package/fesm2022/sd-angular-core-components-workflow.mjs.map +0 -1
- package/fesm2022/sd-angular-core-guards-permission.mjs +0 -155
- package/fesm2022/sd-angular-core-guards-permission.mjs.map +0 -1
- package/fesm2022/sd-angular-core-guards.mjs +0 -6
- package/fesm2022/sd-angular-core-guards.mjs.map +0 -1
- package/fesm2022/sd-angular-core-modules-oidc.mjs +0 -127
- package/fesm2022/sd-angular-core-modules-oidc.mjs.map +0 -1
- package/fesm2022/sd-angular-core-services-firebase.mjs +0 -38
- package/fesm2022/sd-angular-core-services-firebase.mjs.map +0 -1
- package/guards/index.d.ts +0 -1
- package/guards/permission/index.d.ts +0 -4
- package/guards/permission/src/configurations/index.d.ts +0 -1
- package/guards/permission/src/configurations/permission.configuration.d.ts +0 -8
- package/guards/permission/src/directives/index.d.ts +0 -1
- package/guards/permission/src/directives/permission.directive.d.ts +0 -12
- package/guards/permission/src/guards/index.d.ts +0 -1
- package/guards/permission/src/guards/permission.guard.d.ts +0 -13
- package/guards/permission/src/services/index.d.ts +0 -1
- package/guards/permission/src/services/permission.service.d.ts +0 -15
- package/modules/oidc/dynamic-sts.loader.d.ts +0 -11
- package/modules/oidc/index.d.ts +0 -2
- package/modules/oidc/oidc.configuration.d.ts +0 -11
- package/modules/oidc/oidc.module.d.ts +0 -14
- package/services/firebase/index.d.ts +0 -2
- package/services/firebase/src/firebase.model.d.ts +0 -8
- package/services/firebase/src/firebase.service.d.ts +0 -14
- /package/components/{anchor-v2 → anchor}/src/index.d.ts +0 -0
- /package/components/{workflow → form-generic}/index.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/attribute-expression/attribute-expression.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/attribute-input/attribute-input.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/attribute-input-number/attribute-input-number.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/attribute-parameter/attribute-parameter.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/attribute-select/attribute-select.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/attribute-selection/attribute-selection.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/attribute-selection/components/build-queries/build-queries.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/attribute-selection/components/build-variables/build-variables.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/attribute-switch/attribute-switch.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/attribute-textarea/attribute-textarea.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/checkbox/attribute/checkbox-attribute.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/checkbox/control/checkbox-control.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/checkbox/index.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/chip-calendar/attribute/chip-calendar-attribute.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/chip-calendar/control/chip-calendar-control.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/chip-calendar/index.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/chip-string/attribute/chip-string-attribute.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/chip-string/control/chip-string-control.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/chip-string/index.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/datetime/attribute/datetime-attribute.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/datetime/control/datetime-control.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/datetime/index.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/html/attribute/components/build-queries/build-queries.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/html/attribute/html-attribute.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/html/control/html-control.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/html/index.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/number/attribute/number-attribute.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/number/control/number-control.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/number/index.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/radio/attribute/radio-attribute.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/radio/control/radio-control.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/radio/index.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/select/attribute/select-attribute.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/select/control/select-control.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/select/index.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/table/attribute/table-attribute.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/table/index.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/textarea/attribute/textarea-attribute.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/textarea/control/textarea-control.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/textarea/index.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/textfield/attribute/textfield-attribute.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/textfield/control/textfield-control.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/textfield/index.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/upload/attribute/upload-attribute.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/upload/control/upload-control.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/components/upload/index.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/services/builder.service.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-builder/services/index.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-render/components/index.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-render/components/item/components/chip-calendar/chip-calendar.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-render/components/item/components/chip-string/chip-string.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-render/components/item/components/datetime/datetime.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-render/components/item/components/html/html.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-render/components/item/components/index.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-render/components/item/components/number/number.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-render/components/item/components/radio/radio.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-render/components/item/components/select/select.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-render/components/item/components/table/table.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-render/components/item/components/textarea/textarea.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-render/components/item/components/textfield/textfield.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-render/components/item/components/upload/upload.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-render/components/item/item.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/form-render/components/variable/variable.component.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/components/index.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/configurations/form.configuration.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/models/form-generic-definition-html.model.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/models/form-generic-definition-selection.model.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/models/form-generic-definition-table.model.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/models/form-generic-template.model.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/models/form-generic-validation.model.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/models/form-generic.model.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/models/form-render/form-render-args.model.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/models/form-render/form-render-entity.model.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/models/form-render/index.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/pipes/component-viewed.pipe.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/pipes/expression-feel.pipe.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/pipes/expression-query.pipe.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/pipes/expression-view.pipe.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/pipes/hyperlink.pipe.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/pipes/index.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/pipes/when-expression.pipe.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/services/form-render.service.d.ts +0 -0
- /package/components/{workflow → form-generic}/src/services/index.d.ts +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#2c81e4"/><path d="m300.136719 485.515625h-35.230469c-14.644531 0-26.5625-11.914063-26.5625-26.5625v-52.804687c0-14.644532 11.917969-26.5625 26.5625-26.5625h35.230469c4.875 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.953125 8.828126-8.828125 8.828126h-35.230469c-4.917969 0-8.90625 4-8.90625 8.90625v52.804687c0 4.910156 3.988281 8.910156 8.90625 8.910156h35.230469c4.875 0 8.828125 3.953125 8.828125 8.828125 0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0" fill="#fff"/><path d="m79.449219 132.414062h194.207031v167.722657h-194.207031zm0 0" fill="#2c81e4"/><g fill="#fff"><path d="m203.035156 264.828125c-3.796875 0-7.167968-2.429687-8.378906-6.039063l-18.105469-54.324218-18.105469 54.324218c-1.207031 3.609376-4.582031 6.039063-8.375 6.039063-3.796874 0-7.167968-2.429687-8.378906-6.039063l-26.484375-79.449218c-1.542969-4.625.964844-9.621094 5.589844-11.164063 4.617187-1.546875 9.621094.953125 11.167969 5.578125l18.105468 54.332032 18.105469-54.324219c1.207031-3.609375 4.582031-6.039063 8.375-6.039063 3.796875 0 7.167969 2.429688 8.378907 6.039063l18.105468 54.324219 18.105469-54.324219c1.542969-4.625 6.566406-7.113281 11.167969-5.578125 4.625 1.542968 7.121094 6.539062 5.585937 11.167968l-26.484375 79.445313c-1.207031 3.601563-4.578125 6.03125-8.375 6.03125zm0 0"/><path d="m61.792969 485.515625h-8.828125c-4.871094 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.957031-8.828124 8.828125-8.828124h8.828125c29.203125 0 52.964843 23.753906 52.964843 52.964843 0 29.210938-23.761718 52.964844-52.964843 52.964844zm0-17.652344h.089843zm0-70.621093v70.621093c19.472656 0 35.308593-15.839843 35.308593-35.3125 0-19.472656-15.835937-35.308593-35.308593-35.308593zm0 0"/><path d="m185.378906 485.515625h-17.65625c-14.597656 0-26.480468-11.878906-26.480468-26.480469v-52.964844c0-14.601562 11.871093-26.484374 26.480468-26.484374h17.65625c14.601563 0 26.484375 11.882812 26.484375 26.484374v52.964844c0 14.601563-11.875 26.480469-26.484375 26.480469zm-17.65625-88.273437c-4.863281 0-8.824218 3.953124-8.824218 8.828124v52.964844c0 4.863282 3.953124 8.828125 8.824218 8.828125h17.65625c4.863282 0 8.828125-3.957031 8.828125-8.828125v-52.964844c0-4.867187-3.953125-8.828124-8.828125-8.828124zm0 0"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#2c81e4"/><g fill="#fff"><path d="m308.964844 485.515625h-35.230469c-14.644531 0-26.5625-11.914063-26.5625-26.5625v-52.804687c0-14.644532 11.917969-26.5625 26.5625-26.5625h35.230469c4.875 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.953125 8.828126-8.828125 8.828126h-35.230469c-4.917969 0-8.90625 4-8.90625 8.90625v52.804687c0 4.910156 3.988281 8.910156 8.90625 8.910156h35.230469c4.875 0 8.828125 3.953125 8.828125 8.828125 0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m70.621094 485.515625h-8.828125c-4.871094 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.957031-8.828124 8.828125-8.828124h8.828125c29.203125 0 52.964844 23.753906 52.964844 52.964843 0 29.210938-23.761719 52.964844-52.964844 52.964844zm0-17.652344h.085937zm0-70.621093v70.621093c19.472656 0 35.308594-15.839843 35.308594-35.3125 0-19.472656-15.835938-35.308593-35.308594-35.308593zm0 0"/><path d="m194.207031 485.515625h-17.65625c-14.601562 0-26.480469-11.878906-26.480469-26.480469v-52.964844c0-14.601562 11.871094-26.484374 26.480469-26.484374h17.65625c14.601563 0 26.484375 11.882812 26.484375 26.484374v52.964844c0 14.601563-11.875 26.480469-26.484375 26.480469zm-17.65625-88.273437c-4.863281 0-8.828125 3.953124-8.828125 8.828124v52.964844c0 4.863282 3.957032 8.828125 8.828125 8.828125h17.65625c4.863281 0 8.828125-3.957031 8.828125-8.828125v-52.964844c0-4.867187-3.957031-8.828124-8.828125-8.828124zm0 0"/></g><path d="m132.414062 308.964844h-70.621093c-4.871094 0-8.828125-3.953125-8.828125-8.828125 0-4.871094 3.957031-8.828125 8.828125-8.828125h70.621093c4.871094 0 8.828126 3.957031 8.828126 8.828125 0 4.875-3.957032 8.828125-8.828126 8.828125zm0 0" fill="#d794fa"/><path d="m256 308.964844h-88.277344c-4.871094 0-8.824218-3.953125-8.824218-8.828125 0-4.871094 3.953124-8.828125 8.824218-8.828125h88.277344c4.871094 0 8.828125 3.957031 8.828125 8.828125 0 4.875-3.957031 8.828125-8.828125 8.828125zm0 0" fill="#82c288"/><path d="m308.964844 308.964844h-17.65625c-4.871094 0-8.824219-3.953125-8.824219-8.828125 0-4.871094 3.953125-8.828125 8.824219-8.828125h17.65625c4.875 0 8.828125 3.957031 8.828125 8.828125 0 4.875-3.953125 8.828125-8.828125 8.828125zm0 0" fill="#f28793"/><path d="m62.058594 211.863281h52.964844v52.964844h-52.964844zm0 0" fill="#eacd3b"/><path d="m62.058594 123.585938h247.171875v52.964843h-247.171875zm0 0" fill="#b53438"/><path d="m256.265625 211.863281h52.964844v52.964844h-52.964844zm0 0" fill="#82619a"/><path d="m159.160156 211.863281h52.964844v52.964844h-52.964844zm0 0" fill="#d36a0a"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#83629a"/><g fill="#fff"><path d="m52.957031 485.515625c-1.546875 0-3.117187-.40625-4.527343-1.261719-4.1875-2.507812-5.535157-7.925781-3.03125-12.109375l52.96875-88.277343c2.503906-4.175782 7.925781-5.527344 12.109374-3.027344 4.183594 2.507812 5.535157 7.925781 3.027344 12.113281l-52.964844 88.273437c-1.660156 2.761719-4.582031 4.289063-7.582031 4.289063zm0 0"/><path d="m105.941406 485.515625c-3.003906 0-5.925781-1.527344-7.574218-4.28125l-52.96875-88.273437c-2.503907-4.183594-1.15625-9.605469 3.03125-12.113282 4.175781-2.507812 9.601562-1.148437 12.109374 3.027344l52.964844 88.277344c2.507813 4.183594 1.15625 9.605468-3.027344 12.113281-1.421874.84375-2.992187 1.25-4.535156 1.25zm0 0"/><path d="m300.136719 485.515625h-52.964844c-4.871094 0-8.828125-3.953125-8.828125-8.824219 0-4.875 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828125 3.953125 8.828125 8.828125 0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m247.171875 485.515625c-4.871094 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.953124 8.828125 8.828124v88.277344c0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m211.863281 485.515625c-4.875 0-8.828125-3.953125-8.828125-8.824219v-55.03125l-18.820312 32.925782c-3.144532 5.5-12.183594 5.5-15.324219 0l-18.820313-32.925782v55.03125c0 4.871094-3.957031 8.824219-8.828124 8.824219-4.875 0-8.828126-3.953125-8.828126-8.824219v-88.277344c0-4.007812 2.691407-7.503906 6.558594-8.527343 3.859375-1.050781 7.945313.679687 9.929688 4.148437l27.648437 48.375 27.648438-48.375c1.988281-3.476562 6.066406-5.199218 9.929687-4.148437 3.867188 1.023437 6.5625 4.519531 6.5625 8.527343v88.277344c0 4.871094-3.957031 8.824219-8.828125 8.824219zm0 0"/></g><path d="m105.929688 273.65625c-2.523438 0-5.039063-1.085938-6.785157-3.179688l-44.140625-52.964843c-2.726562-3.273438-2.726562-8.03125 0-11.300781l44.140625-52.964844c3.125-3.742188 8.683594-4.246094 12.425781-1.128906 3.746094 3.125 4.257813 8.6875 1.132813 12.429687l-39.417969 47.316406 39.433594 47.316407c3.125 3.742187 2.613281 9.3125-1.128906 12.425781-1.660156 1.378906-3.664063 2.050781-5.660156 2.050781zm0 0" fill="#83629a"/><path d="m247.171875 273.65625c-1.996094 0-4-.671875-5.648437-2.050781-3.742188-3.125-4.253907-8.683594-1.128907-12.425781l39.421875-47.316407-39.433594-47.316406c-3.125-3.742187-2.613281-9.3125 1.132813-12.429687 3.742187-3.117188 9.3125-2.613282 12.425781 1.128906l44.140625 52.964844c2.726563 3.277343 2.726563 8.035156 0 11.300781l-44.140625 52.964843c-1.726562 2.09375-4.246094 3.179688-6.769531 3.179688zm0 0" fill="#83629a"/><path d="m150.058594 273.65625c-1.324219 0-2.671875-.300781-3.945313-.929688-4.359375-2.179687-6.125-7.484374-3.945312-11.84375l52.964843-105.933593c2.179688-4.367188 7.488282-6.125 11.847657-3.945313 4.359375 2.179688 6.125 7.488282 3.945312 11.847656l-52.964843 105.929688c-1.546876 3.089844-4.660157 4.875-7.902344 4.875zm0 0" fill="#83629a"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#b53438"/><g fill="#fff"><path d="m52.964844 485.515625c-4.871094 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.953124 8.828125 8.828124v88.277344c0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m300.136719 397.242188h-52.964844c-4.871094 0-8.828125-3.957032-8.828125-8.828126 0-4.875 3.957031-8.828124 8.828125-8.828124h52.964844c4.875 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.953125 8.828126-8.828125 8.828126zm0 0"/><path d="m300.136719 441.378906h-52.964844c-4.871094 0-8.828125-3.953125-8.828125-8.828125 0-4.871093 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828125 3.957032 8.828125 8.828125 0 4.875-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m247.171875 485.515625c-4.871094 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.953124 8.828125 8.828124v88.277344c0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0"/></g><path d="m170.203125 95.136719c-.863281.28125-11.695313 15.261719.847656 27.9375 8.351563-18.371094-.464843-28.054688-.847656-27.9375m5.34375 73.523437c-6.296875 21.496094-14.601563 44.703125-23.527344 65.710938 18.378907-7.042969 38.375-13.195313 57.140625-17.546875-11.871094-13.621094-23.738281-30.632813-33.613281-48.164063m65.710937 57.175782c7.167969 5.445312 8.914063 8.199218 13.613282 8.199218 2.054687 0 7.925781-.085937 10.636718-3.828125 1.316407-1.820312 1.828126-2.984375 2.019532-3.59375-1.074219-.574219-2.515625-1.710937-10.335938-1.710937-4.449218 0-10.027344.191406-15.933594.933594m-119.957031 38.601562c-18.804687 10.425781-26.464843 19-27.011719 23.835938-.089843.804687-.328124 2.90625 3.785157 6.011718 1.316406-.414062 8.96875-3.859375 23.226562-29.847656m-23.421875 44.527344c-3.0625 0-6-.980469-8.507812-2.832032-9.15625-6.796874-10.390625-14.347656-9.808594-19.492187 1.597656-14.132813 19.304688-28.945313 52.648438-44.03125 13.230468-28.636719 25.820312-63.921875 33.324218-93.398437-8.773437-18.871094-17.3125-43.351563-11.097656-57.714844 2.179688-5.03125 4.910156-8.894532 9.976562-10.566406 2.011719-.652344 7.078126-1.480469 8.941407-1.480469 4.617187 0 9.050781 5.507812 11.183593 9.089843 3.972657 6.648438 3.992188 14.390626 3.363282 21.859376-.609375 7.253906-1.84375 14.46875-3.265625 21.601562-1.039063 5.242188-2.214844 10.460938-3.46875 15.660156 11.855469 24.175782 28.644531 48.816406 44.746093 65.683594 11.539063-2.054688 21.460938-3.097656 29.546876-3.097656 13.761718 0 22.121093 3.167968 25.519531 9.691406 2.828125 5.402344 1.660156 11.726562-3.433594 18.769531-4.898437 6.769531-11.640625 10.34375-19.523437 10.34375-10.710938 0-23.15625-6.671875-37.050782-19.851562-24.957031 5.15625-54.097656 14.34375-77.65625 24.515625-7.355468 15.410156-14.398437 27.824218-20.964844 36.933594-8.996093 12.5-16.773437 18.316406-24.472656 18.316406" fill="#b53438"/><path d="m79.449219 450.207031h-26.484375c-4.871094 0-8.828125-3.953125-8.828125-8.828125v-52.964844c0-4.875 3.957031-8.828124 8.828125-8.828124h26.484375c19.472656 0 35.308593 15.835937 35.308593 35.3125 0 19.472656-15.835937 35.308593-35.308593 35.308593zm-17.65625-17.65625h17.65625c9.734375 0 17.652343-7.917969 17.652343-17.652343 0-9.738282-7.917968-17.65625-17.652343-17.65625h-17.65625zm0 0" fill="#fff"/><path d="m158.898438 485.515625h-8.828126c-4.875 0-8.828124-3.953125-8.828124-8.824219v-88.277344c0-4.875 3.953124-8.828124 8.828124-8.828124h8.828126c29.199218 0 52.964843 23.753906 52.964843 52.964843 0 29.210938-23.765625 52.964844-52.964843 52.964844zm0-17.652344h.085937zm0-70.621093v70.621093c19.472656 0 35.308593-15.839843 35.308593-35.3125 0-19.472656-15.835937-35.308593-35.308593-35.308593zm0 0" fill="#fff"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#859594"/><g fill="#a09893"><path d="m176.550781 326.621094c-24.335937 0-44.136719-19.800782-44.136719-44.136719v-35.3125c0-4.871094 3.953126-8.828125 8.828126-8.828125h70.621093c4.871094 0 8.828125 3.957031 8.828125 8.828125v35.3125c0 24.335937-19.800781 44.136719-44.140625 44.136719zm-26.480469-70.621094v26.484375c0 14.597656 11.878907 26.480469 26.480469 26.480469 14.601563 0 26.484375-11.882813 26.484375-26.480469v-26.484375zm0 0"/><path d="m185.378906 291.308594h-17.65625c-4.871094 0-8.824218-3.953125-8.824218-8.824219 0-4.875 3.953124-8.828125 8.824218-8.828125h17.65625c4.875 0 8.828125 3.953125 8.828125 8.828125 0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m176.550781 256c-4.871093 0-8.828125-3.953125-8.828125-8.828125v-158.894531c0-4.875 3.957032-8.828125 8.828125-8.828125 4.875 0 8.828125 3.953125 8.828125 8.828125v158.894531c0 4.875-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m203.035156 211.863281h-52.964844c-4.875 0-8.828124-3.957031-8.828124-8.828125 0-4.875 3.953124-8.828125 8.828124-8.828125h52.964844c4.871094 0 8.828125 3.953125 8.828125 8.828125 0 4.871094-3.957031 8.828125-8.828125 8.828125zm0 0"/><path d="m203.035156 167.722656h-52.964844c-4.875 0-8.828124-3.953125-8.828124-8.824218 0-4.875 3.953124-8.828126 8.828124-8.828126h52.964844c4.871094 0 8.828125 3.953126 8.828125 8.828126 0 4.871093-3.957031 8.824218-8.828125 8.824218zm0 0"/><path d="m203.035156 123.585938h-52.964844c-4.875 0-8.828124-3.953126-8.828124-8.828126 0-4.871093 3.953124-8.828124 8.828124-8.828124h52.964844c4.871094 0 8.828125 3.957031 8.828125 8.828124 0 4.875-3.957031 8.828126-8.828125 8.828126zm0 0"/></g><path d="m105.929688 485.515625h-52.964844c-3.175782 0-6.117188-1.710937-7.679688-4.472656-1.5625-2.765625-1.527344-6.164063.113282-8.890625l44.941406-74.910156h-37.375c-4.871094 0-8.828125-3.957032-8.828125-8.828126 0-4.875 3.957031-8.828124 8.828125-8.828124h52.964844c3.179687 0 6.117187 1.710937 7.679687 4.476562 1.5625 2.761719 1.527344 6.160156-.113281 8.890625l-44.941406 74.910156h37.375c4.875 0 8.828124 3.953125 8.828124 8.828125 0 4.871094-3.953124 8.824219-8.828124 8.824219zm0 0" fill="#fff"/><path d="m247.171875 485.515625c-4.871094 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.953124 8.828125 8.828124v88.277344c0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0" fill="#fff"/><path d="m273.65625 450.207031h-26.484375c-4.871094 0-8.828125-3.953125-8.828125-8.828125v-52.964844c0-4.875 3.957031-8.828124 8.828125-8.828124h26.484375c19.472656 0 35.308594 15.835937 35.308594 35.3125 0 19.472656-15.835938 35.308593-35.308594 35.308593zm-17.65625-17.65625h17.65625c9.734375 0 17.652344-7.917969 17.652344-17.652343 0-9.738282-7.917969-17.65625-17.652344-17.65625h-17.65625zm0 0" fill="#fff"/><path d="m176.550781 485.515625c-4.871093 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.957032-8.828124 8.828125-8.828124 4.875 0 8.828125 3.953124 8.828125 8.828124v88.277344c0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0" fill="#fff"/><path d="m203.035156 485.515625h-52.964844c-4.875 0-8.828124-3.953125-8.828124-8.824219 0-4.875 3.953124-8.828125 8.828124-8.828125h52.964844c4.871094 0 8.828125 3.953125 8.828125 8.828125 0 4.871094-3.957031 8.824219-8.828125 8.824219zm0 0" fill="#fff"/><path d="m203.035156 397.242188h-52.964844c-4.875 0-8.828124-3.957032-8.828124-8.828126 0-4.875 3.953124-8.828124 8.828124-8.828124h52.964844c4.871094 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.957031 8.828126-8.828125 8.828126zm0 0" fill="#fff"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#82619a"/><path d="m158.898438 485.515625c-4.875 0-8.828126-3.953125-8.828126-8.824219v-88.277344c0-4.875 3.953126-8.828124 8.828126-8.828124 4.871093 0 8.824218 3.953124 8.824218 8.828124v88.277344c0 4.871094-3.953125 8.824219-8.824218 8.824219zm0 0" fill="#fff"/><path d="m185.378906 450.207031h-26.480468c-4.875 0-8.828126-3.953125-8.828126-8.828125v-52.964844c0-4.875 3.953126-8.828124 8.828126-8.828124h26.480468c19.472656 0 35.3125 15.835937 35.3125 35.3125 0 19.472656-15.839844 35.308593-35.3125 35.308593zm-17.65625-17.65625h17.65625c9.738282 0 17.65625-7.917969 17.65625-17.652343 0-9.738282-7.917968-17.65625-17.65625-17.65625h-17.65625zm0 0" fill="#fff"/><g fill="#82619a"><path d="m123.585938 317.792969c-19.472657 0-35.308594-15.835938-35.308594-35.308594 0-19.476563 15.835937-35.3125 35.308594-35.3125 19.472656 0 35.3125 15.835937 35.3125 35.3125 0 19.472656-15.839844 35.308594-35.3125 35.308594zm0-52.964844c-9.738282 0-17.65625 7.917969-17.65625 17.65625 0 9.734375 7.917968 17.652344 17.65625 17.652344 9.738281 0 17.65625-7.917969 17.65625-17.652344 0-9.738281-7.917969-17.65625-17.65625-17.65625zm0 0"/><path d="m211.863281 282.484375c-19.476562 0-35.3125-15.839844-35.3125-35.3125s15.835938-35.308594 35.3125-35.308594c19.472657 0 35.308594 15.835938 35.308594 35.308594s-15.835937 35.3125-35.308594 35.3125zm0-52.96875c-9.738281 0-17.65625 7.921875-17.65625 17.65625 0 9.738281 7.917969 17.65625 17.65625 17.65625 9.734375 0 17.652344-7.917969 17.652344-17.65625 0-9.734375-7.917969-17.65625-17.652344-17.65625zm0 0"/><path d="m150.070312 291.308594c-4.875 0-8.828124-3.953125-8.828124-8.824219v-132.414063c0-4.875 3.953124-8.828124 8.828124-8.828124 4.871094 0 8.828126 3.953124 8.828126 8.828124v132.414063c0 4.871094-3.957032 8.824219-8.828126 8.824219zm0 0"/><path d="m238.34375 256c-4.871094 0-8.828125-3.953125-8.828125-8.828125v-132.414063c0-4.871093 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.957031 8.828125 8.828124v132.414063c0 4.875-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m150.070312 194.207031c-1.742187 0-3.46875-.511719-4.953124-1.519531-2.417969-1.640625-3.875-4.378906-3.875-7.308594v-35.308594c0-3.613281 2.195312-6.851562 5.542968-8.203124l88.277344-35.308594c2.726562-1.09375 5.796875-.761719 8.226562.890625 2.425782 1.640625 3.882813 4.378906 3.882813 7.308593v35.3125c0 3.609376-2.199219 6.847657-5.542969 8.199219l-88.277344 35.3125c-1.066406.421875-2.179687.625-3.28125.625zm8.828126-38.160156v16.292969l70.617187-28.246094v-16.296875zm79.445312-5.976563h.089844zm0 0"/></g><path d="m114.757812 485.515625c-4.871093 0-8.828124-3.953125-8.828124-8.824219v-55.03125l-18.820313 32.925782c-3.132813 5.5-12.191406 5.5-15.324219 0l-18.820312-32.925782v55.03125c0 4.871094-3.953125 8.824219-8.828125 8.824219-4.871094 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.007812 2.695312-7.503906 6.5625-8.527343 3.875-1.058594 7.941406.679687 9.929687 4.148437l27.648438 48.375 27.648437-48.375c1.984375-3.476562 6.035156-5.207031 9.929688-4.148437 3.867187 1.023437 6.558594 4.519531 6.558594 8.527343v88.277344c0 4.871094-3.953126 8.824219-8.828126 8.824219zm0 0" fill="#fff"/><path d="m286.898438 441.378906h-30.898438c-4.871094 0-8.828125-3.953125-8.828125-8.828125 0-4.871093 3.957031-8.828125 8.828125-8.828125h30.898438c7.296874 0 13.238281-5.941406 13.238281-13.238281 0-7.300781-5.941407-13.242187-13.238281-13.242187h-30.898438c-4.871094 0-8.828125-3.957032-8.828125-8.828126 0-4.875 3.957031-8.828124 8.828125-8.828124h30.898438c17.035156 0 30.894531 13.859374 30.894531 30.898437 0 17.035156-13.859375 30.894531-30.894531 30.894531zm0 0" fill="#fff"/><path d="m286.898438 485.515625h-30.898438c-4.871094 0-8.828125-3.953125-8.828125-8.824219 0-4.875 3.957031-8.828125 8.828125-8.828125h30.898438c7.296874 0 13.238281-5.941406 13.238281-13.242187 0-7.300782-5.941407-13.242188-13.238281-13.242188h-30.898438c-4.871094 0-8.828125-3.953125-8.828125-8.828125 0-4.871093 3.957031-8.828125 8.828125-8.828125h30.898438c17.035156 0 30.894531 13.859375 30.894531 30.898438 0 17.035156-13.859375 30.894531-30.894531 30.894531zm0 0" fill="#fff"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#b53438"/><g fill="#fff"><path d="m158.898438 485.515625c-4.875 0-8.828126-3.953125-8.828126-8.824219v-88.277344c0-4.875 3.953126-8.828124 8.828126-8.828124 4.871093 0 8.824218 3.953124 8.824218 8.828124v88.277344c0 4.871094-3.953125 8.824219-8.824218 8.824219zm0 0"/><path d="m185.378906 450.207031h-26.480468c-4.875 0-8.828126-3.953125-8.828126-8.828125v-52.964844c0-4.875 3.953126-8.828124 8.828126-8.828124h26.480468c19.472656 0 35.3125 15.835937 35.3125 35.3125 0 19.472656-15.839844 35.308593-35.3125 35.308593zm-17.65625-17.65625h17.65625c9.738282 0 17.65625-7.917969 17.65625-17.652343 0-9.738282-7.917968-17.65625-17.65625-17.65625h-17.65625zm0 0"/><path d="m114.757812 485.515625c-4.871093 0-8.828124-3.953125-8.828124-8.824219v-55.03125l-18.820313 32.925782c-3.132813 5.5-12.191406 5.5-15.324219 0l-18.820312-32.925782v55.03125c0 4.871094-3.953125 8.824219-8.828125 8.824219-4.871094 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.007812 2.695312-7.503906 6.5625-8.527343 3.875-1.058594 7.941406.679687 9.929687 4.148437l27.648438 48.375 27.648437-48.375c1.984375-3.476562 6.046875-5.207031 9.929688-4.148437 3.867187 1.023437 6.558594 4.519531 6.558594 8.527343v88.277344c0 4.871094-3.953126 8.824219-8.828126 8.824219zm0 0"/><path d="m256 441.378906c-1.09375 0-2.199219-.203125-3.273438-.636718-4.53125-1.816407-6.726562-6.945313-4.917968-11.472657l17.65625-44.140625c1.808594-4.519531 6.929687-6.726562 11.472656-4.914062 4.53125 1.816406 6.726562 6.945312 4.917969 11.472656l-17.65625 44.140625c-1.382813 3.449219-4.703125 5.550781-8.199219 5.550781zm0 0"/><path d="m308.964844 441.378906h-52.964844c-4.871094 0-8.828125-3.953125-8.828125-8.828125 0-4.871093 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828125 3.957032 8.828125 8.828125 0 4.875-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m291.308594 485.515625c-4.871094 0-8.824219-3.953125-8.824219-8.824219v-61.792968c0-4.875 3.953125-8.828126 8.824219-8.828126 4.875 0 8.828125 3.953126 8.828125 8.828126v61.792968c0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0"/></g><path d="m52.964844 141.242188h247.171875v158.894531h-247.171875zm0 0" fill="#b53438"/><path d="m211.863281 220.691406-52.964843 35.308594v-70.621094zm0 0" fill="#fff"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m291.308594 167.722656h-97.101563c-4.871093 0-8.828125-3.953125-8.828125-8.824218 0-4.875 3.957032-8.828126 8.828125-8.828126h97.101563c4.875 0 8.828125 3.953126 8.828125 8.828126 0 4.871093-3.953125 8.824218-8.828125 8.824218zm0 0" fill="#cdc8bf"/><path d="m158.898438 167.722656h-97.105469c-4.871094 0-8.828125-3.953125-8.828125-8.824218 0-4.875 3.957031-8.828126 8.828125-8.828126h97.105469c4.871093 0 8.824218 3.953126 8.824218 8.828126 0 4.871093-3.953125 8.824218-8.824218 8.824218zm0 0" fill="#cdc8bf"/><path d="m273.65625 247.171875c-4.875 0-8.828125-3.953125-8.828125-8.828125 0-38.9375-31.683594-70.621094-70.621094-70.621094-4.871093 0-8.828125-3.953125-8.828125-8.824218 0-4.875 3.957032-8.828126 8.828125-8.828126 48.675781 0 88.277344 39.597657 88.277344 88.273438 0 4.875-3.957031 8.828125-8.828125 8.828125zm0 0" fill="#cdc8bf"/><path d="m79.449219 247.171875c-4.875 0-8.828125-3.953125-8.828125-8.828125 0-48.675781 39.601562-88.273438 88.277344-88.273438 4.871093 0 8.824218 3.953126 8.824218 8.828126 0 4.871093-3.953125 8.824218-8.824218 8.824218-38.941407 0-70.621094 31.683594-70.621094 70.621094 0 4.875-3.957032 8.828125-8.828125 8.828125zm0 0" fill="#cdc8bf"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#571d32"/><path d="m158.898438 141.242188h35.308593v35.308593h-35.308593zm0 0" fill="#563c09"/><path d="m256 238.34375h35.308594v35.3125h-35.308594zm0 0" fill="#563c09"/><path d="m97.101562 273.65625h-35.308593v-35.3125h35.308593zm0 0" fill="#563c09"/><g fill="#fff"><path d="m278.070312 485.515625h-30.898437c-4.871094 0-8.828125-3.953125-8.828125-8.824219 0-4.875 3.957031-8.828125 8.828125-8.828125h30.898437c7.300782 0 13.238282-5.941406 13.238282-13.242187 0-7.300782-5.9375-13.242188-13.238282-13.242188h-8.828124c-17.039063 0-30.898438-13.859375-30.898438-30.894531 0-17.039063 13.859375-30.898437 30.898438-30.898437h30.894531c4.875 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.953125 8.828126-8.828125 8.828126h-30.894531c-7.300782 0-13.242188 5.941406-13.242188 13.242187 0 7.296875 5.941406 13.238281 13.242188 13.238281h8.828124c17.035157 0 30.894532 13.859375 30.894532 30.898438 0 17.035156-13.859375 30.894531-30.894532 30.894531zm0 0"/><path d="m105.929688 441.378906h-52.964844c-4.871094 0-8.828125-3.953125-8.828125-8.828125v-44.136719c0-4.875 3.957031-8.828124 8.828125-8.828124h52.964844c4.875 0 8.828124 3.953124 8.828124 8.828124 0 4.871094-3.953124 8.828126-8.828124 8.828126h-44.136719v26.480468h44.136719c4.875 0 8.828124 3.957032 8.828124 8.828125 0 4.875-3.953124 8.828125-8.828124 8.828125zm0 0"/><path d="m105.929688 485.515625h-52.964844c-4.871094 0-8.828125-3.953125-8.828125-8.824219v-44.140625c0-4.871093 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828124 3.957032 8.828124 8.828125 0 4.875-3.953124 8.828125-8.828124 8.828125h-44.136719v26.484375h44.136719c4.875 0 8.828124 3.953125 8.828124 8.828125 0 4.871094-3.953124 8.824219-8.828124 8.824219zm0 0"/><path d="m150.070312 485.515625c-4.875 0-8.828124-3.953125-8.828124-8.824219v-88.277344c0-4.875 3.953124-8.828124 8.828124-8.828124 4.871094 0 8.828126 3.953124 8.828126 8.828124v88.277344c0 4.871094-3.957032 8.824219-8.828126 8.824219zm0 0"/><path d="m176.550781 450.207031h-26.480469c-4.875 0-8.828124-3.953125-8.828124-8.828125v-52.964844c0-4.875 3.953124-8.828124 8.828124-8.828124h26.480469c19.472657 0 35.3125 15.835937 35.3125 35.3125 0 19.472656-15.839843 35.308593-35.3125 35.308593zm-17.652343-17.65625h17.652343c9.738281 0 17.65625-7.917969 17.65625-17.652343 0-9.738282-7.917969-17.65625-17.65625-17.65625h-17.652343zm0 0"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#4e74ba"/><path d="m273.65625 211.863281c0 53.628907-43.476562 97.101563-97.105469 97.101563-53.628906 0-97.101562-43.472656-97.101562-97.101563 0-53.628906 43.472656-97.105469 97.101562-97.105469 53.628907 0 97.105469 43.476563 97.105469 97.105469zm0 0" fill="#fff"/><path d="m211.863281 211.863281-52.964843 35.308594v-70.621094zm0 0" fill="#4f75ba"/><g fill="#fff"><path d="m176.550781 485.515625c-3.609375 0-6.847656-2.195313-8.199219-5.542969l-35.3125-88.273437c-1.808593-4.53125.390626-9.667969 4.917969-11.476563 4.539063-1.792968 9.667969.394532 11.476563 4.917969l27.117187 67.785156 27.109375-67.785156c1.820313-4.523437 6.941406-6.726563 11.476563-4.917969 4.527343 1.816406 6.726562 6.945313 4.917969 11.476563l-35.3125 88.273437c-1.339844 3.347656-4.578126 5.542969-8.191407 5.542969zm0 0"/><path d="m273.65625 485.515625c-4.875 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.953125-8.828124 8.828125-8.828124 4.871094 0 8.828125 3.953124 8.828125 8.828124v88.277344c0 4.871094-3.957031 8.824219-8.828125 8.824219zm0 0"/><path d="m300.136719 485.515625h-52.964844c-4.871094 0-8.828125-3.953125-8.828125-8.824219 0-4.875 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828125 3.953125 8.828125 8.828125 0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m300.136719 397.242188h-52.964844c-4.871094 0-8.828125-3.957032-8.828125-8.828126 0-4.875 3.957031-8.828124 8.828125-8.828124h52.964844c4.875 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.953125 8.828126-8.828125 8.828126zm0 0"/><path d="m105.929688 485.515625c-4.871094 0-8.828126-3.953125-8.828126-8.824219v-77.429687c0-1.109375-.90625-2.019531-2.019531-2.019531h-31.265625c-1.113281 0-2.023437.910156-2.023437 2.019531v77.429687c0 4.871094-3.953125 8.824219-8.828125 8.824219-4.871094 0-8.828125-3.953125-8.828125-8.824219v-77.429687c0-10.847657 8.828125-19.675781 19.679687-19.675781h31.265625c10.847657 0 19.675781 8.828124 19.675781 19.675781v77.429687c0 4.871094-3.953124 8.824219-8.828124 8.824219zm0 0"/><path d="m105.929688 441.378906h-52.964844c-4.871094 0-8.828125-3.953125-8.828125-8.828125 0-4.871093 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828124 3.957032 8.828124 8.828125 0 4.875-3.953124 8.828125-8.828124 8.828125zm0 0"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m176.550781 79.449219s-11.5625 45.355469-52.964843 97.101562l17.65625 61.792969h70.621093l17.652344-61.792969c-41.398437-51.746093-52.964844-97.101562-52.964844-97.101562zm0 0" fill="#f6b700"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#e48a00"/><path d="m132.414062 264.828125h88.277344v44.136719h-88.277344zm0 0" fill="#9884b7"/><g fill="#fff"><path d="m150.070312 485.515625c-4.875 0-8.828124-3.953125-8.828124-8.824219v-77.429687c0-1.109375-.910157-2.019531-2.023438-2.019531h-31.265625c-1.113281 0-2.023437.910156-2.023437 2.019531v77.429687c0 4.871094-3.953126 8.824219-8.828126 8.824219-4.871093 0-8.824218-3.953125-8.824218-8.824219v-77.429687c0-10.847657 8.824218-19.675781 19.675781-19.675781h31.265625c10.851562 0 19.679688 8.828124 19.679688 19.675781v77.429687c0 4.871094-3.957032 8.824219-8.828126 8.824219zm0 0"/><path d="m150.070312 441.378906h-52.96875c-4.871093 0-8.824218-3.953125-8.824218-8.828125 0-4.871093 3.953125-8.828125 8.824218-8.828125h52.96875c4.871094 0 8.828126 3.957032 8.828126 8.828125 0 4.875-3.957032 8.828125-8.828126 8.828125zm0 0"/><path d="m229.515625 485.515625c-4.871094 0-8.824219-3.953125-8.824219-8.824219v-88.277344c0-4.875 3.953125-8.828124 8.824219-8.828124 4.875 0 8.828125 3.953124 8.828125 8.828124v88.277344c0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m256 485.515625h-52.964844c-4.875 0-8.828125-3.953125-8.828125-8.824219 0-4.875 3.953125-8.828125 8.828125-8.828125h52.964844c4.871094 0 8.828125 3.953125 8.828125 8.828125 0 4.871094-3.957031 8.824219-8.828125 8.824219zm0 0"/><path d="m256 397.242188h-52.964844c-4.875 0-8.828125-3.957032-8.828125-8.828126 0-4.875 3.953125-8.828124 8.828125-8.828124h52.964844c4.871094 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.957031 8.828126-8.828125 8.828126zm0 0"/></g><path d="m220.691406 273.65625h-88.277344c-9.753906 0-17.65625-7.902344-17.65625-17.65625s7.902344-17.65625 17.65625-17.65625h88.277344c9.753906 0 17.652344 7.902344 17.652344 17.65625s-7.898438 17.65625-17.652344 17.65625zm0 0" fill="#684f89"/><path d="m176.550781 79.449219s-2.398437 9.328125-8.828125 24.273437v81.65625c0 4.875 3.957032 8.828125 8.828125 8.828125 4.875 0 8.828125-3.953125 8.828125-8.828125v-81.65625c-6.417968-14.945312-8.828125-24.273437-8.828125-24.273437zm0 0" fill="#fd8"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#f6b700"/><g fill="#fff"><path d="m300.136719 485.515625c-4.871094 0-8.828125-3.953125-8.828125-8.824219v-77.429687c0-1.109375-.90625-2.019531-2.019532-2.019531h-31.265624c-1.113282 0-2.023438.910156-2.023438 2.019531v77.429687c0 4.871094-3.953125 8.824219-8.828125 8.824219-4.871094 0-8.828125-3.953125-8.828125-8.824219v-77.429687c0-10.847657 8.828125-19.675781 19.679688-19.675781h31.265624c10.847657 0 19.675782 8.828124 19.675782 19.675781v77.429687c0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m300.136719 441.378906h-52.964844c-4.871094 0-8.828125-3.953125-8.828125-8.828125 0-4.871093 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828125 3.957032 8.828125 8.828125 0 4.875-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m105.929688 397.242188h-52.964844c-4.871094 0-8.828125-3.957032-8.828125-8.828126 0-4.875 3.957031-8.828124 8.828125-8.828124h52.964844c4.875 0 8.828124 3.953124 8.828124 8.828124 0 4.871094-3.953124 8.828126-8.828124 8.828126zm0 0"/><path d="m105.929688 441.378906h-52.964844c-4.871094 0-8.828125-3.953125-8.828125-8.828125 0-4.871093 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828124 3.957032 8.828124 8.828125 0 4.875-3.953124 8.828125-8.828124 8.828125zm0 0"/><path d="m52.964844 485.515625c-4.871094 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.953124 8.828125 8.828124v88.277344c0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m203.035156 485.515625h-52.964844c-4.875 0-8.828124-3.953125-8.828124-8.824219 0-4.875 3.953124-8.828125 8.828124-8.828125h52.964844c4.871094 0 8.828125 3.953125 8.828125 8.828125 0 4.871094-3.957031 8.824219-8.828125 8.824219zm0 0"/><path d="m150.070312 485.515625c-4.875 0-8.828124-3.953125-8.828124-8.824219v-88.277344c0-4.875 3.953124-8.828124 8.828124-8.828124 4.871094 0 8.828126 3.953124 8.828126 8.828124v88.277344c0 4.871094-3.957032 8.824219-8.828126 8.824219zm0 0"/></g><path d="m220.691406 270.714844c-16.304687 17.445312-37.835937 29.421875-63.753906 29.421875-49.292969 0-86.316406-39.519531-86.316406-88.273438 0-48.757812 37.023437-88.277343 86.316406-88.277343 24.972656 0 47.554688 13.074218 63.753906 29.421874l-61.792968 58.855469zm0 0" fill="#f6b700"/><path d="m229.515625 220.691406h-17.652344c-4.875 0-8.828125-3.957031-8.828125-8.828125 0-4.875 3.953125-8.828125 8.828125-8.828125h17.652344c4.875 0 8.828125 3.953125 8.828125 8.828125 0 4.871094-3.953125 8.828125-8.828125 8.828125zm0 0" fill="#a09893"/><path d="m282.484375 220.691406h-17.65625c-4.875 0-8.828125-3.957031-8.828125-8.828125 0-4.875 3.953125-8.828125 8.828125-8.828125h17.65625c4.871094 0 8.824219 3.953125 8.824219 8.828125 0 4.871094-3.953125 8.828125-8.824219 8.828125zm0 0" fill="#a09893"/><path d="m141.242188 176.550781h-17.65625c-4.871094 0-8.828126-3.953125-8.828126-8.828125 0-4.871094 3.957032-8.824218 8.828126-8.824218h17.65625c4.871093 0 8.828124 3.953124 8.828124 8.824218 0 4.875-3.957031 8.828125-8.828124 8.828125zm0 0" fill="#fff"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m274.617188 113.839844c-7.160157-7.160156-18.636719-7.574219-26.207032-.855469-33.503906 29.730469-73.851562 69.527344-119.34375 122.007813l24.355469 24.351562c58.597656-50.78125 101.976563-96.878906 121.964844-119.207031 6.761719-7.5625 6.40625-19.109375-.769531-26.296875zm0 0" fill="#684f89"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#4e74ba"/><g fill="#fff"><path d="m52.964844 485.515625c-4.871094 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.953124 8.828125 8.828124v88.277344c0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m79.449219 450.207031h-26.484375c-4.871094 0-8.828125-3.953125-8.828125-8.828125v-52.964844c0-4.875 3.957031-8.828124 8.828125-8.828124h26.484375c19.472656 0 35.308593 15.835937 35.308593 35.3125 0 19.472656-15.835937 35.308593-35.308593 35.308593zm-17.65625-17.65625h17.65625c9.734375 0 17.652343-7.917969 17.652343-17.652343 0-9.738282-7.917968-17.65625-17.652343-17.65625h-17.65625zm0 0"/><path d="m256 485.515625h-8.828125c-4.871094 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.957031-8.828124 8.828125-8.828124h8.828125c29.203125 0 52.964844 23.753906 52.964844 52.964843 0 29.210938-23.761719 52.964844-52.964844 52.964844zm0-17.652344h.089844zm0-70.621093v70.621093c19.472656 0 35.308594-15.839843 35.308594-35.3125 0-19.472656-15.835938-35.308593-35.308594-35.308593zm0 0"/><path d="m180.964844 485.515625h-30.894532c-4.875 0-8.828124-3.953125-8.828124-8.824219 0-4.875 3.953124-8.828125 8.828124-8.828125h30.894532c7.300781 0 13.242187-5.941406 13.242187-13.242187 0-7.300782-5.941406-13.242188-13.242187-13.242188h-8.828125c-17.035157 0-30.894531-13.859375-30.894531-30.894531 0-17.039063 13.859374-30.898437 30.894531-30.898437h30.898437c4.871094 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.957031 8.828126-8.828125 8.828126h-30.898437c-7.300781 0-13.238281 5.941406-13.238281 13.242187 0 7.296875 5.9375 13.238281 13.238281 13.238281h8.828125c17.039062 0 30.898437 13.859375 30.898437 30.898438 0 17.035156-13.859375 30.894531-30.898437 30.894531zm0 0"/></g><path d="m129.066406 235c-9.355468 3.203125-18.878906 11.898438-30.867187 25.484375-28.0625 31.789063-27.578125 57.308594-27.578125 57.308594s25.617187.582031 57.40625-27.480469c13.585937-11.988281 22.21875-21.574219 25.386718-30.96875zm0 0" fill="#efbb48"/><path d="m181.761719 177.25 29.402343 29.402344c9.816407-9.445313 19.058594-18.605469 27.683594-27.417969l-29.660156-29.660156c-8.808594 8.617187-17.972656 17.859375-27.425781 27.675781zm0 0" fill="#443260"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#879695"/><g fill="#a09893"><path d="m185.378906 203.035156h-17.65625c-14.597656 0-26.480468-11.882812-26.480468-26.484375v-44.136719c0-14.601562 11.871093-26.484374 26.480468-26.484374h17.65625c14.601563 0 26.484375 11.882812 26.484375 26.484374v44.136719c0 14.601563-11.875 26.484375-26.484375 26.484375zm-17.65625-79.449218c-4.863281 0-8.824218 3.953124-8.824218 8.828124v44.136719c0 4.863281 3.953124 8.828125 8.824218 8.828125h17.65625c4.863282 0 8.828125-3.953125 8.828125-8.828125v-44.136719c0-4.863281-3.953125-8.828124-8.828125-8.828124zm0 0"/><path d="m247.171875 150.070312c-2.257813 0-4.519531-.867187-6.242187-2.585937-3.449219-3.453125-3.449219-9.03125 0-12.484375l26.484374-26.484375c3.441407-3.449219 9.039063-3.449219 12.480469 0 3.453125 3.453125 3.453125 9.03125 0 12.484375l-26.480469 26.484375c-1.722656 1.71875-3.980468 2.585937-6.242187 2.585937zm0 0"/><path d="m273.65625 203.035156c-4.875 0-8.828125-3.957031-8.828125-8.828125v-79.449219c0-4.871093 3.953125-8.828124 8.828125-8.828124 4.871094 0 8.828125 3.957031 8.828125 8.828124v79.449219c0 4.871094-3.957031 8.828125-8.828125 8.828125zm0 0"/><path d="m291.308594 203.035156h-35.308594c-4.871094 0-8.828125-3.957031-8.828125-8.828125 0-4.871093 3.957031-8.828125 8.828125-8.828125h35.308594c4.875 0 8.828125 3.957032 8.828125 8.828125 0 4.871094-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m97.101562 203.035156h-35.308593c-4.871094 0-8.828125-3.957031-8.828125-8.828125 0-4.871093 3.957031-8.828125 8.828125-8.828125h35.308593c4.875 0 8.828126 3.957032 8.828126 8.828125 0 4.871094-3.953126 8.828125-8.828126 8.828125zm0 0"/><path d="m52.964844 150.070312c-2.257813 0-4.519532-.867187-6.242188-2.585937-3.449218-3.453125-3.449218-9.03125 0-12.484375l26.484375-26.484375c3.441407-3.449219 9.039063-3.449219 12.480469 0 3.453125 3.453125 3.453125 9.03125 0 12.484375l-26.480469 26.484375c-1.722656 1.71875-3.980469 2.585937-6.242187 2.585937zm0 0"/><path d="m79.449219 203.035156c-4.875 0-8.828125-3.957031-8.828125-8.828125v-79.449219c0-4.871093 3.953125-8.828124 8.828125-8.828124 4.871093 0 8.828125 3.957031 8.828125 8.828124v79.449219c0 4.871094-3.957032 8.828125-8.828125 8.828125zm0 0"/><path d="m185.378906 326.621094h-17.65625c-14.597656 0-26.480468-11.882813-26.480468-26.484375v-44.136719c0-14.601562 11.871093-26.484375 26.480468-26.484375h17.65625c14.601563 0 26.484375 11.882813 26.484375 26.484375v44.136719c0 14.601562-11.875 26.484375-26.484375 26.484375zm-17.65625-79.449219c-4.863281 0-8.824218 3.957031-8.824218 8.828125v44.136719c0 4.863281 3.953124 8.828125 8.824218 8.828125h17.65625c4.863282 0 8.828125-3.953125 8.828125-8.828125v-44.136719c0-4.863281-3.953125-8.828125-8.828125-8.828125zm0 0"/><path d="m247.171875 273.65625c-2.257813 0-4.519531-.867188-6.242187-2.585938-3.449219-3.453124-3.449219-9.03125 0-12.484374l26.484374-26.480469c3.441407-3.453125 9.039063-3.453125 12.480469 0 3.453125 3.449219 3.453125 9.027343 0 12.480469l-26.480469 26.484374c-1.722656 1.71875-3.980468 2.585938-6.242187 2.585938zm0 0"/><path d="m273.65625 326.621094c-4.875 0-8.828125-3.957032-8.828125-8.828125v-79.449219c0-4.871094 3.953125-8.828125 8.828125-8.828125 4.871094 0 8.828125 3.957031 8.828125 8.828125v79.449219c0 4.871093-3.957031 8.828125-8.828125 8.828125zm0 0"/><path d="m291.308594 326.621094h-35.308594c-4.871094 0-8.828125-3.957032-8.828125-8.828125 0-4.871094 3.957031-8.828125 8.828125-8.828125h35.308594c4.875 0 8.828125 3.957031 8.828125 8.828125 0 4.871093-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m88.277344 326.621094h-17.65625c-14.601563 0-26.484375-11.882813-26.484375-26.484375v-44.136719c0-14.601562 11.875-26.484375 26.484375-26.484375h17.65625c14.597656 0 26.480468 11.882813 26.480468 26.484375v44.136719c0 14.601562-11.871093 26.484375-26.480468 26.484375zm-17.65625-79.449219c-4.863282 0-8.828125 3.957031-8.828125 8.828125v44.136719c0 4.863281 3.953125 8.828125 8.828125 8.828125h17.65625c4.863281 0 8.824218-3.953125 8.824218-8.828125v-44.136719c0-4.863281-3.953124-8.828125-8.824218-8.828125zm0 0"/></g><path d="m83.863281 441.378906h-30.898437c-4.871094 0-8.828125-3.953125-8.828125-8.828125v-44.136719c0-4.875 3.957031-8.828124 8.828125-8.828124h30.898437c17.035157 0 30.894531 13.859374 30.894531 30.898437 0 17.035156-13.859374 30.894531-30.894531 30.894531zm-22.070312-17.65625h22.070312c7.300781 0 13.238281-5.941406 13.238281-13.238281 0-7.300781-5.9375-13.242187-13.238281-13.242187h-22.070312zm0 0" fill="#fff"/><path d="m83.863281 485.515625h-30.898437c-4.871094 0-8.828125-3.953125-8.828125-8.824219v-44.140625c0-4.871093 3.957031-8.828125 8.828125-8.828125h30.898437c17.035157 0 30.894531 13.859375 30.894531 30.898438 0 17.035156-13.859374 30.894531-30.894531 30.894531zm-22.070312-17.652344h22.070312c7.300781 0 13.238281-5.941406 13.238281-13.242187 0-7.300782-5.9375-13.242188-13.238281-13.242188h-22.070312zm0 0" fill="#fff"/><path d="m203.035156 397.242188h-52.964844c-4.875 0-8.828124-3.957032-8.828124-8.828126 0-4.875 3.953124-8.828124 8.828124-8.828124h52.964844c4.871094 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.957031 8.828126-8.828125 8.828126zm0 0" fill="#fff"/><path d="m203.035156 485.515625h-52.964844c-4.875 0-8.828124-3.953125-8.828124-8.824219 0-4.875 3.953124-8.828125 8.828124-8.828125h52.964844c4.871094 0 8.828125 3.953125 8.828125 8.828125 0 4.871094-3.957031 8.824219-8.828125 8.824219zm0 0" fill="#fff"/><path d="m176.550781 485.515625c-4.871093 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.957032-8.828124 8.828125-8.828124 4.875 0 8.828125 3.953124 8.828125 8.828124v88.277344c0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0" fill="#fff"/><path d="m300.136719 485.515625c-3.042969 0-5.949219-1.578125-7.5625-4.28125l-36.574219-60.953125v56.410156c0 4.871094-3.953125 8.824219-8.828125 8.824219-4.871094 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-3.972656 2.648438-7.449218 6.472656-8.511718 3.820313-1.046875 7.882813.566406 9.921875 3.964844l36.570313 60.953124v-56.40625c0-4.875 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.953124 8.828125 8.828124v88.277344c0 3.96875-2.648438 7.449219-6.46875 8.507813-.785156.210937-1.574219.316406-2.359375.316406zm0 0" fill="#fff"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#4d4799"/><path d="m220.691406 282.484375c-1.15625 0-2.339844-.230469-3.472656-.726563-4.484375-1.914062-6.558594-7.105468-4.632812-11.589843l52.964843-123.585938c1.925781-4.464843 7.117188-6.558593 11.589844-4.632812 4.484375 1.914062 6.558594 7.105469 4.636719 11.589843l-52.964844 123.585938c-1.441406 3.355469-4.707031 5.359375-8.121094 5.359375zm0 0" fill="#4d4799"/><g fill="#fff"><path d="m300.136719 441.378906h-52.964844c-4.871094 0-8.828125-3.953125-8.828125-8.828125v-44.136719c0-4.875 3.957031-8.828124 8.828125-8.828124h52.964844c4.875 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.953125 8.828126-8.828125 8.828126h-44.136719v26.480468h44.136719c4.875 0 8.828125 3.957032 8.828125 8.828125 0 4.875-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m300.136719 485.515625h-52.964844c-4.871094 0-8.828125-3.953125-8.828125-8.824219v-44.140625c0-4.871093 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828125 3.957032 8.828125 8.828125 0 4.875-3.953125 8.828125-8.828125 8.828125h-44.136719v26.484375h44.136719c4.875 0 8.828125 3.953125 8.828125 8.828125 0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m150.058594 485.515625c-1.542969 0-3.113282-.40625-4.527344-1.261719-4.183594-2.507812-5.535156-7.925781-3.027344-12.109375l52.964844-88.277343c2.507812-4.183594 7.925781-5.535157 12.113281-3.027344 4.183594 2.507812 5.535157 7.925781 3.027344 12.113281l-52.964844 88.273437c-1.660156 2.761719-4.582031 4.289063-7.585937 4.289063zm0 0"/><path d="m203.042969 485.515625c-3 0-5.921875-1.527344-7.574219-4.28125l-52.964844-88.273437c-2.507812-4.183594-1.15625-9.605469 3.027344-12.113282 4.175781-2.515625 9.605469-1.15625 12.113281 3.027344l52.964844 88.277344c2.507813 4.183594 1.15625 9.605468-3.027344 12.113281-1.421875.84375-2.992187 1.25-4.539062 1.25zm0 0"/><path d="m105.929688 441.378906h-52.964844c-4.871094 0-8.828125-3.953125-8.828125-8.828125v-44.136719c0-4.875 3.957031-8.828124 8.828125-8.828124h52.964844c4.875 0 8.828124 3.953124 8.828124 8.828124 0 4.871094-3.953124 8.828126-8.828124 8.828126h-44.136719v26.480468h44.136719c4.875 0 8.828124 3.957032 8.828124 8.828125 0 4.875-3.953124 8.828125-8.828124 8.828125zm0 0"/><path d="m105.929688 485.515625h-52.964844c-4.871094 0-8.828125-3.953125-8.828125-8.824219v-44.140625c0-4.871093 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828124 3.957032 8.828124 8.828125 0 4.875-3.953124 8.828125-8.828124 8.828125h-44.136719v26.484375h44.136719c4.875 0 8.828124 3.953125 8.828124 8.828125 0 4.871094-3.953124 8.824219-8.828124 8.824219zm0 0"/></g><path d="m132.414062 273.734375h-35.230468c-14.644532 0-26.5625-11.917969-26.5625-26.5625v-70.539063c0-14.648437 11.917968-26.5625 26.5625-26.5625h35.230468c4.871094 0 8.828126 3.953126 8.828126 8.828126 0 4.871093-3.957032 8.824218-8.828126 8.824218h-35.230468c-4.917969 0-8.90625 4-8.90625 8.910156v70.539063c0 4.910156 3.988281 8.90625 8.90625 8.90625h35.230468c4.871094 0 8.828126 3.957031 8.828126 8.828125 0 4.875-3.957032 8.828125-8.828126 8.828125zm0 0" fill="#4d4799"/><path d="m176.550781 194.207031c-4.871093 0-8.828125-3.953125-8.828125-8.828125v-8.828125c0-4.871093 3.957032-8.828125 8.828125-8.828125 4.875 0 8.828125 3.957032 8.828125 8.828125v8.828125c0 4.875-3.953125 8.828125-8.828125 8.828125zm0 0" fill="#4d4799"/><path d="m176.550781 256c-4.871093 0-8.828125-3.953125-8.828125-8.828125v-8.828125c0-4.871094 3.957032-8.828125 8.828125-8.828125 4.875 0 8.828125 3.957031 8.828125 8.828125v8.828125c0 4.875-3.953125 8.828125-8.828125 8.828125zm0 0" fill="#4d4799"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#2c81e4"/><g fill="#fff"><path d="m79.449219 141.242188h194.207031v158.894531h-194.207031zm0 0"/><path d="m282.484375 485.515625h-17.65625c-14.601563 0-26.484375-11.878906-26.484375-26.480469v-52.964844c0-14.601562 11.875-26.484374 26.484375-26.484374h17.65625c14.597656 0 26.480469 11.882812 26.480469 26.484374v52.964844c0 14.601563-11.871094 26.480469-26.480469 26.480469zm-17.65625-88.273437c-4.863281 0-8.828125 3.953124-8.828125 8.828124v52.964844c0 4.863282 3.953125 8.828125 8.828125 8.828125h17.65625c4.863281 0 8.824219-3.957031 8.824219-8.828125v-52.964844c0-4.867187-3.953125-8.828124-8.824219-8.828124zm0 0"/><path d="m203.035156 485.515625h-35.230468c-14.644532 0-26.5625-11.914063-26.5625-26.5625v-52.804687c0-14.644532 11.917968-26.5625 26.5625-26.5625h35.230468c4.871094 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.957031 8.828126-8.828125 8.828126h-35.230468c-4.917969 0-8.90625 4-8.90625 8.90625v52.804687c0 4.910156 3.988281 8.910156 8.90625 8.910156h35.230468c4.871094 0 8.828125 3.953125 8.828125 8.828125 0 4.871094-3.957031 8.824219-8.828125 8.824219zm0 0"/><path d="m105.929688 397.242188h-52.964844c-4.871094 0-8.828125-3.957032-8.828125-8.828126 0-4.875 3.957031-8.828124 8.828125-8.828124h52.964844c4.875 0 8.828124 3.953124 8.828124 8.828124 0 4.871094-3.953124 8.828126-8.828124 8.828126zm0 0"/><path d="m105.929688 485.515625h-52.964844c-4.871094 0-8.828125-3.953125-8.828125-8.824219 0-4.875 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828124 3.953125 8.828124 8.828125 0 4.871094-3.953124 8.824219-8.828124 8.824219zm0 0"/><path d="m79.449219 485.515625c-4.875 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.953125-8.828124 8.828125-8.828124 4.871093 0 8.828125 3.953124 8.828125 8.828124v88.277344c0 4.871094-3.957032 8.824219-8.828125 8.824219zm0 0"/></g><path d="m203.035156 185.378906h-52.964844c-4.875 0-8.828124-3.953125-8.828124-8.828125 0-4.871093 3.953124-8.828125 8.828124-8.828125h52.964844c4.871094 0 8.828125 3.957032 8.828125 8.828125 0 4.875-3.957031 8.828125-8.828125 8.828125zm0 0" fill="#2c81e4"/><path d="m203.035156 273.65625h-52.964844c-4.875 0-8.828124-3.957031-8.828124-8.828125 0-4.875 3.953124-8.828125 8.828124-8.828125h52.964844c4.871094 0 8.828125 3.953125 8.828125 8.828125 0 4.871094-3.957031 8.828125-8.828125 8.828125zm0 0" fill="#2c81e4"/><path d="m176.550781 273.65625c-4.871093 0-8.828125-3.957031-8.828125-8.828125v-88.277344c0-4.871093 3.957032-8.828125 8.828125-8.828125 4.875 0 8.828125 3.957032 8.828125 8.828125v88.277344c0 4.871094-3.953125 8.828125-8.828125 8.828125zm0 0" fill="#2c81e4"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m97.101562 273.65625h158.898438v17.652344h-158.898438zm0 0" fill="#e65b17"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#e65b17"/><g fill="#fff"><path d="m114.757812 485.515625c-4.871093 0-8.828124-3.953125-8.828124-8.824219v-55.03125l-18.820313 32.925782c-3.140625 5.5-12.179687 5.5-15.324219 0l-18.820312-32.925782v55.03125c0 4.871094-3.953125 8.824219-8.828125 8.824219-4.871094 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.007812 2.695312-7.503906 6.5625-8.527343 3.855468-1.050781 7.941406.679687 9.929687 4.148437l27.648438 48.375 27.648437-48.375c1.984375-3.476562 6.0625-5.191406 9.929688-4.148437 3.867187 1.023437 6.558594 4.519531 6.558594 8.527343v88.277344c0 4.871094-3.953126 8.824219-8.828126 8.824219zm0 0"/><path d="m273.65625 485.515625c-3.613281 0-6.851562-2.195313-8.203125-5.542969l-35.308594-88.273437c-1.808593-4.53125.386719-9.667969 4.917969-11.476563 4.542969-1.792968 9.664062.394532 11.472656 4.917969l27.121094 67.785156 27.109375-67.785156c1.808594-4.53125 6.9375-6.71875 11.476563-4.917969 4.527343 1.816406 6.726562 6.945313 4.914062 11.476563l-35.308594 88.273437c-1.34375 3.347656-4.582031 5.542969-8.191406 5.542969zm0 0"/><path d="m150.070312 485.515625c-4.875 0-8.828124-3.953125-8.828124-8.824219v-88.277344c0-4.875 3.953124-8.828124 8.828124-8.828124 4.871094 0 8.828126 3.953124 8.828126 8.828124v88.277344c0 4.871094-3.957032 8.824219-8.828126 8.824219zm0 0"/><path d="m150.070312 441.378906c-2.527343 0-5.042968-1.085937-6.789062-3.175781-3.125-3.746094-2.613281-9.316406 1.128906-12.429687l52.964844-44.140626c3.742188-3.125 9.3125-2.613281 12.429688 1.132813 3.117187 3.742187 2.613281 9.3125-1.128907 12.429687l-52.964843 44.136719c-1.644532 1.375-3.648438 2.046875-5.640626 2.046875zm0 0"/><path d="m203.035156 485.515625c-1.996094 0-4-.667969-5.648437-2.046875l-52.96875-44.136719c-3.742188-3.125-4.253907-8.6875-1.128907-12.429687 3.125-3.742188 8.6875-4.246094 12.429688-1.128906l52.964844 44.136718c3.742187 3.125 4.246094 8.6875 1.128906 12.429688-1.746094 2.089844-4.253906 3.175781-6.777344 3.175781zm0 0"/></g><path d="m61.792969 282.484375h229.515625v35.308594h-229.515625zm0 0" fill="#b74316"/><path d="m250.855469 244.066406c-.40625.035156-.777344.121094-1.203125.121094-6.285156 0-10.308594-3.460938-12.15625-7.917969-7.574219-5.726562-7-19.339843 1.925781-23.65625l-17.566406-48.324219c-.566407.0625-1.105469.167969-1.714844.167969-5.796875 0-9.671875-2.9375-11.695313-6.882812-7.574218-5.84375-6.875-19.644531 2.332032-23.757813l-16.570313-45.539062h-35.308593l-16.421876 45.144531c10.753907 2.761719 12.457032 17.328125 5.191407 23.914063-2.03125 3.925781-5.90625 6.847656-11.679688 6.847656-1.648437 0-3.097656-.300782-4.441406-.730469l-17.988281 49.460937c12.765625 2.242188 14.035156 20.277344 3.910156 25.773438-2.214844 2.921875-5.675781 4.945312-10.453125 4.945312-1.625 0-3.042969-.292968-4.367187-.714843l-14.371094 39.566406h176.550781zm0 0" fill="#e65b17"/><path d="m130.003906 167.722656h93.09375l-12.84375-35.308594h-67.40625zm0 0" fill="#fff"/><path d="m101.121094 247.171875h150.863281l-12.835937-35.308594h-125.191407zm0 0" fill="#fff"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#324946"/><path d="m88.277344 123.585938h176.550781v176.550781h-176.550781zm0 0" fill="#e1a02f"/><path d="m203.035156 211.863281-52.964844 35.308594v-70.621094zm0 0" fill="#fff"/><path d="m282.484375 485.515625c-3.613281 0-6.851563-2.195313-8.203125-5.542969l-35.308594-88.273437c-1.8125-4.53125.386719-9.667969 4.914063-11.476563 4.546875-1.792968 9.667969.394532 11.476562 4.917969l27.121094 67.785156 27.109375-67.785156c1.808594-4.53125 6.929688-6.71875 11.472656-4.917969 4.53125 1.816406 6.726563 6.945313 4.917969 11.476563l-35.308594 88.273437c-1.34375 3.347656-4.582031 5.542969-8.191406 5.542969zm0 0" fill="#fff"/><path d="m70.621094 123.585938h35.308594v35.3125h-35.308594zm0 0" fill="#324946"/><path d="m70.621094 158.898438h35.308594v35.308593h-35.308594zm0 0" fill="#1b2d2a"/><path d="m70.621094 194.207031h35.308594v35.308594h-35.308594zm0 0" fill="#324946"/><path d="m70.621094 229.515625h35.308594v35.3125h-35.308594zm0 0" fill="#1b2d2a"/><path d="m70.621094 264.828125h35.308594v35.308594h-35.308594zm0 0" fill="#324946"/><path d="m211.863281 485.515625c-4.875 0-8.828125-3.953125-8.828125-8.824219v-55.03125l-18.820312 32.925782c-3.132813 5.5-12.191406 5.5-15.324219 0l-18.820313-32.925782v55.03125c0 4.871094-3.957031 8.824219-8.828124 8.824219-4.875 0-8.828126-3.953125-8.828126-8.824219v-88.277344c0-4.007812 2.691407-7.503906 6.558594-8.527343 3.875-1.050781 7.945313.671875 9.929688 4.148437l27.648437 48.375 27.648438-48.375c1.988281-3.46875 6.046875-5.199218 9.929687-4.148437 3.867188 1.023437 6.5625 4.519531 6.5625 8.527343v88.277344c0 4.871094-3.957031 8.824219-8.828125 8.824219zm0 0" fill="#fff"/><path d="m97.101562 485.515625c-3.484374 0-6.699218-2.0625-8.101562-5.347656l-18.378906-42.859375-18.371094 42.859375c-1.578125 3.691406-5.480469 5.84375-9.453125 5.242187-3.980469-.609375-7.046875-3.839844-7.441406-7.835937l-8.828125-88.277344c-.484375-4.855469 3.054687-9.179687 7.898437-9.667969 4.855469-.429687 9.183594 3.054688 9.667969 7.910156l5.421875 54.203126 12.992187-30.324219c1.386719-3.246094 4.582032-5.347657 8.113282-5.347657s6.726562 2.101563 8.113281 5.347657l12.992187 30.324219 5.421876-54.203126c.484374-4.84375 4.75-8.351562 9.664062-7.910156 4.847656.488282 8.386719 4.8125 7.910156 9.667969l-8.828125 88.277344c-.394531 4.007812-3.460937 7.226562-7.441406 7.847656-.457031.058594-.910156.09375-1.351563.09375zm0 0" fill="#fff"/><path d="m247.171875 123.585938h35.3125v35.3125h-35.3125zm0 0" fill="#324946"/><path d="m247.171875 158.898438h35.3125v35.308593h-35.3125zm0 0" fill="#1b2d2a"/><path d="m247.171875 194.207031h35.3125v35.308594h-35.3125zm0 0" fill="#324946"/><path d="m247.171875 229.515625h35.3125v35.3125h-35.3125zm0 0" fill="#1b2d2a"/><path d="m247.171875 264.828125h35.3125v35.308594h-35.3125zm0 0" fill="#324946"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#b53438"/><path d="m88.277344 123.585938h176.550781v176.550781h-176.550781zm0 0" fill="#b53438"/><path d="m203.035156 211.863281-52.964844 35.308594v-70.621094zm0 0" fill="#fff"/><path d="m70.621094 123.585938h35.308594v35.3125h-35.308594zm0 0" fill="#e1a02f"/><path d="m70.621094 158.898438h35.308594v35.308593h-35.308594zm0 0" fill="#ad772a"/><path d="m70.621094 194.207031h35.308594v35.308594h-35.308594zm0 0" fill="#e1a02f"/><path d="m70.621094 229.515625h35.308594v35.3125h-35.308594zm0 0" fill="#ad772a"/><path d="m70.621094 264.828125h35.308594v35.308594h-35.308594zm0 0" fill="#e1a02f"/><path d="m247.171875 123.585938h35.3125v35.3125h-35.3125zm0 0" fill="#e1a02f"/><path d="m247.171875 158.898438h35.3125v35.308593h-35.3125zm0 0" fill="#ad772a"/><path d="m247.171875 194.207031h35.3125v35.308594h-35.3125zm0 0" fill="#e1a02f"/><path d="m247.171875 229.515625h35.3125v35.3125h-35.3125zm0 0" fill="#ad772a"/><path d="m247.171875 264.828125h35.3125v35.308594h-35.3125zm0 0" fill="#e1a02f"/><g fill="#fff"><path d="m114.757812 485.515625c-4.871093 0-8.828124-3.953125-8.828124-8.824219v-55.03125l-18.820313 32.925782c-3.132813 5.5-12.191406 5.5-15.324219 0l-18.820312-32.925782v55.03125c0 4.871094-3.953125 8.824219-8.828125 8.824219-4.871094 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.007812 2.695312-7.503906 6.5625-8.527343 3.875-1.050781 7.941406.671875 9.929687 4.148437l27.648438 48.375 27.648437-48.375c1.984375-3.46875 6.046875-5.199218 9.929688-4.148437 3.867187 1.023437 6.558594 4.519531 6.558594 8.527343v88.277344c0 4.871094-3.953126 8.824219-8.828126 8.824219zm0 0"/><path d="m273.65625 485.515625c-3.613281 0-6.851562-2.195313-8.203125-5.542969l-35.308594-88.273437c-1.808593-4.53125.386719-9.667969 4.917969-11.476563 4.535156-1.792968 9.664062.394532 11.472656 4.917969l27.121094 67.785156 27.109375-67.785156c1.816406-4.53125 6.9375-6.71875 11.476563-4.917969 4.527343 1.816406 6.726562 6.945313 4.914062 11.476563l-35.308594 88.273437c-1.34375 3.347656-4.582031 5.542969-8.191406 5.542969zm0 0"/><path d="m185.378906 485.515625h-17.65625c-14.597656 0-26.480468-11.878906-26.480468-26.480469v-52.964844c0-14.601562 11.882812-26.484374 26.480468-26.484374h17.65625c14.601563 0 26.484375 11.882812 26.484375 26.484374v52.964844c0 14.601563-11.882812 26.480469-26.484375 26.480469zm-17.65625-88.273437c-4.863281 0-8.824218 3.953124-8.824218 8.828124v52.964844c0 4.863282 3.953124 8.828125 8.824218 8.828125h17.65625c4.863282 0 8.828125-3.957031 8.828125-8.828125v-52.964844c0-4.867187-3.953125-8.828124-8.828125-8.828124zm0 0"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m123.578125 317.792969c-1.546875 0-3.117187-.40625-4.53125-1.261719-4.183594-2.507812-5.53125-7.925781-3.027344-12.113281l26.484375-44.136719c2.507813-4.183594 7.925782-5.527344 12.109375-3.027344 4.1875 2.507813 5.535157 7.925782 3.03125 12.109375l-26.484375 44.140625c-1.660156 2.761719-4.582031 4.289063-7.582031 4.289063zm0 0" fill="#a09893"/><path d="m229.527344 317.792969c-3.003906 0-5.925782-1.527344-7.574219-4.28125l-26.484375-44.136719c-2.507812-4.183594-1.15625-9.605469 3.027344-12.113281 4.175781-2.507813 9.605468-1.15625 12.113281 3.027343l26.480469 44.140626c2.507812 4.183593 1.15625 9.601562-3.027344 12.109374-1.421875.847657-2.992188 1.253907-4.535156 1.253907zm0 0" fill="#a09893"/><path d="m176.550781 132.414062c-2.257812 0-4.519531-.867187-6.238281-2.585937l-26.484375-26.484375c-3.453125-3.449219-3.453125-9.03125 0-12.480469 3.441406-3.453125 9.039063-3.453125 12.480469 0l26.484375 26.480469c3.453125 3.453125 3.453125 9.03125 0 12.484375-1.722657 1.71875-3.980469 2.585937-6.242188 2.585937zm0 0" fill="#a09893"/><path d="m176.550781 132.414062c-2.257812 0-4.519531-.867187-6.238281-2.585937-3.453125-3.453125-3.453125-9.03125 0-12.484375l26.480469-26.480469c3.441406-3.453125 9.039062-3.453125 12.484375 0 3.449218 3.449219 3.449218 9.03125 0 12.480469l-26.484375 26.484375c-1.722657 1.71875-3.980469 2.585937-6.242188 2.585937zm0 0" fill="#a09893"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#d36a0a"/><g fill="#fff"><path d="m52.964844 485.515625c-4.871094 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.953124 8.828125 8.828124v88.277344c0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m79.449219 450.207031h-26.484375c-4.871094 0-8.828125-3.953125-8.828125-8.828125v-52.964844c0-4.875 3.957031-8.828124 8.828125-8.828124h26.484375c19.472656 0 35.308593 15.835937 35.308593 35.3125 0 19.472656-15.835937 35.308593-35.308593 35.308593zm-17.65625-17.65625h17.65625c9.734375 0 17.652343-7.917969 17.652343-17.652343 0-9.738282-7.917968-17.65625-17.652343-17.65625h-17.65625zm0 0"/><path d="m150.070312 485.515625c-4.875 0-8.828124-3.953125-8.828124-8.824219v-88.277344c0-4.875 3.953124-8.828124 8.828124-8.828124 4.871094 0 8.828126 3.953124 8.828126 8.828124v88.277344c0 4.871094-3.957032 8.824219-8.828126 8.824219zm0 0"/><path d="m176.550781 450.207031h-26.480469c-4.875 0-8.828124-3.953125-8.828124-8.828125v-52.964844c0-4.875 3.953124-8.828124 8.828124-8.828124h26.480469c19.472657 0 35.3125 15.835937 35.3125 35.3125 0 19.472656-15.839843 35.308593-35.3125 35.308593zm-17.652343-17.65625h17.652343c9.738281 0 17.65625-7.917969 17.65625-17.652343 0-9.738282-7.917969-17.65625-17.65625-17.65625h-17.652343zm0 0"/><path d="m300.136719 397.242188h-52.964844c-4.871094 0-8.828125-3.957032-8.828125-8.828126 0-4.875 3.957031-8.828124 8.828125-8.828124h52.964844c4.875 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.953125 8.828126-8.828125 8.828126zm0 0"/><path d="m273.65625 485.515625c-4.875 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.953125-8.828124 8.828125-8.828124 4.871094 0 8.828125 3.953124 8.828125 8.828124v88.277344c0 4.871094-3.957031 8.824219-8.828125 8.824219zm0 0"/></g><path d="m61.792969 123.585938h229.515625v141.242187h-229.515625zm0 0" fill="#c8c1bd"/><path d="m167.722656 167.722656h-70.621094c-4.871093 0-8.824218-3.953125-8.824218-8.824218 0-4.875 3.953125-8.828126 8.824218-8.828126h70.621094c4.875 0 8.828125 3.953126 8.828125 8.828126 0 4.871093-3.953125 8.824218-8.828125 8.824218zm0 0" fill="#a09893"/><path d="m256 238.34375h-70.621094c-4.871094 0-8.828125-3.953125-8.828125-8.828125 0-4.871094 3.957031-8.824219 8.828125-8.824219h70.621094c4.871094 0 8.828125 3.953125 8.828125 8.824219 0 4.875-3.957031 8.828125-8.828125 8.828125zm0 0" fill="#a09893"/><path d="m211.863281 203.035156h-70.621093c-4.875 0-8.828126-3.957031-8.828126-8.828125 0-4.871093 3.953126-8.828125 8.828126-8.828125h70.621093c4.871094 0 8.828125 3.957032 8.828125 8.828125 0 4.871094-3.957031 8.828125-8.828125 8.828125zm0 0" fill="#a09893"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#6ab86f"/><g fill="#fff"><path d="m180.964844 485.515625h-30.894532c-4.875 0-8.828124-3.953125-8.828124-8.824219 0-4.875 3.953124-8.828125 8.828124-8.828125h30.894532c7.300781 0 13.242187-5.941406 13.242187-13.242187 0-7.300782-5.941406-13.242188-13.242187-13.242188h-8.828125c-17.035157 0-30.894531-13.859375-30.894531-30.894531 0-17.039063 13.859374-30.898437 30.894531-30.898437h30.898437c4.871094 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.957031 8.828126-8.828125 8.828126h-30.898437c-7.300781 0-13.238281 5.941406-13.238281 13.242187 0 7.296875 5.9375 13.238281 13.238281 13.238281h8.828125c17.039062 0 30.898437 13.859375 30.898437 30.898438 0 17.035156-13.859375 30.894531-30.898437 30.894531zm0 0"/><path d="m282.484375 485.515625h-17.65625c-14.601563 0-26.484375-11.878906-26.484375-26.480469v-52.964844c0-14.601562 11.882812-26.484374 26.484375-26.484374h17.65625c14.597656 0 26.480469 11.882812 26.480469 26.484374v52.964844c0 14.601563-11.882813 26.480469-26.480469 26.480469zm-17.65625-88.273437c-4.863281 0-8.828125 3.953124-8.828125 8.828124v52.964844c0 4.863282 3.953125 8.828125 8.828125 8.828125h17.65625c4.863281 0 8.824219-3.957031 8.824219-8.828125v-52.964844c0-4.867187-3.953125-8.828124-8.824219-8.828124zm0 0"/><path d="m79.449219 485.515625c-4.875 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.953125-8.828124 8.828125-8.828124 4.871093 0 8.828125 3.953124 8.828125 8.828124v88.277344c0 4.871094-3.957032 8.824219-8.828125 8.824219zm0 0"/><path d="m105.929688 485.515625h-52.964844c-4.871094 0-8.828125-3.953125-8.828125-8.824219 0-4.875 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828124 3.953125 8.828124 8.828125 0 4.871094-3.953124 8.824219-8.828124 8.824219zm0 0"/><path d="m105.929688 397.242188h-52.964844c-4.871094 0-8.828125-3.957032-8.828125-8.828126 0-4.875 3.957031-8.828124 8.828125-8.828124h52.964844c4.875 0 8.828124 3.953124 8.828124 8.828124 0 4.871094-3.953124 8.828126-8.828124 8.828126zm0 0"/></g><path d="m176.550781 317.792969c-58.410156 0-105.929687-47.519531-105.929687-105.929688 0-58.414062 47.519531-105.933593 105.929687-105.933593 58.414063 0 105.933594 47.519531 105.933594 105.933593 0 58.410157-47.519531 105.929688-105.933594 105.929688zm0-194.207031c-48.675781 0-88.273437 39.601562-88.273437 88.277343s39.597656 88.273438 88.273437 88.273438 88.277344-39.597657 88.277344-88.273438-39.601563-88.277343-88.277344-88.277343zm0 0" fill="#a09893"/><path d="m176.550781 247.171875c-19.472656 0-35.308593-15.835937-35.308593-35.308594 0-19.476562 15.835937-35.3125 35.308593-35.3125 19.472657 0 35.3125 15.835938 35.3125 35.3125 0 19.472657-15.839843 35.308594-35.3125 35.308594zm0-52.964844c-9.734375 0-17.652343 7.917969-17.652343 17.65625 0 9.734375 7.917968 17.652344 17.652343 17.652344 9.738281 0 17.65625-7.917969 17.65625-17.652344 0-9.738281-7.917969-17.65625-17.65625-17.65625zm0 0" fill="#a09893"/><path d="m114.757812 220.691406c-4.871093 0-8.828124-3.957031-8.828124-8.828125 0-38.941406 31.683593-70.621093 70.621093-70.621093 4.875 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.953125 8.828126-8.828125 8.828126-29.210937 0-52.964843 23.753906-52.964843 52.964843 0 4.871094-3.953126 8.828125-8.828126 8.828125zm0 0" fill="#a09893"/><path d="m176.550781 282.484375c-4.871093 0-8.828125-3.957031-8.828125-8.828125 0-4.875 3.957032-8.828125 8.828125-8.828125 29.210938 0 52.964844-23.753906 52.964844-52.964844 0-4.875 3.957031-8.828125 8.828125-8.828125 4.875 0 8.828125 3.953125 8.828125 8.828125 0 38.9375-31.683594 70.621094-70.621094 70.621094zm0 0" fill="#a09893"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#25ae88"/><g fill="#fff"><path d="m61.792969 114.757812h229.515625v203.035157h-229.515625zm0 0"/><path d="m88.242188 485.515625h-17.542969c-14.644531 0-26.5625-11.914063-26.5625-26.5625v-52.804687c0-14.644532 11.917969-26.5625 26.5625-26.5625h35.230469c4.875 0 8.828124 3.945312 8.828124 8.828124 0 4.882813-3.953124 8.828126-8.828124 8.828126h-35.230469c-4.917969 0-8.90625 3.988281-8.90625 8.90625v52.804687c0 4.917969 3.988281 8.910156 8.90625 8.910156h17.550781c4.882812 0 8.851562-3.972656 8.851562-8.863281v-26.449219c0-4.878906 3.957032-8.828125 8.828126-8.828125 4.875 0 8.828124 3.949219 8.828124 8.828125v26.449219c0 14.617188-11.890624 26.515625-26.515624 26.515625zm0 0"/><path d="m105.929688 441.378906h-17.652344c-4.875 0-8.828125-3.945312-8.828125-8.828125 0-4.878906 3.953125-8.828125 8.828125-8.828125h17.652344c4.875 0 8.828124 3.949219 8.828124 8.828125 0 4.882813-3.953124 8.828125-8.828124 8.828125zm0 0"/><path d="m300.136719 397.242188h-52.964844c-4.871094 0-8.828125-3.945313-8.828125-8.828126 0-4.882812 3.957031-8.828124 8.828125-8.828124h52.964844c4.875 0 8.828125 3.945312 8.828125 8.828124 0 4.882813-3.953125 8.828126-8.828125 8.828126zm0 0"/><path d="m300.136719 441.378906h-52.964844c-4.871094 0-8.828125-3.945312-8.828125-8.828125 0-4.878906 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828125 3.949219 8.828125 8.828125 0 4.882813-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m247.171875 485.515625c-4.871094 0-8.828125-3.945313-8.828125-8.824219v-88.277344c0-4.882812 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.945312 8.828125 8.828124v88.277344c0 4.878906-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m176.550781 485.515625c-4.871093 0-8.828125-3.945313-8.828125-8.824219v-88.277344c0-4.882812 3.957032-8.828124 8.828125-8.828124 4.875 0 8.828125 3.945312 8.828125 8.828124v88.277344c0 4.878906-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m203.035156 485.515625h-52.964844c-4.875 0-8.828124-3.945313-8.828124-8.824219 0-4.882812 3.953124-8.828125 8.828124-8.828125h52.964844c4.871094 0 8.828125 3.945313 8.828125 8.828125 0 4.878906-3.957031 8.824219-8.828125 8.824219zm0 0"/><path d="m203.035156 397.242188h-52.964844c-4.875 0-8.828124-3.945313-8.828124-8.828126 0-4.882812 3.953124-8.828124 8.828124-8.828124h52.964844c4.871094 0 8.828125 3.945312 8.828125 8.828124 0 4.882813-3.957031 8.828126-8.828125 8.828126zm0 0"/></g><path d="m211.863281 203.035156c-2.261719 0-4.519531-.867187-6.242187-2.585937-3.453125-3.453125-3.453125-9.03125 0-12.484375l26.484375-26.480469c3.441406-3.453125 9.039062-3.453125 12.480469 0 3.453124 3.449219 3.453124 9.027344 0 12.480469l-26.484376 26.484375c-1.71875 1.71875-3.980468 2.585937-6.238281 2.585937zm0 0" fill="#25ae88"/><path d="m238.34375 176.550781c-2.257812 0-4.519531-.863281-6.238281-2.585937l-26.484375-26.480469c-3.453125-3.453125-3.453125-9.03125 0-12.484375 3.441406-3.453125 9.039062-3.453125 12.480468 0l26.484376 26.484375c3.453124 3.449219 3.453124 9.027344 0 12.480469-1.722657 1.722656-3.980469 2.585937-6.242188 2.585937zm0 0" fill="#25ae88"/><path d="m114.757812 211.863281c-4.871093 0-8.828124-3.945312-8.828124-8.828125 0-24.339844 19.800781-44.136718 44.140624-44.136718h88.273438c4.875 0 8.828125 3.945312 8.828125 8.824218 0 4.882813-3.953125 8.828125-8.828125 8.828125h-88.273438c-14.601562 0-26.484374 11.882813-26.484374 26.484375 0 4.882813-3.953126 8.828125-8.828126 8.828125zm0 0" fill="#25ae88"/><path d="m114.757812 273.65625c-2.257812 0-4.519531-.867188-6.242187-2.585938-3.449219-3.453124-3.449219-9.03125 0-12.484374l26.484375-26.480469c3.441406-3.453125 9.039062-3.453125 12.484375 0 3.449219 3.449219 3.449219 9.027343 0 12.480469l-26.484375 26.484374c-1.722656 1.71875-3.980469 2.585938-6.242188 2.585938zm0 0" fill="#25ae88"/><path d="m141.242188 300.136719c-2.261719 0-4.519532-.863281-6.242188-2.585938l-26.484375-26.480469c-3.449219-3.453124-3.449219-9.03125 0-12.484374 3.445313-3.449219 9.042969-3.449219 12.484375 0l26.484375 26.484374c3.449219 3.449219 3.449219 9.03125 0 12.480469-1.722656 1.722657-3.984375 2.585938-6.242187 2.585938zm0 0" fill="#25ae88"/><path d="m203.035156 273.65625h-88.277344c-4.871093 0-8.828124-3.945312-8.828124-8.828125s3.957031-8.828125 8.828124-8.828125h88.277344c14.601563 0 26.480469-11.882812 26.480469-26.484375 0-4.878906 3.957031-8.824219 8.828125-8.824219 4.875 0 8.828125 3.945313 8.828125 8.824219 0 24.339844-19.800781 44.140625-44.136719 44.140625zm0 0" fill="#25ae88"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#b53438"/><g fill="#fff"><path d="m79.449219 485.515625c-19.472657 0-35.3125-15.835937-35.3125-35.308594 0-4.882812 3.957031-8.828125 8.828125-8.828125 4.875 0 8.828125 3.945313 8.828125 8.828125 0 9.738281 7.917969 17.65625 17.65625 17.65625 9.734375 0 17.652343-7.917969 17.652343-17.65625v-61.792969c0-4.882812 3.957032-8.828124 8.828126-8.828124 4.875 0 8.828124 3.945312 8.828124 8.828124v61.792969c0 19.472657-15.835937 35.308594-35.308593 35.308594zm0 0"/><path d="m203.035156 485.515625c-4.875 0-8.828125-3.945313-8.828125-8.824219v-77.429687c0-1.109375-.910156-2.019531-2.023437-2.019531h-31.265625c-1.113281 0-2.019531.910156-2.019531 2.019531v77.429687c0 4.878906-3.957032 8.824219-8.828126 8.824219-4.875 0-8.828124-3.945313-8.828124-8.824219v-77.429687c0-10.847657 8.828124-19.675781 19.675781-19.675781h31.265625c10.851562 0 19.679687 8.828124 19.679687 19.675781v77.429687c0 4.878906-3.957031 8.824219-8.828125 8.824219zm0 0"/><path d="m203.035156 441.378906h-52.964844c-4.875 0-8.828124-3.945312-8.828124-8.828125 0-4.878906 3.953124-8.828125 8.828124-8.828125h52.964844c4.871094 0 8.828125 3.949219 8.828125 8.828125 0 4.882813-3.957031 8.828125-8.828125 8.828125zm0 0"/><path d="m247.171875 485.515625c-4.871094 0-8.828125-3.945313-8.828125-8.824219v-88.277344c0-4.882812 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.945312 8.828125 8.828124v88.277344c0 4.878906-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m273.65625 450.207031h-26.484375c-4.871094 0-8.828125-3.945312-8.828125-8.828125v-52.964844c0-4.882812 3.957031-8.828124 8.828125-8.828124h26.484375c19.472656 0 35.308594 15.835937 35.308594 35.3125 0 19.472656-15.835938 35.308593-35.308594 35.308593zm-17.65625-17.65625h17.65625c9.734375 0 17.652344-7.917969 17.652344-17.652343 0-9.738282-7.917969-17.65625-17.652344-17.65625h-17.65625zm0 0"/><path d="m300.148438 485.515625c-2.683594 0-5.332032-1.214844-7.074219-3.53125l-26.480469-35.308594c-2.921875-3.894531-2.136719-9.429687 1.765625-12.351562 3.902344-2.910157 9.4375-2.132813 12.359375 1.765625l26.480469 35.3125c2.921875 3.890625 2.136719 9.425781-1.765625 12.347656-1.589844 1.195312-3.449219 1.765625-5.285156 1.765625zm0 0"/></g><path d="m231.195312 150.070312v26.480469c0 6.039063-.628906 11.925781-1.679687 17.65625h26.484375c24.371094 0 44.136719-19.765625 44.136719-44.136719zm0 0" fill="#afb6bb"/><path d="m150.070312 273.65625c-53.628906 0-97.105468-43.476562-97.105468-97.105469v-26.480469h194.207031v26.480469c0 53.628907-43.476563 97.105469-97.101563 97.105469zm0 0" fill="#fff"/><path d="m229.515625 282.484375h-158.894531c-4.875 0-8.828125-3.949219-8.828125-8.828125 0-4.882812 3.953125-8.828125 8.828125-8.828125h158.894531c4.875 0 8.828125 3.945313 8.828125 8.828125 0 4.878906-3.953125 8.828125-8.828125 8.828125zm0 0" fill="#afb6bb"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#82619a"/><path d="m61.792969 114.757812h229.515625v203.035157h-229.515625zm0 0" fill="#fff"/><path d="m211.878906 220.691406h-70.664062c-19.484375 0-35.285156 15.800782-35.285156 35.289063v26.503906h141.242187v-26.503906c0-19.488281-15.800781-35.289063-35.292969-35.289063zm0 0" fill="#5f4575"/><g fill="#fff"><path d="m79.449219 485.515625c-3.613281 0-6.859375-2.195313-8.191407-5.550781l-35.3125-88.277344c-1.808593-4.527344.390626-9.664062 4.917969-11.472656 4.519531-1.8125 9.65625.386718 11.476563 4.925781l27.109375 67.785156 27.117187-67.785156c1.808594-4.539063 6.957032-6.746094 11.476563-4.925781 4.527343 1.808594 6.726562 6.945312 4.917969 11.472656l-35.3125 88.277344c-1.339844 3.355468-4.589844 5.550781-8.199219 5.550781zm0 0"/><path d="m308.964844 397.242188h-52.964844c-4.871094 0-8.828125-3.945313-8.828125-8.828126 0-4.882812 3.957031-8.828124 8.828125-8.828124h52.964844c4.875 0 8.828125 3.945312 8.828125 8.828124 0 4.882813-3.953125 8.828126-8.828125 8.828126zm0 0"/><path d="m308.964844 441.378906h-52.964844c-4.871094 0-8.828125-3.945312-8.828125-8.828125 0-4.878906 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828125 3.949219 8.828125 8.828125 0 4.882813-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m256 485.515625c-4.871094 0-8.828125-3.945313-8.828125-8.824219v-88.277344c0-4.882812 3.957031-8.828124 8.828125-8.828124s8.828125 3.945312 8.828125 8.828124v88.277344c0 4.878906-3.957031 8.824219-8.828125 8.824219zm0 0"/><path d="m211.863281 485.515625h-35.230469c-14.648437 0-26.5625-11.914063-26.5625-26.5625v-52.804687c0-14.644532 11.914063-26.5625 26.5625-26.5625h35.230469c4.871094 0 8.828125 3.945312 8.828125 8.828124 0 4.882813-3.957031 8.828126-8.828125 8.828126h-35.230469c-4.917968 0-8.910156 3.988281-8.910156 8.90625v52.804687c0 4.917969 3.992188 8.910156 8.910156 8.910156h35.230469c4.871094 0 8.828125 3.945313 8.828125 8.828125 0 4.878906-3.957031 8.824219-8.828125 8.824219zm0 0"/></g><path d="m220.691406 194.207031c0 24.375-19.761718 44.136719-44.140625 44.136719-24.375 0-44.136719-19.761719-44.136719-44.136719s19.761719-44.136719 44.136719-44.136719c24.378907 0 44.140625 19.761719 44.140625 44.136719zm0 0" fill="#82619a"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#ef394f"/><g fill="#fff"><path d="m273.65625 485.515625c-19.476562 0-35.3125-15.835937-35.3125-35.308594 0-4.882812 3.957031-8.828125 8.828125-8.828125 4.875 0 8.828125 3.945313 8.828125 8.828125 0 9.738281 7.917969 17.65625 17.65625 17.65625 9.734375 0 17.652344-7.917969 17.652344-17.65625v-61.792969c0-4.882812 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.945312 8.828125 8.828124v61.792969c0 19.472657-15.835938 35.308594-35.308594 35.308594zm0 0"/><path d="m88.277344 485.515625h-17.65625c-14.601563 0-26.484375-11.878906-26.484375-26.480469v-52.964844c0-14.601562 11.875-26.484374 26.484375-26.484374h17.65625c14.597656 0 26.480468 11.882812 26.480468 26.484374v52.964844c0 14.601563-11.871093 26.480469-26.480468 26.480469zm-17.65625-88.273437c-4.863282 0-8.828125 3.953124-8.828125 8.828124v52.964844c0 4.871094 3.953125 8.828125 8.828125 8.828125h17.65625c4.863281 0 8.824218-3.957031 8.824218-8.828125v-52.964844c0-4.875-3.953124-8.828124-8.824218-8.828124zm0 0"/><path d="m180.964844 441.378906h-30.894532c-4.875 0-8.828124-3.945312-8.828124-8.828125v-44.136719c0-4.882812 3.953124-8.828124 8.828124-8.828124h30.894532c17.039062 0 30.898437 13.859374 30.898437 30.898437 0 17.035156-13.859375 30.894531-30.898437 30.894531zm-22.066406-17.65625h22.066406c7.300781 0 13.242187-5.941406 13.242187-13.238281 0-7.300781-5.941406-13.242187-13.242187-13.242187h-22.066406zm0 0"/><path d="m180.964844 485.515625h-30.894532c-4.875 0-8.828124-3.945313-8.828124-8.824219v-44.140625c0-4.878906 3.953124-8.828125 8.828124-8.828125h30.894532c17.039062 0 30.898437 13.859375 30.898437 30.898438 0 17.035156-13.859375 30.894531-30.898437 30.894531zm-22.066406-17.652344h22.066406c7.300781 0 13.242187-5.941406 13.242187-13.242187 0-7.300782-5.941406-13.242188-13.242187-13.242188h-22.066406zm0 0"/></g><path d="m194.207031 167.722656h-52.964843v123.585938h123.585937v-123.585938zm0 0" fill="#988e89"/><path d="m70.621094 97.101562h123.585937v123.589844h-123.585937zm0 0" fill="#b8aca6"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 211.863281c0 53.628907-43.476562 97.101563-97.105469 97.101563-53.628906 0-97.101562-43.472656-97.101562-97.101563 0-53.628906 43.472656-97.105469 97.101562-97.105469 53.628907 0 97.105469 43.476563 97.105469 97.105469zm0 0" fill="#7383bf"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#454c6e"/><g fill="#fff"><path d="m52.964844 485.515625c-4.871094 0-8.828125-3.945313-8.828125-8.824219v-88.277344c0-4.882812 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.945312 8.828125 8.828124v88.277344c0 4.878906-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m105.929688 485.515625c-4.871094 0-8.828126-3.945313-8.828126-8.824219v-88.277344c0-4.882812 3.957032-8.828124 8.828126-8.828124 4.875 0 8.828124 3.945312 8.828124 8.828124v88.277344c0 4.878906-3.953124 8.824219-8.828124 8.824219zm0 0"/><path d="m105.929688 441.378906h-52.964844c-4.871094 0-8.828125-3.945312-8.828125-8.828125 0-4.878906 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828124 3.949219 8.828124 8.828125 0 4.882813-3.953124 8.828125-8.828124 8.828125zm0 0"/><path d="m194.207031 397.242188h-52.964843c-4.875 0-8.828126-3.945313-8.828126-8.828126 0-4.882812 3.953126-8.828124 8.828126-8.828124h52.964843c4.871094 0 8.828125 3.945312 8.828125 8.828124 0 4.882813-3.957031 8.828126-8.828125 8.828126zm0 0"/><path d="m167.722656 485.515625c-4.871094 0-8.824218-3.945313-8.824218-8.824219v-88.277344c0-4.882812 3.953124-8.828124 8.824218-8.828124 4.875 0 8.828125 3.945312 8.828125 8.828124v88.277344c0 4.878906-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m300.136719 485.515625c-4.871094 0-8.828125-3.945313-8.828125-8.824219v-55.03125l-18.820313 32.925782c-3.140625 5.5-12.179687 5.5-15.324219 0l-18.820312-32.925782v55.03125c0 4.878906-3.953125 8.824219-8.828125 8.824219-4.871094 0-8.824219-3.945313-8.824219-8.824219v-88.277344c0-4 2.691406-7.511718 6.558594-8.535156 3.863281-1.023437 7.945312.667969 9.929688 4.15625l27.648437 48.375 27.648437-48.375c1.984376-3.488281 6.0625-5.191406 9.929688-4.15625 3.867188 1.023438 6.558594 4.535156 6.558594 8.535156v88.277344c0 4.878906-3.953125 8.824219-8.828125 8.824219zm0 0"/></g><path d="m176.550781 317.792969c-58.410156 0-105.929687-47.519531-105.929687-105.929688 0-58.414062 47.519531-105.933593 105.929687-105.933593 58.414063 0 105.933594 47.519531 105.933594 105.933593 0 58.410157-47.519531 105.929688-105.933594 105.929688zm0-194.207031c-48.675781 0-88.273437 39.601562-88.273437 88.277343s39.597656 88.273438 88.273437 88.273438 88.277344-39.597657 88.277344-88.273438-39.601563-88.277343-88.277344-88.277343zm0 0" fill="#556080"/><path d="m176.550781 317.792969c-27.867187 0-35.308593-66.585938-35.308593-105.929688 0-39.347656 7.441406-105.933593 35.308593-105.933593 27.871094 0 35.3125 66.585937 35.3125 105.933593 0 39.34375-7.441406 105.929688-35.3125 105.929688zm-.371093-194.257813c-5.542969 2.460938-17.28125 34.980469-17.28125 88.328125 0 53.34375 11.738281 85.863281 18.023437 88.328125 5.542969-2.464844 17.285156-34.984375 17.285156-88.328125 0-53.347656-11.742187-85.867187-18.027343-88.328125zm0 0" fill="#556080"/><path d="m273.65625 220.691406h-194.207031c-4.875 0-8.828125-3.949218-8.828125-8.828125 0-4.882812 3.953125-8.828125 8.828125-8.828125h194.207031c4.871094 0 8.828125 3.945313 8.828125 8.828125 0 4.878907-3.957031 8.828125-8.828125 8.828125zm0 0" fill="#556080"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#87c58c"/><g fill="#fff"><path d="m61.792969 485.515625h-8.828125c-4.871094 0-8.828125-3.945313-8.828125-8.824219v-88.277344c0-4.882812 3.957031-8.828124 8.828125-8.828124h8.828125c29.203125 0 52.964843 23.753906 52.964843 52.964843 0 29.210938-23.761718 52.964844-52.964843 52.964844zm0-17.652344h.089843zm0-70.621093v70.621093c19.472656 0 35.308593-15.839843 35.308593-35.3125 0-19.472656-15.835937-35.308593-35.308593-35.308593zm0 0"/><path d="m203.035156 485.515625h-52.964844c-4.875 0-8.828124-3.945313-8.828124-8.824219v-88.277344c0-4.882812 3.953124-8.828124 8.828124-8.828124 4.871094 0 8.828126 3.945312 8.828126 8.828124v79.449219h44.136718c4.871094 0 8.828125 3.945313 8.828125 8.828125 0 4.878906-3.957031 8.824219-8.828125 8.824219zm0 0"/><path d="m300.136719 485.515625h-52.964844c-4.871094 0-8.828125-3.945313-8.828125-8.824219v-88.277344c0-4.882812 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.945312 8.828125 8.828124v79.449219h44.136719c4.875 0 8.828125 3.945313 8.828125 8.828125 0 4.878906-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m264.828125 209.125v-12.179688l-3.277344-.40625c-10.007812-1.253906-18.84375-7.691406-22.402343-17.136718-.449219-1.199219-.9375-2.390625-1.464844-3.566406-4.21875-9.488282-2.445313-20.59375 3.9375-28.792969l1.648437-2.121094-8.605469-8.605469-2.117187 1.648438c-8.203125 6.382812-19.308594 8.15625-28.796875 3.9375-1.175781-.519532-2.367188-1.015625-3.566406-1.464844-9.445313-3.558594-15.882813-12.394531-17.136719-22.402344l-.402344-3.277344h-12.183593l-.40625 3.277344c-1.253907 10.007813-7.6875 18.84375-17.132813 22.402344-1.203125.449219-2.394531.9375-3.566406 1.464844-9.492188 4.21875-20.597657 2.445312-28.796875-3.9375l-2.117188-1.648438-8.609375 8.605469 1.652344 2.121094c6.371094 8.199219 8.15625 19.304687 3.9375 28.792969-.523437 1.175781-1.015625 2.367187-1.464844 3.566406-3.558593 9.445312-12.394531 15.882812-22.40625 17.136718l-3.273437.40625v12.171876l3.273437.40625c10.011719 1.253906 18.847657 7.6875 22.40625 17.132812.449219 1.203125.933594 2.394531 1.464844 3.566406 4.21875 9.492188 2.445313 20.59375-3.9375 28.796875l-1.652344 2.117188 8.609375 8.609375 2.117188-1.652344c8.199218-6.382812 19.304687-8.15625 28.796875-3.9375 1.171875.519531 2.363281 1.015625 3.566406 1.464844 9.445313 3.558594 15.878906 12.394531 17.132813 22.40625l.40625 3.28125h12.171874l.40625-3.273438c1.253907-10.011718 7.691407-18.847656 17.136719-22.402344 1.199219-.453124 2.390625-.9375 3.566407-1.46875 9.488281-4.21875 20.59375-2.445312 28.792968 3.9375l2.121094 1.652344 8.605469-8.609375-1.652344-2.117187c-6.371094-8.199219-8.15625-19.304688-3.933594-28.796875.519531-1.171875 1.011719-2.363281 1.464844-3.566407 3.554687-9.445312 12.394531-15.878906 22.402344-17.132812zm0 0"/></g><path d="m203.035156 203.035156c0 14.625-11.855468 26.480469-26.484375 26.480469-14.625 0-26.480469-11.855469-26.480469-26.480469s11.855469-26.484375 26.480469-26.484375c14.628907 0 26.484375 11.859375 26.484375 26.484375zm0 0" fill="#afb6bb"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#e3558f"/><path d="m247.171875 225.5625v-9.738281l-2.621094-.324219c-8.007812-1-15.078125-6.152344-17.921875-13.710938-.359375-.960937-.75-1.914062-1.171875-2.851562-3.371093-7.589844-1.953125-16.480469 3.152344-23.039062l1.324219-1.695313-6.886719-6.886719-1.695313 1.316406c-6.558593 5.101563-15.449218 6.523438-23.039062 3.152344-.945312-.414062-1.890625-.8125-2.851562-1.175781-7.558594-2.839844-12.703126-9.910156-13.710938-17.917969l-.324219-2.621094h-9.738281l-.328125 2.613282c-.996094 8.003906-6.152344 15.074218-13.707031 17.917968-.960938.363282-1.917969.75-2.851563 1.175782-7.59375 3.371094-16.480469 1.949218-23.039062-3.152344l-1.695313-1.324219-6.886718 6.886719 1.324218 1.691406c5.101563 6.5625 6.523438 15.441406 3.152344 23.042969-.414062.945313-.8125 1.886719-1.175781 2.851563-2.839844 7.554687-9.914063 12.703124-17.917969 13.707031l-2.632812.335937v9.738282l2.625.324218c8.003906 1 15.074218 6.152344 17.917968 13.710938.363282.960937.75 1.914062 1.175782 2.851562 3.371093 7.589844 1.949218 16.480469-3.152344 23.039063l-1.324219 1.695312 6.886719 6.886719 1.691406-1.316406c6.5625-5.101563 15.449219-6.523438 23.042969-3.152344.941406.414062 1.886719.8125 2.851562 1.175781 7.554688 2.839844 12.703125 9.914063 13.707031 17.917969l.328126 2.621094h9.734374l.328126-2.609375c.996093-8.007813 6.152343-15.078125 13.710937-17.921875.960937-.363282 1.914063-.75 2.851563-1.175782 7.589843-3.371093 16.480468-1.949218 23.039062 3.152344l1.695312 1.316406 6.882813-6.886718-1.324219-1.695313c-5.101562-6.558593-6.523437-15.4375-3.148437-23.039062.414062-.945313.8125-1.886719 1.171875-2.851563 2.84375-7.554687 9.914062-12.703125 17.921875-13.707031zm0 0" fill="#a09893"/><path d="m79.449219 282.484375c-2.527344 0-5.042969-1.078125-6.789063-3.171875l-44.136718-52.964844c-2.730469-3.273437-2.730469-8.03125 0-11.308594l44.136718-52.964843c3.125-3.75 8.6875-4.238281 12.429688-1.128907 3.742187 3.125 4.253906 8.6875 1.128906 12.4375l-39.414062 47.308594 39.433593 47.304688c3.125 3.753906 2.613281 9.324218-1.132812 12.4375-1.660157 1.378906-3.664063 2.050781-5.65625 2.050781zm0 0" fill="#a09893"/><path d="m273.65625 282.484375c-1.996094 0-4-.671875-5.652344-2.039063-3.742187-3.125-4.246094-8.6875-1.128906-12.441406l39.425781-47.3125-39.425781-47.308594c-3.125-3.75-2.613281-9.320312 1.128906-12.4375 3.746094-3.117187 9.304688-2.621093 12.429688 1.128907l44.140625 52.964843c2.726562 3.277344 2.726562 8.035157 0 11.308594l-44.140625 52.964844c-1.746094 2.09375-4.253906 3.171875-6.777344 3.171875zm0 0" fill="#a09893"/><g fill="#fff"><path d="m158.898438 203.035156h35.308593v35.308594h-35.308593zm0 0"/><path d="m105.929688 485.515625c-4.871094 0-8.828126-3.945313-8.828126-8.824219v-77.429687c0-1.109375-.90625-2.019531-2.019531-2.019531h-31.265625c-1.113281 0-2.023437.910156-2.023437 2.019531v77.429687c0 4.878906-3.953125 8.824219-8.828125 8.824219-4.871094 0-8.828125-3.945313-8.828125-8.824219v-77.429687c0-10.847657 8.828125-19.675781 19.679687-19.675781h31.265625c10.847657 0 19.675781 8.828124 19.675781 19.675781v77.429687c0 4.878906-3.953124 8.824219-8.828124 8.824219zm0 0"/><path d="m105.929688 441.378906h-52.964844c-4.871094 0-8.828125-3.945312-8.828125-8.828125 0-4.878906 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828124 3.949219 8.828124 8.828125 0 4.882813-3.953124 8.828125-8.828124 8.828125zm0 0"/><path d="m180.964844 485.515625h-30.894532c-4.875 0-8.828124-3.945313-8.828124-8.824219 0-4.882812 3.953124-8.828125 8.828124-8.828125h30.894532c7.300781 0 13.242187-5.941406 13.242187-13.242187 0-7.300782-5.941406-13.242188-13.242187-13.242188h-8.828125c-17.035157 0-30.894531-13.859375-30.894531-30.894531 0-17.039063 13.859374-30.898437 30.894531-30.898437h30.898437c4.871094 0 8.828125 3.945312 8.828125 8.828124 0 4.882813-3.957031 8.828126-8.828125 8.828126h-30.898437c-7.300781 0-13.238281 5.941406-13.238281 13.242187 0 7.296875 5.9375 13.238281 13.238281 13.238281h8.828125c17.039062 0 30.898437 13.859375 30.898437 30.898438 0 17.035156-13.859375 30.894531-30.898437 30.894531zm0 0"/><path d="m247.171875 485.515625c-4.871094 0-8.828125-3.945313-8.828125-8.824219v-88.277344c0-4.882812 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.945312 8.828125 8.828124v88.277344c0 4.878906-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m273.65625 450.207031h-26.484375c-4.871094 0-8.828125-3.945312-8.828125-8.828125v-52.964844c0-4.882812 3.957031-8.828124 8.828125-8.828124h26.484375c19.472656 0 35.308594 15.835937 35.308594 35.3125 0 19.472656-15.835938 35.308593-35.308594 35.308593zm-17.65625-17.65625h17.65625c9.734375 0 17.652344-7.917969 17.652344-17.652343 0-9.738282-7.917969-17.65625-17.652344-17.65625h-17.65625zm0 0"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#7e8bd1"/><g fill="#fff"><path d="m52.964844 485.515625h-8.828125c-4.871094 0-8.828125-3.945313-8.828125-8.824219v-88.277344c0-4.882812 3.957031-8.828124 8.828125-8.828124h8.828125c29.210937 0 52.964844 23.753906 52.964844 52.964843 0 29.210938-23.753907 52.964844-52.964844 52.964844zm0-17.652344h.089844zm0-70.621093v70.621093c19.472656 0 35.3125-15.839843 35.3125-35.3125 0-19.472656-15.839844-35.308593-35.3125-35.308593zm0 0"/><path d="m203.035156 485.515625c-3.488281 0-6.699218-2.0625-8.105468-5.347656l-18.378907-42.859375-18.371093 42.851562c-1.578126 3.699219-5.488282 5.851563-9.453126 5.25-3.980468-.609375-7.042968-3.839844-7.441406-7.847656l-8.828125-88.273438c-.484375-4.855468 3.054688-9.183593 7.910157-9.667968 4.847656-.414063 9.179687 3.054687 9.667968 7.910156l5.417969 54.199219 12.996094-30.3125c1.375-3.246094 4.570312-5.347657 8.101562-5.347657s6.726563 2.101563 8.113281 5.347657l12.996094 30.3125 5.417969-54.199219c.484375-4.855469 4.777344-8.332031 9.667969-7.910156 4.84375.484375 8.386718 4.8125 7.910156 9.667968l-8.828125 88.273438c-.398437 4.007812-3.460937 7.230469-7.441406 7.847656-.460938.070313-.910157.105469-1.351563.105469zm0 0"/><path d="m291.285156 485.515625h-17.550781c-14.644531 0-26.5625-11.914063-26.5625-26.5625v-52.804687c0-14.644532 11.917969-26.5625 26.5625-26.5625h35.230469c4.875 0 8.828125 3.945312 8.828125 8.828124 0 4.882813-3.953125 8.828126-8.828125 8.828126h-35.230469c-4.90625 0-8.90625 3.988281-8.90625 8.90625v52.804687c0 4.917969 4 8.910156 8.90625 8.910156h17.550781c4.878906 0 8.851563-3.972656 8.851563-8.863281v-26.449219c0-4.878906 3.957031-8.828125 8.828125-8.828125 4.875 0 8.828125 3.949219 8.828125 8.828125v26.449219c0 14.617188-11.890625 26.515625-26.507813 26.515625zm0 0"/><path d="m308.964844 441.378906h-17.65625c-4.871094 0-8.824219-3.945312-8.824219-8.828125 0-4.878906 3.953125-8.828125 8.824219-8.828125h17.65625c4.875 0 8.828125 3.949219 8.828125 8.828125 0 4.882813-3.953125 8.828125-8.828125 8.828125zm0 0"/></g><path d="m176.550781 158.898438c-4.871093 0-8.828125-3.949219-8.828125-8.828126v-70.621093c0-4.882813 3.957032-8.828125 8.828125-8.828125 4.875 0 8.828125 3.945312 8.828125 8.828125v70.621093c0 4.878907-3.953125 8.828126-8.828125 8.828126zm0 0" fill="#b8aca6"/><path d="m176.550781 317.792969c-4.871093 0-8.828125-3.945313-8.828125-8.828125v-70.621094c0-4.878906 3.957032-8.828125 8.828125-8.828125 4.875 0 8.828125 3.949219 8.828125 8.828125v70.621094c0 4.882812-3.953125 8.828125-8.828125 8.828125zm0 0" fill="#b8aca6"/><path d="m291.308594 203.035156h-70.617188c-4.875 0-8.828125-3.945312-8.828125-8.828125 0-4.882812 3.953125-8.828125 8.828125-8.828125h70.617188c4.875 0 8.828125 3.945313 8.828125 8.828125 0 4.882813-3.953125 8.828125-8.828125 8.828125zm0 0" fill="#b8aca6"/><path d="m132.414062 203.035156h-70.621093c-4.871094 0-8.828125-3.945312-8.828125-8.828125 0-4.882812 3.957031-8.828125 8.828125-8.828125h70.621093c4.871094 0 8.828126 3.945313 8.828126 8.828125 0 4.882813-3.957032 8.828125-8.828126 8.828125zm0 0" fill="#b8aca6"/><path d="m132.414062 150.070312h88.277344v88.273438h-88.277344zm0 0" fill="#988e89"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m97.101562 220.691406h158.898438v79.445313h-158.898438zm0 0" fill="#f6b700"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#f6b700"/><g fill="#fff"><path d="m300.136719 485.515625h-52.964844c-4.871094 0-8.828125-3.945313-8.828125-8.824219 0-4.882812 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828125 3.945313 8.828125 8.828125 0 4.878906-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m247.171875 485.515625c-4.871094 0-8.828125-3.945313-8.828125-8.824219v-88.277344c0-4.882812 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.945312 8.828125 8.828124v88.277344c0 4.878906-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m211.863281 485.515625c-4.875 0-8.828125-3.945313-8.828125-8.824219v-55.03125l-18.820312 32.925782c-3.132813 5.5-12.191406 5.5-15.324219 0l-18.820313-32.925782v55.03125c0 4.878906-3.957031 8.824219-8.828124 8.824219-4.875 0-8.828126-3.945313-8.828126-8.824219v-88.277344c0-4 2.691407-7.511718 6.558594-8.535156 3.875-1.042968 7.945313.667969 9.929688 4.15625l27.648437 48.375 27.648438-48.375c1.988281-3.488281 6.046875-5.191406 9.929687-4.15625 3.867188 1.023438 6.5625 4.535156 6.5625 8.535156v88.277344c0 4.878906-3.957031 8.824219-8.828125 8.824219zm0 0"/><path d="m105.929688 441.378906h-52.964844c-4.871094 0-8.828125-3.945312-8.828125-8.828125v-44.136719c0-4.882812 3.957031-8.828124 8.828125-8.828124h52.964844c4.875 0 8.828124 3.945312 8.828124 8.828124 0 4.882813-3.953124 8.828126-8.828124 8.828126h-44.136719v26.480468h44.136719c4.875 0 8.828124 3.949219 8.828124 8.828125 0 4.882813-3.953124 8.828125-8.828124 8.828125zm0 0"/><path d="m105.929688 485.515625h-52.964844c-4.871094 0-8.828125-3.945313-8.828125-8.824219v-44.140625c0-4.878906 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828124 3.949219 8.828124 8.828125 0 4.882813-3.953124 8.828125-8.828124 8.828125h-44.136719v26.484375h44.136719c4.875 0 8.828124 3.945313 8.828124 8.828125 0 4.878906-3.953124 8.824219-8.828124 8.824219zm0 0"/><path d="m176.550781 261.296875 12.617188 8.828125 58.003906-40.609375v-114.757813h-141.242187v114.757813l58.007812 40.609375zm0 0"/></g><path d="m194.207031 167.722656h-35.308593c-4.875 0-8.828126-3.945312-8.828126-8.824218 0-4.882813 3.953126-8.828126 8.828126-8.828126h35.308593c4.871094 0 8.828125 3.945313 8.828125 8.828126 0 4.878906-3.957031 8.824218-8.828125 8.824218zm0 0" fill="#afb6bb"/><path d="m211.863281 203.035156h-70.621093c-4.875 0-8.828126-3.945312-8.828126-8.828125 0-4.882812 3.953126-8.828125 8.828126-8.828125h70.621093c4.871094 0 8.828125 3.945313 8.828125 8.828125 0 4.882813-3.957031 8.828125-8.828125 8.828125zm0 0" fill="#afb6bb"/><path d="m264.828125 308.964844h-176.550781l88.273437-61.792969zm0 0" fill="#c19016"/><path d="m189.167969 256 75.660156 52.964844v-105.929688zm0 0" fill="#f6b700"/><path d="m88.277344 203.035156v105.929688l75.660156-52.964844zm0 0" fill="#f6b700"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#4e74ba"/><g fill="#a09893"><path d="m123.585938 229.515625h-70.621094c-4.871094 0-8.828125-3.953125-8.828125-8.824219 0-4.875 3.957031-8.828125 8.828125-8.828125h70.621094c4.875 0 8.828124 3.953125 8.828124 8.828125 0 4.871094-3.953124 8.824219-8.828124 8.824219zm0 0"/><path d="m247.171875 229.515625h-88.273437c-4.875 0-8.828126-3.953125-8.828126-8.824219 0-4.875 3.953126-8.828125 8.828126-8.828125h88.273437c4.875 0 8.828125 3.953125 8.828125 8.828125 0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m220.691406 264.828125h-97.105468c-4.871094 0-8.828126-3.957031-8.828126-8.828125s3.957032-8.828125 8.828126-8.828125h97.105468c4.871094 0 8.824219 3.957031 8.824219 8.828125s-3.953125 8.828125-8.824219 8.828125zm0 0"/><path d="m300.136719 229.515625h-17.652344c-4.875 0-8.828125-3.953125-8.828125-8.824219 0-4.875 3.953125-8.828125 8.828125-8.828125h17.652344c4.875 0 8.828125 3.953125 8.828125 8.828125 0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m300.136719 264.828125h-44.136719c-4.871094 0-8.828125-3.957031-8.828125-8.828125s3.957031-8.828125 8.828125-8.828125h44.136719c4.875 0 8.828125 3.957031 8.828125 8.828125s-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m88.277344 264.828125h-35.3125c-4.871094 0-8.828125-3.957031-8.828125-8.828125s3.957031-8.828125 8.828125-8.828125h35.3125c4.871094 0 8.824218 3.957031 8.824218 8.828125s-3.953124 8.828125-8.824218 8.828125zm0 0"/><path d="m123.585938 300.136719h-70.621094c-4.871094 0-8.828125-3.953125-8.828125-8.828125 0-4.871094 3.957031-8.824219 8.828125-8.824219h70.621094c4.875 0 8.828124 3.953125 8.828124 8.824219 0 4.875-3.953124 8.828125-8.828124 8.828125zm0 0"/><path d="m247.171875 300.136719h-88.273437c-4.875 0-8.828126-3.953125-8.828126-8.828125 0-4.871094 3.953126-8.824219 8.828126-8.824219h88.273437c4.875 0 8.828125 3.953125 8.828125 8.824219 0 4.875-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m300.136719 300.136719h-17.652344c-4.875 0-8.828125-3.953125-8.828125-8.828125 0-4.871094 3.953125-8.824219 8.828125-8.824219h17.652344c4.875 0 8.828125 3.953125 8.828125 8.824219 0 4.875-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m300.136719 194.207031h-70.621094c-4.871094 0-8.824219-3.953125-8.824219-8.828125 0-4.871094 3.953125-8.828125 8.824219-8.828125h70.621094c4.875 0 8.828125 3.957031 8.828125 8.828125 0 4.875-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m194.207031 194.207031h-88.277343c-4.871094 0-8.828126-3.953125-8.828126-8.828125 0-4.871094 3.957032-8.828125 8.828126-8.828125h88.277343c4.871094 0 8.828125 3.957031 8.828125 8.828125 0 4.875-3.957031 8.828125-8.828125 8.828125zm0 0"/><path d="m229.515625 158.898438h-97.101563c-4.875 0-8.828124-3.957032-8.828124-8.828126 0-4.875 3.953124-8.828124 8.828124-8.828124h97.101563c4.875 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.953125 8.828126-8.828125 8.828126zm0 0"/><path d="m70.621094 194.207031h-17.65625c-4.871094 0-8.828125-3.953125-8.828125-8.828125 0-4.871094 3.957031-8.828125 8.828125-8.828125h17.65625c4.871094 0 8.828125 3.957031 8.828125 8.828125 0 4.875-3.957031 8.828125-8.828125 8.828125zm0 0"/><path d="m97.101562 158.898438h-44.136718c-4.871094 0-8.828125-3.957032-8.828125-8.828126 0-4.875 3.957031-8.828124 8.828125-8.828124h44.136718c4.875 0 8.828126 3.953124 8.828126 8.828124 0 4.871094-3.953126 8.828126-8.828126 8.828126zm0 0"/><path d="m300.136719 158.898438h-35.308594c-4.875 0-8.828125-3.957032-8.828125-8.828126 0-4.875 3.953125-8.828124 8.828125-8.828124h35.308594c4.875 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.953125 8.828126-8.828125 8.828126zm0 0"/></g><path d="m105.929688 397.242188h-52.964844c-4.871094 0-8.828125-3.957032-8.828125-8.828126 0-4.875 3.957031-8.828124 8.828125-8.828124h52.964844c4.875 0 8.828124 3.953124 8.828124 8.828124 0 4.871094-3.953124 8.828126-8.828124 8.828126zm0 0" fill="#fff"/><path d="m79.449219 485.515625c-4.875 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.953125-8.828124 8.828125-8.828124 4.871093 0 8.828125 3.953124 8.828125 8.828124v88.277344c0 4.871094-3.957032 8.824219-8.828125 8.824219zm0 0" fill="#fff"/><path d="m150.058594 485.515625c-1.542969 0-3.113282-.40625-4.527344-1.261719-4.183594-2.507812-5.535156-7.925781-3.027344-12.109375l52.964844-88.277343c2.507812-4.183594 7.9375-5.535157 12.113281-3.027344 4.183594 2.507812 5.535157 7.925781 3.027344 12.113281l-52.964844 88.273437c-1.660156 2.761719-4.582031 4.289063-7.585937 4.289063zm0 0" fill="#fff"/><path d="m203.042969 485.515625c-3 0-5.921875-1.527344-7.574219-4.28125l-52.964844-88.273437c-2.507812-4.183594-1.15625-9.605469 3.027344-12.113282 4.175781-2.515625 9.605469-1.15625 12.113281 3.027344l52.964844 88.277344c2.507813 4.183594 1.15625 9.605468-3.027344 12.113281-1.421875.84375-2.992187 1.25-4.539062 1.25zm0 0" fill="#fff"/><path d="m300.136719 397.242188h-52.964844c-4.871094 0-8.828125-3.957032-8.828125-8.828126 0-4.875 3.957031-8.828124 8.828125-8.828124h52.964844c4.875 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.953125 8.828126-8.828125 8.828126zm0 0" fill="#fff"/><path d="m273.65625 485.515625c-4.875 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.953125-8.828124 8.828125-8.828124 4.871094 0 8.828125 3.953124 8.828125 8.828124v88.277344c0 4.871094-3.957031 8.824219-8.828125 8.824219zm0 0" fill="#fff"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#ed8a19"/><path d="m158.898438 485.515625h-8.828126c-4.875 0-8.828124-3.945313-8.828124-8.824219v-88.277344c0-4.882812 3.953124-8.828124 8.828124-8.828124h8.828126c29.207031 0 52.964843 23.753906 52.964843 52.964843 0 29.210938-23.757812 52.964844-52.964843 52.964844zm0-17.652344h.085937zm0-70.621093v70.621093c19.472656 0 35.308593-15.839843 35.308593-35.3125 0-19.472656-15.835937-35.308593-35.308593-35.308593zm0 0" fill="#fff"/><path d="m83.863281 441.378906h-30.898437c-4.871094 0-8.828125-3.945312-8.828125-8.828125 0-4.878906 3.957031-8.828125 8.828125-8.828125h30.898437c7.300781 0 13.238281-5.941406 13.238281-13.238281 0-7.300781-5.9375-13.242187-13.238281-13.242187h-30.898437c-4.871094 0-8.828125-3.945313-8.828125-8.828126 0-4.882812 3.957031-8.828124 8.828125-8.828124h30.898437c17.035157 0 30.894531 13.859374 30.894531 30.898437 0 17.035156-13.859374 30.894531-30.894531 30.894531zm0 0" fill="#fff"/><path d="m83.863281 485.515625h-30.898437c-4.871094 0-8.828125-3.945313-8.828125-8.824219 0-4.882812 3.957031-8.828125 8.828125-8.828125h30.898437c7.300781 0 13.238281-5.941406 13.238281-13.242187 0-7.300782-5.9375-13.242188-13.238281-13.242188h-30.898437c-4.871094 0-8.828125-3.945312-8.828125-8.828125 0-4.878906 3.957031-8.828125 8.828125-8.828125h30.898437c17.035157 0 30.894531 13.859375 30.894531 30.898438 0 17.035156-13.859374 30.894531-30.894531 30.894531zm0 0" fill="#fff"/><path d="m278.070312 485.515625h-30.898437c-4.871094 0-8.828125-3.945313-8.828125-8.824219 0-4.882812 3.957031-8.828125 8.828125-8.828125h30.898437c7.300782 0 13.238282-5.941406 13.238282-13.242187 0-7.300782-5.9375-13.242188-13.238282-13.242188h-8.828124c-17.039063 0-30.898438-13.859375-30.898438-30.894531 0-17.039063 13.859375-30.898437 30.898438-30.898437h30.894531c4.875 0 8.828125 3.945312 8.828125 8.828124 0 4.882813-3.953125 8.828126-8.828125 8.828126h-30.894531c-7.300782 0-13.242188 5.941406-13.242188 13.242187 0 7.296875 5.941406 13.238281 13.242188 13.238281h8.828124c17.035157 0 30.894532 13.859375 30.894532 30.898438 0 17.035156-13.859375 30.894531-30.894532 30.894531zm0 0" fill="#fff"/><g fill="#b8aca6"><path d="m176.550781 150.070312c-4.871093 0-8.828125-3.949218-8.828125-8.828124v-52.964844c0-4.882813 3.957032-8.828125 8.828125-8.828125 4.875 0 8.828125 3.945312 8.828125 8.828125v52.964844c0 4.878906-3.953125 8.828124-8.828125 8.828124zm0 0"/><path d="m150.058594 194.207031c-1.597656 0-3.210938-.433593-4.667969-1.34375l-70.621094-44.136719c-4.140625-2.578124-5.394531-8.023437-2.808593-12.164062 2.589843-4.140625 8.035156-5.394531 12.164062-2.796875l70.621094 44.136719c4.140625 2.578125 5.394531 8.023437 2.808594 12.164062-1.675782 2.675782-4.546876 4.140625-7.496094 4.140625zm0 0"/><path d="m220.699219 185.378906c-2.851563 0-5.652344-1.375-7.355469-3.929687-2.699219-4.058594-1.605469-9.53125 2.445312-12.242188l52.96875-35.308593c4.050782-2.703126 9.53125-1.617188 12.242188 2.445312 2.699219 4.058594 1.605469 9.53125-2.445312 12.242188l-52.964844 35.308593c-1.511719 1-3.214844 1.484375-4.890625 1.484375zm0 0"/><path d="m176.550781 326.621094c-4.871093 0-8.828125-3.945313-8.828125-8.828125v-52.964844c0-4.882813 3.957032-8.828125 8.828125-8.828125 4.875 0 8.828125 3.945312 8.828125 8.828125v52.964844c0 4.882812-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m273.644531 273.65625c-1.675781 0-3.378906-.488281-4.886719-1.484375l-52.96875-35.308594c-4.050781-2.710937-5.144531-8.183593-2.445312-12.246093 2.710938-4.058594 8.183594-5.15625 12.246094-2.445313l52.964844 35.3125c4.050781 2.707031 5.144531 8.183594 2.445312 12.242187-1.703125 2.550782-4.503906 3.929688-7.355469 3.929688zm0 0"/><path d="m79.457031 273.65625c-2.753906 0-5.472656-1.289062-7.195312-3.699219-2.832031-3.964843-1.914063-9.480469 2.058593-12.316406l61.792969-44.136719c3.953125-2.84375 9.480469-1.925781 12.3125 2.046875 2.835938 3.964844 1.917969 9.480469-2.054687 12.316407l-61.792969 44.136718c-1.554687 1.113282-3.347656 1.652344-5.121094 1.652344zm0 0"/></g><path d="m176.550781 282.484375-70.621093-35.3125v-88.273437l70.621093 35.308593zm0 0" fill="#ed8a19"/><path d="m176.550781 282.484375 70.621094-35.3125v-88.273437l-70.621094 35.308593zm0 0" fill="#dc691d"/><path d="m176.550781 194.207031-70.621093-35.308593 70.621093-35.3125 70.621094 35.3125zm0 0" fill="#c5411e"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#454c6e"/><g fill="#fff"><path d="m203.035156 485.515625c-3.046875 0-5.949218-1.578125-7.566406-4.28125l-36.570312-60.953125v56.410156c0 4.878906-3.957032 8.824219-8.828126 8.824219-4.875 0-8.828124-3.945313-8.828124-8.824219v-88.277344c0-3.964843 2.648437-7.449218 6.46875-8.511718 3.832031-1.046875 7.882812.558594 9.921874 3.964844l36.574219 60.953124v-56.40625c0-4.882812 3.953125-8.828124 8.828125-8.828124 4.871094 0 8.828125 3.945312 8.828125 8.828124v88.277344c0 3.960938-2.648437 7.449219-6.472656 8.507813-.785156.210937-1.570313.316406-2.355469.316406zm0 0"/><path d="m105.929688 397.242188h-52.964844c-4.871094 0-8.828125-3.945313-8.828125-8.828126 0-4.882812 3.957031-8.828124 8.828125-8.828124h52.964844c4.875 0 8.828124 3.945312 8.828124 8.828124 0 4.882813-3.953124 8.828126-8.828124 8.828126zm0 0"/><path d="m105.929688 485.515625h-52.964844c-4.871094 0-8.828125-3.945313-8.828125-8.824219 0-4.882812 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828124 3.945313 8.828124 8.828125 0 4.878906-3.953124 8.824219-8.828124 8.824219zm0 0"/><path d="m79.449219 485.515625c-4.875 0-8.828125-3.945313-8.828125-8.824219v-88.277344c0-4.882812 3.953125-8.828124 8.828125-8.828124 4.871093 0 8.828125 3.945312 8.828125 8.828124v88.277344c0 4.878906-3.957032 8.824219-8.828125 8.824219zm0 0"/><path d="m300.136719 397.242188h-52.964844c-4.871094 0-8.828125-3.945313-8.828125-8.828126 0-4.882812 3.957031-8.828124 8.828125-8.828124h52.964844c4.875 0 8.828125 3.945312 8.828125 8.828124 0 4.882813-3.953125 8.828126-8.828125 8.828126zm0 0"/><path d="m300.136719 485.515625h-52.964844c-4.871094 0-8.828125-3.945313-8.828125-8.824219 0-4.882812 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828125 3.945313 8.828125 8.828125 0 4.878906-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m273.65625 485.515625c-4.875 0-8.828125-3.945313-8.828125-8.824219v-88.277344c0-4.882812 3.953125-8.828124 8.828125-8.828124 4.871094 0 8.828125 3.945312 8.828125 8.828124v88.277344c0 4.878906-3.957031 8.824219-8.828125 8.824219zm0 0"/><path d="m256 300.136719h-158.898438v-194.207031h105.933594l52.964844 52.96875zm0 0"/></g><path d="m256 158.898438h-52.964844v-52.96875zm0 0" fill="#afb6bb"/><path d="m203.035156 238.34375h-52.964844c-4.875 0-8.828124-3.945312-8.828124-8.828125 0-4.878906 3.953124-8.824219 8.828124-8.824219h52.964844c4.871094 0 8.828125 3.945313 8.828125 8.824219 0 4.882813-3.957031 8.828125-8.828125 8.828125zm0 0" fill="#afb6bb"/><path d="m203.035156 203.035156h-52.964844c-4.875 0-8.828124-3.945312-8.828124-8.828125 0-4.882812 3.953124-8.828125 8.828124-8.828125h52.964844c4.871094 0 8.828125 3.945313 8.828125 8.828125 0 4.882813-3.957031 8.828125-8.828125 8.828125zm0 0" fill="#afb6bb"/><path d="m203.035156 273.65625h-52.964844c-4.875 0-8.828124-3.945312-8.828124-8.828125s3.953124-8.828125 8.828124-8.828125h52.964844c4.871094 0 8.828125 3.945312 8.828125 8.828125s-3.957031 8.828125-8.828125 8.828125zm0 0" fill="#afb6bb"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#859594"/><path d="m203.035156 397.242188h-52.964844c-4.875 0-8.828124-3.945313-8.828124-8.828126 0-4.882812 3.953124-8.828124 8.828124-8.828124h52.964844c4.871094 0 8.828125 3.945312 8.828125 8.828124 0 4.882813-3.957031 8.828126-8.828125 8.828126zm0 0" fill="#fff"/><path d="m176.550781 485.515625c-4.871093 0-8.828125-3.945313-8.828125-8.824219v-88.277344c0-4.882812 3.957032-8.828124 8.828125-8.828124 4.875 0 8.828125 3.945312 8.828125 8.828124v88.277344c0 4.878906-3.953125 8.824219-8.828125 8.824219zm0 0" fill="#fff"/><path d="m70.621094 114.757812v70.621094h35.308594v-35.308594h52.96875v123.585938h-52.96875v35.308594h141.242187v-35.308594h-52.964844v-123.585938h52.964844v35.308594h35.3125v-70.621094zm0 0" fill="#28384c"/><g fill="#fff"><path d="m88.277344 485.515625h-17.65625c-14.601563 0-26.484375-11.878906-26.484375-26.480469v-52.964844c0-14.601562 11.875-26.484374 26.484375-26.484374h17.65625c14.597656 0 26.480468 11.882812 26.480468 26.484374v52.964844c0 14.601563-11.871093 26.480469-26.480468 26.480469zm-17.65625-88.273437c-4.863282 0-8.828125 3.953124-8.828125 8.828124v52.964844c0 4.871094 3.953125 8.828125 8.828125 8.828125h17.65625c4.863281 0 8.824218-3.957031 8.824218-8.828125v-52.964844c0-4.875-3.953124-8.828124-8.824218-8.828124zm0 0"/><path d="m300.136719 397.242188h-52.964844c-4.871094 0-8.828125-3.945313-8.828125-8.828126 0-4.882812 3.957031-8.828124 8.828125-8.828124h52.964844c4.875 0 8.828125 3.945312 8.828125 8.828124 0 4.882813-3.953125 8.828126-8.828125 8.828126zm0 0"/><path d="m300.136719 441.378906h-52.964844c-4.871094 0-8.828125-3.945312-8.828125-8.828125 0-4.878906 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828125 3.949219 8.828125 8.828125 0 4.882813-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m247.171875 485.515625c-4.871094 0-8.828125-3.945313-8.828125-8.824219v-88.277344c0-4.882812 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.945312 8.828125 8.828124v88.277344c0 4.878906-3.953125 8.824219-8.828125 8.824219zm0 0"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#baafa9"/><g fill="#fff"><path d="m203.035156 397.242188h-52.964844c-4.875 0-8.828124-3.945313-8.828124-8.828126 0-4.882812 3.953124-8.828124 8.828124-8.828124h52.964844c4.871094 0 8.828125 3.945312 8.828125 8.828124 0 4.882813-3.957031 8.828126-8.828125 8.828126zm0 0"/><path d="m176.550781 485.515625c-4.871093 0-8.828125-3.945313-8.828125-8.824219v-88.277344c0-4.882812 3.957032-8.828124 8.828125-8.828124 4.875 0 8.828125 3.945312 8.828125 8.828124v88.277344c0 4.878906-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m300.136719 397.242188h-52.964844c-4.871094 0-8.828125-3.945313-8.828125-8.828126 0-4.882812 3.957031-8.828124 8.828125-8.828124h52.964844c4.875 0 8.828125 3.945312 8.828125 8.828124 0 4.882813-3.953125 8.828126-8.828125 8.828126zm0 0"/><path d="m300.136719 441.378906h-52.964844c-4.871094 0-8.828125-3.945312-8.828125-8.828125 0-4.878906 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828125 3.949219 8.828125 8.828125 0 4.882813-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m247.171875 485.515625c-4.871094 0-8.828125-3.945313-8.828125-8.824219v-88.277344c0-4.882812 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.945312 8.828125 8.828124v88.277344c0 4.878906-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m105.929688 397.242188h-52.964844c-4.871094 0-8.828125-3.945313-8.828125-8.828126 0-4.882812 3.957031-8.828124 8.828125-8.828124h52.964844c4.875 0 8.828124 3.945312 8.828124 8.828124 0 4.882813-3.953124 8.828126-8.828124 8.828126zm0 0"/><path d="m79.449219 485.515625c-4.875 0-8.828125-3.945313-8.828125-8.824219v-88.277344c0-4.882812 3.953125-8.828124 8.828125-8.828124 4.871093 0 8.828125 3.945312 8.828125 8.828124v88.277344c0 4.878906-3.957032 8.824219-8.828125 8.824219zm0 0"/></g><path d="m282.484375 282.484375h-17.65625l-17.65625-44.140625h17.65625v-35.308594h-26.484375l-26.480469-97.105468h-70.621093l-26.484376 97.105468h-26.480468v35.308594h17.652344l-17.652344 44.140625h-17.65625l-8.828125 26.480469h70.621093l8.828126-26.480469h-17.65625l17.65625-44.140625h70.621093l17.652344 44.140625h-17.652344l8.828125 26.480469h70.617188zm-132.414063-79.449219 17.652344-61.792968h17.65625l17.65625 61.792968zm0 0" fill="#28384c"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m209.683594 123.585938c-.097656 7.953124-6.453125 12.828124-13.816406 13.65625-13.09375 1.464843-26.492188-1.066407-39.726563.1875-7.484375.703124-13.839844-6.90625-13.839844-13.84375h-62.851562v176.550781h194.207031v-176.550781zm0 0" fill="#be6e41"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#d36a0a"/><path d="m141.242188 123.585938h70.621093v52.964843h-70.621093zm0 0" fill="#f7e6a1"/><path d="m150.070312 273.65625h-35.3125c-4.871093 0-8.828124-3.945312-8.828124-8.828125v-35.3125c0-4.878906 3.957031-8.824219 8.828124-8.824219 4.875 0 8.828126 3.945313 8.828126 8.824219v26.484375h26.484374c4.871094 0 8.828126 3.945312 8.828126 8.828125s-3.957032 8.828125-8.828126 8.828125zm0 0" fill="#8c4d2d"/><path d="m238.34375 273.65625h-35.308594c-4.875 0-8.828125-3.945312-8.828125-8.828125s3.953125-8.828125 8.828125-8.828125h26.480469v-26.484375c0-4.878906 3.957031-8.824219 8.828125-8.824219 4.875 0 8.828125 3.945313 8.828125 8.824219v35.3125c0 4.882813-3.953125 8.828125-8.828125 8.828125zm0 0" fill="#8c4d2d"/><g fill="#fff"><path d="m52.964844 485.515625c-4.871094 0-8.828125-3.945313-8.828125-8.824219v-88.277344c0-4.882812 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.945312 8.828125 8.828124v88.277344c0 4.878906-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m79.449219 450.207031h-26.484375c-4.871094 0-8.828125-3.945312-8.828125-8.828125v-52.964844c0-4.882812 3.957031-8.828124 8.828125-8.828124h26.484375c19.472656 0 35.308593 15.835937 35.308593 35.3125 0 19.472656-15.835937 35.308593-35.308593 35.308593zm-17.65625-17.65625h17.65625c9.734375 0 17.652343-7.917969 17.652343-17.652343 0-9.738282-7.917968-17.65625-17.652343-17.65625h-17.65625zm0 0"/><path d="m150.070312 485.515625c-4.875 0-8.828124-3.945313-8.828124-8.824219v-88.277344c0-4.882812 3.953124-8.828124 8.828124-8.828124 4.871094 0 8.828126 3.945312 8.828126 8.828124v88.277344c0 4.878906-3.957032 8.824219-8.828126 8.824219zm0 0"/><path d="m150.070312 441.378906c-2.527343 0-5.042968-1.078125-6.789062-3.167968-3.125-3.753907-2.613281-9.324219 1.128906-12.4375l52.964844-44.140626c3.742188-3.113281 9.304688-2.621093 12.429688 1.132813 3.125 3.75 2.613281 9.320313-1.128907 12.4375l-52.964843 44.136719c-1.644532 1.367187-3.648438 2.039062-5.640626 2.039062zm0 0"/><path d="m203.035156 485.515625c-1.996094 0-4-.667969-5.648437-2.039063l-52.96875-44.136718c-3.742188-3.125-4.253907-8.6875-1.128907-12.4375 3.125-3.742188 8.6875-4.230469 12.429688-1.128906l52.964844 44.136718c3.742187 3.125 4.253906 8.6875 1.128906 12.4375-1.738281 2.09375-4.253906 3.167969-6.777344 3.167969zm0 0"/><path d="m282.449219 485.515625h-17.550781c-14.636719 0-26.554688-11.914063-26.554688-26.5625v-52.804687c0-14.644532 11.917969-26.5625 26.5625-26.5625h35.230469c4.875 0 8.828125 3.945312 8.828125 8.828124 0 4.882813-3.953125 8.828126-8.828125 8.828126h-35.230469c-4.917969 0-8.90625 3.988281-8.90625 8.90625v52.804687c0 4.917969 3.988281 8.910156 8.90625 8.910156h17.550781c4.882813 0 8.851563-3.972656 8.851563-8.863281v-26.449219c0-4.878906 3.957031-8.828125 8.828125-8.828125 4.875 0 8.828125 3.949219 8.828125 8.828125v26.449219c0 14.617188-11.890625 26.515625-26.515625 26.515625zm0 0"/><path d="m300.136719 441.378906h-17.652344c-4.875 0-8.828125-3.945312-8.828125-8.828125 0-4.878906 3.953125-8.828125 8.828125-8.828125h17.652344c4.875 0 8.828125 3.949219 8.828125 8.828125 0 4.882813-3.953125 8.828125-8.828125 8.828125zm0 0"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#4e74ba"/><g fill="#fff"><path d="m300.136719 485.515625c-4.871094 0-8.828125-3.945313-8.828125-8.824219v-55.03125l-18.820313 32.925782c-3.140625 5.5-12.179687 5.5-15.324219 0l-18.820312-32.925782v55.03125c0 4.878906-3.953125 8.824219-8.828125 8.824219-4.871094 0-8.824219-3.945313-8.824219-8.824219v-88.277344c0-4 2.691406-7.511718 6.558594-8.535156 3.863281-1.035156 7.945312.667969 9.929688 4.15625l27.648437 48.375 27.648437-48.375c1.984376-3.488281 6.0625-5.191406 9.929688-4.15625 3.867188 1.023438 6.558594 4.535156 6.558594 8.535156v88.277344c0 4.878906-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m176.550781 485.515625h-17.652343c-14.601563 0-26.484376-11.878906-26.484376-26.480469v-52.964844c0-14.601562 11.871094-26.484374 26.484376-26.484374h17.652343c14.601563 0 26.484375 11.882812 26.484375 26.484374v52.964844c0 14.601563-11.875 26.480469-26.484375 26.480469zm-17.652343-88.273437c-4.867188 0-8.828126 3.953124-8.828126 8.828124v52.964844c0 4.871094 3.953126 8.828125 8.828126 8.828125h17.652343c4.863281 0 8.828125-3.957031 8.828125-8.828125v-52.964844c0-4.875-3.953125-8.828124-8.828125-8.828124zm0 0"/><path d="m105.929688 485.515625h-35.230469c-14.644531 0-26.5625-11.914063-26.5625-26.5625v-52.804687c0-14.644532 11.917969-26.5625 26.5625-26.5625h35.230469c4.875 0 8.828124 3.945312 8.828124 8.828124 0 4.882813-3.953124 8.828126-8.828124 8.828126h-35.230469c-4.917969 0-8.90625 3.988281-8.90625 8.90625v52.804687c0 4.917969 3.988281 8.910156 8.90625 8.910156h35.230469c4.875 0 8.828124 3.945313 8.828124 8.828125 0 4.878906-3.953124 8.824219-8.828124 8.824219zm0 0"/></g><path d="m150.070312 247.171875h52.964844v61.792969h-52.964844zm0 0" fill="#afb6bb"/><path d="m229.515625 317.792969h-105.929687c-4.871094 0-8.828126-3.945313-8.828126-8.828125 0-4.882813 3.957032-8.828125 8.828126-8.828125h105.929687c4.875 0 8.828125 3.945312 8.828125 8.828125 0 4.882812-3.953125 8.828125-8.828125 8.828125zm0 0" fill="#e7eced"/><path d="m282.484375 229.515625h-211.863281v-88.273437c0-9.746094 7.898437-17.648438 17.644531-17.648438h176.570313c9.746093 0 17.648437 7.902344 17.648437 17.648438zm0 0" fill="#28384c"/><path d="m264.835938 256h-176.570313c-9.746094 0-17.644531-7.902344-17.644531-17.644531v-17.664063h211.863281v17.664063c0 9.742187-7.902344 17.644531-17.648437 17.644531zm0 0" fill="#e7eced"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#91d396"/><g fill="#fff"><path d="m150.070312 114.757812h35.308594v35.3125h-35.308594zm0 0"/><path d="m150.070312 194.207031h35.308594v105.929688h-35.308594zm0 0"/><path d="m273.65625 485.515625h-17.65625c-14.601562 0-26.484375-11.878906-26.484375-26.480469v-52.964844c0-14.601562 11.875-26.484374 26.484375-26.484374h17.65625c14.601562 0 26.480469 11.882812 26.480469 26.484374v52.964844c0 14.601563-11.871094 26.480469-26.480469 26.480469zm-17.65625-88.273437c-4.863281 0-8.828125 3.953124-8.828125 8.828124v52.964844c0 4.871094 3.957031 8.828125 8.828125 8.828125h17.65625c4.863281 0 8.828125-3.957031 8.828125-8.828125v-52.964844c0-4.875-3.957031-8.828124-8.828125-8.828124zm0 0"/><path d="m97.101562 485.515625c-3.042968 0-5.949218-1.578125-7.5625-4.28125l-36.574218-60.953125v56.410156c0 4.878906-3.953125 8.824219-8.828125 8.824219-4.871094 0-8.828125-3.945313-8.828125-8.824219v-88.277344c0-3.964843 2.648437-7.449218 6.472656-8.511718 3.832031-1.046875 7.882812.558594 9.921875 3.964844l36.574219 60.953124v-56.40625c0-4.882812 3.953125-8.828124 8.824218-8.828124 4.875 0 8.828126 3.945312 8.828126 8.828124v88.277344c0 3.960938-2.648438 7.449219-6.46875 8.507813-.785157.210937-1.570313.316406-2.359376.316406zm0 0"/><path d="m194.207031 397.242188h-52.964843c-4.875 0-8.828126-3.945313-8.828126-8.828126 0-4.882812 3.953126-8.828124 8.828126-8.828124h52.964843c4.871094 0 8.828125 3.945312 8.828125 8.828124 0 4.882813-3.957031 8.828126-8.828125 8.828126zm0 0"/><path d="m194.207031 441.378906h-52.964843c-4.875 0-8.828126-3.945312-8.828126-8.828125 0-4.878906 3.953126-8.828125 8.828126-8.828125h52.964843c4.871094 0 8.828125 3.949219 8.828125 8.828125 0 4.882813-3.957031 8.828125-8.828125 8.828125zm0 0"/><path d="m141.242188 485.515625c-4.875 0-8.828126-3.945313-8.828126-8.824219v-88.277344c0-4.882812 3.953126-8.828124 8.828126-8.828124 4.871093 0 8.828124 3.945312 8.828124 8.828124v88.277344c0 4.878906-3.957031 8.824219-8.828124 8.824219zm0 0"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#4e74ba"/><path d="m238.34375 211.863281c0 34.125-27.664062 61.792969-61.792969 61.792969-34.125 0-61.792969-27.667969-61.792969-61.792969 0-34.128906 27.667969-61.792969 61.792969-61.792969 34.128907 0 61.792969 27.664063 61.792969 61.792969zm0 0" fill="#4e74ba"/><path d="m203.035156 211.863281-44.136718 26.480469v-52.964844zm0 0" fill="#fff"/><path d="m256 291.308594c-2.074219 0-4.15625-.722656-5.835938-2.207032-3.652343-3.230468-4.007812-8.808593-.777343-12.460937 15.644531-17.738281 24.269531-40.730469 24.269531-64.777344s-8.625-47.042969-24.277344-64.777343c-3.230468-3.65625-2.878906-9.234376.777344-12.464844 3.65625-3.230469 9.242188-2.878906 12.457031.777344 18.511719 20.964843 28.695313 48.117187 28.695313 76.464843 0 28.34375-10.183594 55.496094-28.6875 76.464844-1.75 1.976563-4.183594 2.980469-6.621094 2.980469zm0 0" fill="#375a93"/><path d="m291.300781 308.964844c-1.757812 0-3.53125-.527344-5.082031-1.613282-3.984375-2.816406-4.9375-8.324218-2.121094-12.316406 16.039063-22.695312 24.867188-52.242187 24.867188-83.171875 0-30.933593-8.828125-60.480469-24.867188-83.183593-2.804687-3.980469-1.863281-9.488282 2.121094-12.3125 3.988281-2.800782 9.488281-1.855469 12.304688 2.117187 18.121093 25.671875 28.097656 58.835937 28.097656 93.378906s-9.976563 67.707031-28.097656 93.367188c-1.722657 2.4375-4.449219 3.734375-7.222657 3.734375zm0 0" fill="#23416d"/><path d="m97.101562 291.308594c-2.441406 0-4.871093-1.003906-6.617187-2.980469-18.503906-20.96875-28.691406-48.121094-28.691406-76.464844 0-28.347656 10.1875-55.5 28.691406-76.464843 3.230469-3.65625 8.808594-4 12.453125-.777344 3.65625 3.230468 4.007812 8.808594.777344 12.464844-15.640625 17.734374-24.265625 40.738281-24.265625 64.777343 0 24.035157 8.625 47.039063 24.273437 64.777344 3.222656 3.652344 2.878906 9.230469-.773437 12.460937-1.679688 1.484376-3.761719 2.207032-5.847657 2.207032zm0 0" fill="#375a93"/><path d="m61.800781 308.964844c-2.769531 0-5.5-1.296875-7.21875-3.734375-18.125-25.667969-28.097656-58.824219-28.097656-93.367188s9.972656-67.699219 28.097656-93.371093c2.816407-3.972657 8.316407-4.925782 12.304688-2.117188 3.980469 2.816406 4.933593 8.324219 2.117187 12.3125-16.039062 22.695312-24.867187 52.242188-24.867187 83.175781 0 30.929688 8.828125 60.476563 24.867187 83.179688 2.816406 3.984375 1.863282 9.492187-2.117187 12.316406-1.546875 1.078125-3.328125 1.605469-5.085938 1.605469zm0 0" fill="#23416d"/><g fill="#fff"><path d="m273.65625 485.515625c-3.613281 0-6.851562-2.195313-8.203125-5.550781l-35.308594-88.277344c-1.808593-4.527344.386719-9.664062 4.917969-11.472656 4.542969-1.8125 9.664062.386718 11.472656 4.925781l27.121094 67.785156 27.109375-67.785156c1.808594-4.539063 6.929687-6.753906 11.476563-4.925781 4.527343 1.808594 6.726562 6.945312 4.914062 11.472656l-35.308594 88.277344c-1.34375 3.355468-4.582031 5.550781-8.191406 5.550781zm0 0"/><path d="m203.035156 485.515625c-4.875 0-8.828125-3.945313-8.828125-8.824219v-77.429687c0-1.109375-.910156-2.019531-2.023437-2.019531h-31.265625c-1.113281 0-2.019531.910156-2.019531 2.019531v77.429687c0 4.878906-3.957032 8.824219-8.828126 8.824219-4.875 0-8.828124-3.945313-8.828124-8.824219v-77.429687c0-10.847657 8.828124-19.675781 19.675781-19.675781h31.265625c10.851562 0 19.679687 8.828124 19.679687 19.675781v77.429687c0 4.878906-3.957031 8.824219-8.828125 8.824219zm0 0"/><path d="m203.035156 441.378906h-52.964844c-4.875 0-8.828124-3.945312-8.828124-8.828125 0-4.878906 3.953124-8.828125 8.828124-8.828125h52.964844c4.871094 0 8.828125 3.949219 8.828125 8.828125 0 4.882813-3.957031 8.828125-8.828125 8.828125zm0 0"/><path d="m105.929688 485.515625c-3.484376 0-6.699219-2.0625-8.109376-5.347656l-18.371093-42.859375-18.371094 42.851562c-1.589844 3.699219-5.464844 5.867188-9.453125 5.25-3.984375-.609375-7.046875-3.828125-7.441406-7.835937l-8.828125-88.277344c-.488281-4.855469 3.054687-9.179687 7.898437-9.667969 4.875-.441406 9.183594 3.054688 9.667969 7.910156l5.417969 54.203126 12.996094-30.316407c1.394531-3.253906 4.582031-5.355469 8.113281-5.355469s6.71875 2.101563 8.113281 5.347657l12.992188 30.3125 5.421874-54.199219c.484376-4.855469 4.84375-8.296875 9.664063-7.910156 4.855469.484375 8.386719 4.8125 7.910156 9.667968l-8.828125 88.273438c-.398437 4.007812-3.460937 7.230469-7.441406 7.847656-.457031.070313-.910156.105469-1.351562.105469zm0 0"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 512h-353.101562v-512h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d3d2c1"/><g fill="#a09893"><path d="m211.863281 432.550781h-70.621093c-4.875 0-8.828126-3.945312-8.828126-8.828125v-70.621094c0-4.878906 3.953126-8.824218 8.828126-8.824218h70.621093c4.871094 0 8.828125 3.945312 8.828125 8.824218v70.621094c0 4.882813-3.957031 8.828125-8.828125 8.828125zm-61.792969-17.652343h52.964844v-52.96875h-52.964844zm0 0"/><path d="m176.550781 361.929688c-4.871093 0-8.828125-3.945313-8.828125-8.828126v-203.03125c0-4.882812 3.957032-8.828124 8.828125-8.828124 4.875 0 8.828125 3.945312 8.828125 8.828124v203.03125c0 4.882813-3.953125 8.828126-8.828125 8.828126zm0 0"/><path d="m167.722656 423.722656h17.65625v88.277344h-17.65625zm0 0"/><path d="m203.035156 317.792969h-52.964844c-4.875 0-8.828124-3.945313-8.828124-8.828125 0-4.882813 3.953124-8.828125 8.828124-8.828125h52.964844c4.871094 0 8.828125 3.945312 8.828125 8.828125 0 4.882812-3.957031 8.828125-8.828125 8.828125zm0 0"/><path d="m203.035156 273.65625h-52.964844c-4.875 0-8.828124-3.945312-8.828124-8.828125s3.953124-8.828125 8.828124-8.828125h52.964844c4.871094 0 8.828125 3.945312 8.828125 8.828125s-3.957031 8.828125-8.828125 8.828125zm0 0"/><path d="m203.035156 229.515625h-52.964844c-4.875 0-8.828124-3.945313-8.828124-8.824219 0-4.882812 3.953124-8.828125 8.828124-8.828125h52.964844c4.871094 0 8.828125 3.945313 8.828125 8.828125 0 4.878906-3.957031 8.824219-8.828125 8.824219zm0 0"/><path d="m203.035156 185.378906h-52.964844c-4.875 0-8.828124-3.945312-8.828124-8.828125 0-4.878906 3.953124-8.828125 8.828124-8.828125h52.964844c4.871094 0 8.828125 3.949219 8.828125 8.828125 0 4.882813-3.957031 8.828125-8.828125 8.828125zm0 0"/><path d="m211.863281 397.242188h-70.621093c-4.875 0-8.828126-3.945313-8.828126-8.828126v-35.3125c0-4.878906 3.953126-8.824218 8.828126-8.824218h70.621093c4.871094 0 8.828125 3.945312 8.828125 8.824218v35.3125c0 4.882813-3.957031 8.828126-8.828125 8.828126zm-61.792969-17.65625h52.964844v-17.65625h-52.964844zm0 0"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 512h-353.101562v-512h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d3d2c1"/><g fill="#a09893"><path d="m105.929688 247.171875h-52.964844c-4.871094 0-8.828125-3.945313-8.828125-8.828125 0-4.878906 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828124 3.949219 8.828124 8.828125 0 4.882812-3.953124 8.828125-8.828124 8.828125zm0 0"/><path d="m300.136719 247.171875h-17.652344c-4.875 0-8.828125-3.945313-8.828125-8.828125 0-4.878906 3.953125-8.828125 8.828125-8.828125h17.652344c4.875 0 8.828125 3.949219 8.828125 8.828125 0 4.882812-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m300.136719 282.484375h-61.792969c-4.871094 0-8.828125-3.949219-8.828125-8.828125 0-4.882812 3.957031-8.828125 8.828125-8.828125h61.792969c4.875 0 8.828125 3.945313 8.828125 8.828125 0 4.878906-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m88.277344 282.484375h-35.3125c-4.871094 0-8.828125-3.949219-8.828125-8.828125 0-4.882812 3.957031-8.828125 8.828125-8.828125h35.3125c4.871094 0 8.824218 3.945313 8.824218 8.828125 0 4.878906-3.953124 8.828125-8.824218 8.828125zm0 0"/><path d="m105.929688 317.792969h-52.964844c-4.871094 0-8.828125-3.945313-8.828125-8.828125 0-4.882813 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828124 3.945312 8.828124 8.828125 0 4.882812-3.953124 8.828125-8.828124 8.828125zm0 0"/><path d="m300.136719 211.863281h-70.621094c-4.871094 0-8.824219-3.945312-8.824219-8.828125 0-4.882812 3.953125-8.828125 8.824219-8.828125h70.621094c4.875 0 8.828125 3.945313 8.828125 8.828125 0 4.882813-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m194.207031 211.863281h-88.277343c-4.871094 0-8.828126-3.945312-8.828126-8.828125 0-4.882812 3.957032-8.828125 8.828126-8.828125h88.277343c4.871094 0 8.828125 3.945313 8.828125 8.828125 0 4.882813-3.957031 8.828125-8.828125 8.828125zm0 0"/><path d="m229.515625 176.550781h-97.101563c-4.875 0-8.828124-3.945312-8.828124-8.828125 0-4.878906 3.953124-8.824218 8.828124-8.824218h97.101563c4.875 0 8.828125 3.945312 8.828125 8.824218 0 4.882813-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m70.621094 211.863281h-17.65625c-4.871094 0-8.828125-3.945312-8.828125-8.828125 0-4.882812 3.957031-8.828125 8.828125-8.828125h17.65625c4.871094 0 8.828125 3.945313 8.828125 8.828125 0 4.882813-3.957031 8.828125-8.828125 8.828125zm0 0"/><path d="m97.101562 176.550781h-44.136718c-4.871094 0-8.828125-3.945312-8.828125-8.828125 0-4.878906 3.957031-8.824218 8.828125-8.824218h44.136718c4.875 0 8.828126 3.945312 8.828126 8.824218 0 4.882813-3.953126 8.828125-8.828126 8.828125zm0 0"/><path d="m300.136719 176.550781h-35.308594c-4.875 0-8.828125-3.945312-8.828125-8.828125 0-4.878906 3.953125-8.824218 8.828125-8.824218h35.308594c4.875 0 8.828125 3.945312 8.828125 8.824218 0 4.882813-3.953125 8.828125-8.828125 8.828125zm0 0"/></g><path d="m300.136719 449.316406c-2.257813 0-4.519531-.867187-6.238281-2.585937l-61.351563-61.34375c-3.453125-3.453125-3.453125-9.03125 0-12.484375 3.449219-3.449219 9.027344-3.449219 12.480469 0l61.351562 61.34375c3.453125 3.453125 3.453125 9.03125 0 12.484375-1.722656 1.730469-3.980468 2.585937-6.242187 2.585937zm0 0" fill="#556080"/><path d="m264.828125 317.792969c0 43.878906-35.570313 79.449219-79.449219 79.449219s-79.449218-35.570313-79.449218-79.449219c0-43.878907 35.570312-79.449219 79.449218-79.449219s79.449219 35.570312 79.449219 79.449219zm0 0" fill="#fff"/><path d="m220.691406 291.308594h-70.621094c-4.875 0-8.828124-3.945313-8.828124-8.824219 0-4.882813 3.953124-8.828125 8.828124-8.828125h70.621094c4.871094 0 8.824219 3.945312 8.824219 8.828125 0 4.878906-3.953125 8.824219-8.824219 8.824219zm0 0" fill="#212f3f"/><path d="m150.070312 300.136719c-4.875 0-8.828124-3.945313-8.828124-8.828125v-8.824219c0-4.882813 3.953124-8.828125 8.828124-8.828125 4.871094 0 8.828126 3.945312 8.828126 8.828125v8.824219c0 4.882812-3.957032 8.828125-8.828126 8.828125zm0 0" fill="#212f3f"/><path d="m220.691406 300.136719c-4.875 0-8.828125-3.945313-8.828125-8.828125v-8.824219c0-4.882813 3.953125-8.828125 8.828125-8.828125 4.871094 0 8.824219 3.945312 8.824219 8.828125v8.824219c0 4.882812-3.953125 8.828125-8.824219 8.828125zm0 0" fill="#212f3f"/><path d="m185.378906 361.929688c-4.871094 0-8.828125-3.945313-8.828125-8.828126v-70.617187c0-4.882813 3.957031-8.828125 8.828125-8.828125 4.875 0 8.828125 3.945312 8.828125 8.828125v70.617187c0 4.882813-3.953125 8.828126-8.828125 8.828126zm0 0" fill="#212f3f"/><path d="m203.035156 361.929688h-35.3125c-4.871094 0-8.824218-3.945313-8.824218-8.828126 0-4.878906 3.953124-8.824218 8.824218-8.824218h35.3125c4.871094 0 8.828125 3.945312 8.828125 8.824218 0 4.882813-3.957031 8.828126-8.828125 8.828126zm0 0" fill="#212f3f"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#d794fa"/><g fill="#a09893"><path d="m123.585938 229.515625h-70.621094c-4.871094 0-8.828125-3.953125-8.828125-8.824219 0-4.875 3.957031-8.828125 8.828125-8.828125h70.621094c4.875 0 8.828124 3.953125 8.828124 8.828125 0 4.871094-3.953124 8.824219-8.828124 8.824219zm0 0"/><path d="m247.171875 229.515625h-88.273437c-4.875 0-8.828126-3.953125-8.828126-8.824219 0-4.875 3.953126-8.828125 8.828126-8.828125h88.273437c4.875 0 8.828125 3.953125 8.828125 8.828125 0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m220.691406 264.828125h-97.105468c-4.871094 0-8.828126-3.957031-8.828126-8.828125s3.957032-8.828125 8.828126-8.828125h97.105468c4.871094 0 8.824219 3.957031 8.824219 8.828125s-3.953125 8.828125-8.824219 8.828125zm0 0"/><path d="m300.136719 229.515625h-17.652344c-4.875 0-8.828125-3.953125-8.828125-8.824219 0-4.875 3.953125-8.828125 8.828125-8.828125h17.652344c4.875 0 8.828125 3.953125 8.828125 8.828125 0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0"/><path d="m300.136719 264.828125h-44.136719c-4.871094 0-8.828125-3.957031-8.828125-8.828125s3.957031-8.828125 8.828125-8.828125h44.136719c4.875 0 8.828125 3.957031 8.828125 8.828125s-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m88.277344 264.828125h-35.3125c-4.871094 0-8.828125-3.957031-8.828125-8.828125s3.957031-8.828125 8.828125-8.828125h35.3125c4.871094 0 8.824218 3.957031 8.824218 8.828125s-3.953124 8.828125-8.824218 8.828125zm0 0"/><path d="m123.585938 300.136719h-70.621094c-4.871094 0-8.828125-3.953125-8.828125-8.828125 0-4.871094 3.957031-8.824219 8.828125-8.824219h70.621094c4.875 0 8.828124 3.953125 8.828124 8.824219 0 4.875-3.953124 8.828125-8.828124 8.828125zm0 0"/><path d="m247.171875 300.136719h-88.273437c-4.875 0-8.828126-3.953125-8.828126-8.828125 0-4.871094 3.953126-8.824219 8.828126-8.824219h88.273437c4.875 0 8.828125 3.953125 8.828125 8.824219 0 4.875-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m300.136719 300.136719h-17.652344c-4.875 0-8.828125-3.953125-8.828125-8.828125 0-4.871094 3.953125-8.824219 8.828125-8.824219h17.652344c4.875 0 8.828125 3.953125 8.828125 8.824219 0 4.875-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m300.136719 194.207031h-70.621094c-4.871094 0-8.824219-3.953125-8.824219-8.828125 0-4.871094 3.953125-8.828125 8.824219-8.828125h70.621094c4.875 0 8.828125 3.957031 8.828125 8.828125 0 4.875-3.953125 8.828125-8.828125 8.828125zm0 0"/><path d="m194.207031 194.207031h-88.277343c-4.871094 0-8.828126-3.953125-8.828126-8.828125 0-4.871094 3.957032-8.828125 8.828126-8.828125h88.277343c4.871094 0 8.828125 3.957031 8.828125 8.828125 0 4.875-3.957031 8.828125-8.828125 8.828125zm0 0"/><path d="m229.515625 158.898438h-97.101563c-4.875 0-8.828124-3.957032-8.828124-8.828126 0-4.875 3.953124-8.828124 8.828124-8.828124h97.101563c4.875 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.953125 8.828126-8.828125 8.828126zm0 0"/><path d="m70.621094 194.207031h-17.65625c-4.871094 0-8.828125-3.953125-8.828125-8.828125 0-4.871094 3.957031-8.828125 8.828125-8.828125h17.65625c4.871094 0 8.828125 3.957031 8.828125 8.828125 0 4.875-3.957031 8.828125-8.828125 8.828125zm0 0"/><path d="m97.101562 158.898438h-44.136718c-4.871094 0-8.828125-3.957032-8.828125-8.828126 0-4.875 3.957031-8.828124 8.828125-8.828124h44.136718c4.875 0 8.828126 3.953124 8.828126 8.828124 0 4.871094-3.953126 8.828126-8.828126 8.828126zm0 0"/><path d="m300.136719 158.898438h-35.308594c-4.875 0-8.828125-3.957032-8.828125-8.828126 0-4.875 3.953125-8.828124 8.828125-8.828124h35.308594c4.875 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.953125 8.828126-8.828125 8.828126zm0 0"/></g><path d="m52.964844 485.515625c-4.871094 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.953124 8.828125 8.828124v88.277344c0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0" fill="#fff"/><path d="m79.449219 450.207031h-26.484375c-4.871094 0-8.828125-3.953125-8.828125-8.828125v-52.964844c0-4.875 3.957031-8.828124 8.828125-8.828124h26.484375c19.472656 0 35.308593 15.835937 35.308593 35.3125 0 19.472656-15.835937 35.308593-35.308593 35.308593zm-17.65625-17.65625h17.65625c9.734375 0 17.652343-7.917969 17.652343-17.652343 0-9.738282-7.917968-17.65625-17.652343-17.65625h-17.65625zm0 0" fill="#fff"/><path d="m203.035156 397.242188h-52.964844c-4.875 0-8.828124-3.957032-8.828124-8.828126 0-4.875 3.953124-8.828124 8.828124-8.828124h52.964844c4.871094 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.957031 8.828126-8.828125 8.828126zm0 0" fill="#fff"/><path d="m176.550781 485.515625c-4.871093 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.957032-8.828124 8.828125-8.828124 4.875 0 8.828125 3.953124 8.828125 8.828124v88.277344c0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0" fill="#fff"/><path d="m300.136719 397.242188h-52.964844c-4.871094 0-8.828125-3.957032-8.828125-8.828126 0-4.875 3.957031-8.828124 8.828125-8.828124h52.964844c4.875 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.953125 8.828126-8.828125 8.828126zm0 0" fill="#fff"/><path d="m300.136719 441.378906h-52.964844c-4.871094 0-8.828125-3.953125-8.828125-8.828125 0-4.871093 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828125 3.957032 8.828125 8.828125 0 4.875-3.953125 8.828125-8.828125 8.828125zm0 0" fill="#fff"/><path d="m247.171875 485.515625c-4.871094 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.953124 8.828125 8.828124v88.277344c0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0" fill="#fff"/><path d="m105.941406 485.515625c-2.683594 0-5.332031-1.214844-7.074218-3.53125l-26.480469-35.308594c-2.921875-3.902343-2.136719-9.4375 1.765625-12.359375 3.902344-2.929687 9.4375-2.136718 12.359375 1.765625l26.480469 35.3125c2.921874 3.898438 2.136718 9.433594-1.765626 12.355469-1.589843 1.195312-3.449218 1.765625-5.285156 1.765625zm0 0" fill="#fff"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#baafa9"/><g fill="#fff"><path d="m105.929688 432.550781c0 14.628907-11.855469 26.484375-26.480469 26.484375-14.628907 0-26.484375-11.855468-26.484375-26.484375 0-14.625 11.855468-26.480469 26.484375-26.480469 14.625 0 26.480469 11.855469 26.480469 26.480469zm0 0"/><path d="m300.136719 432.550781c0 14.628907-11.855469 26.484375-26.480469 26.484375-14.628906 0-26.484375-11.855468-26.484375-26.484375 0-14.625 11.855469-26.480469 26.484375-26.480469 14.625 0 26.480469 11.855469 26.480469 26.480469zm0 0"/><path d="m203.035156 432.550781c0 14.628907-11.855468 26.484375-26.484375 26.484375-14.625 0-26.480469-11.855468-26.480469-26.484375 0-14.625 11.855469-26.480469 26.480469-26.480469 14.628907 0 26.484375 11.855469 26.484375 26.480469zm0 0"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#82c288"/><path d="m203.035156 485.515625h-52.964844c-4.875 0-8.828124-3.953125-8.828124-8.824219 0-4.875 3.953124-8.828125 8.828124-8.828125h52.964844c4.871094 0 8.828125 3.953125 8.828125 8.828125 0 4.871094-3.957031 8.824219-8.828125 8.824219zm0 0" fill="#fff"/><path d="m150.070312 485.515625c-4.875 0-8.828124-3.953125-8.828124-8.824219v-88.277344c0-4.875 3.953124-8.828124 8.828124-8.828124 4.871094 0 8.828126 3.953124 8.828126 8.828124v88.277344c0 4.871094-3.957032 8.824219-8.828126 8.824219zm0 0" fill="#fff"/><g fill="#a09893"><path d="m123.585938 167.722656h-70.621094c-4.871094 0-8.828125-3.953125-8.828125-8.824218v-35.3125c0-4.871094 3.957031-8.828126 8.828125-8.828126h70.621094c4.875 0 8.828124 3.957032 8.828124 8.828126v35.3125c0 4.871093-3.953124 8.824218-8.828124 8.824218zm-61.792969-17.652344h52.964843v-17.65625h-52.964843zm0 0"/><path d="m123.585938 203.035156h-70.621094c-4.871094 0-8.828125-3.957031-8.828125-8.828125v-35.308593c0-4.875 3.957031-8.828126 8.828125-8.828126h70.621094c4.875 0 8.828124 3.953126 8.828124 8.828126v35.308593c0 4.871094-3.953124 8.828125-8.828124 8.828125zm-61.792969-17.65625h52.964843v-17.65625h-52.964843zm0 0"/><path d="m300.136719 203.035156h-176.550781c-4.871094 0-8.828126-3.957031-8.828126-8.828125v-35.308593c0-4.875 3.957032-8.828126 8.828126-8.828126h176.550781c4.875 0 8.828125 3.953126 8.828125 8.828126v35.308593c0 4.871094-3.953125 8.828125-8.828125 8.828125zm-167.722657-17.65625h158.894532v-17.65625h-158.894532zm0 0"/><path d="m123.585938 238.34375h-70.621094c-4.871094 0-8.828125-3.953125-8.828125-8.828125v-35.308594c0-4.871093 3.957031-8.828125 8.828125-8.828125h70.621094c4.875 0 8.828124 3.957032 8.828124 8.828125v35.308594c0 4.875-3.953124 8.828125-8.828124 8.828125zm-61.792969-17.652344h52.964843v-17.65625h-52.964843zm0 0"/><path d="m300.136719 238.34375h-176.550781c-4.871094 0-8.828126-3.953125-8.828126-8.828125v-35.308594c0-4.871093 3.957032-8.828125 8.828126-8.828125h176.550781c4.875 0 8.828125 3.957032 8.828125 8.828125v35.308594c0 4.875-3.953125 8.828125-8.828125 8.828125zm-167.722657-17.652344h158.894532v-17.65625h-158.894532zm0 0"/><path d="m123.585938 273.65625h-70.621094c-4.871094 0-8.828125-3.957031-8.828125-8.828125v-35.3125c0-4.871094 3.957031-8.824219 8.828125-8.824219h70.621094c4.875 0 8.828124 3.953125 8.828124 8.824219v35.3125c0 4.871094-3.953124 8.828125-8.828124 8.828125zm-61.792969-17.65625h52.964843v-17.65625h-52.964843zm0 0"/><path d="m300.136719 273.65625h-176.550781c-4.871094 0-8.828126-3.957031-8.828126-8.828125v-35.3125c0-4.871094 3.957032-8.824219 8.828126-8.824219h176.550781c4.875 0 8.828125 3.953125 8.828125 8.824219v35.3125c0 4.871094-3.953125 8.828125-8.828125 8.828125zm-167.722657-17.65625h158.894532v-17.65625h-158.894532zm0 0"/><path d="m123.585938 308.964844h-70.621094c-4.871094 0-8.828125-3.953125-8.828125-8.828125v-35.308594c0-4.875 3.957031-8.828125 8.828125-8.828125h70.621094c4.875 0 8.828124 3.953125 8.828124 8.828125v35.308594c0 4.875-3.953124 8.828125-8.828124 8.828125zm-61.792969-17.65625h52.964843v-17.652344h-52.964843zm0 0"/><path d="m300.136719 308.964844h-176.550781c-4.871094 0-8.828126-3.953125-8.828126-8.828125v-35.308594c0-4.875 3.957032-8.828125 8.828126-8.828125h176.550781c4.875 0 8.828125 3.953125 8.828125 8.828125v35.308594c0 4.875-3.953125 8.828125-8.828125 8.828125zm-167.722657-17.65625h158.894532v-17.652344h-158.894532zm0 0"/></g><path d="m52.957031 485.515625c-1.546875 0-3.117187-.40625-4.527343-1.261719-4.1875-2.507812-5.535157-7.925781-3.03125-12.109375l52.96875-88.277343c2.503906-4.183594 7.925781-5.535157 12.109374-3.027344 4.183594 2.507812 5.535157 7.925781 3.027344 12.113281l-52.964844 88.273437c-1.660156 2.761719-4.582031 4.289063-7.582031 4.289063zm0 0" fill="#fff"/><path d="m105.941406 485.515625c-3.003906 0-5.925781-1.527344-7.574218-4.28125l-52.96875-88.273437c-2.503907-4.183594-1.15625-9.605469 3.03125-12.113282 4.183593-2.515625 9.601562-1.15625 12.109374 3.027344l52.964844 88.277344c2.507813 4.183594 1.15625 9.605468-3.027344 12.113281-1.421874.84375-2.992187 1.25-4.535156 1.25zm0 0" fill="#fff"/><path d="m278.070312 485.515625h-30.898437c-4.871094 0-8.828125-3.953125-8.828125-8.824219 0-4.875 3.957031-8.828125 8.828125-8.828125h30.898437c7.300782 0 13.238282-5.941406 13.238282-13.242187 0-7.300782-5.9375-13.242188-13.238282-13.242188h-8.828124c-17.039063 0-30.898438-13.859375-30.898438-30.894531 0-17.039063 13.859375-30.898437 30.898438-30.898437h30.894531c4.875 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.953125 8.828126-8.828125 8.828126h-30.894531c-7.300782 0-13.242188 5.941406-13.242188 13.242187 0 7.296875 5.941406 13.238281 13.242188 13.238281h8.828124c17.035157 0 30.894532 13.859375 30.894532 30.898438 0 17.035156-13.859375 30.894531-30.894532 30.894531zm0 0" fill="#fff"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#2f9171"/><g fill="#a09893"><path d="m114.757812 167.722656h-61.792968c-4.871094 0-8.828125-3.953125-8.828125-8.824218v-35.3125c0-4.871094 3.957031-8.828126 8.828125-8.828126h61.792968c4.875 0 8.828126 3.957032 8.828126 8.828126v35.3125c0 4.871093-3.953126 8.824218-8.828126 8.824218zm-52.964843-17.652344h44.136719v-17.65625h-44.136719zm0 0"/><path d="m176.550781 167.722656h-61.792969c-4.871093 0-8.828124-3.953125-8.828124-8.824218v-35.3125c0-4.871094 3.957031-8.828126 8.828124-8.828126h61.792969c4.875 0 8.828125 3.957032 8.828125 8.828126v35.3125c0 4.871093-3.953125 8.824218-8.828125 8.824218zm-52.964843-17.652344h44.136718v-17.65625h-44.136718zm0 0"/><path d="m238.34375 167.722656h-61.792969c-4.871093 0-8.828125-3.953125-8.828125-8.824218v-35.3125c0-4.871094 3.957032-8.828126 8.828125-8.828126h61.792969c4.875 0 8.828125 3.957032 8.828125 8.828126v35.3125c0 4.871093-3.953125 8.824218-8.828125 8.824218zm-52.964844-17.652344h44.136719v-17.65625h-44.136719zm0 0"/><path d="m300.136719 167.722656h-61.792969c-4.871094 0-8.828125-3.953125-8.828125-8.824218v-35.3125c0-4.871094 3.957031-8.828126 8.828125-8.828126h61.792969c4.875 0 8.828125 3.957032 8.828125 8.828126v35.3125c0 4.871093-3.953125 8.824218-8.828125 8.824218zm-52.964844-17.652344h44.136719v-17.65625h-44.136719zm0 0"/><path d="m114.757812 203.035156h-61.792968c-4.871094 0-8.828125-3.957031-8.828125-8.828125v-35.308593c0-4.875 3.957031-8.828126 8.828125-8.828126h61.792968c4.875 0 8.828126 3.953126 8.828126 8.828126v35.308593c0 4.871094-3.953126 8.828125-8.828126 8.828125zm-52.964843-17.65625h44.136719v-17.65625h-44.136719zm0 0"/><path d="m176.550781 203.035156h-61.792969c-4.871093 0-8.828124-3.957031-8.828124-8.828125v-35.308593c0-4.875 3.957031-8.828126 8.828124-8.828126h61.792969c4.875 0 8.828125 3.953126 8.828125 8.828126v35.308593c0 4.871094-3.953125 8.828125-8.828125 8.828125zm-52.964843-17.65625h44.136718v-17.65625h-44.136718zm0 0"/><path d="m238.34375 203.035156h-61.792969c-4.871093 0-8.828125-3.957031-8.828125-8.828125v-35.308593c0-4.875 3.957032-8.828126 8.828125-8.828126h61.792969c4.875 0 8.828125 3.953126 8.828125 8.828126v35.308593c0 4.871094-3.953125 8.828125-8.828125 8.828125zm-52.964844-17.65625h44.136719v-17.65625h-44.136719zm0 0"/><path d="m300.136719 203.035156h-61.792969c-4.871094 0-8.828125-3.957031-8.828125-8.828125v-35.308593c0-4.875 3.957031-8.828126 8.828125-8.828126h61.792969c4.875 0 8.828125 3.953126 8.828125 8.828126v35.308593c0 4.871094-3.953125 8.828125-8.828125 8.828125zm-52.964844-17.65625h44.136719v-17.65625h-44.136719zm0 0"/><path d="m114.757812 238.34375h-61.792968c-4.871094 0-8.828125-3.953125-8.828125-8.828125v-35.308594c0-4.871093 3.957031-8.828125 8.828125-8.828125h61.792968c4.875 0 8.828126 3.957032 8.828126 8.828125v35.308594c0 4.875-3.953126 8.828125-8.828126 8.828125zm-52.964843-17.652344h44.136719v-17.65625h-44.136719zm0 0"/><path d="m176.550781 238.34375h-61.792969c-4.871093 0-8.828124-3.953125-8.828124-8.828125v-35.308594c0-4.871093 3.957031-8.828125 8.828124-8.828125h61.792969c4.875 0 8.828125 3.957032 8.828125 8.828125v35.308594c0 4.875-3.953125 8.828125-8.828125 8.828125zm-52.964843-17.652344h44.136718v-17.65625h-44.136718zm0 0"/><path d="m238.34375 238.34375h-61.792969c-4.871093 0-8.828125-3.953125-8.828125-8.828125v-35.308594c0-4.871093 3.957032-8.828125 8.828125-8.828125h61.792969c4.875 0 8.828125 3.957032 8.828125 8.828125v35.308594c0 4.875-3.953125 8.828125-8.828125 8.828125zm-52.964844-17.652344h44.136719v-17.65625h-44.136719zm0 0"/><path d="m300.136719 238.34375h-61.792969c-4.871094 0-8.828125-3.953125-8.828125-8.828125v-35.308594c0-4.871093 3.957031-8.828125 8.828125-8.828125h61.792969c4.875 0 8.828125 3.957032 8.828125 8.828125v35.308594c0 4.875-3.953125 8.828125-8.828125 8.828125zm-52.964844-17.652344h44.136719v-17.65625h-44.136719zm0 0"/><path d="m114.757812 273.65625h-61.792968c-4.871094 0-8.828125-3.957031-8.828125-8.828125v-35.3125c0-4.871094 3.957031-8.824219 8.828125-8.824219h61.792968c4.875 0 8.828126 3.953125 8.828126 8.824219v35.3125c0 4.871094-3.953126 8.828125-8.828126 8.828125zm-52.964843-17.65625h44.136719v-17.65625h-44.136719zm0 0"/><path d="m176.550781 273.65625h-61.792969c-4.871093 0-8.828124-3.957031-8.828124-8.828125v-35.3125c0-4.871094 3.957031-8.824219 8.828124-8.824219h61.792969c4.875 0 8.828125 3.953125 8.828125 8.824219v35.3125c0 4.871094-3.953125 8.828125-8.828125 8.828125zm-52.964843-17.65625h44.136718v-17.65625h-44.136718zm0 0"/><path d="m238.34375 273.65625h-61.792969c-4.871093 0-8.828125-3.957031-8.828125-8.828125v-35.3125c0-4.871094 3.957032-8.824219 8.828125-8.824219h61.792969c4.875 0 8.828125 3.953125 8.828125 8.824219v35.3125c0 4.871094-3.953125 8.828125-8.828125 8.828125zm-52.964844-17.65625h44.136719v-17.65625h-44.136719zm0 0"/><path d="m300.136719 273.65625h-61.792969c-4.871094 0-8.828125-3.957031-8.828125-8.828125v-35.3125c0-4.871094 3.957031-8.824219 8.828125-8.824219h61.792969c4.875 0 8.828125 3.953125 8.828125 8.824219v35.3125c0 4.871094-3.953125 8.828125-8.828125 8.828125zm-52.964844-17.65625h44.136719v-17.65625h-44.136719zm0 0"/><path d="m114.757812 308.964844h-61.792968c-4.871094 0-8.828125-3.953125-8.828125-8.828125v-35.308594c0-4.875 3.957031-8.828125 8.828125-8.828125h61.792968c4.875 0 8.828126 3.953125 8.828126 8.828125v35.308594c0 4.875-3.953126 8.828125-8.828126 8.828125zm-52.964843-17.65625h44.136719v-17.652344h-44.136719zm0 0"/><path d="m176.550781 308.964844h-61.792969c-4.871093 0-8.828124-3.953125-8.828124-8.828125v-35.308594c0-4.875 3.957031-8.828125 8.828124-8.828125h61.792969c4.875 0 8.828125 3.953125 8.828125 8.828125v35.308594c0 4.875-3.953125 8.828125-8.828125 8.828125zm-52.964843-17.65625h44.136718v-17.652344h-44.136718zm0 0"/><path d="m238.34375 308.964844h-61.792969c-4.871093 0-8.828125-3.953125-8.828125-8.828125v-35.308594c0-4.875 3.957032-8.828125 8.828125-8.828125h61.792969c4.875 0 8.828125 3.953125 8.828125 8.828125v35.308594c0 4.875-3.953125 8.828125-8.828125 8.828125zm-52.964844-17.65625h44.136719v-17.652344h-44.136719zm0 0"/><path d="m300.136719 308.964844h-61.792969c-4.871094 0-8.828125-3.953125-8.828125-8.828125v-35.308594c0-4.875 3.957031-8.828125 8.828125-8.828125h61.792969c4.875 0 8.828125 3.953125 8.828125 8.828125v35.308594c0 4.875-3.953125 8.828125-8.828125 8.828125zm-52.964844-17.65625h44.136719v-17.652344h-44.136719zm0 0"/></g><path d="m105.929688 485.515625h-35.230469c-14.644531 0-26.5625-11.914063-26.5625-26.5625v-52.804687c0-14.644532 11.917969-26.5625 26.5625-26.5625h35.230469c4.875 0 8.828124 3.953124 8.828124 8.828124 0 4.871094-3.953124 8.828126-8.828124 8.828126h-35.230469c-4.917969 0-8.90625 4-8.90625 8.90625v52.804687c0 4.910156 3.988281 8.910156 8.90625 8.910156h35.230469c4.875 0 8.828124 3.953125 8.828124 8.828125 0 4.871094-3.953124 8.824219-8.828124 8.824219zm0 0" fill="#fff"/><path d="m172.136719 485.515625h-30.894531c-4.875 0-8.828126-3.953125-8.828126-8.824219 0-4.875 3.953126-8.828125 8.828126-8.828125h30.894531c7.300781 0 13.242187-5.941406 13.242187-13.242187 0-7.300782-5.941406-13.242188-13.242187-13.242188h-8.828125c-17.035156 0-30.894532-13.859375-30.894532-30.894531 0-17.039063 13.859376-30.898437 30.894532-30.898437h30.898437c4.871094 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.957031 8.828126-8.828125 8.828126h-30.898437c-7.296875 0-13.238282 5.941406-13.238282 13.242187 0 7.296875 5.941407 13.238281 13.238282 13.238281h8.828125c17.039062 0 30.898437 13.859375 30.898437 30.898438 0 17.035156-13.859375 30.894531-30.898437 30.894531zm0 0" fill="#fff"/><path d="m264.828125 485.515625c-3.609375 0-6.851563-2.195313-8.203125-5.542969l-35.308594-88.273437c-1.808594-4.53125.386719-9.667969 4.917969-11.476563 4.535156-1.800781 9.664063.394532 11.476563 4.917969l27.117187 67.785156 27.109375-67.785156c1.816406-4.523437 6.9375-6.738281 11.476562-4.917969 4.527344 1.816406 6.726563 6.945313 4.914063 11.476563l-35.308594 88.273437c-1.339843 3.347656-4.582031 5.542969-8.191406 5.542969zm0 0" fill="#fff"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#6ab86f"/><g fill="#a09893"><path d="m123.585938 167.722656h-70.621094c-4.871094 0-8.828125-3.953125-8.828125-8.824218v-35.3125c0-4.871094 3.957031-8.828126 8.828125-8.828126h70.621094c4.875 0 8.828124 3.957032 8.828124 8.828126v35.3125c0 4.871093-3.953124 8.824218-8.828124 8.824218zm-61.792969-17.652344h52.964843v-17.65625h-52.964843zm0 0"/><path d="m123.585938 203.035156h-70.621094c-4.871094 0-8.828125-3.957031-8.828125-8.828125v-35.308593c0-4.875 3.957031-8.828126 8.828125-8.828126h70.621094c4.875 0 8.828124 3.953126 8.828124 8.828126v35.308593c0 4.871094-3.953124 8.828125-8.828124 8.828125zm-61.792969-17.65625h52.964843v-17.65625h-52.964843zm0 0"/><path d="m300.136719 203.035156h-176.550781c-4.871094 0-8.828126-3.957031-8.828126-8.828125v-35.308593c0-4.875 3.957032-8.828126 8.828126-8.828126h176.550781c4.875 0 8.828125 3.953126 8.828125 8.828126v35.308593c0 4.871094-3.953125 8.828125-8.828125 8.828125zm-167.722657-17.65625h158.894532v-17.65625h-158.894532zm0 0"/><path d="m123.585938 238.34375h-70.621094c-4.871094 0-8.828125-3.953125-8.828125-8.828125v-35.308594c0-4.871093 3.957031-8.828125 8.828125-8.828125h70.621094c4.875 0 8.828124 3.957032 8.828124 8.828125v35.308594c0 4.875-3.953124 8.828125-8.828124 8.828125zm-61.792969-17.652344h52.964843v-17.65625h-52.964843zm0 0"/><path d="m300.136719 238.34375h-176.550781c-4.871094 0-8.828126-3.953125-8.828126-8.828125v-35.308594c0-4.871093 3.957032-8.828125 8.828126-8.828125h176.550781c4.875 0 8.828125 3.957032 8.828125 8.828125v35.308594c0 4.875-3.953125 8.828125-8.828125 8.828125zm-167.722657-17.652344h158.894532v-17.65625h-158.894532zm0 0"/><path d="m123.585938 273.65625h-70.621094c-4.871094 0-8.828125-3.957031-8.828125-8.828125v-35.3125c0-4.871094 3.957031-8.824219 8.828125-8.824219h70.621094c4.875 0 8.828124 3.953125 8.828124 8.824219v35.3125c0 4.871094-3.953124 8.828125-8.828124 8.828125zm-61.792969-17.65625h52.964843v-17.65625h-52.964843zm0 0"/><path d="m300.136719 273.65625h-176.550781c-4.871094 0-8.828126-3.957031-8.828126-8.828125v-35.3125c0-4.871094 3.957032-8.824219 8.828126-8.824219h176.550781c4.875 0 8.828125 3.953125 8.828125 8.824219v35.3125c0 4.871094-3.953125 8.828125-8.828125 8.828125zm-167.722657-17.65625h158.894532v-17.65625h-158.894532zm0 0"/><path d="m123.585938 308.964844h-70.621094c-4.871094 0-8.828125-3.953125-8.828125-8.828125v-35.308594c0-4.875 3.957031-8.828125 8.828125-8.828125h70.621094c4.875 0 8.828124 3.953125 8.828124 8.828125v35.308594c0 4.875-3.953124 8.828125-8.828124 8.828125zm-61.792969-17.65625h52.964843v-17.652344h-52.964843zm0 0"/><path d="m300.136719 308.964844h-176.550781c-4.871094 0-8.828126-3.953125-8.828126-8.828125v-35.308594c0-4.875 3.957032-8.828125 8.828126-8.828125h176.550781c4.875 0 8.828125 3.953125 8.828125 8.828125v35.308594c0 4.875-3.953125 8.828125-8.828125 8.828125zm-167.722657-17.65625h158.894532v-17.652344h-158.894532zm0 0"/></g><path d="m300.136719 397.242188h-52.964844c-4.871094 0-8.828125-3.957032-8.828125-8.828126 0-4.875 3.957031-8.828124 8.828125-8.828124h52.964844c4.875 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.953125 8.828126-8.828125 8.828126zm0 0" fill="#fff"/><path d="m300.136719 441.378906h-52.964844c-4.871094 0-8.828125-3.953125-8.828125-8.828125 0-4.871093 3.957031-8.828125 8.828125-8.828125h52.964844c4.875 0 8.828125 3.957032 8.828125 8.828125 0 4.875-3.953125 8.828125-8.828125 8.828125zm0 0" fill="#fff"/><path d="m247.171875 485.515625c-4.871094 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.957031-8.828124 8.828125-8.828124 4.875 0 8.828125 3.953124 8.828125 8.828124v88.277344c0 4.871094-3.953125 8.824219-8.828125 8.824219zm0 0" fill="#fff"/><path d="m61.792969 485.515625h-8.828125c-4.871094 0-8.828125-3.953125-8.828125-8.824219v-88.277344c0-4.875 3.957031-8.828124 8.828125-8.828124h8.828125c29.210937 0 52.964843 23.753906 52.964843 52.964843 0 29.210938-23.753906 52.964844-52.964843 52.964844zm0-17.652344h.089843zm0-70.621093v70.621093c19.472656 0 35.308593-15.839843 35.308593-35.3125 0-19.472656-15.835937-35.308593-35.308593-35.308593zm0 0" fill="#fff"/><path d="m150.070312 485.515625c-4.875 0-8.828124-3.953125-8.828124-8.824219v-88.277344c0-4.875 3.953124-8.828124 8.828124-8.828124 4.871094 0 8.828126 3.953124 8.828126 8.828124v88.277344c0 4.871094-3.957032 8.824219-8.828126 8.824219zm0 0" fill="#fff"/><path d="m180.964844 441.378906h-30.894532c-4.875 0-8.828124-3.953125-8.828124-8.828125v-44.136719c0-4.875 3.953124-8.828124 8.828124-8.828124h30.894532c17.039062 0 30.898437 13.859374 30.898437 30.898437 0 17.035156-13.859375 30.894531-30.898437 30.894531zm-22.066406-17.65625h22.066406c7.300781 0 13.242187-5.941406 13.242187-13.238281 0-7.300781-5.941406-13.242187-13.242187-13.242187h-22.066406zm0 0" fill="#fff"/><path d="m180.964844 485.515625h-30.894532c-4.875 0-8.828124-3.953125-8.828124-8.824219v-44.140625c0-4.871093 3.953124-8.828125 8.828124-8.828125h30.894532c17.039062 0 30.898437 13.859375 30.898437 30.898438 0 17.035156-13.859375 30.894531-30.898437 30.894531zm-22.066406-17.652344h22.066406c7.300781 0 13.242187-5.941406 13.242187-13.242187 0-7.300782-5.941406-13.242188-13.242187-13.242188h-22.066406zm0 0" fill="#fff"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512pt" viewBox="-79 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m353.101562 485.515625h-353.101562v-485.515625h273.65625l79.445312 79.449219zm0 0" fill="#e3e4d8"/><path d="m273.65625 0v79.449219h79.445312zm0 0" fill="#d0cebd"/><path d="m0 353.101562h353.101562v158.898438h-353.101562zm0 0" fill="#ef3c54"/><g fill="#fff"><path d="m278.070312 485.515625h-30.898437c-4.871094 0-8.828125-3.953125-8.828125-8.824219 0-4.875 3.957031-8.828125 8.828125-8.828125h30.898437c7.300782 0 13.238282-5.941406 13.238282-13.242187 0-7.300782-5.9375-13.242188-13.238282-13.242188h-8.828124c-17.039063 0-30.898438-13.859375-30.898438-30.894531 0-17.039063 13.859375-30.898437 30.898438-30.898437h30.894531c4.875 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.953125 8.828126-8.828125 8.828126h-30.894531c-7.300782 0-13.242188 5.941406-13.242188 13.242187 0 7.296875 5.941406 13.238281 13.242188 13.238281h8.828124c17.035157 0 30.894532 13.859375 30.894532 30.898438 0 17.035156-13.859375 30.894531-30.894532 30.894531zm0 0"/><path d="m105.929688 485.515625h-35.230469c-14.644531 0-26.5625-11.914063-26.5625-26.5625v-52.804687c0-14.644532 11.917969-26.5625 26.5625-26.5625h35.230469c4.875 0 8.828124 3.953124 8.828124 8.828124 0 4.871094-3.953124 8.828126-8.828124 8.828126h-35.230469c-4.90625 0-8.90625 4-8.90625 8.90625v52.804687c0 4.910156 4 8.910156 8.90625 8.910156h35.230469c4.875 0 8.828124 3.953125 8.828124 8.828125 0 4.871094-3.953124 8.824219-8.828124 8.824219zm0 0"/><path d="m180.964844 485.515625h-30.894532c-4.875 0-8.828124-3.953125-8.828124-8.824219 0-4.875 3.953124-8.828125 8.828124-8.828125h30.894532c7.300781 0 13.242187-5.941406 13.242187-13.242187 0-7.300782-5.941406-13.242188-13.242187-13.242188h-8.828125c-17.035157 0-30.894531-13.859375-30.894531-30.894531 0-17.039063 13.859374-30.898437 30.894531-30.898437h30.898437c4.871094 0 8.828125 3.953124 8.828125 8.828124 0 4.871094-3.957031 8.828126-8.828125 8.828126h-30.898437c-7.300781 0-13.238281 5.941406-13.238281 13.242187 0 7.296875 5.9375 13.238281 13.238281 13.238281h8.828125c17.039062 0 30.898437 13.859375 30.898437 30.898438 0 17.035156-13.859375 30.894531-30.898437 30.894531zm0 0"/></g><path d="m123.585938 317.792969c-19.472657 0-35.308594-15.835938-35.308594-35.308594v-52.96875c0-9.734375-7.917969-17.652344-17.65625-17.652344-4.875 0-8.828125-3.957031-8.828125-8.828125 0-4.875 3.953125-8.828125 8.828125-8.828125 9.738281 0 17.65625-7.917969 17.65625-17.65625v-52.964843c0-19.472657 15.835937-35.308594 35.308594-35.308594 4.875 0 8.828124 3.953125 8.828124 8.824218 0 4.875-3.953124 8.828126-8.828124 8.828126-9.738282 0-17.65625 7.917968-17.65625 17.65625v52.964843c0 10.53125-4.632813 20.011719-11.976563 26.484375 7.34375 6.46875 11.976563 15.949219 11.976563 26.480469v52.96875c0 9.734375 7.917968 17.652344 17.65625 17.652344 4.875 0 8.828124 3.957031 8.828124 8.828125 0 4.875-3.953124 8.828125-8.828124 8.828125zm0 0" fill="#ef394f"/><path d="m229.515625 317.792969c-4.871094 0-8.824219-3.953125-8.824219-8.828125 0-4.871094 3.953125-8.828125 8.824219-8.828125 9.738281 0 17.65625-7.917969 17.65625-17.652344v-52.96875c0-10.53125 4.636719-20.011719 11.980469-26.480469-7.34375-6.472656-11.980469-15.953125-11.980469-26.484375v-52.964843c0-9.738282-7.917969-17.65625-17.65625-17.65625-4.871094 0-8.824219-3.953126-8.824219-8.828126 0-4.871093 3.953125-8.824218 8.824219-8.824218 19.476563 0 35.3125 15.835937 35.3125 35.308594v52.964843c0 9.738281 7.917969 17.65625 17.65625 17.65625 4.871094 0 8.824219 3.953125 8.824219 8.828125 0 4.871094-3.953125 8.828125-8.824219 8.828125-9.738281 0-17.65625 7.917969-17.65625 17.652344v52.96875c0 19.472656-15.835937 35.308594-35.3125 35.308594zm0 0" fill="#ef394f"/></svg>
|