@sync-in/server 1.3.0
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/CHANGELOG.md +93 -0
- package/LICENSE +660 -0
- package/README.md +106 -0
- package/environment/environment.dist.min.yaml +11 -0
- package/environment/environment.dist.yaml +95 -0
- package/migrations/0000_init.sql +324 -0
- package/migrations/meta/0000_snapshot.json +2417 -0
- package/migrations/meta/_journal.json +13 -0
- package/package.json +80 -0
- package/server/app.bootstrap.js +103 -0
- package/server/app.bootstrap.js.map +1 -0
- package/server/app.constants.js +58 -0
- package/server/app.constants.js.map +1 -0
- package/server/app.e2e-spec.js +34 -0
- package/server/app.e2e-spec.js.map +1 -0
- package/server/app.module.js +72 -0
- package/server/app.module.js.map +1 -0
- package/server/app.service.js +72 -0
- package/server/app.service.js.map +1 -0
- package/server/app.service.spec.js +94 -0
- package/server/app.service.spec.js.map +1 -0
- package/server/applications/admin/admin.module.js +31 -0
- package/server/applications/admin/admin.module.js.map +1 -0
- package/server/applications/admin/constants/routes.js +19 -0
- package/server/applications/admin/constants/routes.js.map +1 -0
- package/server/applications/applications.config.js +50 -0
- package/server/applications/applications.config.js.map +1 -0
- package/server/applications/applications.constants.js +69 -0
- package/server/applications/applications.constants.js.map +1 -0
- package/server/applications/applications.module.js +59 -0
- package/server/applications/applications.module.js.map +1 -0
- package/server/applications/comments/comments.controller.js +133 -0
- package/server/applications/comments/comments.controller.js.map +1 -0
- package/server/applications/comments/comments.controller.spec.js +63 -0
- package/server/applications/comments/comments.controller.spec.js.map +1 -0
- package/server/applications/comments/comments.module.js +39 -0
- package/server/applications/comments/comments.module.js.map +1 -0
- package/server/applications/comments/constants/routes.js +35 -0
- package/server/applications/comments/constants/routes.js.map +1 -0
- package/server/applications/comments/dto/comment.dto.js +62 -0
- package/server/applications/comments/dto/comment.dto.js.map +1 -0
- package/server/applications/comments/interfaces/comment-recent.interface.js +10 -0
- package/server/applications/comments/interfaces/comment-recent.interface.js.map +1 -0
- package/server/applications/comments/schemas/comment.interface.js +18 -0
- package/server/applications/comments/schemas/comment.interface.js.map +1 -0
- package/server/applications/comments/schemas/comments.schema.js +57 -0
- package/server/applications/comments/schemas/comments.schema.js.map +1 -0
- package/server/applications/comments/services/comments-manager.service.js +137 -0
- package/server/applications/comments/services/comments-manager.service.js.map +1 -0
- package/server/applications/comments/services/comments-manager.service.spec.js +51 -0
- package/server/applications/comments/services/comments-manager.service.spec.js.map +1 -0
- package/server/applications/comments/services/comments-queries.service.js +185 -0
- package/server/applications/comments/services/comments-queries.service.js.map +1 -0
- package/server/applications/files/adapters/files-indexer-mysql.service.js +174 -0
- package/server/applications/files/adapters/files-indexer-mysql.service.js.map +1 -0
- package/server/applications/files/assets/samples/sample.docx +0 -0
- package/server/applications/files/assets/samples/sample.odp +0 -0
- package/server/applications/files/assets/samples/sample.ods +0 -0
- package/server/applications/files/assets/samples/sample.odt +0 -0
- package/server/applications/files/assets/samples/sample.pptx +0 -0
- package/server/applications/files/assets/samples/sample.rtf +194 -0
- package/server/applications/files/assets/samples/sample.xlsx +0 -0
- package/server/applications/files/constants/cache.js +36 -0
- package/server/applications/files/constants/cache.js.map +1 -0
- package/server/applications/files/constants/compress.js +26 -0
- package/server/applications/files/constants/compress.js.map +1 -0
- package/server/applications/files/constants/files.js +103 -0
- package/server/applications/files/constants/files.js.map +1 -0
- package/server/applications/files/constants/indexing.js +49 -0
- package/server/applications/files/constants/indexing.js.map +1 -0
- package/server/applications/files/constants/only-office.js +536 -0
- package/server/applications/files/constants/only-office.js.map +1 -0
- package/server/applications/files/constants/operations.js +29 -0
- package/server/applications/files/constants/operations.js.map +1 -0
- package/server/applications/files/constants/routes.js +100 -0
- package/server/applications/files/constants/routes.js.map +1 -0
- package/server/applications/files/constants/samples.js +35 -0
- package/server/applications/files/constants/samples.js.map +1 -0
- package/server/applications/files/decorators/only-office-environment.decorator.js +32 -0
- package/server/applications/files/decorators/only-office-environment.decorator.js.map +1 -0
- package/server/applications/files/dto/file-operations.dto.js +145 -0
- package/server/applications/files/dto/file-operations.dto.js.map +1 -0
- package/server/applications/files/events/file-task-event.js +23 -0
- package/server/applications/files/events/file-task-event.js.map +1 -0
- package/server/applications/files/files-only-office.controller.js +111 -0
- package/server/applications/files/files-only-office.controller.js.map +1 -0
- package/server/applications/files/files-only-office.controller.spec.js +47 -0
- package/server/applications/files/files-only-office.controller.spec.js.map +1 -0
- package/server/applications/files/files-tasks.controller.js +97 -0
- package/server/applications/files/files-tasks.controller.js.map +1 -0
- package/server/applications/files/files-tasks.controller.spec.js +40 -0
- package/server/applications/files/files-tasks.controller.spec.js.map +1 -0
- package/server/applications/files/files.config.js +96 -0
- package/server/applications/files/files.config.js.map +1 -0
- package/server/applications/files/files.controller.js +319 -0
- package/server/applications/files/files.controller.js.map +1 -0
- package/server/applications/files/files.controller.spec.js +84 -0
- package/server/applications/files/files.controller.spec.js.map +1 -0
- package/server/applications/files/files.module.js +78 -0
- package/server/applications/files/files.module.js.map +1 -0
- package/server/applications/files/guards/files-only-office.guard.js +48 -0
- package/server/applications/files/guards/files-only-office.guard.js.map +1 -0
- package/server/applications/files/guards/files-only-office.guard.spec.js +16 -0
- package/server/applications/files/guards/files-only-office.guard.spec.js.map +1 -0
- package/server/applications/files/guards/files-only-office.strategy.js +60 -0
- package/server/applications/files/guards/files-only-office.strategy.js.map +1 -0
- package/server/applications/files/interfaces/file-db-props.interface.js +10 -0
- package/server/applications/files/interfaces/file-db-props.interface.js.map +1 -0
- package/server/applications/files/interfaces/file-lock.interface.js +10 -0
- package/server/applications/files/interfaces/file-lock.interface.js.map +1 -0
- package/server/applications/files/interfaces/file-parse-index.js +10 -0
- package/server/applications/files/interfaces/file-parse-index.js.map +1 -0
- package/server/applications/files/interfaces/file-props.interface.js +10 -0
- package/server/applications/files/interfaces/file-props.interface.js.map +1 -0
- package/server/applications/files/interfaces/file-recent-location.interface.js +10 -0
- package/server/applications/files/interfaces/file-recent-location.interface.js.map +1 -0
- package/server/applications/files/interfaces/file-space.interface.js +18 -0
- package/server/applications/files/interfaces/file-space.interface.js.map +1 -0
- package/server/applications/files/interfaces/file-tree.interface.js +10 -0
- package/server/applications/files/interfaces/file-tree.interface.js.map +1 -0
- package/server/applications/files/interfaces/only-office-config.interface.js +10 -0
- package/server/applications/files/interfaces/only-office-config.interface.js.map +1 -0
- package/server/applications/files/models/file-error.js +23 -0
- package/server/applications/files/models/file-error.js.map +1 -0
- package/server/applications/files/models/file-lock-error.js +23 -0
- package/server/applications/files/models/file-lock-error.js.map +1 -0
- package/server/applications/files/models/file-task.js +52 -0
- package/server/applications/files/models/file-task.js.map +1 -0
- package/server/applications/files/models/files-indexer.js +18 -0
- package/server/applications/files/models/files-indexer.js.map +1 -0
- package/server/applications/files/schemas/file-content.interface.js +10 -0
- package/server/applications/files/schemas/file-content.interface.js.map +1 -0
- package/server/applications/files/schemas/file-recent.interface.js +18 -0
- package/server/applications/files/schemas/file-recent.interface.js.map +1 -0
- package/server/applications/files/schemas/file.interface.js +18 -0
- package/server/applications/files/schemas/file.interface.js.map +1 -0
- package/server/applications/files/schemas/files-content.schema.js +41 -0
- package/server/applications/files/schemas/files-content.schema.js.map +1 -0
- package/server/applications/files/schemas/files-recents.schema.js +63 -0
- package/server/applications/files/schemas/files-recents.schema.js.map +1 -0
- package/server/applications/files/schemas/files.schema.js +100 -0
- package/server/applications/files/schemas/files.schema.js.map +1 -0
- package/server/applications/files/services/files-content-manager.service.js +204 -0
- package/server/applications/files/services/files-content-manager.service.js.map +1 -0
- package/server/applications/files/services/files-lock-manager.service.js +285 -0
- package/server/applications/files/services/files-lock-manager.service.js.map +1 -0
- package/server/applications/files/services/files-lock-manager.service.spec.js +40 -0
- package/server/applications/files/services/files-lock-manager.service.spec.js.map +1 -0
- package/server/applications/files/services/files-manager.service.js +565 -0
- package/server/applications/files/services/files-manager.service.js.map +1 -0
- package/server/applications/files/services/files-manager.service.spec.js +43 -0
- package/server/applications/files/services/files-manager.service.spec.js.map +1 -0
- package/server/applications/files/services/files-methods.service.js +180 -0
- package/server/applications/files/services/files-methods.service.js.map +1 -0
- package/server/applications/files/services/files-methods.service.spec.js +135 -0
- package/server/applications/files/services/files-methods.service.spec.js.map +1 -0
- package/server/applications/files/services/files-only-office-manager.service.js +395 -0
- package/server/applications/files/services/files-only-office-manager.service.js.map +1 -0
- package/server/applications/files/services/files-only-office-manager.service.spec.js +58 -0
- package/server/applications/files/services/files-only-office-manager.service.spec.js.map +1 -0
- package/server/applications/files/services/files-parser.service.js +189 -0
- package/server/applications/files/services/files-parser.service.js.map +1 -0
- package/server/applications/files/services/files-parser.service.spec.js +31 -0
- package/server/applications/files/services/files-parser.service.spec.js.map +1 -0
- package/server/applications/files/services/files-queries.service.js +314 -0
- package/server/applications/files/services/files-queries.service.js.map +1 -0
- package/server/applications/files/services/files-recents.service.js +97 -0
- package/server/applications/files/services/files-recents.service.js.map +1 -0
- package/server/applications/files/services/files-recents.service.spec.js +41 -0
- package/server/applications/files/services/files-recents.service.spec.js.map +1 -0
- package/server/applications/files/services/files-scheduler.service.js +179 -0
- package/server/applications/files/services/files-scheduler.service.js.map +1 -0
- package/server/applications/files/services/files-search-manager.service.js +146 -0
- package/server/applications/files/services/files-search-manager.service.js.map +1 -0
- package/server/applications/files/services/files-search-manager.service.spec.js +46 -0
- package/server/applications/files/services/files-search-manager.service.spec.js.map +1 -0
- package/server/applications/files/services/files-tasks-manager.service.js +253 -0
- package/server/applications/files/services/files-tasks-manager.service.js.map +1 -0
- package/server/applications/files/services/files-tasks-manager.service.spec.js +46 -0
- package/server/applications/files/services/files-tasks-manager.service.spec.js.map +1 -0
- package/server/applications/files/utils/doc-textify/adapters/excel.js +91 -0
- package/server/applications/files/utils/doc-textify/adapters/excel.js.map +1 -0
- package/server/applications/files/utils/doc-textify/adapters/html.js +33 -0
- package/server/applications/files/utils/doc-textify/adapters/html.js.map +1 -0
- package/server/applications/files/utils/doc-textify/adapters/open-office.js +110 -0
- package/server/applications/files/utils/doc-textify/adapters/open-office.js.map +1 -0
- package/server/applications/files/utils/doc-textify/adapters/pdf.js +67 -0
- package/server/applications/files/utils/doc-textify/adapters/pdf.js.map +1 -0
- package/server/applications/files/utils/doc-textify/adapters/power-point.js +111 -0
- package/server/applications/files/utils/doc-textify/adapters/power-point.js.map +1 -0
- package/server/applications/files/utils/doc-textify/adapters/text.js +27 -0
- package/server/applications/files/utils/doc-textify/adapters/text.js.map +1 -0
- package/server/applications/files/utils/doc-textify/adapters/word.js +101 -0
- package/server/applications/files/utils/doc-textify/adapters/word.js.map +1 -0
- package/server/applications/files/utils/doc-textify/doc-textify.js +75 -0
- package/server/applications/files/utils/doc-textify/doc-textify.js.map +1 -0
- package/server/applications/files/utils/doc-textify/interfaces/doc-textify.interfaces.js +10 -0
- package/server/applications/files/utils/doc-textify/interfaces/doc-textify.interfaces.js.map +1 -0
- package/server/applications/files/utils/doc-textify/utils/clean.js +34 -0
- package/server/applications/files/utils/doc-textify/utils/clean.js.map +1 -0
- package/server/applications/files/utils/files-search.js +144 -0
- package/server/applications/files/utils/files-search.js.map +1 -0
- package/server/applications/files/utils/files-tree.js +86 -0
- package/server/applications/files/utils/files-tree.js.map +1 -0
- package/server/applications/files/utils/files.js +386 -0
- package/server/applications/files/utils/files.js.map +1 -0
- package/server/applications/files/utils/send-file.js +70 -0
- package/server/applications/files/utils/send-file.js.map +1 -0
- package/server/applications/files/utils/unzip-file.js +60 -0
- package/server/applications/files/utils/unzip-file.js.map +1 -0
- package/server/applications/files/utils/url-file.js +39 -0
- package/server/applications/files/utils/url-file.js.map +1 -0
- package/server/applications/links/constants/cache.js +28 -0
- package/server/applications/links/constants/cache.js.map +1 -0
- package/server/applications/links/constants/links.js +36 -0
- package/server/applications/links/constants/links.js.map +1 -0
- package/server/applications/links/constants/routes.js +41 -0
- package/server/applications/links/constants/routes.js.map +1 -0
- package/server/applications/links/dto/create-or-update-link.dto.js +95 -0
- package/server/applications/links/dto/create-or-update-link.dto.js.map +1 -0
- package/server/applications/links/interfaces/link-guest.interface.js +10 -0
- package/server/applications/links/interfaces/link-guest.interface.js.map +1 -0
- package/server/applications/links/interfaces/link-space.interface.js +10 -0
- package/server/applications/links/interfaces/link-space.interface.js.map +1 -0
- package/server/applications/links/links.controller.js +107 -0
- package/server/applications/links/links.controller.js.map +1 -0
- package/server/applications/links/links.controller.spec.js +88 -0
- package/server/applications/links/links.controller.spec.js.map +1 -0
- package/server/applications/links/schemas/link.interface.js +18 -0
- package/server/applications/links/schemas/link.interface.js.map +1 -0
- package/server/applications/links/schemas/links.schema.js +56 -0
- package/server/applications/links/schemas/links.schema.js.map +1 -0
- package/server/applications/links/services/links-manager.service.js +158 -0
- package/server/applications/links/services/links-manager.service.js.map +1 -0
- package/server/applications/links/services/links-manager.service.spec.js +84 -0
- package/server/applications/links/services/links-manager.service.spec.js.map +1 -0
- package/server/applications/links/services/links-queries.service.js +181 -0
- package/server/applications/links/services/links-queries.service.js.map +1 -0
- package/server/applications/notifications/constants/notifications.js +62 -0
- package/server/applications/notifications/constants/notifications.js.map +1 -0
- package/server/applications/notifications/constants/routes.js +30 -0
- package/server/applications/notifications/constants/routes.js.map +1 -0
- package/server/applications/notifications/constants/websocket.js +22 -0
- package/server/applications/notifications/constants/websocket.js.map +1 -0
- package/server/applications/notifications/i18n/fr.js +43 -0
- package/server/applications/notifications/i18n/fr.js.map +1 -0
- package/server/applications/notifications/i18n/index.js +37 -0
- package/server/applications/notifications/i18n/index.js.map +1 -0
- package/server/applications/notifications/interfaces/notification-properties.interface.js +10 -0
- package/server/applications/notifications/interfaces/notification-properties.interface.js.map +1 -0
- package/server/applications/notifications/interfaces/user-mail-notification.js +10 -0
- package/server/applications/notifications/interfaces/user-mail-notification.js.map +1 -0
- package/server/applications/notifications/mails/models.js +133 -0
- package/server/applications/notifications/mails/models.js.map +1 -0
- package/server/applications/notifications/mails/templates.js +51 -0
- package/server/applications/notifications/mails/templates.js.map +1 -0
- package/server/applications/notifications/mails/urls.js +51 -0
- package/server/applications/notifications/mails/urls.js.map +1 -0
- package/server/applications/notifications/notifications.controller.js +110 -0
- package/server/applications/notifications/notifications.controller.js.map +1 -0
- package/server/applications/notifications/notifications.controller.spec.js +33 -0
- package/server/applications/notifications/notifications.controller.spec.js.map +1 -0
- package/server/applications/notifications/notifications.gateway.js +45 -0
- package/server/applications/notifications/notifications.gateway.js.map +1 -0
- package/server/applications/notifications/notifications.module.js +44 -0
- package/server/applications/notifications/notifications.module.js.map +1 -0
- package/server/applications/notifications/schemas/notification.interface.js +18 -0
- package/server/applications/notifications/schemas/notification.interface.js.map +1 -0
- package/server/applications/notifications/schemas/notifications.schema.js +45 -0
- package/server/applications/notifications/schemas/notifications.schema.js.map +1 -0
- package/server/applications/notifications/services/notifications-manager.service.js +143 -0
- package/server/applications/notifications/services/notifications-manager.service.js.map +1 -0
- package/server/applications/notifications/services/notifications-manager.service.spec.js +46 -0
- package/server/applications/notifications/services/notifications-manager.service.spec.js.map +1 -0
- package/server/applications/notifications/services/notifications-queries.service.js +100 -0
- package/server/applications/notifications/services/notifications-queries.service.js.map +1 -0
- package/server/applications/shares/constants/routes.js +46 -0
- package/server/applications/shares/constants/routes.js.map +1 -0
- package/server/applications/shares/constants/shares.js +31 -0
- package/server/applications/shares/constants/shares.js.map +1 -0
- package/server/applications/shares/dto/create-or-update-share.dto.js +232 -0
- package/server/applications/shares/dto/create-or-update-share.dto.js.map +1 -0
- package/server/applications/shares/interfaces/share-child.interface.js +10 -0
- package/server/applications/shares/interfaces/share-child.interface.js.map +1 -0
- package/server/applications/shares/interfaces/share-env.interface.js +10 -0
- package/server/applications/shares/interfaces/share-env.interface.js.map +1 -0
- package/server/applications/shares/interfaces/share-file.interface.js +21 -0
- package/server/applications/shares/interfaces/share-file.interface.js.map +1 -0
- package/server/applications/shares/interfaces/share-link.interface.js +10 -0
- package/server/applications/shares/interfaces/share-link.interface.js.map +1 -0
- package/server/applications/shares/interfaces/share-props.interface.js +22 -0
- package/server/applications/shares/interfaces/share-props.interface.js.map +1 -0
- package/server/applications/shares/models/share-child.model.js +30 -0
- package/server/applications/shares/models/share-child.model.js.map +1 -0
- package/server/applications/shares/schemas/share-members.interface.js +18 -0
- package/server/applications/shares/schemas/share-members.interface.js.map +1 -0
- package/server/applications/shares/schemas/share.interface.js +18 -0
- package/server/applications/shares/schemas/share.interface.js.map +1 -0
- package/server/applications/shares/schemas/shares-members.schema.js +69 -0
- package/server/applications/shares/schemas/shares-members.schema.js.map +1 -0
- package/server/applications/shares/schemas/shares.schema.js +91 -0
- package/server/applications/shares/schemas/shares.schema.js.map +1 -0
- package/server/applications/shares/services/shares-manager.service.js +1010 -0
- package/server/applications/shares/services/shares-manager.service.js.map +1 -0
- package/server/applications/shares/services/shares-manager.service.spec.js +56 -0
- package/server/applications/shares/services/shares-manager.service.spec.js.map +1 -0
- package/server/applications/shares/services/shares-queries.service.js +892 -0
- package/server/applications/shares/services/shares-queries.service.js.map +1 -0
- package/server/applications/shares/shares.controller.js +293 -0
- package/server/applications/shares/shares.controller.js.map +1 -0
- package/server/applications/shares/shares.controller.spec.js +60 -0
- package/server/applications/shares/shares.controller.spec.js.map +1 -0
- package/server/applications/shares/shares.module.js +49 -0
- package/server/applications/shares/shares.module.js.map +1 -0
- package/server/applications/spaces/constants/cache.js +32 -0
- package/server/applications/spaces/constants/cache.js.map +1 -0
- package/server/applications/spaces/constants/routes.js +58 -0
- package/server/applications/spaces/constants/routes.js.map +1 -0
- package/server/applications/spaces/constants/spaces.js +104 -0
- package/server/applications/spaces/constants/spaces.js.map +1 -0
- package/server/applications/spaces/decorators/space-skip-guard.decorator.js +27 -0
- package/server/applications/spaces/decorators/space-skip-guard.decorator.js.map +1 -0
- package/server/applications/spaces/decorators/space-skip-permissions.decorator.js +27 -0
- package/server/applications/spaces/decorators/space-skip-permissions.decorator.js.map +1 -0
- package/server/applications/spaces/decorators/space.decorator.js +20 -0
- package/server/applications/spaces/decorators/space.decorator.js.map +1 -0
- package/server/applications/spaces/dto/create-or-update-space.dto.js +164 -0
- package/server/applications/spaces/dto/create-or-update-space.dto.js.map +1 -0
- package/server/applications/spaces/dto/delete-space.dto.js +33 -0
- package/server/applications/spaces/dto/delete-space.dto.js.map +1 -0
- package/server/applications/spaces/dto/search-space.dto.js +47 -0
- package/server/applications/spaces/dto/search-space.dto.js.map +1 -0
- package/server/applications/spaces/dto/space-roots.dto.js +117 -0
- package/server/applications/spaces/dto/space-roots.dto.js.map +1 -0
- package/server/applications/spaces/guards/space.guard.js +151 -0
- package/server/applications/spaces/guards/space.guard.js.map +1 -0
- package/server/applications/spaces/guards/space.guard.spec.js +457 -0
- package/server/applications/spaces/guards/space.guard.spec.js.map +1 -0
- package/server/applications/spaces/interfaces/space-diff.interface.js +10 -0
- package/server/applications/spaces/interfaces/space-diff.interface.js.map +1 -0
- package/server/applications/spaces/interfaces/space-files.interface.js +10 -0
- package/server/applications/spaces/interfaces/space-files.interface.js.map +1 -0
- package/server/applications/spaces/interfaces/space-quota.interface.js +10 -0
- package/server/applications/spaces/interfaces/space-quota.interface.js.map +1 -0
- package/server/applications/spaces/interfaces/space-request.interface.js +10 -0
- package/server/applications/spaces/interfaces/space-request.interface.js.map +1 -0
- package/server/applications/spaces/interfaces/space-trash.interface.js +10 -0
- package/server/applications/spaces/interfaces/space-trash.interface.js.map +1 -0
- package/server/applications/spaces/models/space-env.model.js +112 -0
- package/server/applications/spaces/models/space-env.model.js.map +1 -0
- package/server/applications/spaces/models/space-props.model.js +60 -0
- package/server/applications/spaces/models/space-props.model.js.map +1 -0
- package/server/applications/spaces/models/space-root-props.model.js +18 -0
- package/server/applications/spaces/models/space-root-props.model.js.map +1 -0
- package/server/applications/spaces/models/space.model.js +64 -0
- package/server/applications/spaces/models/space.model.js.map +1 -0
- package/server/applications/spaces/schemas/space-members.interface.js +18 -0
- package/server/applications/spaces/schemas/space-members.interface.js.map +1 -0
- package/server/applications/spaces/schemas/space-root.interface.js +18 -0
- package/server/applications/spaces/schemas/space-root.interface.js.map +1 -0
- package/server/applications/spaces/schemas/space.interface.js +18 -0
- package/server/applications/spaces/schemas/space.interface.js.map +1 -0
- package/server/applications/spaces/schemas/spaces-members.schema.js +73 -0
- package/server/applications/spaces/schemas/spaces-members.schema.js.map +1 -0
- package/server/applications/spaces/schemas/spaces-roots.schema.js +61 -0
- package/server/applications/spaces/schemas/spaces-roots.schema.js.map +1 -0
- package/server/applications/spaces/schemas/spaces.schema.js +63 -0
- package/server/applications/spaces/schemas/spaces.schema.js.map +1 -0
- package/server/applications/spaces/services/spaces-browser.service.js +308 -0
- package/server/applications/spaces/services/spaces-browser.service.js.map +1 -0
- package/server/applications/spaces/services/spaces-browser.service.spec.js +74 -0
- package/server/applications/spaces/services/spaces-browser.service.spec.js.map +1 -0
- package/server/applications/spaces/services/spaces-manager.service.js +818 -0
- package/server/applications/spaces/services/spaces-manager.service.js.map +1 -0
- package/server/applications/spaces/services/spaces-manager.service.spec.js +269 -0
- package/server/applications/spaces/services/spaces-manager.service.spec.js.map +1 -0
- package/server/applications/spaces/services/spaces-queries.service.js +763 -0
- package/server/applications/spaces/services/spaces-queries.service.js.map +1 -0
- package/server/applications/spaces/services/spaces-scheduler.service.js +88 -0
- package/server/applications/spaces/services/spaces-scheduler.service.js.map +1 -0
- package/server/applications/spaces/spaces.controller.js +386 -0
- package/server/applications/spaces/spaces.controller.js.map +1 -0
- package/server/applications/spaces/spaces.controller.spec.js +65 -0
- package/server/applications/spaces/spaces.controller.spec.js.map +1 -0
- package/server/applications/spaces/spaces.module.js +51 -0
- package/server/applications/spaces/spaces.module.js.map +1 -0
- package/server/applications/spaces/utils/paths.js +241 -0
- package/server/applications/spaces/utils/paths.js.map +1 -0
- package/server/applications/spaces/utils/permissions.js +88 -0
- package/server/applications/spaces/utils/permissions.js.map +1 -0
- package/server/applications/spaces/utils/routes.js +20 -0
- package/server/applications/spaces/utils/routes.js.map +1 -0
- package/server/applications/sync/constants/auth.js +38 -0
- package/server/applications/sync/constants/auth.js.map +1 -0
- package/server/applications/sync/constants/routes.js +47 -0
- package/server/applications/sync/constants/routes.js.map +1 -0
- package/server/applications/sync/constants/store.js +48 -0
- package/server/applications/sync/constants/store.js.map +1 -0
- package/server/applications/sync/constants/sync.js +128 -0
- package/server/applications/sync/constants/sync.js.map +1 -0
- package/server/applications/sync/decorators/sync-context.decorator.js +27 -0
- package/server/applications/sync/decorators/sync-context.decorator.js.map +1 -0
- package/server/applications/sync/decorators/sync-environment.decorator.js +25 -0
- package/server/applications/sync/decorators/sync-environment.decorator.js.map +1 -0
- package/server/applications/sync/dtos/sync-client-auth.dto.js +47 -0
- package/server/applications/sync/dtos/sync-client-auth.dto.js.map +1 -0
- package/server/applications/sync/dtos/sync-client-registration.dto.js +51 -0
- package/server/applications/sync/dtos/sync-client-registration.dto.js.map +1 -0
- package/server/applications/sync/dtos/sync-operations.dto.js +104 -0
- package/server/applications/sync/dtos/sync-operations.dto.js.map +1 -0
- package/server/applications/sync/dtos/sync-path.dto.js +130 -0
- package/server/applications/sync/dtos/sync-path.dto.js.map +1 -0
- package/server/applications/sync/dtos/sync-upload.dto.js +49 -0
- package/server/applications/sync/dtos/sync-upload.dto.js.map +1 -0
- package/server/applications/sync/interceptors/sync-diff-gzip-body.interceptor.js +55 -0
- package/server/applications/sync/interceptors/sync-diff-gzip-body.interceptor.js.map +1 -0
- package/server/applications/sync/interfaces/store-manifest.interface.js +10 -0
- package/server/applications/sync/interfaces/store-manifest.interface.js.map +1 -0
- package/server/applications/sync/interfaces/sync-client-auth.interface.js +30 -0
- package/server/applications/sync/interfaces/sync-client-auth.interface.js.map +1 -0
- package/server/applications/sync/interfaces/sync-client-paths.interface.js +10 -0
- package/server/applications/sync/interfaces/sync-client-paths.interface.js.map +1 -0
- package/server/applications/sync/interfaces/sync-client.interface.js +10 -0
- package/server/applications/sync/interfaces/sync-client.interface.js.map +1 -0
- package/server/applications/sync/interfaces/sync-diff.interface.js +11 -0
- package/server/applications/sync/interfaces/sync-diff.interface.js.map +1 -0
- package/server/applications/sync/interfaces/sync-path.interface.js +10 -0
- package/server/applications/sync/interfaces/sync-path.interface.js.map +1 -0
- package/server/applications/sync/schemas/sync-client.interface.js +18 -0
- package/server/applications/sync/schemas/sync-client.interface.js.map +1 -0
- package/server/applications/sync/schemas/sync-clients.schema.js +57 -0
- package/server/applications/sync/schemas/sync-clients.schema.js.map +1 -0
- package/server/applications/sync/schemas/sync-path.interface.js +18 -0
- package/server/applications/sync/schemas/sync-path.interface.js.map +1 -0
- package/server/applications/sync/schemas/sync-paths.schema.js +76 -0
- package/server/applications/sync/schemas/sync-paths.schema.js.map +1 -0
- package/server/applications/sync/services/sync-clients-manager.service.js +218 -0
- package/server/applications/sync/services/sync-clients-manager.service.js.map +1 -0
- package/server/applications/sync/services/sync-clients-manager.service.spec.js +56 -0
- package/server/applications/sync/services/sync-clients-manager.service.spec.js.map +1 -0
- package/server/applications/sync/services/sync-manager.service.js +299 -0
- package/server/applications/sync/services/sync-manager.service.js.map +1 -0
- package/server/applications/sync/services/sync-manager.service.spec.js +41 -0
- package/server/applications/sync/services/sync-manager.service.spec.js.map +1 -0
- package/server/applications/sync/services/sync-paths-manager.service.js +290 -0
- package/server/applications/sync/services/sync-paths-manager.service.js.map +1 -0
- package/server/applications/sync/services/sync-paths-manager.service.spec.js +56 -0
- package/server/applications/sync/services/sync-paths-manager.service.spec.js.map +1 -0
- package/server/applications/sync/services/sync-queries.service.js +238 -0
- package/server/applications/sync/services/sync-queries.service.js.map +1 -0
- package/server/applications/sync/sync.config.js +36 -0
- package/server/applications/sync/sync.config.js.map +1 -0
- package/server/applications/sync/sync.controller.js +407 -0
- package/server/applications/sync/sync.controller.js.map +1 -0
- package/server/applications/sync/sync.controller.spec.js +53 -0
- package/server/applications/sync/sync.controller.spec.js.map +1 -0
- package/server/applications/sync/sync.module.js +45 -0
- package/server/applications/sync/sync.module.js.map +1 -0
- package/server/applications/sync/utils/functions.js +26 -0
- package/server/applications/sync/utils/functions.js.map +1 -0
- package/server/applications/sync/utils/normalizedMap.js +52 -0
- package/server/applications/sync/utils/normalizedMap.js.map +1 -0
- package/server/applications/sync/utils/routes.js +27 -0
- package/server/applications/sync/utils/routes.js.map +1 -0
- package/server/applications/users/admin-users.controller.js +350 -0
- package/server/applications/users/admin-users.controller.js.map +1 -0
- package/server/applications/users/admin-users.controller.spec.js +60 -0
- package/server/applications/users/admin-users.controller.spec.js.map +1 -0
- package/server/applications/users/constants/group.js +35 -0
- package/server/applications/users/constants/group.js.map +1 -0
- package/server/applications/users/constants/member.js +39 -0
- package/server/applications/users/constants/member.js.map +1 -0
- package/server/applications/users/constants/routes.js +134 -0
- package/server/applications/users/constants/routes.js.map +1 -0
- package/server/applications/users/constants/user.js +118 -0
- package/server/applications/users/constants/user.js.map +1 -0
- package/server/applications/users/constants/websocket.js +33 -0
- package/server/applications/users/constants/websocket.js.map +1 -0
- package/server/applications/users/decorators/permissions.decorator.js +18 -0
- package/server/applications/users/decorators/permissions.decorator.js.map +1 -0
- package/server/applications/users/decorators/roles.decorator.js +18 -0
- package/server/applications/users/decorators/roles.decorator.js.map +1 -0
- package/server/applications/users/decorators/user.decorator.js +20 -0
- package/server/applications/users/decorators/user.decorator.js.map +1 -0
- package/server/applications/users/dto/create-or-update-group.dto.js +66 -0
- package/server/applications/users/dto/create-or-update-group.dto.js.map +1 -0
- package/server/applications/users/dto/create-or-update-user.dto.js +167 -0
- package/server/applications/users/dto/create-or-update-user.dto.js.map +1 -0
- package/server/applications/users/dto/delete-user.dto.js +54 -0
- package/server/applications/users/dto/delete-user.dto.js.map +1 -0
- package/server/applications/users/dto/search-members.dto.js +79 -0
- package/server/applications/users/dto/search-members.dto.js.map +1 -0
- package/server/applications/users/dto/user-password.dto.js +35 -0
- package/server/applications/users/dto/user-password.dto.js.map +1 -0
- package/server/applications/users/dto/user-properties.dto.js +64 -0
- package/server/applications/users/dto/user-properties.dto.js.map +1 -0
- package/server/applications/users/guards/permissions.guard.js +71 -0
- package/server/applications/users/guards/permissions.guard.js.map +1 -0
- package/server/applications/users/guards/permissions.guard.spec.js +103 -0
- package/server/applications/users/guards/permissions.guard.spec.js.map +1 -0
- package/server/applications/users/guards/roles.guard.js +62 -0
- package/server/applications/users/guards/roles.guard.js.map +1 -0
- package/server/applications/users/guards/roles.guard.spec.js +90 -0
- package/server/applications/users/guards/roles.guard.spec.js.map +1 -0
- package/server/applications/users/interfaces/admin-group.interface.js +10 -0
- package/server/applications/users/interfaces/admin-group.interface.js.map +1 -0
- package/server/applications/users/interfaces/admin-user.interface.js +10 -0
- package/server/applications/users/interfaces/admin-user.interface.js.map +1 -0
- package/server/applications/users/interfaces/group-browse.interface.js +10 -0
- package/server/applications/users/interfaces/group-browse.interface.js.map +1 -0
- package/server/applications/users/interfaces/group-member.js +10 -0
- package/server/applications/users/interfaces/group-member.js.map +1 -0
- package/server/applications/users/interfaces/guest-user.interface.js +10 -0
- package/server/applications/users/interfaces/guest-user.interface.js.map +1 -0
- package/server/applications/users/interfaces/member.interface.js +10 -0
- package/server/applications/users/interfaces/member.interface.js.map +1 -0
- package/server/applications/users/interfaces/owner.interface.js +10 -0
- package/server/applications/users/interfaces/owner.interface.js.map +1 -0
- package/server/applications/users/interfaces/websocket.interface.js +10 -0
- package/server/applications/users/interfaces/websocket.interface.js.map +1 -0
- package/server/applications/users/models/user.model.js +226 -0
- package/server/applications/users/models/user.model.js.map +1 -0
- package/server/applications/users/schemas/group.interface.js +18 -0
- package/server/applications/users/schemas/group.interface.js.map +1 -0
- package/server/applications/users/schemas/groups.schema.js +56 -0
- package/server/applications/users/schemas/groups.schema.js.map +1 -0
- package/server/applications/users/schemas/user-group.interface.js +18 -0
- package/server/applications/users/schemas/user-group.interface.js.map +1 -0
- package/server/applications/users/schemas/user.interface.js +18 -0
- package/server/applications/users/schemas/user.interface.js.map +1 -0
- package/server/applications/users/schemas/users-groups.schema.js +49 -0
- package/server/applications/users/schemas/users-groups.schema.js.map +1 -0
- package/server/applications/users/schemas/users-guests.schema.js +46 -0
- package/server/applications/users/schemas/users-guests.schema.js.map +1 -0
- package/server/applications/users/schemas/users.schema.js +94 -0
- package/server/applications/users/schemas/users.schema.js.map +1 -0
- package/server/applications/users/services/admin-users-manager.service.js +385 -0
- package/server/applications/users/services/admin-users-manager.service.js.map +1 -0
- package/server/applications/users/services/admin-users-manager.service.spec.js +50 -0
- package/server/applications/users/services/admin-users-manager.service.spec.js.map +1 -0
- package/server/applications/users/services/admin-users-queries.service.js +315 -0
- package/server/applications/users/services/admin-users-queries.service.js.map +1 -0
- package/server/applications/users/services/users-manager.service.js +424 -0
- package/server/applications/users/services/users-manager.service.js.map +1 -0
- package/server/applications/users/services/users-manager.service.spec.js +151 -0
- package/server/applications/users/services/users-manager.service.spec.js.map +1 -0
- package/server/applications/users/services/users-queries.service.js +570 -0
- package/server/applications/users/services/users-queries.service.js.map +1 -0
- package/server/applications/users/users.controller.js +371 -0
- package/server/applications/users/users.controller.js.map +1 -0
- package/server/applications/users/users.controller.spec.js +86 -0
- package/server/applications/users/users.controller.spec.js.map +1 -0
- package/server/applications/users/users.e2e-spec.js +97 -0
- package/server/applications/users/users.e2e-spec.js.map +1 -0
- package/server/applications/users/users.gateway.js +182 -0
- package/server/applications/users/users.gateway.js.map +1 -0
- package/server/applications/users/users.gateway.spec.js +36 -0
- package/server/applications/users/users.gateway.spec.js.map +1 -0
- package/server/applications/users/users.module.js +57 -0
- package/server/applications/users/users.module.js.map +1 -0
- package/server/applications/users/utils/test.js +34 -0
- package/server/applications/users/utils/test.js.map +1 -0
- package/server/applications/webdav/constants/routes.js +73 -0
- package/server/applications/webdav/constants/routes.js.map +1 -0
- package/server/applications/webdav/constants/webdav.js +168 -0
- package/server/applications/webdav/constants/webdav.js.map +1 -0
- package/server/applications/webdav/decorators/if-header.decorator.js +27 -0
- package/server/applications/webdav/decorators/if-header.decorator.js.map +1 -0
- package/server/applications/webdav/decorators/webdav-context.decorator.js +36 -0
- package/server/applications/webdav/decorators/webdav-context.decorator.js.map +1 -0
- package/server/applications/webdav/filters/webdav.filter.js +45 -0
- package/server/applications/webdav/filters/webdav.filter.js.map +1 -0
- package/server/applications/webdav/guards/webdav-protocol.guard.js +262 -0
- package/server/applications/webdav/guards/webdav-protocol.guard.js.map +1 -0
- package/server/applications/webdav/interfaces/if-header.interface.js +10 -0
- package/server/applications/webdav/interfaces/if-header.interface.js.map +1 -0
- package/server/applications/webdav/interfaces/webdav.interface.js +10 -0
- package/server/applications/webdav/interfaces/webdav.interface.js.map +1 -0
- package/server/applications/webdav/models/webdav-file.model.js +74 -0
- package/server/applications/webdav/models/webdav-file.model.js.map +1 -0
- package/server/applications/webdav/services/webdav-methods.service.js +520 -0
- package/server/applications/webdav/services/webdav-methods.service.js.map +1 -0
- package/server/applications/webdav/services/webdav-methods.service.spec.js +41 -0
- package/server/applications/webdav/services/webdav-methods.service.spec.js.map +1 -0
- package/server/applications/webdav/services/webdav-spaces.service.js +169 -0
- package/server/applications/webdav/services/webdav-spaces.service.js.map +1 -0
- package/server/applications/webdav/services/webdav-spaces.service.spec.js +36 -0
- package/server/applications/webdav/services/webdav-spaces.service.spec.js.map +1 -0
- package/server/applications/webdav/utils/if-header.js +89 -0
- package/server/applications/webdav/utils/if-header.js.map +1 -0
- package/server/applications/webdav/utils/routes.js +30 -0
- package/server/applications/webdav/utils/routes.js.map +1 -0
- package/server/applications/webdav/utils/webdav.js +167 -0
- package/server/applications/webdav/utils/webdav.js.map +1 -0
- package/server/applications/webdav/utils/xml.js +72 -0
- package/server/applications/webdav/utils/xml.js.map +1 -0
- package/server/applications/webdav/webdav.controller.js +173 -0
- package/server/applications/webdav/webdav.controller.js.map +1 -0
- package/server/applications/webdav/webdav.controller.spec.js +41 -0
- package/server/applications/webdav/webdav.controller.spec.js.map +1 -0
- package/server/applications/webdav/webdav.e2e-spec.js +69 -0
- package/server/applications/webdav/webdav.e2e-spec.js.map +1 -0
- package/server/applications/webdav/webdav.module.js +41 -0
- package/server/applications/webdav/webdav.module.js.map +1 -0
- package/server/authentication/auth.config.js +223 -0
- package/server/authentication/auth.config.js.map +1 -0
- package/server/authentication/auth.controller.js +126 -0
- package/server/authentication/auth.controller.js.map +1 -0
- package/server/authentication/auth.controller.spec.js +132 -0
- package/server/authentication/auth.controller.spec.js.map +1 -0
- package/server/authentication/auth.e2e-spec.js +340 -0
- package/server/authentication/auth.e2e-spec.js.map +1 -0
- package/server/authentication/auth.module.js +84 -0
- package/server/authentication/auth.module.js.map +1 -0
- package/server/authentication/constants/auth.js +54 -0
- package/server/authentication/constants/auth.js.map +1 -0
- package/server/authentication/constants/routes.js +55 -0
- package/server/authentication/constants/routes.js.map +1 -0
- package/server/authentication/decorators/auth-token-optional.decorator.js +26 -0
- package/server/authentication/decorators/auth-token-optional.decorator.js.map +1 -0
- package/server/authentication/decorators/auth-token-skip.decorator.js +27 -0
- package/server/authentication/decorators/auth-token-skip.decorator.js.map +1 -0
- package/server/authentication/dto/login-response.dto.js +23 -0
- package/server/authentication/dto/login-response.dto.js.map +1 -0
- package/server/authentication/dto/token-response.dto.js +44 -0
- package/server/authentication/dto/token-response.dto.js.map +1 -0
- package/server/authentication/guards/auth-anonymous.guard.js +37 -0
- package/server/authentication/guards/auth-anonymous.guard.js.map +1 -0
- package/server/authentication/guards/auth-anonymous.guard.spec.js +65 -0
- package/server/authentication/guards/auth-anonymous.guard.spec.js.map +1 -0
- package/server/authentication/guards/auth-anonymous.strategy.js +44 -0
- package/server/authentication/guards/auth-anonymous.strategy.js.map +1 -0
- package/server/authentication/guards/auth-basic.guard.js +54 -0
- package/server/authentication/guards/auth-basic.guard.js.map +1 -0
- package/server/authentication/guards/auth-basic.guard.spec.js +148 -0
- package/server/authentication/guards/auth-basic.guard.spec.js.map +1 -0
- package/server/authentication/guards/auth-basic.strategy.js +79 -0
- package/server/authentication/guards/auth-basic.strategy.js.map +1 -0
- package/server/authentication/guards/auth-digest.guard.js +24 -0
- package/server/authentication/guards/auth-digest.guard.js.map +1 -0
- package/server/authentication/guards/auth-digest.strategy.js +28 -0
- package/server/authentication/guards/auth-digest.strategy.js.map +1 -0
- package/server/authentication/guards/auth-local.guard.js +40 -0
- package/server/authentication/guards/auth-local.guard.js.map +1 -0
- package/server/authentication/guards/auth-local.guard.spec.js +87 -0
- package/server/authentication/guards/auth-local.guard.spec.js.map +1 -0
- package/server/authentication/guards/auth-local.strategy.js +59 -0
- package/server/authentication/guards/auth-local.strategy.js.map +1 -0
- package/server/authentication/guards/auth-token-access.guard.js +66 -0
- package/server/authentication/guards/auth-token-access.guard.js.map +1 -0
- package/server/authentication/guards/auth-token-access.guard.spec.js +262 -0
- package/server/authentication/guards/auth-token-access.guard.spec.js.map +1 -0
- package/server/authentication/guards/auth-token-access.strategy.js +68 -0
- package/server/authentication/guards/auth-token-access.strategy.js.map +1 -0
- package/server/authentication/guards/auth-token-refresh.guard.js +40 -0
- package/server/authentication/guards/auth-token-refresh.guard.js.map +1 -0
- package/server/authentication/guards/auth-token-refresh.guard.spec.js +189 -0
- package/server/authentication/guards/auth-token-refresh.guard.spec.js.map +1 -0
- package/server/authentication/guards/auth-token-refresh.strategy.js +72 -0
- package/server/authentication/guards/auth-token-refresh.strategy.js.map +1 -0
- package/server/authentication/interfaces/auth-request.interface.js +10 -0
- package/server/authentication/interfaces/auth-request.interface.js.map +1 -0
- package/server/authentication/interfaces/jwt-payload.interface.js +28 -0
- package/server/authentication/interfaces/jwt-payload.interface.js.map +1 -0
- package/server/authentication/interfaces/token.interface.js +23 -0
- package/server/authentication/interfaces/token.interface.js.map +1 -0
- package/server/authentication/models/auth-method.js +18 -0
- package/server/authentication/models/auth-method.js.map +1 -0
- package/server/authentication/services/auth-manager.service.js +174 -0
- package/server/authentication/services/auth-manager.service.js.map +1 -0
- package/server/authentication/services/auth-manager.service.spec.js +41 -0
- package/server/authentication/services/auth-manager.service.spec.js.map +1 -0
- package/server/authentication/services/auth-methods/auth-method-database.service.js +55 -0
- package/server/authentication/services/auth-methods/auth-method-database.service.js.map +1 -0
- package/server/authentication/services/auth-methods/auth-method-database.service.spec.js +88 -0
- package/server/authentication/services/auth-methods/auth-method-database.service.spec.js.map +1 -0
- package/server/authentication/services/auth-methods/auth-method-ldap.service.js +185 -0
- package/server/authentication/services/auth-methods/auth-method-ldap.service.js.map +1 -0
- package/server/authentication/services/auth-methods/auth-method-ldap.service.spec.js +36 -0
- package/server/authentication/services/auth-methods/auth-method-ldap.service.spec.js.map +1 -0
- package/server/common/constants.js +23 -0
- package/server/common/constants.js.map +1 -0
- package/server/common/decorators.js +35 -0
- package/server/common/decorators.js.map +1 -0
- package/server/common/fonts/avatar.ttf +0 -0
- package/server/common/functions.js +292 -0
- package/server/common/functions.js.map +1 -0
- package/server/common/image.js +113 -0
- package/server/common/image.js.map +1 -0
- package/server/common/interfaces.js +10 -0
- package/server/common/interfaces.js.map +1 -0
- package/server/common/shared.js +105 -0
- package/server/common/shared.js.map +1 -0
- package/server/configuration/config.constants.js +65 -0
- package/server/configuration/config.constants.js.map +1 -0
- package/server/configuration/config.environment.js +57 -0
- package/server/configuration/config.environment.js.map +1 -0
- package/server/configuration/config.loader.js +195 -0
- package/server/configuration/config.loader.js.map +1 -0
- package/server/configuration/config.logger.js +69 -0
- package/server/configuration/config.logger.js.map +1 -0
- package/server/configuration/config.validation.js +175 -0
- package/server/configuration/config.validation.js.map +1 -0
- package/server/infrastructure/cache/adapters/mysql-cache.adapter.js +169 -0
- package/server/infrastructure/cache/adapters/mysql-cache.adapter.js.map +1 -0
- package/server/infrastructure/cache/adapters/redis-cache.adapter.js +129 -0
- package/server/infrastructure/cache/adapters/redis-cache.adapter.js.map +1 -0
- package/server/infrastructure/cache/cache.config.js +53 -0
- package/server/infrastructure/cache/cache.config.js.map +1 -0
- package/server/infrastructure/cache/cache.decorator.js +53 -0
- package/server/infrastructure/cache/cache.decorator.js.map +1 -0
- package/server/infrastructure/cache/cache.e2e-spec.js +111 -0
- package/server/infrastructure/cache/cache.e2e-spec.js.map +1 -0
- package/server/infrastructure/cache/cache.module.js +58 -0
- package/server/infrastructure/cache/cache.module.js.map +1 -0
- package/server/infrastructure/cache/schemas/mysql-cache.interface.js +18 -0
- package/server/infrastructure/cache/schemas/mysql-cache.interface.js.map +1 -0
- package/server/infrastructure/cache/schemas/mysql-cache.schema.js +26 -0
- package/server/infrastructure/cache/schemas/mysql-cache.schema.js.map +1 -0
- package/server/infrastructure/cache/services/cache.service.js +18 -0
- package/server/infrastructure/cache/services/cache.service.js.map +1 -0
- package/server/infrastructure/context/context.module.js +40 -0
- package/server/infrastructure/context/context.module.js.map +1 -0
- package/server/infrastructure/context/interceptors/context.interceptor.js +45 -0
- package/server/infrastructure/context/interceptors/context.interceptor.js.map +1 -0
- package/server/infrastructure/context/interfaces/context-store.interface.js +10 -0
- package/server/infrastructure/context/interfaces/context-store.interface.js.map +1 -0
- package/server/infrastructure/context/services/context-manager.service.js +43 -0
- package/server/infrastructure/context/services/context-manager.service.js.map +1 -0
- package/server/infrastructure/database/configuration.js +29 -0
- package/server/infrastructure/database/configuration.js.map +1 -0
- package/server/infrastructure/database/constants.js +41 -0
- package/server/infrastructure/database/constants.js.map +1 -0
- package/server/infrastructure/database/database.config.js +44 -0
- package/server/infrastructure/database/database.config.js.map +1 -0
- package/server/infrastructure/database/database.logger.js +22 -0
- package/server/infrastructure/database/database.logger.js.map +1 -0
- package/server/infrastructure/database/database.module.js +94 -0
- package/server/infrastructure/database/database.module.js.map +1 -0
- package/server/infrastructure/database/interfaces/database.interface.js +10 -0
- package/server/infrastructure/database/interfaces/database.interface.js.map +1 -0
- package/server/infrastructure/database/schema.js +40 -0
- package/server/infrastructure/database/schema.js.map +1 -0
- package/server/infrastructure/database/scripts/create-user.js +97 -0
- package/server/infrastructure/database/scripts/create-user.js.map +1 -0
- package/server/infrastructure/database/scripts/db.js +68 -0
- package/server/infrastructure/database/scripts/db.js.map +1 -0
- package/server/infrastructure/database/scripts/seed/main.js +18 -0
- package/server/infrastructure/database/scripts/seed/main.js.map +1 -0
- package/server/infrastructure/database/scripts/seed/usersgroups.js +92 -0
- package/server/infrastructure/database/scripts/seed/usersgroups.js.map +1 -0
- package/server/infrastructure/database/utils.js +117 -0
- package/server/infrastructure/database/utils.js.map +1 -0
- package/server/infrastructure/mailer/interfaces/mail.interface.js +10 -0
- package/server/infrastructure/mailer/interfaces/mail.interface.js.map +1 -0
- package/server/infrastructure/mailer/mailer.config.js +94 -0
- package/server/infrastructure/mailer/mailer.config.js.map +1 -0
- package/server/infrastructure/mailer/mailer.module.js +37 -0
- package/server/infrastructure/mailer/mailer.module.js.map +1 -0
- package/server/infrastructure/mailer/mailer.service.js +93 -0
- package/server/infrastructure/mailer/mailer.service.js.map +1 -0
- package/server/infrastructure/scheduler/scheduler.constants.js +30 -0
- package/server/infrastructure/scheduler/scheduler.constants.js.map +1 -0
- package/server/infrastructure/scheduler/scheduler.module.js +52 -0
- package/server/infrastructure/scheduler/scheduler.module.js.map +1 -0
- package/server/infrastructure/websocket/adapters/cluster.adapter.js +40 -0
- package/server/infrastructure/websocket/adapters/cluster.adapter.js.map +1 -0
- package/server/infrastructure/websocket/adapters/redis.adapter.js +61 -0
- package/server/infrastructure/websocket/adapters/redis.adapter.js.map +1 -0
- package/server/infrastructure/websocket/adapters/web-socket.adapter.js +127 -0
- package/server/infrastructure/websocket/adapters/web-socket.adapter.js.map +1 -0
- package/server/infrastructure/websocket/decorators/web-socket-user.decorator.js +20 -0
- package/server/infrastructure/websocket/decorators/web-socket-user.decorator.js.map +1 -0
- package/server/infrastructure/websocket/interfaces/auth-socket-io.interface.js +10 -0
- package/server/infrastructure/websocket/interfaces/auth-socket-io.interface.js.map +1 -0
- package/server/infrastructure/websocket/utils.js +23 -0
- package/server/infrastructure/websocket/utils.js.map +1 -0
- package/server/infrastructure/websocket/web-socket.config.js +54 -0
- package/server/infrastructure/websocket/web-socket.config.js.map +1 -0
- package/server/main.js +27 -0
- package/server/main.js.map +1 -0
- package/static/3rdpartylicenses.txt +1522 -0
- package/static/assets/avatar.svg +7 -0
- package/static/assets/codemirror/mode/apl/apl.js +174 -0
- package/static/assets/codemirror/mode/asciiarmor/asciiarmor.js +74 -0
- package/static/assets/codemirror/mode/asn.1/asn.1.js +204 -0
- package/static/assets/codemirror/mode/asterisk/asterisk.js +220 -0
- package/static/assets/codemirror/mode/brainfuck/brainfuck.js +85 -0
- package/static/assets/codemirror/mode/clike/clike.js +942 -0
- package/static/assets/codemirror/mode/clojure/clojure.js +293 -0
- package/static/assets/codemirror/mode/cmake/cmake.js +97 -0
- package/static/assets/codemirror/mode/cobol/cobol.js +255 -0
- package/static/assets/codemirror/mode/coffeescript/coffeescript.js +359 -0
- package/static/assets/codemirror/mode/commonlisp/commonlisp.js +125 -0
- package/static/assets/codemirror/mode/crystal/crystal.js +433 -0
- package/static/assets/codemirror/mode/css/css.js +862 -0
- package/static/assets/codemirror/mode/cypher/cypher.js +152 -0
- package/static/assets/codemirror/mode/d/d.js +223 -0
- package/static/assets/codemirror/mode/dart/dart.js +168 -0
- package/static/assets/codemirror/mode/diff/diff.js +47 -0
- package/static/assets/codemirror/mode/django/django.js +356 -0
- package/static/assets/codemirror/mode/dockerfile/dockerfile.js +211 -0
- package/static/assets/codemirror/mode/dtd/dtd.js +142 -0
- package/static/assets/codemirror/mode/dylan/dylan.js +352 -0
- package/static/assets/codemirror/mode/ebnf/ebnf.js +195 -0
- package/static/assets/codemirror/mode/ecl/ecl.js +206 -0
- package/static/assets/codemirror/mode/eiffel/eiffel.js +160 -0
- package/static/assets/codemirror/mode/elm/elm.js +245 -0
- package/static/assets/codemirror/mode/erlang/erlang.js +619 -0
- package/static/assets/codemirror/mode/factor/factor.js +85 -0
- package/static/assets/codemirror/mode/fcl/fcl.js +173 -0
- package/static/assets/codemirror/mode/forth/forth.js +180 -0
- package/static/assets/codemirror/mode/fortran/fortran.js +188 -0
- package/static/assets/codemirror/mode/gas/gas.js +353 -0
- package/static/assets/codemirror/mode/gfm/gfm.js +129 -0
- package/static/assets/codemirror/mode/gherkin/gherkin.js +194 -0
- package/static/assets/codemirror/mode/go/go.js +187 -0
- package/static/assets/codemirror/mode/groovy/groovy.js +245 -0
- package/static/assets/codemirror/mode/haml/haml.js +161 -0
- package/static/assets/codemirror/mode/handlebars/handlebars.js +70 -0
- package/static/assets/codemirror/mode/haskell/haskell.js +268 -0
- package/static/assets/codemirror/mode/haskell-literate/haskell-literate.js +43 -0
- package/static/assets/codemirror/mode/haxe/haxe.js +515 -0
- package/static/assets/codemirror/mode/htmlembedded/htmlembedded.js +37 -0
- package/static/assets/codemirror/mode/htmlmixed/htmlmixed.js +153 -0
- package/static/assets/codemirror/mode/http/http.js +113 -0
- package/static/assets/codemirror/mode/idl/idl.js +290 -0
- package/static/assets/codemirror/mode/javascript/javascript.js +960 -0
- package/static/assets/codemirror/mode/jinja2/jinja2.js +193 -0
- package/static/assets/codemirror/mode/jsx/jsx.js +149 -0
- package/static/assets/codemirror/mode/julia/julia.js +390 -0
- package/static/assets/codemirror/mode/livescript/livescript.js +280 -0
- package/static/assets/codemirror/mode/lua/lua.js +160 -0
- package/static/assets/codemirror/mode/markdown/markdown.js +886 -0
- package/static/assets/codemirror/mode/mathematica/mathematica.js +176 -0
- package/static/assets/codemirror/mode/mbox/mbox.js +129 -0
- package/static/assets/codemirror/mode/meta.js +221 -0
- package/static/assets/codemirror/mode/mirc/mirc.js +193 -0
- package/static/assets/codemirror/mode/mllike/mllike.js +359 -0
- package/static/assets/codemirror/mode/modelica/modelica.js +245 -0
- package/static/assets/codemirror/mode/mscgen/mscgen.js +175 -0
- package/static/assets/codemirror/mode/mumps/mumps.js +148 -0
- package/static/assets/codemirror/mode/nginx/nginx.js +178 -0
- package/static/assets/codemirror/mode/nsis/nsis.js +95 -0
- package/static/assets/codemirror/mode/ntriples/ntriples.js +195 -0
- package/static/assets/codemirror/mode/octave/octave.js +139 -0
- package/static/assets/codemirror/mode/oz/oz.js +252 -0
- package/static/assets/codemirror/mode/pascal/pascal.js +136 -0
- package/static/assets/codemirror/mode/pegjs/pegjs.js +111 -0
- package/static/assets/codemirror/mode/perl/perl.js +836 -0
- package/static/assets/codemirror/mode/php/php.js +234 -0
- package/static/assets/codemirror/mode/pig/pig.js +178 -0
- package/static/assets/codemirror/mode/powershell/powershell.js +398 -0
- package/static/assets/codemirror/mode/properties/properties.js +78 -0
- package/static/assets/codemirror/mode/protobuf/protobuf.js +72 -0
- package/static/assets/codemirror/mode/pug/pug.js +591 -0
- package/static/assets/codemirror/mode/puppet/puppet.js +220 -0
- package/static/assets/codemirror/mode/python/python.js +402 -0
- package/static/assets/codemirror/mode/q/q.js +139 -0
- package/static/assets/codemirror/mode/r/r.js +190 -0
- package/static/assets/codemirror/mode/rpm/changes/index.html +66 -0
- package/static/assets/codemirror/mode/rpm/rpm.js +109 -0
- package/static/assets/codemirror/mode/rst/rst.js +557 -0
- package/static/assets/codemirror/mode/ruby/ruby.js +303 -0
- package/static/assets/codemirror/mode/rust/rust.js +72 -0
- package/static/assets/codemirror/mode/sas/sas.js +303 -0
- package/static/assets/codemirror/mode/sass/sass.js +459 -0
- package/static/assets/codemirror/mode/scheme/scheme.js +284 -0
- package/static/assets/codemirror/mode/shell/shell.js +168 -0
- package/static/assets/codemirror/mode/sieve/sieve.js +193 -0
- package/static/assets/codemirror/mode/slim/slim.js +575 -0
- package/static/assets/codemirror/mode/smalltalk/smalltalk.js +168 -0
- package/static/assets/codemirror/mode/smarty/smarty.js +225 -0
- package/static/assets/codemirror/mode/solr/solr.js +104 -0
- package/static/assets/codemirror/mode/soy/soy.js +665 -0
- package/static/assets/codemirror/mode/sparql/sparql.js +184 -0
- package/static/assets/codemirror/mode/spreadsheet/spreadsheet.js +112 -0
- package/static/assets/codemirror/mode/sql/sql.js +529 -0
- package/static/assets/codemirror/mode/stex/stex.js +264 -0
- package/static/assets/codemirror/mode/stylus/stylus.js +775 -0
- package/static/assets/codemirror/mode/swift/swift.js +221 -0
- package/static/assets/codemirror/mode/tcl/tcl.js +140 -0
- package/static/assets/codemirror/mode/textile/textile.js +469 -0
- package/static/assets/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
- package/static/assets/codemirror/mode/tiddlywiki/tiddlywiki.js +308 -0
- package/static/assets/codemirror/mode/tiki/tiki.css +26 -0
- package/static/assets/codemirror/mode/tiki/tiki.js +312 -0
- package/static/assets/codemirror/mode/toml/toml.js +88 -0
- package/static/assets/codemirror/mode/tornado/tornado.js +68 -0
- package/static/assets/codemirror/mode/troff/troff.js +84 -0
- package/static/assets/codemirror/mode/ttcn/ttcn.js +283 -0
- package/static/assets/codemirror/mode/ttcn-cfg/ttcn-cfg.js +214 -0
- package/static/assets/codemirror/mode/turtle/turtle.js +162 -0
- package/static/assets/codemirror/mode/twig/twig.js +141 -0
- package/static/assets/codemirror/mode/vb/vb.js +275 -0
- package/static/assets/codemirror/mode/vbscript/vbscript.js +350 -0
- package/static/assets/codemirror/mode/velocity/velocity.js +202 -0
- package/static/assets/codemirror/mode/verilog/verilog.js +781 -0
- package/static/assets/codemirror/mode/vhdl/vhdl.js +189 -0
- package/static/assets/codemirror/mode/vue/vue.js +77 -0
- package/static/assets/codemirror/mode/wast/wast.js +132 -0
- package/static/assets/codemirror/mode/webidl/webidl.js +195 -0
- package/static/assets/codemirror/mode/xml/xml.js +417 -0
- package/static/assets/codemirror/mode/xquery/xquery.js +448 -0
- package/static/assets/codemirror/mode/yacas/yacas.js +204 -0
- package/static/assets/codemirror/mode/yaml/yaml.js +120 -0
- package/static/assets/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js +72 -0
- package/static/assets/codemirror/mode/z80/z80.js +116 -0
- package/static/assets/favicon.svg +25 -0
- package/static/assets/logo-dark.svg +32 -0
- package/static/assets/logo.svg +32 -0
- package/static/assets/mimes/7zip.svg +14 -0
- package/static/assets/mimes/application-7zip.svg +14 -0
- package/static/assets/mimes/application-atom+xml.svg +15 -0
- package/static/assets/mimes/application-atom.svg +15 -0
- package/static/assets/mimes/application-certificate.svg +28 -0
- package/static/assets/mimes/application-epub+zip.svg +10 -0
- package/static/assets/mimes/application-gzip.svg +16 -0
- package/static/assets/mimes/application-javascript.svg +6 -0
- package/static/assets/mimes/application-json.svg +11 -0
- package/static/assets/mimes/application-mathml+xml.svg +188 -0
- package/static/assets/mimes/application-mp4.svg +18 -0
- package/static/assets/mimes/application-msexcel.svg +1 -0
- package/static/assets/mimes/application-msword-template.svg +1 -0
- package/static/assets/mimes/application-msword.svg +1 -0
- package/static/assets/mimes/application-octet-stream.svg +273 -0
- package/static/assets/mimes/application-pdf.svg +13 -0
- package/static/assets/mimes/application-pgp-encrypted.svg +16 -0
- package/static/assets/mimes/application-pgp-keys.svg +16 -0
- package/static/assets/mimes/application-pgp-signature.svg +16 -0
- package/static/assets/mimes/application-pgp.svg +16 -0
- package/static/assets/mimes/application-postscript.svg +57 -0
- package/static/assets/mimes/application-powerpoint.svg +1 -0
- package/static/assets/mimes/application-rdf+xml.svg +14 -0
- package/static/assets/mimes/application-rss+xml.svg +15 -0
- package/static/assets/mimes/application-rtf.svg +14 -0
- package/static/assets/mimes/application-script-blank.svg +15 -0
- package/static/assets/mimes/application-sql.svg +1 -0
- package/static/assets/mimes/application-text.svg +14 -0
- package/static/assets/mimes/application-vnd.android.package-archive.svg +16 -0
- package/static/assets/mimes/application-vnd.apple.keynote.svg +16 -0
- package/static/assets/mimes/application-vnd.apple.numbers.svg +16 -0
- package/static/assets/mimes/application-vnd.apple.pages.svg +16 -0
- package/static/assets/mimes/application-vnd.ms-excel.sheet.binary.macroenabled.12.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-excel.sheet.macroenabled.12.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-excel.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-excel.template.macroenabled.12.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-powerpoint.presentation.macroenabled.12.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-powerpoint.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-powerpoint.template.macroenabled.12.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-word.document.macroenabled.12.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-word.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-word.template.macroenabled.12.svg +1 -0
- package/static/assets/mimes/application-vnd.mspowerpoint.svg +1 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.chart.svg +1 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.database.svg +155 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.formula-template.svg +263 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.formula.svg +188 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.graphics-template.svg +530 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.graphics.svg +89 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.presentation-template.svg +197 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.presentation.svg +122 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.spreadsheet-template.svg +452 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.spreadsheet.svg +266 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.text-master.svg +92 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.text-template.svg +90 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.text-web.svg +18 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.text.svg +92 -0
- package/static/assets/mimes/application-vnd.openofficeorg.extension.svg +59 -0
- package/static/assets/mimes/application-vnd.openxmlformats-officedocument.presentationml.presentation.svg +1 -0
- package/static/assets/mimes/application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg +1 -0
- package/static/assets/mimes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg +1 -0
- package/static/assets/mimes/application-vnd.openxmlformats-officedocument.spreadsheetml.template.svg +1 -0
- package/static/assets/mimes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg +1 -0
- package/static/assets/mimes/application-vnd.openxmlformats-officedocument.wordprocessingml.template.svg +1 -0
- package/static/assets/mimes/application-vnd.rn-realmedia.svg +18 -0
- package/static/assets/mimes/application-vnd.sun.xml.calc.svg +1 -0
- package/static/assets/mimes/application-vnd.sun.xml.writer-global.svg +1 -0
- package/static/assets/mimes/application-vnd.sun.xml.writer-template.svg +1 -0
- package/static/assets/mimes/application-vnd.sun.xml.writer.svg +1 -0
- package/static/assets/mimes/application-vnd.sun.xml.writer.template.svg +14 -0
- package/static/assets/mimes/application-vnd.visio.svg +26 -0
- package/static/assets/mimes/application-wps-office.doc.svg +1 -0
- package/static/assets/mimes/application-wps-office.docx.svg +1 -0
- package/static/assets/mimes/application-wps-office.ppt.svg +1 -0
- package/static/assets/mimes/application-wps-office.pptx.svg +1 -0
- package/static/assets/mimes/application-wps-office.xls.svg +1 -0
- package/static/assets/mimes/application-wps-office.xlsx.svg +1 -0
- package/static/assets/mimes/application-x-7z-compressed.svg +14 -0
- package/static/assets/mimes/application-x-7zip.svg +14 -0
- package/static/assets/mimes/application-x-ace.svg +14 -0
- package/static/assets/mimes/application-x-addon.svg +59 -0
- package/static/assets/mimes/application-x-apple-diskimage.svg +1 -0
- package/static/assets/mimes/application-x-ar.svg +16 -0
- package/static/assets/mimes/application-x-arc.svg +14 -0
- package/static/assets/mimes/application-x-archive.svg +16 -0
- package/static/assets/mimes/application-x-arj.svg +14 -0
- package/static/assets/mimes/application-x-audacity-project.svg +24 -0
- package/static/assets/mimes/application-x-bittorrent.svg +53 -0
- package/static/assets/mimes/application-x-blender.svg +353 -0
- package/static/assets/mimes/application-x-bzdvi.svg +14 -0
- package/static/assets/mimes/application-x-bzip-compressed-tar.svg +14 -0
- package/static/assets/mimes/application-x-bzip.svg +16 -0
- package/static/assets/mimes/application-x-cd-image.svg +292 -0
- package/static/assets/mimes/application-x-cda.svg +358 -0
- package/static/assets/mimes/application-x-class-file.svg +37 -0
- package/static/assets/mimes/application-x-compress-tar.svg +16 -0
- package/static/assets/mimes/application-x-compress.svg +16 -0
- package/static/assets/mimes/application-x-compressed-tar.svg +14 -0
- package/static/assets/mimes/application-x-core.svg +20 -0
- package/static/assets/mimes/application-x-cpio.svg +16 -0
- package/static/assets/mimes/application-x-deb.svg +14 -0
- package/static/assets/mimes/application-x-designer.svg +48 -0
- package/static/assets/mimes/application-x-egon.svg +12 -0
- package/static/assets/mimes/application-x-executable.svg +40 -0
- package/static/assets/mimes/application-x-extension-html.svg +18 -0
- package/static/assets/mimes/application-x-font-afm.svg +14 -0
- package/static/assets/mimes/application-x-font-snf.svg +14 -0
- package/static/assets/mimes/application-x-font-speedo.svg +14 -0
- package/static/assets/mimes/application-x-font-type1.svg +14 -0
- package/static/assets/mimes/application-x-gettext-translation.svg +14 -0
- package/static/assets/mimes/application-x-glade.svg +48 -0
- package/static/assets/mimes/application-x-gnome-theme-package.svg +109 -0
- package/static/assets/mimes/application-x-gzdvi.svg +16 -0
- package/static/assets/mimes/application-x-gzip.svg +16 -0
- package/static/assets/mimes/application-x-httpd-php.svg +18 -0
- package/static/assets/mimes/application-x-iso9660-image.svg +292 -0
- package/static/assets/mimes/application-x-java-archive.svg +16 -0
- package/static/assets/mimes/application-x-java.svg +37 -0
- package/static/assets/mimes/application-x-jokosher.svg +24 -0
- package/static/assets/mimes/application-x-kcachegrind.svg +273 -0
- package/static/assets/mimes/application-x-kcsrc.svg +109 -0
- package/static/assets/mimes/application-x-keepass.svg +2 -0
- package/static/assets/mimes/application-x-keepass2.svg +2 -0
- package/static/assets/mimes/application-x-kgetlist.svg +53 -0
- package/static/assets/mimes/application-x-lha.svg +14 -0
- package/static/assets/mimes/application-x-lzma-compressed-tar.svg +16 -0
- package/static/assets/mimes/application-x-lzop.svg +16 -0
- package/static/assets/mimes/application-x-m4.svg +14 -0
- package/static/assets/mimes/application-x-matroska.svg +18 -0
- package/static/assets/mimes/application-x-mplayer2.svg +18 -0
- package/static/assets/mimes/application-x-ms-application.svg +306 -0
- package/static/assets/mimes/application-x-ms-dos-executable.svg +306 -0
- package/static/assets/mimes/application-x-msdos-program.svg +306 -0
- package/static/assets/mimes/application-x-msdownload.svg +306 -0
- package/static/assets/mimes/application-x-msi.svg +306 -0
- package/static/assets/mimes/application-x-mswinurl.svg +18 -0
- package/static/assets/mimes/application-x-mswrite.svg +1 -0
- package/static/assets/mimes/application-x-nzb.svg +15 -0
- package/static/assets/mimes/application-x-object.svg +273 -0
- package/static/assets/mimes/application-x-ole-storage.svg +273 -0
- package/static/assets/mimes/application-x-pak.svg +16 -0
- package/static/assets/mimes/application-x-perl.svg +15 -0
- package/static/assets/mimes/application-x-php.svg +18 -0
- package/static/assets/mimes/application-x-plasma.svg +20 -0
- package/static/assets/mimes/application-x-python-bytecode.svg +16 -0
- package/static/assets/mimes/application-x-rar.svg +14 -0
- package/static/assets/mimes/application-x-rpm.svg +14 -0
- package/static/assets/mimes/application-x-ruby.svg +22 -0
- package/static/assets/mimes/application-x-sh.svg +17 -0
- package/static/assets/mimes/application-x-shared-library-la.svg +62 -0
- package/static/assets/mimes/application-x-sharedlib.svg +62 -0
- package/static/assets/mimes/application-x-shellscript.svg +17 -0
- package/static/assets/mimes/application-x-shockwave-flash.svg +18 -0
- package/static/assets/mimes/application-x-srt.svg +210 -0
- package/static/assets/mimes/application-x-subrip.svg +210 -0
- package/static/assets/mimes/application-x-tar.svg +16 -0
- package/static/assets/mimes/application-x-tarz.svg +14 -0
- package/static/assets/mimes/application-x-tex.svg +79 -0
- package/static/assets/mimes/application-x-theme.svg +109 -0
- package/static/assets/mimes/application-x-trash.svg +14 -0
- package/static/assets/mimes/application-x-tzo.svg +14 -0
- package/static/assets/mimes/application-x-wine-extension-pdd.svg +14 -0
- package/static/assets/mimes/application-x-zip.svg +14 -0
- package/static/assets/mimes/application-x-zoo.svg +14 -0
- package/static/assets/mimes/application-xhtml+xml.svg +18 -0
- package/static/assets/mimes/application-xhtml.svg +18 -0
- package/static/assets/mimes/application-xml.svg +18 -0
- package/static/assets/mimes/application-xsd.svg +18 -0
- package/static/assets/mimes/application-xslt+xml.svg +18 -0
- package/static/assets/mimes/application-zip.svg +14 -0
- package/static/assets/mimes/applications-java.svg +14 -0
- package/static/assets/mimes/archive.svg +16 -0
- package/static/assets/mimes/ascii.svg +14 -0
- package/static/assets/mimes/audio-ac3.svg +24 -0
- package/static/assets/mimes/audio-flac.svg +24 -0
- package/static/assets/mimes/audio-mpeg.svg +24 -0
- package/static/assets/mimes/audio-vn.rn-realmedia.svg +18 -0
- package/static/assets/mimes/audio-vnd.rn-realvideo.svg +18 -0
- package/static/assets/mimes/audio-x-adpcm.svg +24 -0
- package/static/assets/mimes/audio-x-aiff.svg +24 -0
- package/static/assets/mimes/audio-x-flac+ogg.svg +24 -0
- package/static/assets/mimes/audio-x-flac.svg +24 -0
- package/static/assets/mimes/audio-x-generic.svg +24 -0
- package/static/assets/mimes/audio-x-it.svg +24 -0
- package/static/assets/mimes/audio-x-monkey.svg +24 -0
- package/static/assets/mimes/audio-x-mpegurl.svg +24 -0
- package/static/assets/mimes/audio-x-wav.svg +24 -0
- package/static/assets/mimes/audio-x-xi.svg +24 -0
- package/static/assets/mimes/audio-x-xm.svg +24 -0
- package/static/assets/mimes/binary.svg +40 -0
- package/static/assets/mimes/deb.svg +14 -0
- package/static/assets/mimes/directory.svg +9 -0
- package/static/assets/mimes/directory_disabled.svg +9 -0
- package/static/assets/mimes/directory_error.svg +9 -0
- package/static/assets/mimes/directory_share.svg +9 -0
- package/static/assets/mimes/directory_sync.svg +9 -0
- package/static/assets/mimes/divx.svg +18 -0
- package/static/assets/mimes/document.svg +14 -0
- package/static/assets/mimes/emblem-package.svg +16 -0
- package/static/assets/mimes/eps.svg +24 -0
- package/static/assets/mimes/exec.svg +40 -0
- package/static/assets/mimes/extension.svg +59 -0
- package/static/assets/mimes/file.svg +12 -0
- package/static/assets/mimes/folder-tar.svg +16 -0
- package/static/assets/mimes/folder_tar.svg +16 -0
- package/static/assets/mimes/font-otf.svg +14 -0
- package/static/assets/mimes/font-x-generic.svg +14 -0
- package/static/assets/mimes/font.svg +14 -0
- package/static/assets/mimes/font_bitmap.svg +14 -0
- package/static/assets/mimes/font_truetype.svg +14 -0
- package/static/assets/mimes/font_type1.svg +14 -0
- package/static/assets/mimes/fonts-package.svg +16 -0
- package/static/assets/mimes/gedit-plugin.svg +59 -0
- package/static/assets/mimes/gnome-exe-thumbnailer-generic-x.svg +306 -0
- package/static/assets/mimes/gnome-exe-thumbnailer-generic.svg +306 -0
- package/static/assets/mimes/gnome-exe-thumbnailer-template.svg +306 -0
- package/static/assets/mimes/gnome-fs-executable.svg +40 -0
- package/static/assets/mimes/gnome-mime-application-atom+xml.svg +15 -0
- package/static/assets/mimes/gnome-mime-application-msexcel.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-msword.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-ogg.svg +24 -0
- package/static/assets/mimes/gnome-mime-application-pdf.svg +13 -0
- package/static/assets/mimes/gnome-mime-application-postscript.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-powerpoint.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-rss+xml.svg +15 -0
- package/static/assets/mimes/gnome-mime-application-rtf.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-vnd.ms-excel.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.ms-powerpoint.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.ms-word.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.mspowerpoint.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.oasis.opendocument.formula.svg +188 -0
- package/static/assets/mimes/gnome-mime-application-vnd.oasis.opendocument.text-web.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-vnd.openxmlformats-officedocument.presentationml.presentation.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.rn-realmedia-secure.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-vnd.rn-realmedia-vbr.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-vnd.rn-realmedia.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-wps-office.doc.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-wps-office.docx.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-wps-office.ppt.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-wps-office.pptx.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-wps-office.xls.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-wps-office.xlsx.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-x-7z-compressed.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-7zip.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-archive.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-arj.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-bittorrent.svg +53 -0
- package/static/assets/mimes/gnome-mime-application-x-bzip-compressed-tar.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-bzip-compressed.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-bzip.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-class-file.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-compress.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-compressed-tar.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-cpio-compressed.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-cpio.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-deb.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-designer.svg +48 -0
- package/static/assets/mimes/gnome-mime-application-x-executable.svg +40 -0
- package/static/assets/mimes/gnome-mime-application-x-font-afm.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-font-bdf.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-font-linux-psf.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-font-pcf.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-font-sunos-news.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-font-ttf.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-glade.svg +48 -0
- package/static/assets/mimes/gnome-mime-application-x-gnome-app-info.svg +109 -0
- package/static/assets/mimes/gnome-mime-application-x-gnome-theme-package.svg +109 -0
- package/static/assets/mimes/gnome-mime-application-x-gzip.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-gzpostscript.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-jar.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-java.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-killustrator.svg +12 -0
- package/static/assets/mimes/gnome-mime-application-x-lha.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-lhz.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-lzma-compressed-tar.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-lzma.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-ms-dos-executable.svg +306 -0
- package/static/assets/mimes/gnome-mime-application-x-perl.svg +15 -0
- package/static/assets/mimes/gnome-mime-application-x-php.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-x-python-bytecode.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-rar.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-rpm.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-ruby.svg +22 -0
- package/static/assets/mimes/gnome-mime-application-x-shellscript.svg +17 -0
- package/static/assets/mimes/gnome-mime-application-x-shockwave-flash.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-x-stuffit.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-tar.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-tarz.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-tex.svg +79 -0
- package/static/assets/mimes/gnome-mime-application-x-theme.svg +109 -0
- package/static/assets/mimes/gnome-mime-application-x-zip.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-xhtml+xml.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-xml.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-zip.svg +14 -0
- package/static/assets/mimes/gnome-mime-application.svg +40 -0
- package/static/assets/mimes/gnome-mime-audio.svg +24 -0
- package/static/assets/mimes/gnome-mime-image-vnd.adobe.photoshop.svg +14 -0
- package/static/assets/mimes/gnome-mime-image-x-cmu-raster.svg +12 -0
- package/static/assets/mimes/gnome-mime-image-x-killustrator.svg +12 -0
- package/static/assets/mimes/gnome-mime-image-x-psd.svg +14 -0
- package/static/assets/mimes/gnome-mime-image-x-xpixmap.svg +12 -0
- package/static/assets/mimes/gnome-mime-image.svg +12 -0
- package/static/assets/mimes/gnome-mime-text-html.svg +18 -0
- package/static/assets/mimes/gnome-mime-text-install.svg +20 -0
- package/static/assets/mimes/gnome-mime-text-plain.svg +14 -0
- package/static/assets/mimes/gnome-mime-text-vnd.wap.wml.svg +18 -0
- package/static/assets/mimes/gnome-mime-text-x-changelog.svg +208 -0
- package/static/assets/mimes/gnome-mime-text-x-copying.svg +17 -0
- package/static/assets/mimes/gnome-mime-text-x-csh.svg +17 -0
- package/static/assets/mimes/gnome-mime-text-x-gtkrc.svg +109 -0
- package/static/assets/mimes/gnome-mime-text-x-install.svg +17 -0
- package/static/assets/mimes/gnome-mime-text-x-java-source.svg +14 -0
- package/static/assets/mimes/gnome-mime-text-x-java.svg +14 -0
- package/static/assets/mimes/gnome-mime-text-x-makefile.svg +176 -0
- package/static/assets/mimes/gnome-mime-text-x-opml+xml.svg +15 -0
- package/static/assets/mimes/gnome-mime-text-x-opml.svg +15 -0
- package/static/assets/mimes/gnome-mime-text-x-python.svg +16 -0
- package/static/assets/mimes/gnome-mime-text-x-readme.svg +15 -0
- package/static/assets/mimes/gnome-mime-text-x-sh.svg +17 -0
- package/static/assets/mimes/gnome-mime-text-x-zsh.svg +17 -0
- package/static/assets/mimes/gnome-mime-text.svg +14 -0
- package/static/assets/mimes/gnome-mime-video-x-ms-asf.svg +18 -0
- package/static/assets/mimes/gnome-mime-video-x-ms-wmv.svg +18 -0
- package/static/assets/mimes/gnome-mime-video.svg +18 -0
- package/static/assets/mimes/gnome-mime-x-font-afm.svg +14 -0
- package/static/assets/mimes/gnome-mime-x-install.svg +20 -0
- package/static/assets/mimes/gnome-package.svg +16 -0
- package/static/assets/mimes/html.svg +18 -0
- package/static/assets/mimes/image-gif.svg +12 -0
- package/static/assets/mimes/image-jpeg.svg +12 -0
- package/static/assets/mimes/image-png.svg +12 -0
- package/static/assets/mimes/image-svg+xml-compressed.svg +12 -0
- package/static/assets/mimes/image-svg+xml.svg +12 -0
- package/static/assets/mimes/image-svg.svg +12 -0
- package/static/assets/mimes/image-vnd.adobe.photoshop.svg +14 -0
- package/static/assets/mimes/image-vnd.microsoft.icon.svg +12 -0
- package/static/assets/mimes/image-x-eps.svg +24 -0
- package/static/assets/mimes/image-x-generic.svg +12 -0
- package/static/assets/mimes/image-x-psd.svg +14 -0
- package/static/assets/mimes/image-x-psdimage-x-psd.svg +14 -0
- package/static/assets/mimes/image-x-xcf.svg +21 -0
- package/static/assets/mimes/image-x-xfig.svg +12 -0
- package/static/assets/mimes/image.svg +12 -0
- package/static/assets/mimes/internet-feed.svg +15 -0
- package/static/assets/mimes/libpeas-plugin.svg +59 -0
- package/static/assets/mimes/libreoffice-database.svg +155 -0
- package/static/assets/mimes/libreoffice-extension.svg +59 -0
- package/static/assets/mimes/libreoffice-extensionn.svg +59 -0
- package/static/assets/mimes/libreoffice-formula.svg +188 -0
- package/static/assets/mimes/libreoffice-oasis-formula.svg +188 -0
- package/static/assets/mimes/libreoffice34-extension.svg +59 -0
- package/static/assets/mimes/media-audio.svg +24 -0
- package/static/assets/mimes/media-video.svg +18 -0
- package/static/assets/mimes/mime-ascii.svg +14 -0
- package/static/assets/mimes/mime_ascii.svg +14 -0
- package/static/assets/mimes/misc.svg +14 -0
- package/static/assets/mimes/multipart-encrypted.svg +273 -0
- package/static/assets/mimes/music.svg +24 -0
- package/static/assets/mimes/none.svg +110 -0
- package/static/assets/mimes/old-file.svg +22 -0
- package/static/assets/mimes/openofficeorg3-extension.svg +59 -0
- package/static/assets/mimes/package-x-generic.svg +16 -0
- package/static/assets/mimes/package.svg +16 -0
- package/static/assets/mimes/package_editors.svg +14 -0
- package/static/assets/mimes/packages-gdebi.svg +14 -0
- package/static/assets/mimes/pdf.svg +13 -0
- package/static/assets/mimes/preferences-certificate.svg +28 -0
- package/static/assets/mimes/preferences-plugin.svg +59 -0
- package/static/assets/mimes/rar.svg +14 -0
- package/static/assets/mimes/raw.svg +12 -0
- package/static/assets/mimes/rpm.svg +14 -0
- package/static/assets/mimes/scii.svg +14 -0
- package/static/assets/mimes/shellscript.svg +17 -0
- package/static/assets/mimes/sound.svg +24 -0
- package/static/assets/mimes/stock_certificate.svg +28 -0
- package/static/assets/mimes/stock_new-formula.svg +188 -0
- package/static/assets/mimes/stock_new-html.svg +18 -0
- package/static/assets/mimes/stock_script.svg +17 -0
- package/static/assets/mimes/stock_scripts.svg +17 -0
- package/static/assets/mimes/tar.svg +16 -0
- package/static/assets/mimes/text-css.svg +18 -0
- package/static/assets/mimes/text-enriched.svg +14 -0
- package/static/assets/mimes/text-html.svg +18 -0
- package/static/assets/mimes/text-htmlh.svg +18 -0
- package/static/assets/mimes/text-javascript.svg +6 -0
- package/static/assets/mimes/text-markdown.svg +26 -0
- package/static/assets/mimes/text-mht.svg +18 -0
- package/static/assets/mimes/text-plain.svg +14 -0
- package/static/assets/mimes/text-richtext.svg +14 -0
- package/static/assets/mimes/text-typescript.svg +1 -0
- package/static/assets/mimes/text-x-bak.svg +14 -0
- package/static/assets/mimes/text-x-bibtex.svg +79 -0
- package/static/assets/mimes/text-x-changelog.svg +208 -0
- package/static/assets/mimes/text-x-copying.svg +17 -0
- package/static/assets/mimes/text-x-generic.svg +14 -0
- package/static/assets/mimes/text-x-gtkrc.svg +109 -0
- package/static/assets/mimes/text-x-install.svg +20 -0
- package/static/assets/mimes/text-x-java-source.svg +14 -0
- package/static/assets/mimes/text-x-java.svg +14 -0
- package/static/assets/mimes/text-x-log.svg +1135 -0
- package/static/assets/mimes/text-x-lua.svg +14 -0
- package/static/assets/mimes/text-x-makefile.svg +176 -0
- package/static/assets/mimes/text-x-microdvd.svg +210 -0
- package/static/assets/mimes/text-x-nfo.svg +14 -0
- package/static/assets/mimes/text-x-opml+xml.svg +15 -0
- package/static/assets/mimes/text-x-opml.svg +15 -0
- package/static/assets/mimes/text-x-patch.svg +19 -0
- package/static/assets/mimes/text-x-perl.svg +15 -0
- package/static/assets/mimes/text-x-python.svg +16 -0
- package/static/assets/mimes/text-x-readme.svg +15 -0
- package/static/assets/mimes/text-x-ruby.svg +22 -0
- package/static/assets/mimes/text-x-script.svg +17 -0
- package/static/assets/mimes/text-x-tex.svg +79 -0
- package/static/assets/mimes/text-x-vala.svg +14 -0
- package/static/assets/mimes/text-x.svg +14 -0
- package/static/assets/mimes/text-xmcd.svg +358 -0
- package/static/assets/mimes/text-xml.svg +18 -0
- package/static/assets/mimes/text-yaml.svg +1 -0
- package/static/assets/mimes/text.svg +14 -0
- package/static/assets/mimes/text2.svg +14 -0
- package/static/assets/mimes/tgz.svg +16 -0
- package/static/assets/mimes/txt.svg +14 -0
- package/static/assets/mimes/txt2.svg +14 -0
- package/static/assets/mimes/unknown.svg +110 -0
- package/static/assets/mimes/uri-mms.svg +18 -0
- package/static/assets/mimes/uri-mmst.svg +18 -0
- package/static/assets/mimes/uri-mmsu.svg +18 -0
- package/static/assets/mimes/uri-pnm.svg +18 -0
- package/static/assets/mimes/uri-rtspt.svg +18 -0
- package/static/assets/mimes/uri-rtspu.svg +18 -0
- package/static/assets/mimes/video-quicktime.svg +18 -0
- package/static/assets/mimes/video-vivo.svg +18 -0
- package/static/assets/mimes/video-wavelet.svg +18 -0
- package/static/assets/mimes/video-webm.svg +18 -0
- package/static/assets/mimes/video-x-anim.svg +18 -0
- package/static/assets/mimes/video-x-flic.svg +18 -0
- package/static/assets/mimes/video-x-generic.svg +18 -0
- package/static/assets/mimes/video-x-google-vlc-plugin.svg +18 -0
- package/static/assets/mimes/video-x-javafx.svg +18 -0
- package/static/assets/mimes/video-x-matroska.svg +18 -0
- package/static/assets/mimes/video-x-mng.svg +18 -0
- package/static/assets/mimes/video-x-ms-asf-plugin.svg +18 -0
- package/static/assets/mimes/video-x-ms-asf.svg +18 -0
- package/static/assets/mimes/video-x-ms-wmp.svg +18 -0
- package/static/assets/mimes/video-x-ms-wmv.svg +18 -0
- package/static/assets/mimes/video-x-nsv.svg +18 -0
- package/static/assets/mimes/video-x-sgi-movie.svg +18 -0
- package/static/assets/mimes/video-x-theora+ogg.svg +18 -0
- package/static/assets/mimes/video-x-wmv.svg +18 -0
- package/static/assets/mimes/video.svg +18 -0
- package/static/assets/mimes/www.svg +18 -0
- package/static/assets/mimes/x-kde-nsplugin-generated.svg +59 -0
- package/static/assets/mimes/zip.svg +14 -0
- package/static/assets/pdfjs/LICENSE +177 -0
- package/static/assets/pdfjs/build/pdf.mjs +23371 -0
- package/static/assets/pdfjs/build/pdf.mjs.map +1 -0
- package/static/assets/pdfjs/build/pdf.sandbox.mjs +218 -0
- package/static/assets/pdfjs/build/pdf.sandbox.mjs.map +1 -0
- package/static/assets/pdfjs/build/pdf.worker.mjs +58148 -0
- package/static/assets/pdfjs/build/pdf.worker.mjs.map +1 -0
- package/static/assets/pdfjs/version +1 -0
- package/static/assets/pdfjs/web/cmaps/78-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/78-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/78-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/78-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/78-RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/78-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/78ms-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/78ms-RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/83pv-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/90ms-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/90ms-RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/90msp-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/90msp-RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/90pv-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/90pv-RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Add-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Add-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Add-RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Add-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-0.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-1.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-3.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-4.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-5.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-6.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-UCS2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-GB1-0.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-GB1-1.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-GB1-2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-GB1-3.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-GB1-4.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-GB1-5.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-GB1-UCS2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-0.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-1.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-3.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-4.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-5.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-6.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-UCS2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Korea1-0.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Korea1-1.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Korea1-2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Korea1-UCS2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/B5pc-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/B5pc-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/CNS-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/CNS-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/CNS1-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/CNS1-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/CNS2-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/CNS2-V.bcmap +3 -0
- package/static/assets/pdfjs/web/cmaps/ETHK-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/ETHK-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/ETen-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/ETen-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/ETenms-B5-H.bcmap +3 -0
- package/static/assets/pdfjs/web/cmaps/ETenms-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Ext-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Ext-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Ext-RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Ext-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GB-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GB-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GB-H.bcmap +4 -0
- package/static/assets/pdfjs/web/cmaps/GB-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBK-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBK-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBK2K-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBK2K-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBKp-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBKp-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBT-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBT-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBT-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBT-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBTpc-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBTpc-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBpc-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBpc-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKdla-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKdla-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKdlb-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKdlb-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKgccs-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKgccs-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKm314-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKm314-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKm471-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKm471-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKscs-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKscs-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Hankaku.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Hiragana.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSC-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSC-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSC-Johab-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSC-Johab-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSCms-UHC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSCms-UHC-HW-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSCms-UHC-HW-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSCms-UHC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSCpc-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSCpc-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Katakana.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/LICENSE +36 -0
- package/static/assets/pdfjs/web/cmaps/NWP-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/NWP-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Roman.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UCS2-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UCS2-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UTF16-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UTF16-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UTF32-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UTF32-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UTF8-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UTF8-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UCS2-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UCS2-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UTF16-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UTF16-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UTF32-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UTF32-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UTF8-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UTF8-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UCS2-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UCS2-HW-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UCS2-HW-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UCS2-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UTF16-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UTF16-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UTF32-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UTF32-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UTF8-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UTF8-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF16-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF16-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF32-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF32-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF8-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF8-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJISPro-UCS2-HW-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJISPro-UCS2-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJISPro-UTF8-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJISX0213-UTF32-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJISX0213-UTF32-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJISX02132004-UTF32-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJISX02132004-UTF32-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UCS2-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UCS2-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UTF16-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UTF16-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UTF32-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UTF32-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UTF8-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UTF8-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/WP-Symbol.bcmap +0 -0
- package/static/assets/pdfjs/web/compressed.tracemonkey-pldi-09.pdf +0 -0
- package/static/assets/pdfjs/web/debugger.css +114 -0
- package/static/assets/pdfjs/web/debugger.mjs +627 -0
- package/static/assets/pdfjs/web/iccs/CGATS001Compat-v2-micro.icc +0 -0
- package/static/assets/pdfjs/web/iccs/LICENSE +116 -0
- package/static/assets/pdfjs/web/images/altText_add.svg +3 -0
- package/static/assets/pdfjs/web/images/altText_disclaimer.svg +3 -0
- package/static/assets/pdfjs/web/images/altText_done.svg +3 -0
- package/static/assets/pdfjs/web/images/altText_spinner.svg +30 -0
- package/static/assets/pdfjs/web/images/altText_warning.svg +3 -0
- package/static/assets/pdfjs/web/images/annotation-check.svg +11 -0
- package/static/assets/pdfjs/web/images/annotation-comment.svg +16 -0
- package/static/assets/pdfjs/web/images/annotation-help.svg +26 -0
- package/static/assets/pdfjs/web/images/annotation-insert.svg +10 -0
- package/static/assets/pdfjs/web/images/annotation-key.svg +11 -0
- package/static/assets/pdfjs/web/images/annotation-newparagraph.svg +11 -0
- package/static/assets/pdfjs/web/images/annotation-noicon.svg +7 -0
- package/static/assets/pdfjs/web/images/annotation-note.svg +42 -0
- package/static/assets/pdfjs/web/images/annotation-paperclip.svg +6 -0
- package/static/assets/pdfjs/web/images/annotation-paragraph.svg +16 -0
- package/static/assets/pdfjs/web/images/annotation-pushpin.svg +7 -0
- package/static/assets/pdfjs/web/images/comment-actionsButton.svg +3 -0
- package/static/assets/pdfjs/web/images/comment-closeButton.svg +3 -0
- package/static/assets/pdfjs/web/images/comment-editButton.svg +3 -0
- package/static/assets/pdfjs/web/images/cursor-editorFreeHighlight.svg +6 -0
- package/static/assets/pdfjs/web/images/cursor-editorFreeText.svg +3 -0
- package/static/assets/pdfjs/web/images/cursor-editorInk.svg +4 -0
- package/static/assets/pdfjs/web/images/cursor-editorTextHighlight.svg +8 -0
- package/static/assets/pdfjs/web/images/editor-toolbar-delete.svg +5 -0
- package/static/assets/pdfjs/web/images/editor-toolbar-edit.svg +3 -0
- package/static/assets/pdfjs/web/images/findbarButton-next.svg +3 -0
- package/static/assets/pdfjs/web/images/findbarButton-previous.svg +3 -0
- package/static/assets/pdfjs/web/images/gv-toolbarButton-download.svg +3 -0
- package/static/assets/pdfjs/web/images/loading-icon.gif +0 -0
- package/static/assets/pdfjs/web/images/loading.svg +1 -0
- package/static/assets/pdfjs/web/images/messageBar_closingButton.svg +3 -0
- package/static/assets/pdfjs/web/images/messageBar_info.svg +3 -0
- package/static/assets/pdfjs/web/images/messageBar_warning.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-documentProperties.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-firstPage.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-handTool.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-lastPage.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-rotateCcw.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-rotateCw.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-scrollHorizontal.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-scrollPage.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-scrollVertical.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-scrollWrapped.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-selectTool.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-spreadEven.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-spreadNone.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-spreadOdd.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-bookmark.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-currentOutlineItem.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-download.svg +4 -0
- package/static/assets/pdfjs/web/images/toolbarButton-editorFreeText.svg +5 -0
- package/static/assets/pdfjs/web/images/toolbarButton-editorHighlight.svg +6 -0
- package/static/assets/pdfjs/web/images/toolbarButton-editorInk.svg +4 -0
- package/static/assets/pdfjs/web/images/toolbarButton-editorSignature.svg +6 -0
- package/static/assets/pdfjs/web/images/toolbarButton-editorStamp.svg +8 -0
- package/static/assets/pdfjs/web/images/toolbarButton-menuArrow.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-openFile.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-pageDown.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-pageUp.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-presentationMode.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-print.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-search.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-secondaryToolbarToggle.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-sidebarToggle.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-viewAttachments.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-viewLayers.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-viewOutline.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-viewThumbnail.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-zoomIn.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-zoomOut.svg +3 -0
- package/static/assets/pdfjs/web/images/treeitem-collapsed.svg +1 -0
- package/static/assets/pdfjs/web/images/treeitem-expanded.svg +1 -0
- package/static/assets/pdfjs/web/locale/ach/viewer.ftl +275 -0
- package/static/assets/pdfjs/web/locale/af/viewer.ftl +262 -0
- package/static/assets/pdfjs/web/locale/an/viewer.ftl +307 -0
- package/static/assets/pdfjs/web/locale/ar/viewer.ftl +627 -0
- package/static/assets/pdfjs/web/locale/ast/viewer.ftl +251 -0
- package/static/assets/pdfjs/web/locale/az/viewer.ftl +307 -0
- package/static/assets/pdfjs/web/locale/be/viewer.ftl +618 -0
- package/static/assets/pdfjs/web/locale/bg/viewer.ftl +451 -0
- package/static/assets/pdfjs/web/locale/bn/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/bo/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/br/viewer.ftl +382 -0
- package/static/assets/pdfjs/web/locale/brx/viewer.ftl +268 -0
- package/static/assets/pdfjs/web/locale/bs/viewer.ftl +618 -0
- package/static/assets/pdfjs/web/locale/ca/viewer.ftl +343 -0
- package/static/assets/pdfjs/web/locale/cak/viewer.ftl +341 -0
- package/static/assets/pdfjs/web/locale/ckb/viewer.ftl +292 -0
- package/static/assets/pdfjs/web/locale/cs/viewer.ftl +621 -0
- package/static/assets/pdfjs/web/locale/cy/viewer.ftl +627 -0
- package/static/assets/pdfjs/web/locale/da/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/de/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/dsb/viewer.ftl +621 -0
- package/static/assets/pdfjs/web/locale/el/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/en-CA/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/en-GB/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/en-US/viewer.ftl +667 -0
- package/static/assets/pdfjs/web/locale/eo/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/es-AR/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/es-CL/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/es-ES/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/es-MX/viewer.ftl +580 -0
- package/static/assets/pdfjs/web/locale/et/viewer.ftl +319 -0
- package/static/assets/pdfjs/web/locale/eu/viewer.ftl +619 -0
- package/static/assets/pdfjs/web/locale/fa/viewer.ftl +378 -0
- package/static/assets/pdfjs/web/locale/ff/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/fi/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/fr/viewer.ftl +611 -0
- package/static/assets/pdfjs/web/locale/fur/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/fy-NL/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/ga-IE/viewer.ftl +263 -0
- package/static/assets/pdfjs/web/locale/gd/viewer.ftl +343 -0
- package/static/assets/pdfjs/web/locale/gl/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/gn/viewer.ftl +614 -0
- package/static/assets/pdfjs/web/locale/gu-IN/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/he/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/hi-IN/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/hr/viewer.ftl +618 -0
- package/static/assets/pdfjs/web/locale/hsb/viewer.ftl +621 -0
- package/static/assets/pdfjs/web/locale/hu/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/hy-AM/viewer.ftl +314 -0
- package/static/assets/pdfjs/web/locale/hye/viewer.ftl +318 -0
- package/static/assets/pdfjs/web/locale/ia/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/id/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/locale/is/viewer.ftl +600 -0
- package/static/assets/pdfjs/web/locale/it/viewer.ftl +623 -0
- package/static/assets/pdfjs/web/locale/ja/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/locale/ka/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/kab/viewer.ftl +595 -0
- package/static/assets/pdfjs/web/locale/kk/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/locale/km/viewer.ftl +273 -0
- package/static/assets/pdfjs/web/locale/kn/viewer.ftl +263 -0
- package/static/assets/pdfjs/web/locale/ko/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/locale/lij/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/lo/viewer.ftl +343 -0
- package/static/assets/pdfjs/web/locale/locale.json +1 -0
- package/static/assets/pdfjs/web/locale/lt/viewer.ftl +318 -0
- package/static/assets/pdfjs/web/locale/ltg/viewer.ftl +296 -0
- package/static/assets/pdfjs/web/locale/lv/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/meh/viewer.ftl +137 -0
- package/static/assets/pdfjs/web/locale/mk/viewer.ftl +265 -0
- package/static/assets/pdfjs/web/locale/ml/viewer.ftl +524 -0
- package/static/assets/pdfjs/web/locale/mr/viewer.ftl +289 -0
- package/static/assets/pdfjs/web/locale/ms/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/my/viewer.ftl +256 -0
- package/static/assets/pdfjs/web/locale/nb-NO/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/ne-NP/viewer.ftl +284 -0
- package/static/assets/pdfjs/web/locale/nl/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/nn-NO/viewer.ftl +609 -0
- package/static/assets/pdfjs/web/locale/oc/viewer.ftl +436 -0
- package/static/assets/pdfjs/web/locale/pa-IN/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/pl/viewer.ftl +618 -0
- package/static/assets/pdfjs/web/locale/pt-BR/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/pt-PT/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/rm/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/ro/viewer.ftl +302 -0
- package/static/assets/pdfjs/web/locale/ru/viewer.ftl +618 -0
- package/static/assets/pdfjs/web/locale/sat/viewer.ftl +355 -0
- package/static/assets/pdfjs/web/locale/sc/viewer.ftl +394 -0
- package/static/assets/pdfjs/web/locale/scn/viewer.ftl +124 -0
- package/static/assets/pdfjs/web/locale/sco/viewer.ftl +314 -0
- package/static/assets/pdfjs/web/locale/si/viewer.ftl +301 -0
- package/static/assets/pdfjs/web/locale/sk/viewer.ftl +621 -0
- package/static/assets/pdfjs/web/locale/skr/viewer.ftl +524 -0
- package/static/assets/pdfjs/web/locale/sl/viewer.ftl +621 -0
- package/static/assets/pdfjs/web/locale/son/viewer.ftl +256 -0
- package/static/assets/pdfjs/web/locale/sq/viewer.ftl +606 -0
- package/static/assets/pdfjs/web/locale/sr/viewer.ftl +451 -0
- package/static/assets/pdfjs/web/locale/sv-SE/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/szl/viewer.ftl +307 -0
- package/static/assets/pdfjs/web/locale/ta/viewer.ftl +273 -0
- package/static/assets/pdfjs/web/locale/te/viewer.ftl +289 -0
- package/static/assets/pdfjs/web/locale/tg/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/th/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/locale/tl/viewer.ftl +307 -0
- package/static/assets/pdfjs/web/locale/tr/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/trs/viewer.ftl +247 -0
- package/static/assets/pdfjs/web/locale/uk/viewer.ftl +618 -0
- package/static/assets/pdfjs/web/locale/ur/viewer.ftl +298 -0
- package/static/assets/pdfjs/web/locale/uz/viewer.ftl +237 -0
- package/static/assets/pdfjs/web/locale/vi/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/locale/wo/viewer.ftl +177 -0
- package/static/assets/pdfjs/web/locale/xh/viewer.ftl +262 -0
- package/static/assets/pdfjs/web/locale/zh-CN/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/locale/zh-TW/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitDingbats.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitFixed.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitFixedBold.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitFixedBoldItalic.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitFixedItalic.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitSerif.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitSerifBold.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitSerifBoldItalic.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitSerifItalic.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitSymbol.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/LICENSE_FOXIT +27 -0
- package/static/assets/pdfjs/web/standard_fonts/LICENSE_LIBERATION +102 -0
- package/static/assets/pdfjs/web/standard_fonts/LiberationSans-Bold.ttf +0 -0
- package/static/assets/pdfjs/web/standard_fonts/LiberationSans-BoldItalic.ttf +0 -0
- package/static/assets/pdfjs/web/standard_fonts/LiberationSans-Italic.ttf +0 -0
- package/static/assets/pdfjs/web/standard_fonts/LiberationSans-Regular.ttf +0 -0
- package/static/assets/pdfjs/web/viewer.css +6766 -0
- package/static/assets/pdfjs/web/viewer.html +768 -0
- package/static/assets/pdfjs/web/viewer.mjs +17445 -0
- package/static/assets/pdfjs/web/viewer.mjs.map +1 -0
- package/static/assets/pdfjs/web/wasm/LICENSE_OPENJPEG +39 -0
- package/static/assets/pdfjs/web/wasm/LICENSE_PDFJS_OPENJPEG +22 -0
- package/static/assets/pdfjs/web/wasm/LICENSE_PDFJS_QCMS +22 -0
- package/static/assets/pdfjs/web/wasm/LICENSE_QCMS +21 -0
- package/static/assets/pdfjs/web/wasm/openjpeg.wasm +0 -0
- package/static/assets/pdfjs/web/wasm/openjpeg_nowasm_fallback.js +29 -0
- package/static/assets/pdfjs/web/wasm/qcms_bg.wasm +0 -0
- package/static/assets/protected.png +0 -0
- package/static/chunk-2EBPSJJT.js +1 -0
- package/static/chunk-3V7XYPSJ.js +4 -0
- package/static/chunk-4IYQWOGR.js +1 -0
- package/static/chunk-5RFOYHL3.js +1 -0
- package/static/chunk-7PCJMNDR.js +1 -0
- package/static/chunk-7WRQICEB.js +1 -0
- package/static/chunk-AKM2LQUU.js +1 -0
- package/static/chunk-ATFX6EIO.js +1 -0
- package/static/chunk-ATLT5DK5.js +1 -0
- package/static/chunk-DVHXFWN7.js +1 -0
- package/static/chunk-E27KCFP6.js +24 -0
- package/static/chunk-FPEGN42P.js +564 -0
- package/static/chunk-GAL4ENT6.js +1 -0
- package/static/chunk-GWUCWOVK.js +1 -0
- package/static/chunk-I644MKAO.js +1 -0
- package/static/chunk-IFJD2ISM.js +1 -0
- package/static/chunk-IUUTIYHF.js +1 -0
- package/static/chunk-JXZCNFW7.js +1 -0
- package/static/chunk-MEKYVWV4.js +1 -0
- package/static/chunk-MQZEETHL.js +7 -0
- package/static/chunk-NPLV4M2H.js +1 -0
- package/static/chunk-NU3TPXFY.js +4 -0
- package/static/chunk-O4CXCITB.js +1 -0
- package/static/chunk-OWGR4BYT.js +1 -0
- package/static/chunk-QFRQQ4K3.js +1 -0
- package/static/chunk-RAVRSB6R.js +1 -0
- package/static/chunk-RUNMEQOV.js +1 -0
- package/static/chunk-UGSGMP2I.js +1 -0
- package/static/chunk-UV4UIX6J.js +1 -0
- package/static/chunk-VBD7QTEP.js +1 -0
- package/static/chunk-VBWPPICY.js +1 -0
- package/static/chunk-VQRN7HFP.js +1 -0
- package/static/chunk-WTPZUBNX.js +24 -0
- package/static/chunk-XI72YZ2M.js +1 -0
- package/static/chunk-Z6IHRUVL.js +1 -0
- package/static/chunk-ZVPX26RB.js +1 -0
- package/static/chunk-ZZ3LHYOY.js +1 -0
- package/static/favicon.ico +0 -0
- package/static/index.html +19 -0
- package/static/main-ILCPT3IK.js +10 -0
- package/static/media/videogular-54D7AHHD.woff +0 -0
- package/static/media/videogular-H7MSXT3I.eot +0 -0
- package/static/media/videogular-ULU7CHZC.ttf +0 -0
- package/static/media/videogular-WX5DESMV.svg +29 -0
- package/static/polyfills-GNKGQMRJ.js +2 -0
- package/static/prerendered-routes.json +3 -0
- package/static/scripts-MQMRSPYD.js +30 -0
- package/static/styles-TJJDSCD4.css +1 -0
- package/sync-in-server.js +309 -0
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512">
|
|
3
|
+
<defs>
|
|
4
|
+
<linearGradient id="1" y2="624.62" gradientUnits="userSpaceOnUse" y1="114.02" x2="549.1" x1="134.06">
|
|
5
|
+
<stop stop-color="#8255af" offset="0"/>
|
|
6
|
+
<stop stop-color="#208c4d" offset="1"/>
|
|
7
|
+
</linearGradient>
|
|
8
|
+
</defs>
|
|
9
|
+
<g fill-opacity=".078">
|
|
10
|
+
<path d="m32.563 0c-4.774 0-8.594 3.266-8.594 7.313v497.38c0 4.047 3.82 7.313 8.594 7.313h446.87c4.774 0 8.594-3.266 8.594-7.313v-360.03l-144.66-144.66h-310.81"/>
|
|
11
|
+
<path d="m35.625 3.5c-4.709 0-8.5 3.196-8.5 7.188v490.62c0 3.991 3.791 7.188 8.5 7.188h440.75c4.709 0 8.5-3.196 8.5-7.188v-356.28l-141.53-141.53h-307.72"/>
|
|
12
|
+
<path d="m38.688 7c-4.643 0-8.375 3.158-8.375 7.094v483.82c0 3.936 3.732 7.094 8.375 7.094h434.62c4.643 0 8.375-3.158 8.375-7.094v-352.62l-138.28-138.28h-304.72"/>
|
|
13
|
+
</g>
|
|
14
|
+
<path fill="url(#1)" d="m41.719 10.5c-4.578 0-8.25 3.119-8.25 7v477c0 3.881 3.672 7 8.25 7h428.56c4.578 0 8.25-3.119 8.25-7v-348.06l-135.97-135.94h-300.84"/>
|
|
15
|
+
<path id="0" fill-opacity=".196" fill="#fff" d="m478.53 146.44l-135.97-135.94v128.94c0 3.881 3.672 7 8.25 7h127.72"/>
|
|
16
|
+
<use width="1" xlink:href="#0" height="1"/>
|
|
17
|
+
<path d="m345.03 144.56l133.5 129.38v-127.5h-127.72c-2.185 0-4.154-0.71-5.625-1.875h-0.156" fill-opacity=".196"/>
|
|
18
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="135.9" x="1504.15" font-family="Gentium Book Basic" line-height="125%">
|
|
19
|
+
<tspan y="135.9" x="1504.15"/>
|
|
20
|
+
</text>
|
|
21
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="196.2" x="571.92" font-family="Arial"/>
|
|
22
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="55.902" x="2085.42" font-family="Gentium Book Basic" line-height="125%">
|
|
23
|
+
<tspan y="55.902" x="2085.42"/>
|
|
24
|
+
</text>
|
|
25
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-124.83" x="716.77" font-family="Arial"/>
|
|
26
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-125.36" x="1013.84" font-family="Gentium Book Basic" line-height="125%">
|
|
27
|
+
<tspan y="-125.36" x="1013.84"/>
|
|
28
|
+
</text>
|
|
29
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-852.18" x="449.73" font-family="Arial"/>
|
|
30
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-341.83" x="2111.89" font-family="Gentium Book Basic" line-height="125%">
|
|
31
|
+
<tspan y="-341.83" x="2111.89"/>
|
|
32
|
+
</text>
|
|
33
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1720.86" x="723.37" font-family="Arial"/>
|
|
34
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-421.83" x="2693.16" font-family="Gentium Book Basic" line-height="125%">
|
|
35
|
+
<tspan y="-421.83" x="2693.16"/>
|
|
36
|
+
</text>
|
|
37
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-2041.88" x="868.22" font-family="Arial"/>
|
|
38
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-894.23" x="2304.04" font-family="Gentium Book Basic" line-height="125%">
|
|
39
|
+
<tspan y="-894.23" x="2304.04"/>
|
|
40
|
+
</text>
|
|
41
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3937.54" x="771.25" font-family="Arial"/>
|
|
42
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-974.24" x="2885.3" font-family="Gentium Book Basic" line-height="125%">
|
|
43
|
+
<tspan y="-974.24" x="2885.3"/>
|
|
44
|
+
</text>
|
|
45
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-4258.57" x="916.09" font-family="Arial"/>
|
|
46
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="440.48" x="1052.5" font-family="Gentium Book Basic" line-height="125%">
|
|
47
|
+
<tspan y="440.48" x="1052.5"/>
|
|
48
|
+
</text>
|
|
49
|
+
<g>
|
|
50
|
+
<path opacity=".25" d="m211.31 167.55c-76.72 0-138.87 63.761-138.87 142.41 0 39.966 16.06 76.09 41.92 101.95l89.59 89.59h266.33c4.578 0 8.25-3.119 8.25-7v-101.1l-38.967-38.967h-41.34l-186.87-186.87h-0.031"/>
|
|
51
|
+
<path d="m211.31 167.55c-76.72 0-138.87 63.761-138.87 142.41 0 78.65 62.18 142.41 138.91 142.41h228.22v-26.719h-228.22c-62.33 0-112.87-51.792-112.87-115.69s50.54-115.72 112.88-115.72v-26.688h-0.031m0.031 35.594c-57.54 0-104.16 47.829-104.16 106.81 0 58.984 46.615 106.78 104.16 106.78h228.22v-26.688h-228.22c-43.16 0-78.16-35.852-78.16-80.09 0-44.24 34.994-80.12 78.16-80.12 10.486 0 20.461 2.162 29.594 6l9.875-24.75c-12.536-5.265-25.92-7.938-39.469-7.938m0 35.594c-38.36 0-69.44 31.897-69.44 71.22 0 39.32 31.07 71.19 69.44 71.19h228.22v-26.719h-228.22c-23.974 0-43.37-19.894-43.37-44.47 0-24.577 19.401-44.5 43.38-44.5 11.987 0 22.835 5.01 30.688 13.06l18.438-18.906c-13.03-13.352-30.701-20.875-49.12-20.875" fill="#fff"/>
|
|
52
|
+
</g>
|
|
53
|
+
</svg>
|
|
@@ -0,0 +1,353 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
|
3
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="140.24" x="1454.25" font-family="Gentium Book Basic" line-height="125%">
|
|
4
|
+
<tspan y="140.24" x="1454.25"/>
|
|
5
|
+
</text>
|
|
6
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="213.61" x="559.48" font-family="Arial"/>
|
|
7
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="60.24" x="2035.52" font-family="Gentium Book Basic" line-height="125%">
|
|
8
|
+
<tspan y="60.24" x="2035.52"/>
|
|
9
|
+
</text>
|
|
10
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-107.42" x="704.33" font-family="Arial"/>
|
|
11
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-121.02" x="963.94" font-family="Gentium Book Basic" line-height="125%">
|
|
12
|
+
<tspan y="-121.02" x="963.94"/>
|
|
13
|
+
</text>
|
|
14
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-834.77" x="437.29" font-family="Arial"/>
|
|
15
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-337.49" x="2061.99" font-family="Gentium Book Basic" line-height="125%">
|
|
16
|
+
<tspan y="-337.49" x="2061.99"/>
|
|
17
|
+
</text>
|
|
18
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1703.44" x="710.93" font-family="Arial"/>
|
|
19
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-417.49" x="2643.26" font-family="Gentium Book Basic" line-height="125%">
|
|
20
|
+
<tspan y="-417.49" x="2643.26"/>
|
|
21
|
+
</text>
|
|
22
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-2024.46" x="855.78" font-family="Arial"/>
|
|
23
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-889.89" x="2254.14" font-family="Gentium Book Basic" line-height="125%">
|
|
24
|
+
<tspan y="-889.89" x="2254.14"/>
|
|
25
|
+
</text>
|
|
26
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3920.1" x="758.81" font-family="Arial"/>
|
|
27
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-969.9" x="2835.4" font-family="Gentium Book Basic" line-height="125%">
|
|
28
|
+
<tspan y="-969.9" x="2835.4"/>
|
|
29
|
+
</text>
|
|
30
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-4241.14" x="903.66" font-family="Arial"/>
|
|
31
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%">
|
|
32
|
+
<text y="444.82" x="1002.6" font-size="208.33">
|
|
33
|
+
<tspan y="444.82" x="1002.6"/>
|
|
34
|
+
</text>
|
|
35
|
+
<text y="131.56" x="72.28" font-size="129.23">
|
|
36
|
+
<tspan y="131.56" x="72.28"/>
|
|
37
|
+
</text>
|
|
38
|
+
</g>
|
|
39
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="178.78" x="215.09" font-family="Arial"/>
|
|
40
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="51.563" x="653.55" font-family="Gentium Book Basic" line-height="125%">
|
|
41
|
+
<tspan y="51.563" x="653.55"/>
|
|
42
|
+
</text>
|
|
43
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-142.25" x="359.94" font-family="Arial"/>
|
|
44
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-129.7" x="-418.03" font-family="Gentium Book Basic" line-height="125%">
|
|
45
|
+
<tspan y="-129.7" x="-418.03"/>
|
|
46
|
+
</text>
|
|
47
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-869.6" x="92.9" font-family="Arial"/>
|
|
48
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-346.17" x="680.02" font-family="Gentium Book Basic" line-height="125%">
|
|
49
|
+
<tspan y="-346.17" x="680.02"/>
|
|
50
|
+
</text>
|
|
51
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1738.27" x="366.54" font-family="Arial"/>
|
|
52
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-426.18" x="1261.29" font-family="Gentium Book Basic" line-height="125%">
|
|
53
|
+
<tspan y="-426.18" x="1261.29"/>
|
|
54
|
+
</text>
|
|
55
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-2059.31" x="511.39" font-family="Arial"/>
|
|
56
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-898.58" x="872.17" font-family="Gentium Book Basic" line-height="125%">
|
|
57
|
+
<tspan y="-898.58" x="872.17"/>
|
|
58
|
+
</text>
|
|
59
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3954.96" x="414.42" font-family="Arial"/>
|
|
60
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-978.58" x="1453.43" font-family="Gentium Book Basic" line-height="125%">
|
|
61
|
+
<tspan y="-978.58" x="1453.43"/>
|
|
62
|
+
</text>
|
|
63
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-4275.99" x="559.27" font-family="Arial"/>
|
|
64
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" transform="translate(-657.36-99.8)" line-height="125%">
|
|
65
|
+
<text y="535.94" x="277.99" font-size="208.33">
|
|
66
|
+
<tspan y="535.94" x="277.99"/>
|
|
67
|
+
</text>
|
|
68
|
+
<text y="-11.341" x="-307.18" font-size="200">
|
|
69
|
+
<tspan y="-11.341" x="-307.18"/>
|
|
70
|
+
</text>
|
|
71
|
+
</g>
|
|
72
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-986.34" x="64.65" font-family="Arial"/>
|
|
73
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-57.995" x="-219.16" font-family="Gentium Book Basic" line-height="125%">
|
|
74
|
+
<tspan y="-57.995" x="-219.16"/>
|
|
75
|
+
</text>
|
|
76
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-773.09" x="250.4" font-family="Arial"/>
|
|
77
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-181.82" x="680.45" font-family="Gentium Book Basic" line-height="125%">
|
|
78
|
+
<tspan y="-181.82" x="680.45"/>
|
|
79
|
+
</text>
|
|
80
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-1269.95" x="474.58" font-family="Arial"/>
|
|
81
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-234.45" x="-191.7" font-family="Gentium Book Basic" line-height="125%">
|
|
82
|
+
<tspan y="-234.45" x="-191.7"/>
|
|
83
|
+
</text>
|
|
84
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-1481.17" x="257.24" font-family="Arial"/>
|
|
85
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-358.27" x="707.91" font-family="Gentium Book Basic" line-height="125%">
|
|
86
|
+
<tspan y="-358.27" x="707.91"/>
|
|
87
|
+
</text>
|
|
88
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-1978.03" x="481.42" font-family="Arial"/>
|
|
89
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="217.43" x="-3201.68" font-family="Gentium Book Basic" line-height="125%">
|
|
90
|
+
<tspan y="217.43" x="-3201.68"/>
|
|
91
|
+
</text>
|
|
92
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="332.15" x="-492.84" font-family="Arial"/>
|
|
93
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-17.997" x="-1273.4" font-family="Gentium Book Basic" line-height="125%">
|
|
94
|
+
<tspan y="-17.997" x="-1273.4"/>
|
|
95
|
+
</text>
|
|
96
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-612.58" x="-12.315" font-family="Arial"/>
|
|
97
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="35.14" x="-528.02" font-family="Gentium Book Basic" line-height="125%">
|
|
98
|
+
<tspan y="35.14" x="-528.02"/>
|
|
99
|
+
</text>
|
|
100
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-399.33" x="173.43" font-family="Arial"/>
|
|
101
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-88.67" x="371.59" font-family="Gentium Book Basic" line-height="125%">
|
|
102
|
+
<tspan y="-88.67" x="371.59"/>
|
|
103
|
+
</text>
|
|
104
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-896.18" x="397.61" font-family="Arial"/>
|
|
105
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-141.31" x="-500.56" font-family="Gentium Book Basic" line-height="125%">
|
|
106
|
+
<tspan y="-141.31" x="-500.56"/>
|
|
107
|
+
</text>
|
|
108
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-1107.41" x="180.27" font-family="Arial"/>
|
|
109
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-265.13" x="399.06" font-family="Gentium Book Basic" line-height="125%">
|
|
110
|
+
<tspan y="-265.13" x="399.06"/>
|
|
111
|
+
</text>
|
|
112
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-1604.27" x="404.46" font-family="Arial"/>
|
|
113
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="310.57" x="-3510.54" font-family="Gentium Book Basic" line-height="125%">
|
|
114
|
+
<tspan y="310.57" x="-3510.54"/>
|
|
115
|
+
</text>
|
|
116
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="705.92" x="-569.81" font-family="Arial"/>
|
|
117
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-134.86" x="-1987.97" font-family="Gentium Book Basic" line-height="125%">
|
|
118
|
+
<tspan y="-134.86" x="-1987.97"/>
|
|
119
|
+
</text>
|
|
120
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-1081.5" x="-190.38" font-family="Arial"/>
|
|
121
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-81.71" x="-1242.59" font-family="Gentium Book Basic" line-height="125%">
|
|
122
|
+
<tspan y="-81.71" x="-1242.59"/>
|
|
123
|
+
</text>
|
|
124
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-868.25" x="-4.635" font-family="Arial"/>
|
|
125
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-205.53" x="-342.98" font-family="Gentium Book Basic" line-height="125%">
|
|
126
|
+
<tspan y="-205.53" x="-342.98"/>
|
|
127
|
+
</text>
|
|
128
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-1365.11" x="219.54" font-family="Arial"/>
|
|
129
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-258.17" x="-1215.13" font-family="Gentium Book Basic" line-height="125%">
|
|
130
|
+
<tspan y="-258.17" x="-1215.13"/>
|
|
131
|
+
</text>
|
|
132
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-1576.34" x="2.205" font-family="Arial"/>
|
|
133
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-381.98" x="-315.51" font-family="Gentium Book Basic" line-height="125%">
|
|
134
|
+
<tspan y="-381.98" x="-315.51"/>
|
|
135
|
+
</text>
|
|
136
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-2073.19" x="226.38" font-family="Arial"/>
|
|
137
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="193.72" x="-4225.11" font-family="Gentium Book Basic" line-height="125%">
|
|
138
|
+
<tspan y="193.72" x="-4225.11"/>
|
|
139
|
+
</text>
|
|
140
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="236.99" x="-747.88" font-family="Arial"/>
|
|
141
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="131.56" x="72.28" font-family="Gentium Book Basic" line-height="125%">
|
|
142
|
+
<tspan y="131.56" x="72.28"/>
|
|
143
|
+
</text>
|
|
144
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="178.78" x="215.09" font-family="Arial"/>
|
|
145
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="51.563" x="653.55" font-family="Gentium Book Basic" line-height="125%">
|
|
146
|
+
<tspan y="51.563" x="653.55"/>
|
|
147
|
+
</text>
|
|
148
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-142.25" x="359.94" font-family="Arial"/>
|
|
149
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-129.7" x="-418.03" font-family="Gentium Book Basic" line-height="125%">
|
|
150
|
+
<tspan y="-129.7" x="-418.03"/>
|
|
151
|
+
</text>
|
|
152
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-869.6" x="92.9" font-family="Arial"/>
|
|
153
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-346.17" x="680.02" font-family="Gentium Book Basic" line-height="125%">
|
|
154
|
+
<tspan y="-346.17" x="680.02"/>
|
|
155
|
+
</text>
|
|
156
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1738.26" x="366.54" font-family="Arial"/>
|
|
157
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-426.18" x="1261.29" font-family="Gentium Book Basic" line-height="125%">
|
|
158
|
+
<tspan y="-426.18" x="1261.29"/>
|
|
159
|
+
</text>
|
|
160
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-2059.3" x="511.39" font-family="Arial"/>
|
|
161
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-898.58" x="872.17" font-family="Gentium Book Basic" line-height="125%">
|
|
162
|
+
<tspan y="-898.58" x="872.17"/>
|
|
163
|
+
</text>
|
|
164
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3954.94" x="414.42" font-family="Arial"/>
|
|
165
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-978.58" x="1453.43" font-family="Gentium Book Basic" line-height="125%">
|
|
166
|
+
<tspan y="-978.58" x="1453.43"/>
|
|
167
|
+
</text>
|
|
168
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-4275.97" x="559.27" font-family="Arial"/>
|
|
169
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" transform="translate(-657.36-99.8)" line-height="125%">
|
|
170
|
+
<text y="535.94" x="277.99" font-size="208.33">
|
|
171
|
+
<tspan y="535.94" x="277.99"/>
|
|
172
|
+
</text>
|
|
173
|
+
<text y="227.12" x="104.96" font-size="129.23">
|
|
174
|
+
<tspan y="227.12" x="104.96"/>
|
|
175
|
+
</text>
|
|
176
|
+
</g>
|
|
177
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="161.76" x="59.42" font-family="Arial"/>
|
|
178
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="47.31" x="28.874" font-family="Gentium Book Basic" line-height="125%">
|
|
179
|
+
<tspan y="47.31" x="28.874"/>
|
|
180
|
+
</text>
|
|
181
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-159.28" x="204.27" font-family="Arial"/>
|
|
182
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-133.94" x="-1042.71" font-family="Gentium Book Basic" line-height="125%">
|
|
183
|
+
<tspan y="-133.94" x="-1042.71"/>
|
|
184
|
+
</text>
|
|
185
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-886.62" x="-62.764" font-family="Arial"/>
|
|
186
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-350.42" x="55.34" font-family="Gentium Book Basic" line-height="125%">
|
|
187
|
+
<tspan y="-350.42" x="55.34"/>
|
|
188
|
+
</text>
|
|
189
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1755.3" x="210.87" font-family="Arial"/>
|
|
190
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-430.42" x="636.61" font-family="Gentium Book Basic" line-height="125%">
|
|
191
|
+
<tspan y="-430.42" x="636.61"/>
|
|
192
|
+
</text>
|
|
193
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-2076.33" x="355.72" font-family="Arial"/>
|
|
194
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-902.82" x="247.49" font-family="Gentium Book Basic" line-height="125%">
|
|
195
|
+
<tspan y="-902.82" x="247.49"/>
|
|
196
|
+
</text>
|
|
197
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3971.98" x="258.75" font-family="Arial"/>
|
|
198
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-982.82" x="828.76" font-family="Gentium Book Basic" line-height="125%">
|
|
199
|
+
<tspan y="-982.82" x="828.76"/>
|
|
200
|
+
</text>
|
|
201
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-4293.02" x="403.6" font-family="Arial"/>
|
|
202
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" transform="translate(-657.36-99.8)" line-height="125%">
|
|
203
|
+
<text y="531.69" x="-346.69" font-size="208.33">
|
|
204
|
+
<tspan y="531.69" x="-346.69"/>
|
|
205
|
+
</text>
|
|
206
|
+
<text y="-15.584" x="-931.86" font-size="200">
|
|
207
|
+
<tspan y="-15.584" x="-931.86"/>
|
|
208
|
+
</text>
|
|
209
|
+
</g>
|
|
210
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-1003.37" x="-91.02" font-family="Arial"/>
|
|
211
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-62.24" x="-843.84" font-family="Gentium Book Basic" line-height="125%">
|
|
212
|
+
<tspan y="-62.24" x="-843.84"/>
|
|
213
|
+
</text>
|
|
214
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-790.12" x="94.73" font-family="Arial"/>
|
|
215
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-186.06" x="55.774" font-family="Gentium Book Basic" line-height="125%">
|
|
216
|
+
<tspan y="-186.06" x="55.774"/>
|
|
217
|
+
</text>
|
|
218
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-1286.97" x="318.91" font-family="Arial"/>
|
|
219
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-238.7" x="-816.38" font-family="Gentium Book Basic" line-height="125%">
|
|
220
|
+
<tspan y="-238.7" x="-816.38"/>
|
|
221
|
+
</text>
|
|
222
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-1498.2" x="101.57" font-family="Arial"/>
|
|
223
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-362.51" x="83.24" font-family="Gentium Book Basic" line-height="125%">
|
|
224
|
+
<tspan y="-362.51" x="83.24"/>
|
|
225
|
+
</text>
|
|
226
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-1995.06" x="325.75" font-family="Arial"/>
|
|
227
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="213.19" x="-3826.36" font-family="Gentium Book Basic" line-height="125%">
|
|
228
|
+
<tspan y="213.19" x="-3826.36"/>
|
|
229
|
+
</text>
|
|
230
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="315.12" x="-648.51" font-family="Arial"/>
|
|
231
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-22.24" x="-1898.08" font-family="Gentium Book Basic" line-height="125%">
|
|
232
|
+
<tspan y="-22.24" x="-1898.08"/>
|
|
233
|
+
</text>
|
|
234
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-629.6" x="-167.98" font-family="Arial"/>
|
|
235
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="30.903" x="-1152.7" font-family="Gentium Book Basic" line-height="125%">
|
|
236
|
+
<tspan y="30.903" x="-1152.7"/>
|
|
237
|
+
</text>
|
|
238
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-416.35" x="17.765" font-family="Arial"/>
|
|
239
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-92.91" x="-253.09" font-family="Gentium Book Basic" line-height="125%">
|
|
240
|
+
<tspan y="-92.91" x="-253.09"/>
|
|
241
|
+
</text>
|
|
242
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-913.21" x="241.94" font-family="Arial"/>
|
|
243
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-145.55" x="-1125.24" font-family="Gentium Book Basic" line-height="125%">
|
|
244
|
+
<tspan y="-145.55" x="-1125.24"/>
|
|
245
|
+
</text>
|
|
246
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-1124.43" x="24.605" font-family="Arial"/>
|
|
247
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-269.37" x="-225.62" font-family="Gentium Book Basic" line-height="125%">
|
|
248
|
+
<tspan y="-269.37" x="-225.62"/>
|
|
249
|
+
</text>
|
|
250
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-1621.29" x="248.79" font-family="Arial"/>
|
|
251
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="306.33" x="-4135.22" font-family="Gentium Book Basic" line-height="125%">
|
|
252
|
+
<tspan y="306.33" x="-4135.22"/>
|
|
253
|
+
</text>
|
|
254
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="688.89" x="-725.48" font-family="Arial"/>
|
|
255
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-139.1" x="-2612.65" font-family="Gentium Book Basic" line-height="125%">
|
|
256
|
+
<tspan y="-139.1" x="-2612.65"/>
|
|
257
|
+
</text>
|
|
258
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-1098.53" x="-346.05" font-family="Arial"/>
|
|
259
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-85.953" x="-1867.27" font-family="Gentium Book Basic" line-height="125%">
|
|
260
|
+
<tspan y="-85.953" x="-1867.27"/>
|
|
261
|
+
</text>
|
|
262
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-885.28" x="-160.31" font-family="Arial"/>
|
|
263
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-209.77" x="-967.66" font-family="Gentium Book Basic" line-height="125%">
|
|
264
|
+
<tspan y="-209.77" x="-967.66"/>
|
|
265
|
+
</text>
|
|
266
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-1382.14" x="63.875" font-family="Arial"/>
|
|
267
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-262.41" x="-1839.81" font-family="Gentium Book Basic" line-height="125%">
|
|
268
|
+
<tspan y="-262.41" x="-1839.81"/>
|
|
269
|
+
</text>
|
|
270
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-1593.36" x="-153.46" font-family="Arial"/>
|
|
271
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="-386.23" x="-940.19" font-family="Gentium Book Basic" line-height="125%">
|
|
272
|
+
<tspan y="-386.23" x="-940.19"/>
|
|
273
|
+
</text>
|
|
274
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="-2090.22" x="70.72" font-family="Arial"/>
|
|
275
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="200" y="189.47" x="-4849.79" font-family="Gentium Book Basic" line-height="125%">
|
|
276
|
+
<tspan y="189.47" x="-4849.79"/>
|
|
277
|
+
</text>
|
|
278
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="72.67" y="219.96" x="-903.55" font-family="Arial"/>
|
|
279
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="39.42" x="-210.56" font-family="Gentium Book Basic" line-height="125%">
|
|
280
|
+
<tspan y="39.42" x="-210.56"/>
|
|
281
|
+
</text>
|
|
282
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-190.99" x="144.61" font-family="Arial"/>
|
|
283
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-40.585" x="370.71" font-family="Gentium Book Basic" line-height="125%">
|
|
284
|
+
<tspan y="-40.585" x="370.71"/>
|
|
285
|
+
</text>
|
|
286
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-512.02" x="289.46" font-family="Arial"/>
|
|
287
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-221.85" x="-700.87" font-family="Gentium Book Basic" line-height="125%">
|
|
288
|
+
<tspan y="-221.85" x="-700.87"/>
|
|
289
|
+
</text>
|
|
290
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1239.38" x="22.42" font-family="Arial"/>
|
|
291
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-438.31" x="397.18" font-family="Gentium Book Basic" line-height="125%">
|
|
292
|
+
<tspan y="-438.31" x="397.18"/>
|
|
293
|
+
</text>
|
|
294
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-2108.04" x="296.06" font-family="Arial"/>
|
|
295
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-518.32" x="978.45" font-family="Gentium Book Basic" line-height="125%">
|
|
296
|
+
<tspan y="-518.32" x="978.45"/>
|
|
297
|
+
</text>
|
|
298
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-2429.08" x="440.91" font-family="Arial"/>
|
|
299
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-990.72" x="589.33" font-family="Gentium Book Basic" line-height="125%">
|
|
300
|
+
<tspan y="-990.72" x="589.33"/>
|
|
301
|
+
</text>
|
|
302
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-4324.73" x="343.94" font-family="Arial"/>
|
|
303
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-1070.72" x="1170.59" font-family="Gentium Book Basic" line-height="125%">
|
|
304
|
+
<tspan y="-1070.72" x="1170.59"/>
|
|
305
|
+
</text>
|
|
306
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-4645.76" x="488.79" font-family="Arial"/>
|
|
307
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="344" x="-662.21" font-family="Gentium Book Basic" line-height="125%">
|
|
308
|
+
<tspan y="344" x="-662.21"/>
|
|
309
|
+
</text>
|
|
310
|
+
<g transform="translate(-.005.002)" fill-opacity=".078">
|
|
311
|
+
<path d="m66.61 0c-4.047 0-7.299 3.253-7.299 7.299v497.4c0 4.047 3.253 7.299 7.299 7.299h378.79c4.047 0 7.299-3.253 7.299-7.299v-359.46l-145.21-145.24h-240.88"/>
|
|
312
|
+
<path d="m69.2 3.5c-3.991 0-7.2 3.208-7.2 7.2v490.6c0 3.991 3.208 7.2 7.2 7.2h373.61c3.991 0 7.2-3.208 7.2-7.2v-354.55l-143.22-143.25h-237.59"/>
|
|
313
|
+
<path d="m71.786 7c-3.936 0-7.1 3.164-7.1 7.1v483.8c0 3.936 3.164 7.1 7.1 7.1h368.43c3.936 0 7.1-3.164 7.1-7.1v-349.63l-141.24-141.27h-234.29"/>
|
|
314
|
+
</g>
|
|
315
|
+
<path fill="#f48c2c" d="m74.38 10.502c-3.881 0-7 3.119-7 7v477c0 3.881 3.119 7 7 7h363.25c3.881 0 7-3.119 7-7v-344.72l-139.25-139.28h-231"/>
|
|
316
|
+
<path d="m308.77 148.78c4.487 5.957 11.24 10.578 16.06 16.313 39.915 39.949 79.85 79.881 119.78 119.81v-135.12h-132.25c-1.321 0-2.542-0.37-3.594-1" fill-opacity=".235"/>
|
|
317
|
+
<path fill="#fff" d="m444.62 149.78l-139.25-139.28v132.28c0 3.881 3.119 7 7 7h132.25" fill-opacity=".196"/>
|
|
318
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="36.11" x="1428.22" font-family="Gentium Book Basic" line-height="125%">
|
|
319
|
+
<tspan y="36.11" x="1428.22"/>
|
|
320
|
+
</text>
|
|
321
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-204.27" x="552.99" font-family="Arial"/>
|
|
322
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-43.894" x="2009.49" font-family="Gentium Book Basic" line-height="125%">
|
|
323
|
+
<tspan y="-43.894" x="2009.49"/>
|
|
324
|
+
</text>
|
|
325
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-525.3" x="697.84" font-family="Arial"/>
|
|
326
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-225.16" x="937.91" font-family="Gentium Book Basic" line-height="125%">
|
|
327
|
+
<tspan y="-225.16" x="937.91"/>
|
|
328
|
+
</text>
|
|
329
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1252.66" x="430.8" font-family="Arial"/>
|
|
330
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-441.62" x="2035.96" font-family="Gentium Book Basic" line-height="125%">
|
|
331
|
+
<tspan y="-441.62" x="2035.96"/>
|
|
332
|
+
</text>
|
|
333
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-2121.32" x="704.44" font-family="Arial"/>
|
|
334
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-521.63" x="2617.23" font-family="Gentium Book Basic" line-height="125%">
|
|
335
|
+
<tspan y="-521.63" x="2617.23"/>
|
|
336
|
+
</text>
|
|
337
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-2442.36" x="849.29" font-family="Arial"/>
|
|
338
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-994.03" x="2228.11" font-family="Gentium Book Basic" line-height="125%">
|
|
339
|
+
<tspan y="-994.03" x="2228.11"/>
|
|
340
|
+
</text>
|
|
341
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-4338.01" x="752.32" font-family="Arial"/>
|
|
342
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-1074.03" x="2809.37" font-family="Gentium Book Basic" line-height="125%">
|
|
343
|
+
<tspan y="-1074.03" x="2809.37"/>
|
|
344
|
+
</text>
|
|
345
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-4659.04" x="897.17" font-family="Arial"/>
|
|
346
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="340.69" x="976.57" font-family="Gentium Book Basic" line-height="125%">
|
|
347
|
+
<tspan y="340.69" x="976.57"/>
|
|
348
|
+
</text>
|
|
349
|
+
<g fill-rule="evenodd">
|
|
350
|
+
<path opacity=".25" d="m211.63 180.02c-5.233 0.116-9.871 2.38-12.289 6.568-3.287 5.693-1.459 13.153 3.969 18.58l41.498 41.498-54.686 14.672c-0.254 0.068-0.502 0.143-0.75 0.219l-49.875 13.375c-10.04 2.691-16.384 11.305-14.25 19.281 0.575 2.147 1.705 4.02 3.246 5.563l36.922 36.922-34.387 47.734c-5.589 7.758-5.61 17.392-0.361 22.641l94.43 94.43h212.53c3.881 0 7-3.119 7-7v-143.46l-85.69-85.69c-5.101-5.101-10.853-9.699-17.219-13.666-0.221-0.152-0.459-0.291-0.688-0.438l-0.016-0.018-0.016-0.014c-0.3-0.191-0.594-0.382-0.906-0.563l-26.969-15.563-63.09-36.438-26.969-15.563c-3.376-1.949-6.979-2.953-10.375-3.063-0.354-0.011-0.706-0.014-1.055-0.006"/>
|
|
351
|
+
<path d="m212.69 180.03c-5.659-0.183-10.764 2.095-13.344 6.563-4.127 7.148-0.19 17.08 8.813 22.281l26.969 15.594 28.469 16.406c-3.231 0.94-6.411 2.04-9.531 3.313l-63.938 17.16c-0.254 0.068-0.502 0.143-0.75 0.219l-49.875 13.375c-10.04 2.691-16.384 11.305-14.25 19.281 2.136 7.973 11.929 12.192 21.969 9.5l52-13.938-7.06 9.813c-0.115 0.151-0.231 0.314-0.344 0.469l-60.781 84.38c-6.075 8.432-5.572 19.08 1.125 23.906 6.697 4.825 16.983 1.934 23.06-6.5l12.594-17.469c0.121-0.16 0.226-0.305 0.344-0.469l26.781-37.19c3.938 28.514 20.518 54.994 47.38 70.5 46.18 26.662 105.24 10.839 131.91-35.34 26.11-45.22 11.482-102.78-32.5-130.19-0.221-0.152-0.459-0.291-0.688-0.438-0.012-0.007-0.019-0.024-0.031-0.031-0.3-0.191-0.594-0.382-0.906-0.563l-26.969-15.563-63.09-36.438-26.969-15.563c-3.376-1.949-6.979-2.953-10.375-3.063m76.875 104.66c8.649-0.194 17.43 1.921 25.469 6.563 23.385 13.502 31.408 43.4 17.906 66.781-13.502 23.385-43.4 31.408-66.781 17.906-23.386-13.502-31.408-43.43-17.906-66.813 8.86-15.347 24.8-24.07 41.31-24.438m0.344 16.75c-10.855 0.243-21.331 5.973-27.16 16.06-8.876 15.375-3.593 35.06 11.781 43.938 15.375 8.877 35.03 3.593 43.906-11.781 8.877-15.375 3.593-35.03-11.781-43.906-5.285-3.051-11.06-4.44-16.75-4.313" fill="#fff"/>
|
|
352
|
+
</g>
|
|
353
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
|
3
|
+
<g fill-opacity=".078">
|
|
4
|
+
<rect width="464.07" rx="58.46" x="23.964" height="512"/>
|
|
5
|
+
<rect y="3.5" width="457.73" rx="57.661" x="27.14" height="505"/>
|
|
6
|
+
<rect y="7" width="451.38" rx="56.862" x="30.31" height="498"/>
|
|
7
|
+
</g>
|
|
8
|
+
<rect rx="56.06" height="491" width="445.04" y="10.5" x="33.481" fill="#ba9f74"/>
|
|
9
|
+
<path fill="#282629" d="m33.469 334.16v111.28c0 31.06 25 56.06 56.06 56.06h332.94c31.06 0 56.06-25 56.06-56.06v-111.28h-445.06" fill-opacity=".235"/>
|
|
10
|
+
<rect rx="10.523" height="58.46" width="147.32" y="387.54" x="89.46" fill="#fff"/>
|
|
11
|
+
<path d="m101.8 392.78v47.969h10.458v-47.969h-10.458m20.376 0v47.969h2.185v-47.969h-2.185m14.411 0v47.969h5.843v-47.969h-5.843m13.944 0v47.969h10.409v-47.969h-10.409m17.946 0v47.969h6.948v-47.969h-6.948m14.19 0v47.969h11.05v-47.969h-11.05m19.15 0v47.969h5.205v-47.969h-5.205m15.05 0v47.969h7.586v-47.969h-7.586" fill="#282629"/>
|
|
12
|
+
<path opacity=".25" d="m351.44 10.5c0.883 1.346 1.375 2.867 1.375 4.5v6.813c0 5.376-5.422 9.719-12.12 9.719h-7.875c0.02 0.247 0.031 0.467 0.031 0.719 0 1.308-0.269 2.57-0.75 3.719 4.604 0.938 7.969 4.377 7.969 8.531v6.188c0 4.879-4.677 8.781-10.5 8.781h-4.813c0.127 0.655 0.219 1.337 0.219 2.031 0 1.296-0.231 2.516-0.656 3.656 4.206 0.894 7.313 4.397 7.313 8.594v6.156c0 4.879-4.232 8.813-9.469 8.813h-4.875c0.021 0.289 0 0.579 0 0.875 0 1.639-0.349 3.159-0.938 4.531 3.57 0.991 6.188 4.401 6.188 8.5v6.188c0 4.879-3.704 8.781-8.313 8.781h-8.469c0.141 0.707 0.219 1.456 0.219 2.219 0 1.651-0.354 3.2-0.969 4.531 3.711 0.187 6.656 3.73 6.656 8.156v5.75c0 4.547-3.115 8.219-6.969 8.219h-7c0.109 0.559 0.188 1.149 0.188 1.75 0 1.16-0.209 2.241-0.594 3.219 2.357 1.032 4.094 4.278 4.094 8.156v5.969c0 4.713-2.546 8.5-5.688 8.5h-8.438c0.083 0.564 0.125 1.143 0.125 1.75 0 2.037-0.504 3.876-1.313 5.219 2.14 0.38 3.781 3.506 3.781 7.375v5.219c0 4.126-1.873 7.438-4.219 7.438h-15.313v19.844c5.306 0.78 8.906 2.294 8.906 4.03v64.22c0 0.342-0.143 0.68-0.406 1-0.157 11.483-10.481 20.781-23.16 20.781-6.387 0-12.162-2.382-16.344-6.188l195.38 195.41c25.13-5.555 43.844-27.867 43.844-54.719v-307.84l-127.09-127.09m-191.47 1.031c-0.341 0.715-0.568 1.495-0.688 2.281 0.12-0.789 0.346-1.564 0.688-2.281m-0.781 10.281c0 0.341 0.02 0.668 0.063 1-0.041-0.327-0.063-0.664-0.063-1m0.313 2.156c0.069 0.243 0.159 0.483 0.25 0.719-0.094-0.242-0.18-0.469-0.25-0.719m0.25 0.719c0.119 0.308 0.251 0.613 0.406 0.906-0.153-0.291-0.288-0.602-0.406-0.906m0.906 1.75c0.115 0.169 0.217 0.337 0.344 0.5-0.124-0.16-0.231-0.334-0.344-0.5m1.313 1.563l11.656 11.656c1.429-1.827 3.659-3.153 6.281-3.688-0.481-1.149-0.75-2.411-0.75-3.719 0-0.252 0.012-0.472 0.031-0.719h-7.875c-3.77 0-7.123-1.373-9.344-3.531m10.313 14.25c-0.057 0.188-0.114 0.37-0.156 0.563 0.044-0.193 0.098-0.375 0.156-0.563m2.719 14.656l9.531 9.563c0.948-0.598 2-1.067 3.156-1.313-0.425-1.14-0.656-2.36-0.656-3.656 0-0.694 0.092-1.376 0.219-2.031h-4.813c-2.912 0-5.54-0.975-7.438-2.563m5.5 15.406c-0.031 0.176-0.043 0.352-0.063 0.531 0.019-0.172 0.033-0.362 0.063-0.531m-0.125 7.594c0 0.494 0.073 0.967 0.156 1.438-0.083-0.472-0.156-0.943-0.156-1.438m0.281 2.125c0.045 0.169 0.101 0.335 0.156 0.5-0.055-0.164-0.112-0.332-0.156-0.5m0.531 1.406c0.106 0.226 0.218 0.441 0.344 0.656-0.126-0.217-0.237-0.429-0.344-0.656m0.344 0.656c0.146 0.25 0.298 0.484 0.469 0.719-0.17-0.234-0.323-0.469-0.469-0.719m1.625 2.031l9.531 9.563c0.869-0.709 1.875-1.259 2.969-1.563-0.588-1.372-0.938-2.892-0.938-4.531 0-0.296-0.021-0.586 0-0.875h-4.875c-2.618 0-4.978-1-6.688-2.594m9.313 29.469l10.5 10.5c1.112-1.035 2.512-1.673 4.03-1.75-0.615-1.331-0.969-2.88-0.969-4.531 0-0.762 0.078-1.512 0.219-2.219h-8.469c-2.02 0-3.876-0.749-5.313-2m10.938 29.5l8.75 8.781c0.69-1.114 1.562-2 2.563-2.438-0.385-0.977-0.594-2.058-0.594-3.219 0-0.601 0.078-1.191 0.188-1.75h-7c-1.445 0-2.796-0.49-3.906-1.375m7.469 12.09c-0.065 0.319-0.117 0.665-0.156 1 0.039-0.343 0.091-0.672 0.156-1m-0.156 1c-0.053 0.457-0.094 0.923-0.094 1.406 0-0.485 0.042-0.945 0.094-1.406m-0.063 8.25c0.019 0.279 0.057 0.542 0.094 0.813-0.036-0.268-0.075-0.536-0.094-0.813m2.938 6.594l9.906 9.938c0.65-1.059 1.498-1.771 2.438-1.938-0.809-1.343-1.313-3.181-1.313-5.219 0-0.607 0.042-1.186 0.125-1.75h-8.438c-0.982 0-1.914-0.378-2.719-1.031m11.125 27.469l17.469 17.5 1-16.938h-16.813c-0.586 0-1.15-0.188-1.656-0.563m17.281 20.406c-1.283 0.194-2.442 0.441-3.469 0.719 1.027-0.276 2.186-0.525 3.469-0.719m-1.875 68.03c0.591 8.445 7.478 15.13 15.875 15.13 8.343 0 15.208-6.569 15.875-14.938h-28.594c-1.107 0-2.196-0.082-3.156-0.188"/>
|
|
13
|
+
<path fill="#fdf6ea" d="m160.57 10.5c-0.883 1.346-1.378 2.881-1.378 4.514v6.794c0 5.376 5.413 9.716 12.12 9.716h7.887c-0.019 0.247-0.024 0.485-0.024 0.736 0 1.308 0.255 2.557 0.736 3.706-4.604 0.938-7.982 4.375-7.982 8.529v6.177c0 4.879 4.677 8.79 10.5 8.79h4.823c-0.127 0.655-0.214 1.349-0.214 2.043 0 1.296 0.24 2.518 0.665 3.659-4.206 0.894-7.317 4.379-7.317 8.576v6.153c0 4.879 4.218 8.814 9.455 8.814h4.894c-0.021 0.289-0.024 0.583-0.024 0.879 0 1.639 0.362 3.165 0.95 4.538-3.57 0.991-6.2 4.406-6.2 8.505v6.177c0 4.879 3.707 8.79 8.315 8.79h8.481c-0.141 0.707-0.214 1.447-0.214 2.209 0 1.651 0.335 3.206 0.95 4.537-3.711 0.187-6.652 3.746-6.652 8.172v5.749c0 4.547 3.107 8.22 6.961 8.22h7.01c-0.109 0.559-0.19 1.134-0.19 1.734 0 1.16 0.209 2.254 0.594 3.231-2.357 1.032-4.086 4.27-4.086 8.148v5.963c0 4.713 2.536 8.505 5.678 8.505h8.434c-0.083 0.564-0.119 1.128-0.119 1.734 0 2.037 0.498 3.883 1.307 5.226-2.14 0.38-3.777 3.52-3.777 7.388v5.226c0 4.126 1.883 7.436 4.229 7.436h16.82l-1.188 19.837c-5.132 0.774-8.388 2.264-8.41 4.01l-0.76 61.696c-0.184 1.067-0.285 2.165-0.285 3.278 0 11.606 10.341 21.02 23.12 21.02 12.676 0 22.982-9.28 23.14-20.763 0.263-0.32 0.404-0.656 0.404-0.998v-64.24c0-1.737-3.602-3.235-8.909-4.01v-19.837h15.323c2.346 0 4.229-3.309 4.229-7.436v-5.226c0-3.869-1.637-7.01-3.777-7.388 0.809-1.343 1.307-3.189 1.307-5.226 0-0.607-0.036-1.17-0.119-1.734h8.434c3.142 0 5.678-3.792 5.678-8.505v-5.963c0-3.878-1.729-7.117-4.086-8.148 0.385-0.977 0.594-2.071 0.594-3.231 0-0.601-0.081-1.175-0.19-1.734h7.01c3.854 0 6.961-3.673 6.961-8.22v-5.749c0-4.426-2.941-7.985-6.652-8.172 0.615-1.331 0.95-2.886 0.95-4.537 0-0.762-0.073-1.503-0.214-2.209h8.481c4.608 0 8.315-3.911 8.315-8.79v-6.177c0-4.099-2.63-7.514-6.2-8.505 0.588-1.372 0.95-2.898 0.95-4.538 0-0.296-0.003-0.59-0.024-0.879h4.894c5.237 0 9.455-3.935 9.455-8.814v-6.153c0-4.197-3.111-7.682-7.317-8.576 0.425-1.14 0.665-2.362 0.665-3.659 0-0.694-0.087-1.388-0.214-2.043h4.823c5.823 0 10.5-3.911 10.5-8.79v-6.177c0-4.154-3.378-7.591-7.982-8.529 0.481-1.149 0.736-2.398 0.736-3.706 0-0.252-0.004-0.489-0.024-0.736h7.887c6.703 0 12.12-4.34 12.12-9.716v-6.794c0-1.633-0.495-3.168-1.378-4.514h-190.86m79.56 278.45c0.96 0.106 2.029 0.166 3.136 0.166h28.603c-0.667 8.368-7.526 14.943-15.869 14.943-8.397 0-15.279-6.664-15.869-15.11" fill-opacity=".44"/>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
|
3
|
+
<g fill-opacity=".078">
|
|
4
|
+
<rect width="464.07" rx="58.46" x="23.964" height="512"/>
|
|
5
|
+
<rect y="3.5" width="457.73" rx="57.661" x="27.14" height="505"/>
|
|
6
|
+
<rect y="7" width="451.38" rx="56.862" x="30.31" height="498"/>
|
|
7
|
+
</g>
|
|
8
|
+
<rect rx="56.06" height="491" width="445.04" y="10.5" x="33.481" fill="#ba9f74"/>
|
|
9
|
+
<path fill="#282629" d="m33.469 334.16v111.28c0 31.06 25 56.06 56.06 56.06h332.94c31.06 0 56.06-25 56.06-56.06v-111.28h-445.06" fill-opacity=".235"/>
|
|
10
|
+
<rect rx="10.523" height="58.46" width="147.32" y="387.54" x="89.46" fill="#fff"/>
|
|
11
|
+
<path d="m101.8 392.78v47.969h10.458v-47.969h-10.458m20.376 0v47.969h2.185v-47.969h-2.185m14.411 0v47.969h5.843v-47.969h-5.843m13.944 0v47.969h10.409v-47.969h-10.409m17.946 0v47.969h6.948v-47.969h-6.948m14.19 0v47.969h11.05v-47.969h-11.05m19.15 0v47.969h5.205v-47.969h-5.205m15.05 0v47.969h7.586v-47.969h-7.586" fill="#282629"/>
|
|
12
|
+
<path opacity=".25" d="m351.44 10.5c0.883 1.346 1.375 2.867 1.375 4.5v6.813c0 5.376-5.422 9.719-12.12 9.719h-7.875c0.02 0.247 0.031 0.467 0.031 0.719 0 1.308-0.269 2.57-0.75 3.719 4.604 0.938 7.969 4.377 7.969 8.531v6.188c0 4.879-4.677 8.781-10.5 8.781h-4.813c0.127 0.655 0.219 1.337 0.219 2.031 0 1.296-0.231 2.516-0.656 3.656 4.206 0.894 7.313 4.397 7.313 8.594v6.156c0 4.879-4.232 8.813-9.469 8.813h-4.875c0.021 0.289 0 0.579 0 0.875 0 1.639-0.349 3.159-0.938 4.531 3.57 0.991 6.188 4.401 6.188 8.5v6.188c0 4.879-3.704 8.781-8.313 8.781h-8.469c0.141 0.707 0.219 1.456 0.219 2.219 0 1.651-0.354 3.2-0.969 4.531 3.711 0.187 6.656 3.73 6.656 8.156v5.75c0 4.547-3.115 8.219-6.969 8.219h-7c0.109 0.559 0.188 1.149 0.188 1.75 0 1.16-0.209 2.241-0.594 3.219 2.357 1.032 4.094 4.278 4.094 8.156v5.969c0 4.713-2.546 8.5-5.688 8.5h-8.438c0.083 0.564 0.125 1.143 0.125 1.75 0 2.037-0.504 3.876-1.313 5.219 2.14 0.38 3.781 3.506 3.781 7.375v5.219c0 4.126-1.873 7.438-4.219 7.438h-15.313v19.844c5.306 0.78 8.906 2.294 8.906 4.03v64.22c0 0.342-0.143 0.68-0.406 1-0.157 11.483-10.481 20.781-23.16 20.781-6.387 0-12.162-2.382-16.344-6.188l195.38 195.41c25.13-5.555 43.844-27.867 43.844-54.719v-307.84l-127.09-127.09m-191.47 1.031c-0.341 0.715-0.568 1.495-0.688 2.281 0.12-0.789 0.346-1.564 0.688-2.281m-0.781 10.281c0 0.341 0.02 0.668 0.063 1-0.041-0.327-0.063-0.664-0.063-1m0.313 2.156c0.069 0.243 0.159 0.483 0.25 0.719-0.094-0.242-0.18-0.469-0.25-0.719m0.25 0.719c0.119 0.308 0.251 0.613 0.406 0.906-0.153-0.291-0.288-0.602-0.406-0.906m0.906 1.75c0.115 0.169 0.217 0.337 0.344 0.5-0.124-0.16-0.231-0.334-0.344-0.5m1.313 1.563l11.656 11.656c1.429-1.827 3.659-3.153 6.281-3.688-0.481-1.149-0.75-2.411-0.75-3.719 0-0.252 0.012-0.472 0.031-0.719h-7.875c-3.77 0-7.123-1.373-9.344-3.531m10.313 14.25c-0.057 0.188-0.114 0.37-0.156 0.563 0.044-0.193 0.098-0.375 0.156-0.563m2.719 14.656l9.531 9.563c0.948-0.598 2-1.067 3.156-1.313-0.425-1.14-0.656-2.36-0.656-3.656 0-0.694 0.092-1.376 0.219-2.031h-4.813c-2.912 0-5.54-0.975-7.438-2.563m5.5 15.406c-0.031 0.176-0.043 0.352-0.063 0.531 0.019-0.172 0.033-0.362 0.063-0.531m-0.125 7.594c0 0.494 0.073 0.967 0.156 1.438-0.083-0.472-0.156-0.943-0.156-1.438m0.281 2.125c0.045 0.169 0.101 0.335 0.156 0.5-0.055-0.164-0.112-0.332-0.156-0.5m0.531 1.406c0.106 0.226 0.218 0.441 0.344 0.656-0.126-0.217-0.237-0.429-0.344-0.656m0.344 0.656c0.146 0.25 0.298 0.484 0.469 0.719-0.17-0.234-0.323-0.469-0.469-0.719m1.625 2.031l9.531 9.563c0.869-0.709 1.875-1.259 2.969-1.563-0.588-1.372-0.938-2.892-0.938-4.531 0-0.296-0.021-0.586 0-0.875h-4.875c-2.618 0-4.978-1-6.688-2.594m9.313 29.469l10.5 10.5c1.112-1.035 2.512-1.673 4.03-1.75-0.615-1.331-0.969-2.88-0.969-4.531 0-0.762 0.078-1.512 0.219-2.219h-8.469c-2.02 0-3.876-0.749-5.313-2m10.938 29.5l8.75 8.781c0.69-1.114 1.562-2 2.563-2.438-0.385-0.977-0.594-2.058-0.594-3.219 0-0.601 0.078-1.191 0.188-1.75h-7c-1.445 0-2.796-0.49-3.906-1.375m7.469 12.09c-0.065 0.319-0.117 0.665-0.156 1 0.039-0.343 0.091-0.672 0.156-1m-0.156 1c-0.053 0.457-0.094 0.923-0.094 1.406 0-0.485 0.042-0.945 0.094-1.406m-0.063 8.25c0.019 0.279 0.057 0.542 0.094 0.813-0.036-0.268-0.075-0.536-0.094-0.813m2.938 6.594l9.906 9.938c0.65-1.059 1.498-1.771 2.438-1.938-0.809-1.343-1.313-3.181-1.313-5.219 0-0.607 0.042-1.186 0.125-1.75h-8.438c-0.982 0-1.914-0.378-2.719-1.031m11.125 27.469l17.469 17.5 1-16.938h-16.813c-0.586 0-1.15-0.188-1.656-0.563m17.281 20.406c-1.283 0.194-2.442 0.441-3.469 0.719 1.027-0.276 2.186-0.525 3.469-0.719m-1.875 68.03c0.591 8.445 7.478 15.13 15.875 15.13 8.343 0 15.208-6.569 15.875-14.938h-28.594c-1.107 0-2.196-0.082-3.156-0.188"/>
|
|
13
|
+
<path fill="#fdf6ea" d="m160.57 10.5c-0.883 1.346-1.378 2.881-1.378 4.514v6.794c0 5.376 5.413 9.716 12.12 9.716h7.887c-0.019 0.247-0.024 0.485-0.024 0.736 0 1.308 0.255 2.557 0.736 3.706-4.604 0.938-7.982 4.375-7.982 8.529v6.177c0 4.879 4.677 8.79 10.5 8.79h4.823c-0.127 0.655-0.214 1.349-0.214 2.043 0 1.296 0.24 2.518 0.665 3.659-4.206 0.894-7.317 4.379-7.317 8.576v6.153c0 4.879 4.218 8.814 9.455 8.814h4.894c-0.021 0.289-0.024 0.583-0.024 0.879 0 1.639 0.362 3.165 0.95 4.538-3.57 0.991-6.2 4.406-6.2 8.505v6.177c0 4.879 3.707 8.79 8.315 8.79h8.481c-0.141 0.707-0.214 1.447-0.214 2.209 0 1.651 0.335 3.206 0.95 4.537-3.711 0.187-6.652 3.746-6.652 8.172v5.749c0 4.547 3.107 8.22 6.961 8.22h7.01c-0.109 0.559-0.19 1.134-0.19 1.734 0 1.16 0.209 2.254 0.594 3.231-2.357 1.032-4.086 4.27-4.086 8.148v5.963c0 4.713 2.536 8.505 5.678 8.505h8.434c-0.083 0.564-0.119 1.128-0.119 1.734 0 2.037 0.498 3.883 1.307 5.226-2.14 0.38-3.777 3.52-3.777 7.388v5.226c0 4.126 1.883 7.436 4.229 7.436h16.82l-1.188 19.837c-5.132 0.774-8.388 2.264-8.41 4.01l-0.76 61.696c-0.184 1.067-0.285 2.165-0.285 3.278 0 11.606 10.341 21.02 23.12 21.02 12.676 0 22.982-9.28 23.14-20.763 0.263-0.32 0.404-0.656 0.404-0.998v-64.24c0-1.737-3.602-3.235-8.909-4.01v-19.837h15.323c2.346 0 4.229-3.309 4.229-7.436v-5.226c0-3.869-1.637-7.01-3.777-7.388 0.809-1.343 1.307-3.189 1.307-5.226 0-0.607-0.036-1.17-0.119-1.734h8.434c3.142 0 5.678-3.792 5.678-8.505v-5.963c0-3.878-1.729-7.117-4.086-8.148 0.385-0.977 0.594-2.071 0.594-3.231 0-0.601-0.081-1.175-0.19-1.734h7.01c3.854 0 6.961-3.673 6.961-8.22v-5.749c0-4.426-2.941-7.985-6.652-8.172 0.615-1.331 0.95-2.886 0.95-4.537 0-0.762-0.073-1.503-0.214-2.209h8.481c4.608 0 8.315-3.911 8.315-8.79v-6.177c0-4.099-2.63-7.514-6.2-8.505 0.588-1.372 0.95-2.898 0.95-4.538 0-0.296-0.003-0.59-0.024-0.879h4.894c5.237 0 9.455-3.935 9.455-8.814v-6.153c0-4.197-3.111-7.682-7.317-8.576 0.425-1.14 0.665-2.362 0.665-3.659 0-0.694-0.087-1.388-0.214-2.043h4.823c5.823 0 10.5-3.911 10.5-8.79v-6.177c0-4.154-3.378-7.591-7.982-8.529 0.481-1.149 0.736-2.398 0.736-3.706 0-0.252-0.004-0.489-0.024-0.736h7.887c6.703 0 12.12-4.34 12.12-9.716v-6.794c0-1.633-0.495-3.168-1.378-4.514h-190.86m79.56 278.45c0.96 0.106 2.029 0.166 3.136 0.166h28.603c-0.667 8.368-7.526 14.943-15.869 14.943-8.397 0-15.279-6.664-15.869-15.11" fill-opacity=".44"/>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<g fill-opacity=".078" transform="matrix(0.922074, 0, 0, 0.922074, 31.000124, 19.949066)">
|
|
4
|
+
<path d="m82.44 0c-32.387 0-58.47 26.08-58.47 58.47v395.06c0 32.387 26.08 58.47 58.47 58.47h236.78l168.81-168.81v-284.72c0-32.387-26.08-58.47-58.47-58.47h-347.12"/>
|
|
5
|
+
<path d="m84.81 3.5c-31.944 0-57.688 25.712-57.688 57.656v389.69c0 31.944 25.743 57.656 57.688 57.656h234.91l165.16-165.16v-282.19c0-31.944-25.743-57.656-57.688-57.656h-342.37"/>
|
|
6
|
+
<path d="m87.16 7c-31.501 0-56.844 25.374-56.844 56.875v384.25c0 31.501 25.342 56.875 56.844 56.875h233.06l161.47-161.47v-279.66c0-31.501-25.342-56.875-56.844-56.875h-337.69"/>
|
|
7
|
+
</g>
|
|
8
|
+
<path d="M 113.553 29.631 C 84.914 29.631 61.862 52.683 61.862 81.322 L 61.862 430.678 C 61.862 459.317 84.914 482.369 113.553 482.369 L 326.728 482.369 L 472.24 336.857 L 472.24 81.331 C 472.24 52.692 449.188 29.64 420.549 29.64 L 113.553 29.64" fill="#ba9f74"/>
|
|
9
|
+
<path fill="#282629" d="M 61.861 328.069 L 61.861 430.678 C 61.861 459.317 84.913 482.369 113.552 482.369 L 326.727 482.369 L 472.239 336.857 L 472.239 328.068 L 61.861 328.068" fill-opacity=".235"/>
|
|
10
|
+
<rect rx="10.523" height="53.904" width="135.84" y="377.29" x="113.489" fill="#fff"/>
|
|
11
|
+
<path d="M 124.867 382.121 L 124.867 426.352 L 134.51 426.352 L 134.51 382.121 L 124.867 382.121 M 143.655 382.121 L 143.655 426.352 L 145.67 426.352 L 145.67 382.121 L 143.655 382.121 M 156.943 382.121 L 156.943 426.352 L 162.331 426.352 L 162.331 382.121 L 156.943 382.121 M 169.801 382.121 L 169.801 426.352 L 179.399 426.352 L 179.399 382.121 L 169.801 382.121 M 186.348 382.121 L 186.348 426.352 L 192.755 426.352 L 192.755 382.121 L 186.348 382.121 M 199.433 382.121 L 199.433 426.352 L 209.621 426.352 L 209.621 382.121 L 199.433 382.121 M 217.09 382.121 L 217.09 426.352 L 221.89 426.352 L 221.89 382.121 L 217.09 382.121 M 230.968 382.121 L 230.968 426.352 L 237.962 426.352 L 237.962 382.121 L 230.968 382.121" fill="#282629"/>
|
|
12
|
+
<path opacity=".25" d="M 355.054 29.631 C 355.868 30.872 356.322 32.274 356.322 33.78 L 356.322 40.062 C 356.322 45.019 351.322 49.024 345.146 49.024 L 337.885 49.024 C 337.903 49.252 337.913 49.454 337.913 49.687 C 337.913 50.893 337.665 52.057 337.222 53.116 C 341.467 53.981 344.57 57.152 344.57 60.982 L 344.57 66.688 C 344.57 71.187 340.257 74.785 334.888 74.785 L 330.45 74.785 C 330.567 75.389 330.652 76.018 330.652 76.657 C 330.652 77.853 330.439 78.977 330.047 80.029 C 333.925 80.853 336.79 84.083 336.79 87.953 L 336.79 93.629 C 336.79 98.128 332.888 101.755 328.059 101.755 L 323.564 101.755 C 323.583 102.022 323.564 102.289 323.564 102.562 C 323.564 104.074 323.242 105.475 322.699 106.74 C 325.991 107.654 328.405 110.798 328.405 114.578 L 328.405 120.284 C 328.405 124.782 324.99 128.38 320.74 128.38 L 312.931 128.38 C 313.061 129.032 313.133 129.723 313.133 130.426 C 313.133 131.949 312.806 133.377 312.239 134.604 C 315.661 134.777 318.376 138.044 318.376 142.125 L 318.376 147.427 C 318.376 151.619 315.504 155.005 311.951 155.005 L 305.496 155.005 C 305.597 155.521 305.669 156.065 305.669 156.619 C 305.669 157.688 305.477 158.685 305.122 159.587 C 307.295 160.539 308.897 163.532 308.897 167.107 L 308.897 172.611 C 308.897 176.957 306.549 180.449 303.652 180.449 L 295.871 180.449 C 295.948 180.969 295.987 181.503 295.987 182.063 C 295.987 183.941 295.522 185.637 294.776 186.875 C 296.749 187.225 298.262 190.108 298.262 193.675 L 298.262 198.488 C 298.262 202.292 296.535 205.346 294.372 205.346 L 280.252 205.346 L 280.252 223.644 C 285.145 224.363 288.464 225.759 288.464 227.36 L 288.464 286.575 C 288.464 286.89 288.333 287.202 288.09 287.497 C 287.945 298.085 278.426 306.659 266.735 306.659 C 260.845 306.659 255.521 304.462 251.664 300.953 L 327.966 377.255 C 333.098 354.092 353.671 336.856 378.421 336.856 L 472.242 336.856 L 472.242 146.826 L 355.056 29.639 M 177.787 40.071 C 177.787 40.385 177.805 40.686 177.845 40.993 C 177.807 40.691 177.787 40.38 177.787 40.071 M 179.141 44.335 C 179.247 44.491 179.341 44.646 179.459 44.796 C 179.344 44.649 179.246 44.488 179.141 44.335 M 180.352 45.776 L 191.1 56.524 C 192.417 54.839 194.474 53.617 196.891 53.123 C 196.448 52.064 196.2 50.9 196.2 49.694 C 196.2 49.462 196.211 49.259 196.228 49.031 L 188.967 49.031 C 185.491 49.031 182.399 47.765 180.351 45.775 M 189.861 58.915 C 189.808 59.088 189.755 59.256 189.717 59.434 C 189.757 59.256 189.807 59.088 189.861 58.915 M 192.368 72.429 L 201.156 81.247 C 202.03 80.695 203 80.263 204.066 80.036 C 203.674 78.985 203.461 77.86 203.461 76.665 C 203.461 76.025 203.546 75.396 203.663 74.792 L 199.225 74.792 C 196.54 74.792 194.117 73.893 192.367 72.429 M 197.438 86.634 C 197.41 86.797 197.398 86.959 197.38 87.124 C 197.398 86.965 197.41 86.79 197.438 86.634 M 197.323 93.637 C 197.323 94.093 197.39 94.526 197.467 94.963 C 197.39 94.529 197.323 94.092 197.323 93.637 M 197.582 95.596 C 197.623 95.752 197.675 95.905 197.726 96.057 C 197.675 95.906 197.623 95.751 197.582 95.596 M 199.887 99.371 L 208.675 108.189 C 209.477 107.535 210.404 107.028 211.413 106.748 C 210.871 105.482 210.548 104.081 210.548 102.57 C 210.548 102.297 210.529 102.029 210.548 101.763 L 206.053 101.763 C 203.639 101.763 201.463 100.841 199.886 99.371 M 208.474 126.544 L 218.155 136.225 C 219.181 135.271 220.472 134.683 221.871 134.612 C 221.304 133.384 220.978 131.956 220.978 130.434 C 220.978 129.731 221.05 129.04 221.18 128.388 L 213.371 128.388 C 211.508 128.388 209.797 127.697 208.472 126.544 M 218.557 153.745 L 226.625 161.842 C 227.262 160.814 228.066 159.997 228.989 159.593 C 228.634 158.693 228.441 157.696 228.441 156.625 C 228.441 156.071 228.513 155.527 228.614 155.012 L 222.16 155.012 C 220.827 155.012 219.582 154.56 218.558 153.744 M 225.243 173.425 C 225.261 173.682 225.296 173.924 225.33 174.174 C 225.297 173.927 225.261 173.68 225.243 173.425 M 227.952 179.505 L 237.086 188.668 C 237.686 187.692 238.468 187.035 239.334 186.881 C 238.588 185.643 238.124 183.948 238.124 182.069 C 238.124 181.509 238.162 180.975 238.239 180.455 L 230.459 180.455 C 229.553 180.455 228.694 180.107 227.951 179.505 M 238.209 204.833 L 254.317 220.97 L 255.239 205.351 L 239.736 205.351 C 239.196 205.351 238.676 205.178 238.209 204.832 M 254.144 223.648 C 252.961 223.827 251.892 224.055 250.945 224.311 C 251.892 224.057 252.961 223.827 254.144 223.648 M 252.415 286.377 C 252.96 294.164 259.31 300.328 267.053 300.328 C 274.746 300.328 281.076 294.271 281.691 286.554 L 255.325 286.554 C 254.304 286.554 253.3 286.478 252.415 286.381"/>
|
|
13
|
+
<path fill="#fdf6ea" d="M 179.057 29.631 C 178.243 30.872 177.787 32.287 177.787 33.793 L 177.787 40.058 C 177.787 45.015 182.778 49.016 188.962 49.016 L 196.235 49.016 C 196.217 49.244 196.213 49.464 196.213 49.695 C 196.213 50.901 196.448 52.053 196.891 53.112 C 192.646 53.977 189.531 57.146 189.531 60.977 L 189.531 66.672 C 189.531 71.171 193.844 74.777 199.213 74.777 L 203.66 74.777 C 203.543 75.381 203.463 76.021 203.463 76.661 C 203.463 77.856 203.684 78.983 204.076 80.035 C 200.198 80.859 197.329 84.073 197.329 87.943 L 197.329 93.616 C 197.329 98.115 201.219 101.743 206.048 101.743 L 210.56 101.743 C 210.541 102.01 210.538 102.281 210.538 102.554 C 210.538 104.065 210.872 105.472 211.414 106.738 C 208.122 107.652 205.697 110.801 205.697 114.581 L 205.697 120.276 C 205.697 124.775 209.115 128.381 213.364 128.381 L 221.184 128.381 C 221.054 129.033 220.987 129.716 220.987 130.418 C 220.987 131.94 221.296 133.374 221.863 134.602 C 218.441 134.774 215.729 138.056 215.729 142.137 L 215.729 147.438 C 215.729 151.63 218.594 155.017 222.148 155.017 L 228.612 155.017 C 228.511 155.533 228.436 156.063 228.436 156.616 C 228.436 157.686 228.629 158.694 228.984 159.595 C 226.811 160.547 225.217 163.533 225.217 167.108 L 225.217 172.607 C 225.217 176.952 227.555 180.449 230.452 180.449 L 238.229 180.449 C 238.152 180.969 238.119 181.489 238.119 182.048 C 238.119 183.926 238.578 185.628 239.324 186.867 C 237.351 187.217 235.842 190.112 235.842 193.679 L 235.842 198.498 C 235.842 202.302 237.578 205.354 239.741 205.354 L 255.25 205.354 L 254.155 223.645 C 249.423 224.359 246.421 225.733 246.4 227.343 L 245.7 284.231 C 245.53 285.215 245.437 286.228 245.437 287.254 C 245.437 297.955 254.972 306.636 266.755 306.636 C 278.443 306.636 287.946 298.079 288.092 287.491 C 288.334 287.196 288.464 286.886 288.464 286.571 L 288.464 227.336 C 288.464 225.735 285.143 224.354 280.25 223.639 L 280.25 205.348 L 294.379 205.348 C 296.542 205.348 298.278 202.297 298.278 198.491 L 298.278 193.672 C 298.278 190.105 296.769 187.209 294.795 186.86 C 295.541 185.622 296.001 183.92 296.001 182.041 C 296.001 181.482 295.967 180.963 295.891 180.443 L 303.668 180.443 C 306.565 180.443 308.903 176.946 308.903 172.6 L 308.903 167.102 C 308.903 163.526 307.309 160.54 305.135 159.589 C 305.49 158.688 305.683 157.679 305.683 156.61 C 305.683 156.055 305.609 155.526 305.508 155.011 L 311.972 155.011 C 315.525 155.011 318.39 151.624 318.39 147.431 L 318.39 142.13 C 318.39 138.049 315.678 134.768 312.257 134.595 C 312.824 133.368 313.133 131.934 313.133 130.412 C 313.133 129.709 313.065 129.026 312.935 128.375 L 320.755 128.375 C 325.004 128.375 328.422 124.769 328.422 120.27 L 328.422 114.574 C 328.422 110.795 325.997 107.646 322.706 106.732 C 323.248 105.467 323.582 104.06 323.582 102.548 C 323.582 102.275 323.579 102.003 323.559 101.737 L 328.072 101.737 C 332.901 101.737 336.79 98.109 336.79 93.61 L 336.79 87.936 C 336.79 84.066 333.922 80.853 330.043 80.029 C 330.435 78.977 330.657 77.851 330.657 76.655 C 330.657 76.015 330.576 75.375 330.459 74.771 L 334.907 74.771 C 340.276 74.771 344.588 71.165 344.588 66.666 L 344.588 60.97 C 344.588 57.14 341.474 53.971 337.228 53.106 C 337.672 52.046 337.907 50.895 337.907 49.689 C 337.907 49.456 337.903 49.238 337.885 49.01 L 345.157 49.01 C 351.338 49.01 356.333 45.008 356.333 40.051 L 356.333 33.787 C 356.333 32.281 355.876 30.865 355.062 29.624 L 179.075 29.624 M 252.435 286.376 C 253.32 286.474 254.306 286.529 255.327 286.529 L 281.701 286.529 C 281.086 294.245 274.761 300.308 267.069 300.308 C 259.326 300.308 252.98 294.163 252.436 286.375" fill-opacity=".44"/>
|
|
14
|
+
<path id="0" fill-opacity=".196" fill="#fff" d="M 326.728 482.369 L 472.24 336.857 L 378.419 336.857 C 349.78 336.857 326.728 359.909 326.728 388.548 L 326.728 482.369"/>
|
|
15
|
+
<use width="1" height="1" transform="matrix(0.922074, 0, 0, 0.922074, 31.000124, 19.949066)" xlink:href="#0"/>
|
|
16
|
+
</svg>
|