@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,1135 @@
|
|
|
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
|
+
<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"/>
|
|
5
|
+
<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"/>
|
|
6
|
+
<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"/>
|
|
7
|
+
</g>
|
|
8
|
+
<path fill="#4a789c" d="m74.38 10.5c-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"/>
|
|
9
|
+
<path fill="#fff" d="m444.62 149.78l-139.25-139.28v132.28c0 3.881 3.119 7 7 7h132.25" fill-opacity=".196"/>
|
|
10
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="39.41" x="-210.55" font-family="Gentium Book Basic" line-height="125%">
|
|
11
|
+
<tspan y="39.41" x="-210.55"/>
|
|
12
|
+
</text>
|
|
13
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-191" x="144.61" font-family="Arial"/>
|
|
14
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-40.586" x="370.72" font-family="Gentium Book Basic" line-height="125%">
|
|
15
|
+
<tspan y="-40.586" x="370.72"/>
|
|
16
|
+
</text>
|
|
17
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-512.03" x="289.46" font-family="Arial"/>
|
|
18
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-221.85" x="-700.86" font-family="Gentium Book Basic" line-height="125%">
|
|
19
|
+
<tspan y="-221.85" x="-700.86"/>
|
|
20
|
+
</text>
|
|
21
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1239.38" x="22.422" font-family="Arial"/>
|
|
22
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-438.32" x="397.19" font-family="Gentium Book Basic" line-height="125%">
|
|
23
|
+
<tspan y="-438.32" x="397.19"/>
|
|
24
|
+
</text>
|
|
25
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-2108.05" x="296.06" font-family="Arial"/>
|
|
26
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-518.33" x="978.46" font-family="Gentium Book Basic" line-height="125%">
|
|
27
|
+
<tspan y="-518.33" x="978.46"/>
|
|
28
|
+
</text>
|
|
29
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-2429.09" x="440.91" font-family="Arial"/>
|
|
30
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-990.73" x="589.34" font-family="Gentium Book Basic" line-height="125%">
|
|
31
|
+
<tspan y="-990.73" x="589.34"/>
|
|
32
|
+
</text>
|
|
33
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-4324.74" x="343.94" font-family="Arial"/>
|
|
34
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-1070.73" x="1170.6" font-family="Gentium Book Basic" line-height="125%">
|
|
35
|
+
<tspan y="-1070.73" x="1170.6"/>
|
|
36
|
+
</text>
|
|
37
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-4645.77" x="488.79" font-family="Arial"/>
|
|
38
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%">
|
|
39
|
+
<text y="343.99" x="-662.2" font-size="208.33">
|
|
40
|
+
<tspan y="343.99" x="-662.2"/>
|
|
41
|
+
</text>
|
|
42
|
+
<text y="209.67" x="91.81" font-size="129.23">
|
|
43
|
+
<tspan y="209.67" x="91.81"/>
|
|
44
|
+
</text>
|
|
45
|
+
</g>
|
|
46
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="492.19" x="219.96" font-family="Arial"/>
|
|
47
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="129.67" x="673.08" font-family="Gentium Book Basic" line-height="125%">
|
|
48
|
+
<tspan y="129.67" x="673.08"/>
|
|
49
|
+
</text>
|
|
50
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="171.16" x="364.81" font-family="Arial"/>
|
|
51
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-51.596" x="-398.5" font-family="Gentium Book Basic" line-height="125%">
|
|
52
|
+
<tspan y="-51.596" x="-398.5"/>
|
|
53
|
+
</text>
|
|
54
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-556.2" x="97.77" font-family="Arial"/>
|
|
55
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-268.06" x="699.55" font-family="Gentium Book Basic" line-height="125%">
|
|
56
|
+
<tspan y="-268.06" x="699.55"/>
|
|
57
|
+
</text>
|
|
58
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1424.86" x="371.41" font-family="Arial"/>
|
|
59
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-348.07" x="1280.82" font-family="Gentium Book Basic" line-height="125%">
|
|
60
|
+
<tspan y="-348.07" x="1280.82"/>
|
|
61
|
+
</text>
|
|
62
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1745.9" x="516.26" font-family="Arial"/>
|
|
63
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-820.47" x="891.7" font-family="Gentium Book Basic" line-height="125%">
|
|
64
|
+
<tspan y="-820.47" x="891.7"/>
|
|
65
|
+
</text>
|
|
66
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3641.55" x="419.29" font-family="Arial"/>
|
|
67
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-900.47" x="1472.96" font-family="Gentium Book Basic" line-height="125%">
|
|
68
|
+
<tspan y="-900.47" x="1472.96"/>
|
|
69
|
+
</text>
|
|
70
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3962.58" x="564.14" font-family="Arial"/>
|
|
71
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%">
|
|
72
|
+
<text y="514.25" x="-359.84" font-size="208.33">
|
|
73
|
+
<tspan y="514.25" x="-359.84"/>
|
|
74
|
+
</text>
|
|
75
|
+
<text y="179.29" x="78.79" font-size="129.23">
|
|
76
|
+
<tspan y="179.29" x="78.79"/>
|
|
77
|
+
</text>
|
|
78
|
+
</g>
|
|
79
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="370.31" x="216.72" font-family="Arial"/>
|
|
80
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="99.29" x="660.06" font-family="Gentium Book Basic" line-height="125%">
|
|
81
|
+
<tspan y="99.29" x="660.06"/>
|
|
82
|
+
</text>
|
|
83
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="49.28" x="361.57" font-family="Arial"/>
|
|
84
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-81.969" x="-411.52" font-family="Gentium Book Basic" line-height="125%">
|
|
85
|
+
<tspan y="-81.969" x="-411.52"/>
|
|
86
|
+
</text>
|
|
87
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-678.08" x="94.53" font-family="Arial"/>
|
|
88
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-298.44" x="686.53" font-family="Gentium Book Basic" line-height="125%">
|
|
89
|
+
<tspan y="-298.44" x="686.53"/>
|
|
90
|
+
</text>
|
|
91
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1546.74" x="368.17" font-family="Arial"/>
|
|
92
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-378.45" x="1267.8" font-family="Gentium Book Basic" line-height="125%">
|
|
93
|
+
<tspan y="-378.45" x="1267.8"/>
|
|
94
|
+
</text>
|
|
95
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1867.78" x="513.01" font-family="Arial"/>
|
|
96
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-850.85" x="878.68" font-family="Gentium Book Basic" line-height="125%">
|
|
97
|
+
<tspan y="-850.85" x="878.68"/>
|
|
98
|
+
</text>
|
|
99
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3763.43" x="416.05" font-family="Arial"/>
|
|
100
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-930.85" x="1459.94" font-family="Gentium Book Basic" line-height="125%">
|
|
101
|
+
<tspan y="-930.85" x="1459.94"/>
|
|
102
|
+
</text>
|
|
103
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-4084.46" x="560.89" font-family="Arial"/>
|
|
104
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%">
|
|
105
|
+
<text y="483.87" x="-372.86" font-size="208.33">
|
|
106
|
+
<tspan y="483.87" x="-372.86"/>
|
|
107
|
+
</text>
|
|
108
|
+
<text y="244.98" x="39.5" font-size="129.23">
|
|
109
|
+
<tspan y="244.98" x="39.5"/>
|
|
110
|
+
</text>
|
|
111
|
+
</g>
|
|
112
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="633.89" x="206.92" font-family="Arial"/>
|
|
113
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="164.98" x="620.77" font-family="Gentium Book Basic" line-height="125%">
|
|
114
|
+
<tspan y="164.98" x="620.77"/>
|
|
115
|
+
</text>
|
|
116
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="312.87" x="351.77" font-family="Arial"/>
|
|
117
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-16.283" x="-450.81" font-family="Gentium Book Basic" line-height="125%">
|
|
118
|
+
<tspan y="-16.283" x="-450.81"/>
|
|
119
|
+
</text>
|
|
120
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-414.49" x="84.74" font-family="Arial"/>
|
|
121
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-232.75" x="647.24" font-family="Gentium Book Basic" line-height="125%">
|
|
122
|
+
<tspan y="-232.75" x="647.24"/>
|
|
123
|
+
</text>
|
|
124
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1283.16" x="358.37" font-family="Arial"/>
|
|
125
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-312.76" x="1228.51" font-family="Gentium Book Basic" line-height="125%">
|
|
126
|
+
<tspan y="-312.76" x="1228.51"/>
|
|
127
|
+
</text>
|
|
128
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1604.19" x="503.22" font-family="Arial"/>
|
|
129
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-785.16" x="839.39" font-family="Gentium Book Basic" line-height="125%">
|
|
130
|
+
<tspan y="-785.16" x="839.39"/>
|
|
131
|
+
</text>
|
|
132
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3499.84" x="406.25" font-family="Arial"/>
|
|
133
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-865.16" x="1420.65" font-family="Gentium Book Basic" line-height="125%">
|
|
134
|
+
<tspan y="-865.16" x="1420.65"/>
|
|
135
|
+
</text>
|
|
136
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3820.87" x="551.1" font-family="Arial"/>
|
|
137
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" transform="translate(-690.14 13.618)" line-height="125%">
|
|
138
|
+
<text y="535.94" x="277.99" font-size="208.33">
|
|
139
|
+
<tspan y="535.94" x="277.99"/>
|
|
140
|
+
</text>
|
|
141
|
+
<text y="135.65" x="148.44" font-size="129.23">
|
|
142
|
+
<tspan y="135.65" x="148.44"/>
|
|
143
|
+
</text>
|
|
144
|
+
</g>
|
|
145
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="249.85" x="62.09" font-family="Arial"/>
|
|
146
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="69.27" x="39.57" font-family="Gentium Book Basic" line-height="125%">
|
|
147
|
+
<tspan y="69.27" x="39.57"/>
|
|
148
|
+
</text>
|
|
149
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-71.18" x="206.93" font-family="Arial"/>
|
|
150
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-111.99" x="-1032.01" font-family="Gentium Book Basic" line-height="125%">
|
|
151
|
+
<tspan y="-111.99" x="-1032.01"/>
|
|
152
|
+
</text>
|
|
153
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-798.54" x="-60.1" font-family="Arial"/>
|
|
154
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-328.46" x="66.04" font-family="Gentium Book Basic" line-height="125%">
|
|
155
|
+
<tspan y="-328.46" x="66.04"/>
|
|
156
|
+
</text>
|
|
157
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1667.19" x="213.53" font-family="Arial"/>
|
|
158
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-408.47" x="647.31" font-family="Gentium Book Basic" line-height="125%">
|
|
159
|
+
<tspan y="-408.47" x="647.31"/>
|
|
160
|
+
</text>
|
|
161
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1988.23" x="358.38" font-family="Arial"/>
|
|
162
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-880.87" x="258.19" font-family="Gentium Book Basic" line-height="125%">
|
|
163
|
+
<tspan y="-880.87" x="258.19"/>
|
|
164
|
+
</text>
|
|
165
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3883.87" x="261.41" font-family="Arial"/>
|
|
166
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-960.87" x="839.45" font-family="Gentium Book Basic" line-height="125%">
|
|
167
|
+
<tspan y="-960.87" x="839.45"/>
|
|
168
|
+
</text>
|
|
169
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-4204.9" x="406.26" font-family="Arial"/>
|
|
170
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%">
|
|
171
|
+
<text y="453.85" x="-993.35" font-size="208.33">
|
|
172
|
+
<tspan y="453.85" x="-993.35"/>
|
|
173
|
+
</text>
|
|
174
|
+
<text y="218.34" x="1417.37" font-size="129.23">
|
|
175
|
+
<tspan y="218.34" x="1417.37"/>
|
|
176
|
+
</text>
|
|
177
|
+
</g>
|
|
178
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="527.01" x="550.29" font-family="Arial"/>
|
|
179
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="138.34" x="1998.64" font-family="Gentium Book Basic" line-height="125%">
|
|
180
|
+
<tspan y="138.34" x="1998.64"/>
|
|
181
|
+
</text>
|
|
182
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="205.98" x="695.14" font-family="Arial"/>
|
|
183
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-42.918" x="927.06" font-family="Gentium Book Basic" line-height="125%">
|
|
184
|
+
<tspan y="-42.918" x="927.06"/>
|
|
185
|
+
</text>
|
|
186
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-521.37" x="428.1" font-family="Arial"/>
|
|
187
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-259.39" x="2025.11" font-family="Gentium Book Basic" line-height="125%">
|
|
188
|
+
<tspan y="-259.39" x="2025.11"/>
|
|
189
|
+
</text>
|
|
190
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1390.04" x="701.74" font-family="Arial"/>
|
|
191
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-339.4" x="2606.38" font-family="Gentium Book Basic" line-height="125%">
|
|
192
|
+
<tspan y="-339.4" x="2606.38"/>
|
|
193
|
+
</text>
|
|
194
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1711.08" x="846.59" font-family="Arial"/>
|
|
195
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-811.8" x="2217.26" font-family="Gentium Book Basic" line-height="125%">
|
|
196
|
+
<tspan y="-811.8" x="2217.26"/>
|
|
197
|
+
</text>
|
|
198
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3606.73" x="749.62" font-family="Arial"/>
|
|
199
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-891.8" x="2798.52" font-family="Gentium Book Basic" line-height="125%">
|
|
200
|
+
<tspan y="-891.8" x="2798.52"/>
|
|
201
|
+
</text>
|
|
202
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3927.75" x="894.47" font-family="Arial"/>
|
|
203
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" transform="translate(687.73-13.02)" line-height="125%">
|
|
204
|
+
<text y="535.94" x="277.99" font-size="208.33">
|
|
205
|
+
<tspan y="535.94" x="277.99"/>
|
|
206
|
+
</text>
|
|
207
|
+
<text y="135.65" x="148.44" font-size="129.23">
|
|
208
|
+
<tspan y="135.65" x="148.44"/>
|
|
209
|
+
</text>
|
|
210
|
+
</g>
|
|
211
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="142.96" x="405.45" font-family="Arial"/>
|
|
212
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="42.638" x="1417.44" font-family="Gentium Book Basic" line-height="125%">
|
|
213
|
+
<tspan y="42.638" x="1417.44"/>
|
|
214
|
+
</text>
|
|
215
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-178.06" x="550.3" font-family="Arial"/>
|
|
216
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-138.63" x="345.86" font-family="Gentium Book Basic" line-height="125%">
|
|
217
|
+
<tspan y="-138.63" x="345.86"/>
|
|
218
|
+
</text>
|
|
219
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-905.42" x="283.26" font-family="Arial"/>
|
|
220
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-355.1" x="1443.91" font-family="Gentium Book Basic" line-height="125%">
|
|
221
|
+
<tspan y="-355.1" x="1443.91"/>
|
|
222
|
+
</text>
|
|
223
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1774.08" x="556.9" font-family="Arial"/>
|
|
224
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-435.11" x="2025.18" font-family="Gentium Book Basic" line-height="125%">
|
|
225
|
+
<tspan y="-435.11" x="2025.18"/>
|
|
226
|
+
</text>
|
|
227
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-2095.11" x="701.75" font-family="Arial"/>
|
|
228
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-907.51" x="1636.06" font-family="Gentium Book Basic" line-height="125%">
|
|
229
|
+
<tspan y="-907.51" x="1636.06"/>
|
|
230
|
+
</text>
|
|
231
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3990.75" x="604.78" font-family="Arial"/>
|
|
232
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-987.51" x="2217.32" font-family="Gentium Book Basic" line-height="125%">
|
|
233
|
+
<tspan y="-987.51" x="2217.32"/>
|
|
234
|
+
</text>
|
|
235
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-4311.78" x="749.63" font-family="Arial"/>
|
|
236
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%">
|
|
237
|
+
<text y="427.21" x="384.52" font-size="208.33">
|
|
238
|
+
<tspan y="427.21" x="384.52"/>
|
|
239
|
+
</text>
|
|
240
|
+
<text y="1197.82" x="-27932.87" font-size="4848.4">
|
|
241
|
+
<tspan y="1197.82" x="-27932.87"/>
|
|
242
|
+
</text>
|
|
243
|
+
</g>
|
|
244
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1761.7" y="-8293.37" x="433.39" font-family="Arial"/>
|
|
245
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4848.4" y="2109.88" x="-28067.62" font-family="Gentium Book Basic" line-height="125%">
|
|
246
|
+
<tspan y="2109.88" x="-28067.62"/>
|
|
247
|
+
</text>
|
|
248
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1761.7" y="-4633.52" x="399.86" font-family="Arial"/>
|
|
249
|
+
<g fill="#555753">
|
|
250
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="2976.1" y="-4945.91" x="-13564.87" font-family="Gentium Book Basic" line-height="125%">
|
|
251
|
+
<tspan y="-4945.91" x="-13564.87"/>
|
|
252
|
+
</text>
|
|
253
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="1081.5" y="-27888.32" x="1158.53" font-family="Arial"/>
|
|
254
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="1593.2" y="-5770.92" x="-4162.03" font-family="Gentium Book Basic" line-height="125%">
|
|
255
|
+
<tspan y="-5770.92" x="-4162.03"/>
|
|
256
|
+
</text>
|
|
257
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="578.89" y="-27462.19" x="1392.63" font-family="Arial"/>
|
|
258
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-1915.83" x="-40267.41" font-family="Gentium Book Basic" line-height="125%">
|
|
259
|
+
<tspan y="-1915.83" x="-40267.41"/>
|
|
260
|
+
</text>
|
|
261
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-20263.4" x="-2936.01" font-family="Arial"/>
|
|
262
|
+
</g>
|
|
263
|
+
<g>
|
|
264
|
+
<text style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" font-size="4848.4" stroke="#cd1d31" y="-14142.4" x="-26084.31" stroke-width="23.273" line-height="125%">
|
|
265
|
+
<tspan y="-14142.4" x="-26084.31" stroke-width="23.273"/>
|
|
266
|
+
</text>
|
|
267
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1761.7" y="-69851.05" x="894.19" font-family="Arial"/>
|
|
268
|
+
<text style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" font-size="4848.4" stroke="#cd1d31" y="-13230.34" x="-26219.3" stroke-width="23.273" line-height="125%">
|
|
269
|
+
<tspan y="-13230.34" x="-26219.3" stroke-width="23.273"/>
|
|
270
|
+
</text>
|
|
271
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1761.7" y="-66190.97" x="860.52" font-family="Arial"/>
|
|
272
|
+
</g>
|
|
273
|
+
<g fill="#555753">
|
|
274
|
+
<g stroke-width="23.273" stroke="#cd1d31">
|
|
275
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="2976.1" y="-21065.7" x="-11805.69" font-family="Gentium Book Basic" line-height="125%">
|
|
276
|
+
<tspan y="-21065.7" x="-11805.69" stroke-width="23.273"/>
|
|
277
|
+
</text>
|
|
278
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="1081.5" y="-92575.26" x="1596.97" font-family="Arial"/>
|
|
279
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="1593.2" y="-21890.71" x="-2403.08" font-family="Gentium Book Basic" line-height="125%">
|
|
280
|
+
<tspan y="-21890.71" x="-2403.08" stroke-width="23.273"/>
|
|
281
|
+
</text>
|
|
282
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="578.89" y="-92149.12" x="1830.86" font-family="Arial"/>
|
|
283
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-17256.06" x="-38418.86" font-family="Gentium Book Basic" line-height="125%">
|
|
284
|
+
<tspan y="-17256.06" x="-38418.86" stroke-width="23.273"/>
|
|
285
|
+
</text>
|
|
286
|
+
</g>
|
|
287
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-81821.09" x="-2475.45" font-family="Arial"/>
|
|
288
|
+
</g>
|
|
289
|
+
<g>
|
|
290
|
+
<text style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" font-size="4654.6" stroke="#cd1d31" y="-20831.91" x="-9108.49" stroke-width="23.273" line-height="125%">
|
|
291
|
+
<tspan y="-20831.91" x="-9108.49" stroke-width="23.273"/>
|
|
292
|
+
</text>
|
|
293
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-96170.27" x="4828.66" font-family="Arial"/>
|
|
294
|
+
<text style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" font-size="4654.6" stroke="#cd1d31" y="-23713.54" x="11828.12" stroke-width="23.273" line-height="125%">
|
|
295
|
+
<tspan y="-23713.54" x="11828.12" stroke-width="23.273"/>
|
|
296
|
+
</text>
|
|
297
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-107733.51" x="10046.15" font-family="Arial"/>
|
|
298
|
+
</g>
|
|
299
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-418.3" x="9990.74" font-family="Gentium Book Basic" line-height="125%">
|
|
300
|
+
<tspan y="-418.3" x="9990.74"/>
|
|
301
|
+
</text>
|
|
302
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-9804.23" x="7076.33" font-family="Arial"/>
|
|
303
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-2280.05" x="23518.25" font-family="Gentium Book Basic" line-height="125%">
|
|
304
|
+
<tspan y="-2280.05" x="23518.25"/>
|
|
305
|
+
</text>
|
|
306
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-17275.43" x="10447.36" font-family="Arial"/>
|
|
307
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-6498.47" x="-1420.23" font-family="Gentium Book Basic" line-height="125%">
|
|
308
|
+
<tspan y="-6498.47" x="-1420.23"/>
|
|
309
|
+
</text>
|
|
310
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-34203" x="4232.65" font-family="Arial"/>
|
|
311
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-11536.55" x="24134.51" font-family="Gentium Book Basic" line-height="125%">
|
|
312
|
+
<tspan y="-11536.55" x="24134.51"/>
|
|
313
|
+
</text>
|
|
314
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-54419.22" x="10600.73" font-family="Arial"/>
|
|
315
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-13398.36" x="37662.02" font-family="Gentium Book Basic" line-height="125%">
|
|
316
|
+
<tspan y="-13398.36" x="37662.02"/>
|
|
317
|
+
</text>
|
|
318
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-61890.66" x="13972" font-family="Arial"/>
|
|
319
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-24392.41" x="28606.13" font-family="Gentium Book Basic" line-height="125%">
|
|
320
|
+
<tspan y="-24392.41" x="28606.13"/>
|
|
321
|
+
</text>
|
|
322
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-106007.62" x="11715.26" font-family="Arial"/>
|
|
323
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-26254.22" x="42133.87" font-family="Gentium Book Basic" line-height="125%">
|
|
324
|
+
<tspan y="-26254.22" x="42133.87"/>
|
|
325
|
+
</text>
|
|
326
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-113478.81" x="15086.29" font-family="Arial"/>
|
|
327
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%">
|
|
328
|
+
<text y="6669.94" x="-520.6" font-size="4848.4">
|
|
329
|
+
<tspan y="6669.94" x="-520.6"/>
|
|
330
|
+
</text>
|
|
331
|
+
<text y="-17707.08" x="82232.31" font-size="3007.5">
|
|
332
|
+
<tspan y="-17707.08" x="82232.31"/>
|
|
333
|
+
</text>
|
|
334
|
+
</g>
|
|
335
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-79180.57" x="25078.85" font-family="Arial"/>
|
|
336
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-19568.9" x="95760.05" font-family="Gentium Book Basic" line-height="125%">
|
|
337
|
+
<tspan y="-19568.9" x="95760.05"/>
|
|
338
|
+
</text>
|
|
339
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-86652.02" x="28449.89" font-family="Arial"/>
|
|
340
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-23787.31" x="70821.46" font-family="Gentium Book Basic" line-height="125%">
|
|
341
|
+
<tspan y="-23787.31" x="70821.46"/>
|
|
342
|
+
</text>
|
|
343
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-103579.35" x="22235.17" font-family="Arial"/>
|
|
344
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-28825.16" x="96376.09" font-family="Gentium Book Basic" line-height="125%">
|
|
345
|
+
<tspan y="-28825.16" x="96376.09"/>
|
|
346
|
+
</text>
|
|
347
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-123795.56" x="28603.49" font-family="Arial"/>
|
|
348
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-30686.98" x="109903.82" font-family="Gentium Book Basic" line-height="125%">
|
|
349
|
+
<tspan y="-30686.98" x="109903.82"/>
|
|
350
|
+
</text>
|
|
351
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-131267.02" x="31974.53" font-family="Arial"/>
|
|
352
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-41681.02" x="100847.94" font-family="Gentium Book Basic" line-height="125%">
|
|
353
|
+
<tspan y="-41681.02" x="100847.94"/>
|
|
354
|
+
</text>
|
|
355
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-175383.95" x="29717.79" font-family="Arial"/>
|
|
356
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-43542.83" x="114375.68" font-family="Gentium Book Basic" line-height="125%">
|
|
357
|
+
<tspan y="-43542.83" x="114375.68"/>
|
|
358
|
+
</text>
|
|
359
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-182855.39" x="33088.82" font-family="Arial"/>
|
|
360
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%">
|
|
361
|
+
<text y="-10618.67" x="71721.19" font-size="4848.4">
|
|
362
|
+
<tspan y="-10618.67" x="71721.19"/>
|
|
363
|
+
</text>
|
|
364
|
+
<text y="-117.09" x="-8681.43" font-size="3776.9" fill="#fff8eb">
|
|
365
|
+
<tspan y="-117.09" x="-8681.43"/>
|
|
366
|
+
</text>
|
|
367
|
+
</g>
|
|
368
|
+
<g fill="#fff8eb">
|
|
369
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1372.3" y="-10673.92" x="3596.61" font-family="Arial"/>
|
|
370
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3776.9" y="886.67" x="5394.38" font-family="Gentium Book Basic" line-height="125%">
|
|
371
|
+
<tspan y="886.67" x="5394.38"/>
|
|
372
|
+
</text>
|
|
373
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1372.3" y="-6646.83" x="7104.25" font-family="Arial"/>
|
|
374
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3776.9" y="-1451.54" x="22382.77" font-family="Gentium Book Basic" line-height="125%">
|
|
375
|
+
<tspan y="-1451.54" x="22382.77"/>
|
|
376
|
+
</text>
|
|
377
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1372.3" y="-16029.42" x="11337.77" font-family="Arial"/>
|
|
378
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3776.9" y="-2445.52" x="5912.89" font-family="Gentium Book Basic" line-height="125%">
|
|
379
|
+
<tspan y="-2445.52" x="5912.89"/>
|
|
380
|
+
</text>
|
|
381
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1372.3" y="-20018.34" x="7233.42" font-family="Arial"/>
|
|
382
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3776.9" y="-4783.73" x="22901.29" font-family="Gentium Book Basic" line-height="125%">
|
|
383
|
+
<tspan y="-4783.73" x="22901.29"/>
|
|
384
|
+
</text>
|
|
385
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1372.3" y="-29400.93" x="11466.94" font-family="Arial"/>
|
|
386
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3776.9" y="6087.89" x="-50928.18" font-family="Gentium Book Basic" line-height="125%">
|
|
387
|
+
<tspan y="6087.89" x="-50928.18"/>
|
|
388
|
+
</text>
|
|
389
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1372.3" y="14224.98" x="-6931.22" font-family="Arial"/>
|
|
390
|
+
</g>
|
|
391
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-1731.28" x="-2788.55" font-family="Gentium Book Basic" line-height="125%">
|
|
392
|
+
<tspan y="-1731.28" x="-2788.55"/>
|
|
393
|
+
</text>
|
|
394
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-15072.91" x="3891.7" font-family="Arial"/>
|
|
395
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-3593.1" x="10739.19" font-family="Gentium Book Basic" line-height="125%">
|
|
396
|
+
<tspan y="-3593.1" x="10739.19"/>
|
|
397
|
+
</text>
|
|
398
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-22544.35" x="7262.74" font-family="Arial"/>
|
|
399
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-7811.52" x="-14199.4" font-family="Gentium Book Basic" line-height="125%">
|
|
400
|
+
<tspan y="-7811.52" x="-14199.4"/>
|
|
401
|
+
</text>
|
|
402
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-39471.68" x="1048.07" font-family="Arial"/>
|
|
403
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-12849.36" x="11355.22" font-family="Gentium Book Basic" line-height="125%">
|
|
404
|
+
<tspan y="-12849.36" x="11355.22"/>
|
|
405
|
+
</text>
|
|
406
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-59687.9" x="7416.34" font-family="Arial"/>
|
|
407
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-14711.18" x="24882.73" font-family="Gentium Book Basic" line-height="125%">
|
|
408
|
+
<tspan y="-14711.18" x="24882.73"/>
|
|
409
|
+
</text>
|
|
410
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-67159.34" x="10787.38" font-family="Arial"/>
|
|
411
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-25705.22" x="15826.84" font-family="Gentium Book Basic" line-height="125%">
|
|
412
|
+
<tspan y="-25705.22" x="15826.84"/>
|
|
413
|
+
</text>
|
|
414
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-111276.3" x="8530.63" font-family="Arial"/>
|
|
415
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-27567.27" x="29354.58" font-family="Gentium Book Basic" line-height="125%">
|
|
416
|
+
<tspan y="-27567.27" x="29354.58"/>
|
|
417
|
+
</text>
|
|
418
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-118747.73" x="11901.67" font-family="Arial"/>
|
|
419
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%">
|
|
420
|
+
<text y="5357.13" x="-13299.91" font-size="4848.4">
|
|
421
|
+
<tspan y="5357.13" x="-13299.91"/>
|
|
422
|
+
</text>
|
|
423
|
+
<text transform="scale(1.05082.95163)" font-size="109.71" y="128.85" x="87.65" fill="#fff">
|
|
424
|
+
<tspan y="128.85" x="87.65"/>
|
|
425
|
+
</text>
|
|
426
|
+
</g>
|
|
427
|
+
<g fill="#fff">
|
|
428
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="39.866" y="220.65" x="189.17" font-family="Arial"/>
|
|
429
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="58.74" y="98.44" x="434.27" font-family="Gentium Book Basic" line-height="125%">
|
|
430
|
+
<tspan y="98.44" x="434.27"/>
|
|
431
|
+
</text>
|
|
432
|
+
<text style="text-anchor:middle" transform="scale(4.21676.23715)" font-size="21.341" y="236.47" x="197.8" font-family="Arial"/>
|
|
433
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="171.59" y="225.51" x="-866.85" font-family="Gentium Book Basic" line-height="125%">
|
|
434
|
+
<tspan y="225.51" x="-866.85"/>
|
|
435
|
+
</text>
|
|
436
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="62.35" y="441.31" x="45.672" font-family="Arial"/>
|
|
437
|
+
</g>
|
|
438
|
+
<g>
|
|
439
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="96.14" y="121.83" x="12.13" font-family="Gentium Book Basic" line-height="125%">
|
|
440
|
+
<tspan y="121.83" x="12.13"/>
|
|
441
|
+
</text>
|
|
442
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="34.933" y="229.17" x="149.63" font-family="Arial"/>
|
|
443
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="51.46" y="95.18" x="315.86" font-family="Gentium Book Basic" line-height="125%">
|
|
444
|
+
<tspan y="95.18" x="315.86"/>
|
|
445
|
+
</text>
|
|
446
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="18.688" y="242.99" x="157.19" font-family="Arial"/>
|
|
447
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="150.34" y="206.08" x="-827.47" font-family="Gentium Book Basic" line-height="125%">
|
|
448
|
+
<tspan y="206.08" x="-827.47"/>
|
|
449
|
+
</text>
|
|
450
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="54.621" y="420.83" x="23.07" font-family="Arial"/>
|
|
451
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(-1.0508 .95163)" font-size="96.14" y="121.83" x="1056.6" font-family="Gentium Book Basic" line-height="125%">
|
|
452
|
+
<tspan y="121.83" x="1056.6"/>
|
|
453
|
+
</text>
|
|
454
|
+
<text style="text-anchor:middle" transform="scale(-4.2168 .23715)" font-size="34.933" y="229.17" x="409.92" font-family="Arial"/>
|
|
455
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(-1.0508 .95163)" font-size="51.46" y="95.18" x="1360.31" font-family="Gentium Book Basic" line-height="125%">
|
|
456
|
+
<tspan y="95.18" x="1360.31"/>
|
|
457
|
+
</text>
|
|
458
|
+
<text style="text-anchor:middle" transform="scale(-4.2168 .23715)" font-size="18.688" y="242.99" x="417.48" font-family="Arial"/>
|
|
459
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(-1 1)" font-size="150.34" y="206.08" x="270.09" font-family="Gentium Book Basic" line-height="125%">
|
|
460
|
+
<tspan y="206.08" x="270.09"/>
|
|
461
|
+
</text>
|
|
462
|
+
<text style="text-anchor:middle" transform="scale(-4.0128 .2492)" font-size="54.621" y="420.83" x="296.6" font-family="Arial"/>
|
|
463
|
+
</g>
|
|
464
|
+
<g fill="#555753">
|
|
465
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="94.88" y="159.64" x="-1649.89" font-family="Gentium Book Basic" line-height="125%">
|
|
466
|
+
<tspan y="159.64" x="-1649.89"/>
|
|
467
|
+
</text>
|
|
468
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="34.49" y="384.26" x="-266.44" font-family="Arial"/>
|
|
469
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="50.804" y="133.35" x="-1350" font-family="Gentium Book Basic" line-height="125%">
|
|
470
|
+
<tspan y="133.35" x="-1350"/>
|
|
471
|
+
</text>
|
|
472
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="18.455" y="397.99" x="-258.97" font-family="Arial"/>
|
|
473
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="148.41" y="240.92" x="-2563.27" font-family="Gentium Book Basic" line-height="125%">
|
|
474
|
+
<tspan y="240.92" x="-2563.27"/>
|
|
475
|
+
</text>
|
|
476
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="53.923" y="565.79" x="-412.4" font-family="Arial"/>
|
|
477
|
+
</g>
|
|
478
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4848.4" y="1197.82" x="-27932.87" font-family="Gentium Book Basic" line-height="125%">
|
|
479
|
+
<tspan y="1197.82" x="-27932.87"/>
|
|
480
|
+
</text>
|
|
481
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1761.7" y="-8293.37" x="433.39" font-family="Arial"/>
|
|
482
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4848.4" y="2109.88" x="-28067.62" font-family="Gentium Book Basic" line-height="125%">
|
|
483
|
+
<tspan y="2109.88" x="-28067.62"/>
|
|
484
|
+
</text>
|
|
485
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1761.7" y="-4633.52" x="399.86" font-family="Arial"/>
|
|
486
|
+
<g fill="#555753">
|
|
487
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="2976.1" y="-4945.91" x="-13564.87" font-family="Gentium Book Basic" line-height="125%">
|
|
488
|
+
<tspan y="-4945.91" x="-13564.87"/>
|
|
489
|
+
</text>
|
|
490
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="1081.5" y="-27888.32" x="1158.53" font-family="Arial"/>
|
|
491
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="1593.2" y="-5770.92" x="-4162.03" font-family="Gentium Book Basic" line-height="125%">
|
|
492
|
+
<tspan y="-5770.92" x="-4162.03"/>
|
|
493
|
+
</text>
|
|
494
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="578.89" y="-27462.19" x="1392.63" font-family="Arial"/>
|
|
495
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-1915.83" x="-40267.41" font-family="Gentium Book Basic" line-height="125%">
|
|
496
|
+
<tspan y="-1915.83" x="-40267.41"/>
|
|
497
|
+
</text>
|
|
498
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-20263.4" x="-2936.01" font-family="Arial"/>
|
|
499
|
+
</g>
|
|
500
|
+
<g>
|
|
501
|
+
<text style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" font-size="4848.4" stroke="#cd1d31" y="-14142.4" x="-26084.31" stroke-width="23.273" line-height="125%">
|
|
502
|
+
<tspan y="-14142.4" x="-26084.31" stroke-width="23.273"/>
|
|
503
|
+
</text>
|
|
504
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1761.7" y="-69851.05" x="894.19" font-family="Arial"/>
|
|
505
|
+
<text style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" font-size="4848.4" stroke="#cd1d31" y="-13230.34" x="-26219.3" stroke-width="23.273" line-height="125%">
|
|
506
|
+
<tspan y="-13230.34" x="-26219.3" stroke-width="23.273"/>
|
|
507
|
+
</text>
|
|
508
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1761.7" y="-66190.97" x="860.52" font-family="Arial"/>
|
|
509
|
+
</g>
|
|
510
|
+
<g fill="#555753">
|
|
511
|
+
<g stroke-width="23.273" stroke="#cd1d31">
|
|
512
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="2976.1" y="-21065.7" x="-11805.69" font-family="Gentium Book Basic" line-height="125%">
|
|
513
|
+
<tspan y="-21065.7" x="-11805.69" stroke-width="23.273"/>
|
|
514
|
+
</text>
|
|
515
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="1081.5" y="-92575.26" x="1596.97" font-family="Arial"/>
|
|
516
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="1593.2" y="-21890.71" x="-2403.08" font-family="Gentium Book Basic" line-height="125%">
|
|
517
|
+
<tspan y="-21890.71" x="-2403.08" stroke-width="23.273"/>
|
|
518
|
+
</text>
|
|
519
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="578.89" y="-92149.12" x="1830.86" font-family="Arial"/>
|
|
520
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-17256.06" x="-38418.86" font-family="Gentium Book Basic" line-height="125%">
|
|
521
|
+
<tspan y="-17256.06" x="-38418.86" stroke-width="23.273"/>
|
|
522
|
+
</text>
|
|
523
|
+
</g>
|
|
524
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-81821.09" x="-2475.45" font-family="Arial"/>
|
|
525
|
+
</g>
|
|
526
|
+
<g>
|
|
527
|
+
<text style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" font-size="4654.6" stroke="#cd1d31" y="-20831.91" x="-9108.49" stroke-width="23.273" line-height="125%">
|
|
528
|
+
<tspan y="-20831.91" x="-9108.49" stroke-width="23.273"/>
|
|
529
|
+
</text>
|
|
530
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-96170.27" x="4828.66" font-family="Arial"/>
|
|
531
|
+
<text style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" font-size="4654.6" stroke="#cd1d31" y="-23713.54" x="11828.12" stroke-width="23.273" line-height="125%">
|
|
532
|
+
<tspan y="-23713.54" x="11828.12" stroke-width="23.273"/>
|
|
533
|
+
</text>
|
|
534
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-107733.51" x="10046.15" font-family="Arial"/>
|
|
535
|
+
</g>
|
|
536
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-418.3" x="9990.74" font-family="Gentium Book Basic" line-height="125%">
|
|
537
|
+
<tspan y="-418.3" x="9990.74"/>
|
|
538
|
+
</text>
|
|
539
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-9804.23" x="7076.33" font-family="Arial"/>
|
|
540
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-2280.05" x="23518.25" font-family="Gentium Book Basic" line-height="125%">
|
|
541
|
+
<tspan y="-2280.05" x="23518.25"/>
|
|
542
|
+
</text>
|
|
543
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-17275.43" x="10447.36" font-family="Arial"/>
|
|
544
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-6498.47" x="-1420.23" font-family="Gentium Book Basic" line-height="125%">
|
|
545
|
+
<tspan y="-6498.47" x="-1420.23"/>
|
|
546
|
+
</text>
|
|
547
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-34203" x="4232.65" font-family="Arial"/>
|
|
548
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-11536.55" x="24134.51" font-family="Gentium Book Basic" line-height="125%">
|
|
549
|
+
<tspan y="-11536.55" x="24134.51"/>
|
|
550
|
+
</text>
|
|
551
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-54419.22" x="10600.73" font-family="Arial"/>
|
|
552
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-13398.36" x="37662.02" font-family="Gentium Book Basic" line-height="125%">
|
|
553
|
+
<tspan y="-13398.36" x="37662.02"/>
|
|
554
|
+
</text>
|
|
555
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-61890.66" x="13972" font-family="Arial"/>
|
|
556
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-24392.41" x="28606.13" font-family="Gentium Book Basic" line-height="125%">
|
|
557
|
+
<tspan y="-24392.41" x="28606.13"/>
|
|
558
|
+
</text>
|
|
559
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-106007.62" x="11715.26" font-family="Arial"/>
|
|
560
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-26254.22" x="42133.87" font-family="Gentium Book Basic" line-height="125%">
|
|
561
|
+
<tspan y="-26254.22" x="42133.87"/>
|
|
562
|
+
</text>
|
|
563
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-113478.81" x="15086.29" font-family="Arial"/>
|
|
564
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%">
|
|
565
|
+
<text y="6669.94" x="-520.6" font-size="4848.4">
|
|
566
|
+
<tspan y="6669.94" x="-520.6"/>
|
|
567
|
+
</text>
|
|
568
|
+
<text y="-17707.08" x="82232.31" font-size="3007.5">
|
|
569
|
+
<tspan y="-17707.08" x="82232.31"/>
|
|
570
|
+
</text>
|
|
571
|
+
</g>
|
|
572
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-79180.57" x="25078.85" font-family="Arial"/>
|
|
573
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-19568.9" x="95760.05" font-family="Gentium Book Basic" line-height="125%">
|
|
574
|
+
<tspan y="-19568.9" x="95760.05"/>
|
|
575
|
+
</text>
|
|
576
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-86652.02" x="28449.89" font-family="Arial"/>
|
|
577
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-23787.31" x="70821.46" font-family="Gentium Book Basic" line-height="125%">
|
|
578
|
+
<tspan y="-23787.31" x="70821.46"/>
|
|
579
|
+
</text>
|
|
580
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-103579.35" x="22235.17" font-family="Arial"/>
|
|
581
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-28825.16" x="96376.09" font-family="Gentium Book Basic" line-height="125%">
|
|
582
|
+
<tspan y="-28825.16" x="96376.09"/>
|
|
583
|
+
</text>
|
|
584
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-123795.56" x="28603.49" font-family="Arial"/>
|
|
585
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-30686.98" x="109903.82" font-family="Gentium Book Basic" line-height="125%">
|
|
586
|
+
<tspan y="-30686.98" x="109903.82"/>
|
|
587
|
+
</text>
|
|
588
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-131267.02" x="31974.53" font-family="Arial"/>
|
|
589
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-41681.02" x="100847.94" font-family="Gentium Book Basic" line-height="125%">
|
|
590
|
+
<tspan y="-41681.02" x="100847.94"/>
|
|
591
|
+
</text>
|
|
592
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-175383.95" x="29717.79" font-family="Arial"/>
|
|
593
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-43542.83" x="114375.68" font-family="Gentium Book Basic" line-height="125%">
|
|
594
|
+
<tspan y="-43542.83" x="114375.68"/>
|
|
595
|
+
</text>
|
|
596
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-182855.39" x="33088.82" font-family="Arial"/>
|
|
597
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%">
|
|
598
|
+
<text y="-10618.67" x="71721.19" font-size="4848.4">
|
|
599
|
+
<tspan y="-10618.67" x="71721.19"/>
|
|
600
|
+
</text>
|
|
601
|
+
<text y="-739.72" x="1548.09" font-size="4654.6">
|
|
602
|
+
<tspan y="-739.72" x="1548.09"/>
|
|
603
|
+
</text>
|
|
604
|
+
</g>
|
|
605
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-15544.18" x="7484.3" font-family="Arial"/>
|
|
606
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="497.06" x="18895.12" font-family="Gentium Book Basic" line-height="125%">
|
|
607
|
+
<tspan y="497.06" x="18895.12"/>
|
|
608
|
+
</text>
|
|
609
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-10581.3" x="11807.18" font-family="Arial"/>
|
|
610
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-2384.55" x="39831.5" font-family="Gentium Book Basic" line-height="125%">
|
|
611
|
+
<tspan y="-2384.55" x="39831.5"/>
|
|
612
|
+
</text>
|
|
613
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-22144.53" x="17024.44" font-family="Arial"/>
|
|
614
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-3609.62" x="19534.19" font-family="Gentium Book Basic" line-height="125%">
|
|
615
|
+
<tspan y="-3609.62" x="19534.19"/>
|
|
616
|
+
</text>
|
|
617
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-27060.4" x="11966.37" font-family="Arial"/>
|
|
618
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-6491.02" x="40470.57" font-family="Gentium Book Basic" line-height="125%">
|
|
619
|
+
<tspan y="-6491.02" x="40470.57"/>
|
|
620
|
+
</text>
|
|
621
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-38623.4" x="17183.85" font-family="Arial"/>
|
|
622
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="6907.09" x="-50516.26" font-family="Gentium Book Basic" line-height="125%">
|
|
623
|
+
<tspan y="6907.09" x="-50516.26"/>
|
|
624
|
+
</text>
|
|
625
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="15140.75" x="-5490.18" font-family="Arial"/>
|
|
626
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-3459.28" x="-15081.9" font-family="Gentium Book Basic" line-height="125%">
|
|
627
|
+
<tspan y="-3459.28" x="-15081.9"/>
|
|
628
|
+
</text>
|
|
629
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-26457.41" x="3340.14" font-family="Arial"/>
|
|
630
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-2222.57" x="2264.89" font-family="Gentium Book Basic" line-height="125%">
|
|
631
|
+
<tspan y="-2222.57" x="2264.89"/>
|
|
632
|
+
</text>
|
|
633
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-21494.52" x="7663.03" font-family="Arial"/>
|
|
634
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-5104.2" x="23201.51" font-family="Gentium Book Basic" line-height="125%">
|
|
635
|
+
<tspan y="-5104.2" x="23201.51"/>
|
|
636
|
+
</text>
|
|
637
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-33057.75" x="12880.28" font-family="Arial"/>
|
|
638
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-6329.04" x="2904.2" font-family="Gentium Book Basic" line-height="125%">
|
|
639
|
+
<tspan y="-6329.04" x="2904.2"/>
|
|
640
|
+
</text>
|
|
641
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-37973.39" x="7822.21" font-family="Arial"/>
|
|
642
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-9210.67" x="23840.57" font-family="Gentium Book Basic" line-height="125%">
|
|
643
|
+
<tspan y="-9210.67" x="23840.57"/>
|
|
644
|
+
</text>
|
|
645
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-49536.62" x="13039.7" font-family="Arial"/>
|
|
646
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="4187.44" x="-67146.26" font-family="Gentium Book Basic" line-height="125%">
|
|
647
|
+
<tspan y="4187.44" x="-67146.26"/>
|
|
648
|
+
</text>
|
|
649
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="4227.53" x="-9634.34" font-family="Arial"/>
|
|
650
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-739.72" x="1548.09" font-family="Gentium Book Basic" line-height="125%">
|
|
651
|
+
<tspan y="-739.72" x="1548.09"/>
|
|
652
|
+
</text>
|
|
653
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-15544.18" x="7484.3" font-family="Arial"/>
|
|
654
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="497.06" x="18895.12" font-family="Gentium Book Basic" line-height="125%">
|
|
655
|
+
<tspan y="497.06" x="18895.12"/>
|
|
656
|
+
</text>
|
|
657
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-10581.3" x="11807.18" font-family="Arial"/>
|
|
658
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-2384.55" x="39831.5" font-family="Gentium Book Basic" line-height="125%">
|
|
659
|
+
<tspan y="-2384.55" x="39831.5"/>
|
|
660
|
+
</text>
|
|
661
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-22144.53" x="17024.44" font-family="Arial"/>
|
|
662
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-3609.62" x="19534.19" font-family="Gentium Book Basic" line-height="125%">
|
|
663
|
+
<tspan y="-3609.62" x="19534.19"/>
|
|
664
|
+
</text>
|
|
665
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-27060.4" x="11966.37" font-family="Arial"/>
|
|
666
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-6491.02" x="40470.57" font-family="Gentium Book Basic" line-height="125%">
|
|
667
|
+
<tspan y="-6491.02" x="40470.57"/>
|
|
668
|
+
</text>
|
|
669
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-38623.4" x="17183.85" font-family="Arial"/>
|
|
670
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="6907.09" x="-50516.26" font-family="Gentium Book Basic" line-height="125%">
|
|
671
|
+
<tspan y="6907.09" x="-50516.26"/>
|
|
672
|
+
</text>
|
|
673
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="15140.75" x="-5490.18" font-family="Arial"/>
|
|
674
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4848.4" y="1197.82" x="-27932.87" font-family="Gentium Book Basic" line-height="125%">
|
|
675
|
+
<tspan y="1197.82" x="-27932.87"/>
|
|
676
|
+
</text>
|
|
677
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1761.7" y="-8293.37" x="433.39" font-family="Arial"/>
|
|
678
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4848.4" y="2109.88" x="-28067.62" font-family="Gentium Book Basic" line-height="125%">
|
|
679
|
+
<tspan y="2109.88" x="-28067.62"/>
|
|
680
|
+
</text>
|
|
681
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1761.7" y="-4633.52" x="399.86" font-family="Arial"/>
|
|
682
|
+
<g fill="#555753">
|
|
683
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="2976.1" y="-4945.91" x="-13564.87" font-family="Gentium Book Basic" line-height="125%">
|
|
684
|
+
<tspan y="-4945.91" x="-13564.87"/>
|
|
685
|
+
</text>
|
|
686
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="1081.5" y="-27888.32" x="1158.53" font-family="Arial"/>
|
|
687
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="1593.2" y="-5770.92" x="-4162.03" font-family="Gentium Book Basic" line-height="125%">
|
|
688
|
+
<tspan y="-5770.92" x="-4162.03"/>
|
|
689
|
+
</text>
|
|
690
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="578.89" y="-27462.19" x="1392.63" font-family="Arial"/>
|
|
691
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-1915.83" x="-40267.41" font-family="Gentium Book Basic" line-height="125%">
|
|
692
|
+
<tspan y="-1915.83" x="-40267.41"/>
|
|
693
|
+
</text>
|
|
694
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-20263.4" x="-2936.01" font-family="Arial"/>
|
|
695
|
+
</g>
|
|
696
|
+
<g>
|
|
697
|
+
<text style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" font-size="4848.4" stroke="#cd1d31" y="-14142.4" x="-26084.31" stroke-width="23.273" line-height="125%">
|
|
698
|
+
<tspan y="-14142.4" x="-26084.31" stroke-width="23.273"/>
|
|
699
|
+
</text>
|
|
700
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1761.7" y="-69851.05" x="894.19" font-family="Arial"/>
|
|
701
|
+
<text style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" font-size="4848.4" stroke="#cd1d31" y="-13230.34" x="-26219.3" stroke-width="23.273" line-height="125%">
|
|
702
|
+
<tspan y="-13230.34" x="-26219.3" stroke-width="23.273"/>
|
|
703
|
+
</text>
|
|
704
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1761.7" y="-66190.97" x="860.52" font-family="Arial"/>
|
|
705
|
+
</g>
|
|
706
|
+
<g fill="#555753">
|
|
707
|
+
<g stroke-width="23.273" stroke="#cd1d31">
|
|
708
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="2976.1" y="-21065.7" x="-11805.69" font-family="Gentium Book Basic" line-height="125%">
|
|
709
|
+
<tspan y="-21065.7" x="-11805.69" stroke-width="23.273"/>
|
|
710
|
+
</text>
|
|
711
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="1081.5" y="-92575.26" x="1596.97" font-family="Arial"/>
|
|
712
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="1593.2" y="-21890.71" x="-2403.08" font-family="Gentium Book Basic" line-height="125%">
|
|
713
|
+
<tspan y="-21890.71" x="-2403.08" stroke-width="23.273"/>
|
|
714
|
+
</text>
|
|
715
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="578.89" y="-92149.12" x="1830.86" font-family="Arial"/>
|
|
716
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-17256.06" x="-38418.86" font-family="Gentium Book Basic" line-height="125%">
|
|
717
|
+
<tspan y="-17256.06" x="-38418.86" stroke-width="23.273"/>
|
|
718
|
+
</text>
|
|
719
|
+
</g>
|
|
720
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-81821.09" x="-2475.45" font-family="Arial"/>
|
|
721
|
+
</g>
|
|
722
|
+
<g>
|
|
723
|
+
<text style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" font-size="4654.6" stroke="#cd1d31" y="-20831.91" x="-9108.49" stroke-width="23.273" line-height="125%">
|
|
724
|
+
<tspan y="-20831.91" x="-9108.49" stroke-width="23.273"/>
|
|
725
|
+
</text>
|
|
726
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-96170.27" x="4828.66" font-family="Arial"/>
|
|
727
|
+
<text style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" font-size="4654.6" stroke="#cd1d31" y="-23713.54" x="11828.12" stroke-width="23.273" line-height="125%">
|
|
728
|
+
<tspan y="-23713.54" x="11828.12" stroke-width="23.273"/>
|
|
729
|
+
</text>
|
|
730
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-107733.51" x="10046.15" font-family="Arial"/>
|
|
731
|
+
</g>
|
|
732
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-418.3" x="9990.74" font-family="Gentium Book Basic" line-height="125%">
|
|
733
|
+
<tspan y="-418.3" x="9990.74"/>
|
|
734
|
+
</text>
|
|
735
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-9804.23" x="7076.33" font-family="Arial"/>
|
|
736
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-2280.05" x="23518.25" font-family="Gentium Book Basic" line-height="125%">
|
|
737
|
+
<tspan y="-2280.05" x="23518.25"/>
|
|
738
|
+
</text>
|
|
739
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-17275.43" x="10447.36" font-family="Arial"/>
|
|
740
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-6498.47" x="-1420.23" font-family="Gentium Book Basic" line-height="125%">
|
|
741
|
+
<tspan y="-6498.47" x="-1420.23"/>
|
|
742
|
+
</text>
|
|
743
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-34203" x="4232.65" font-family="Arial"/>
|
|
744
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-11536.55" x="24134.51" font-family="Gentium Book Basic" line-height="125%">
|
|
745
|
+
<tspan y="-11536.55" x="24134.51"/>
|
|
746
|
+
</text>
|
|
747
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-54419.22" x="10600.73" font-family="Arial"/>
|
|
748
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-13398.36" x="37662.02" font-family="Gentium Book Basic" line-height="125%">
|
|
749
|
+
<tspan y="-13398.36" x="37662.02"/>
|
|
750
|
+
</text>
|
|
751
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-61890.66" x="13972" font-family="Arial"/>
|
|
752
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-24392.41" x="28606.13" font-family="Gentium Book Basic" line-height="125%">
|
|
753
|
+
<tspan y="-24392.41" x="28606.13"/>
|
|
754
|
+
</text>
|
|
755
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-106007.62" x="11715.26" font-family="Arial"/>
|
|
756
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-26254.22" x="42133.87" font-family="Gentium Book Basic" line-height="125%">
|
|
757
|
+
<tspan y="-26254.22" x="42133.87"/>
|
|
758
|
+
</text>
|
|
759
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-113478.81" x="15086.29" font-family="Arial"/>
|
|
760
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%">
|
|
761
|
+
<text y="6669.94" x="-520.6" font-size="4848.4">
|
|
762
|
+
<tspan y="6669.94" x="-520.6"/>
|
|
763
|
+
</text>
|
|
764
|
+
<text y="-17707.08" x="82232.31" font-size="3007.5">
|
|
765
|
+
<tspan y="-17707.08" x="82232.31"/>
|
|
766
|
+
</text>
|
|
767
|
+
</g>
|
|
768
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-79180.57" x="25078.85" font-family="Arial"/>
|
|
769
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-19568.9" x="95760.05" font-family="Gentium Book Basic" line-height="125%">
|
|
770
|
+
<tspan y="-19568.9" x="95760.05"/>
|
|
771
|
+
</text>
|
|
772
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-86652.02" x="28449.89" font-family="Arial"/>
|
|
773
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-23787.31" x="70821.46" font-family="Gentium Book Basic" line-height="125%">
|
|
774
|
+
<tspan y="-23787.31" x="70821.46"/>
|
|
775
|
+
</text>
|
|
776
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-103579.35" x="22235.17" font-family="Arial"/>
|
|
777
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-28825.16" x="96376.09" font-family="Gentium Book Basic" line-height="125%">
|
|
778
|
+
<tspan y="-28825.16" x="96376.09"/>
|
|
779
|
+
</text>
|
|
780
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-123795.56" x="28603.49" font-family="Arial"/>
|
|
781
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-30686.98" x="109903.82" font-family="Gentium Book Basic" line-height="125%">
|
|
782
|
+
<tspan y="-30686.98" x="109903.82"/>
|
|
783
|
+
</text>
|
|
784
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-131267.02" x="31974.53" font-family="Arial"/>
|
|
785
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-41681.02" x="100847.94" font-family="Gentium Book Basic" line-height="125%">
|
|
786
|
+
<tspan y="-41681.02" x="100847.94"/>
|
|
787
|
+
</text>
|
|
788
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-175383.95" x="29717.79" font-family="Arial"/>
|
|
789
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-43542.83" x="114375.68" font-family="Gentium Book Basic" line-height="125%">
|
|
790
|
+
<tspan y="-43542.83" x="114375.68"/>
|
|
791
|
+
</text>
|
|
792
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-182855.39" x="33088.82" font-family="Arial"/>
|
|
793
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%">
|
|
794
|
+
<text y="-10618.67" x="71721.19" font-size="4848.4">
|
|
795
|
+
<tspan y="-10618.67" x="71721.19"/>
|
|
796
|
+
</text>
|
|
797
|
+
<text y="-117.09" x="-8681.43" font-size="3776.9" fill="#fff8eb">
|
|
798
|
+
<tspan y="-117.09" x="-8681.43"/>
|
|
799
|
+
</text>
|
|
800
|
+
</g>
|
|
801
|
+
<g fill="#fff8eb">
|
|
802
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1372.3" y="-10673.92" x="3596.61" font-family="Arial"/>
|
|
803
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3776.9" y="886.67" x="5394.38" font-family="Gentium Book Basic" line-height="125%">
|
|
804
|
+
<tspan y="886.67" x="5394.38"/>
|
|
805
|
+
</text>
|
|
806
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1372.3" y="-6646.83" x="7104.25" font-family="Arial"/>
|
|
807
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3776.9" y="-1451.54" x="22382.77" font-family="Gentium Book Basic" line-height="125%">
|
|
808
|
+
<tspan y="-1451.54" x="22382.77"/>
|
|
809
|
+
</text>
|
|
810
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1372.3" y="-16029.42" x="11337.77" font-family="Arial"/>
|
|
811
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3776.9" y="-2445.52" x="5912.89" font-family="Gentium Book Basic" line-height="125%">
|
|
812
|
+
<tspan y="-2445.52" x="5912.89"/>
|
|
813
|
+
</text>
|
|
814
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1372.3" y="-20018.34" x="7233.42" font-family="Arial"/>
|
|
815
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3776.9" y="-4783.73" x="22901.29" font-family="Gentium Book Basic" line-height="125%">
|
|
816
|
+
<tspan y="-4783.73" x="22901.29"/>
|
|
817
|
+
</text>
|
|
818
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1372.3" y="-29400.93" x="11466.94" font-family="Arial"/>
|
|
819
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3776.9" y="6087.89" x="-50928.18" font-family="Gentium Book Basic" line-height="125%">
|
|
820
|
+
<tspan y="6087.89" x="-50928.18"/>
|
|
821
|
+
</text>
|
|
822
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1372.3" y="14224.98" x="-6931.22" font-family="Arial"/>
|
|
823
|
+
</g>
|
|
824
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-1731.28" x="-2788.55" font-family="Gentium Book Basic" line-height="125%">
|
|
825
|
+
<tspan y="-1731.28" x="-2788.55"/>
|
|
826
|
+
</text>
|
|
827
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-15072.91" x="3891.7" font-family="Arial"/>
|
|
828
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-3593.1" x="10739.19" font-family="Gentium Book Basic" line-height="125%">
|
|
829
|
+
<tspan y="-3593.1" x="10739.19"/>
|
|
830
|
+
</text>
|
|
831
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-22544.35" x="7262.74" font-family="Arial"/>
|
|
832
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-7811.52" x="-14199.4" font-family="Gentium Book Basic" line-height="125%">
|
|
833
|
+
<tspan y="-7811.52" x="-14199.4"/>
|
|
834
|
+
</text>
|
|
835
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-39471.68" x="1048.07" font-family="Arial"/>
|
|
836
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-12849.36" x="11355.22" font-family="Gentium Book Basic" line-height="125%">
|
|
837
|
+
<tspan y="-12849.36" x="11355.22"/>
|
|
838
|
+
</text>
|
|
839
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-59687.9" x="7416.34" font-family="Arial"/>
|
|
840
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-14711.18" x="24882.73" font-family="Gentium Book Basic" line-height="125%">
|
|
841
|
+
<tspan y="-14711.18" x="24882.73"/>
|
|
842
|
+
</text>
|
|
843
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-67159.34" x="10787.38" font-family="Arial"/>
|
|
844
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-25705.22" x="15826.84" font-family="Gentium Book Basic" line-height="125%">
|
|
845
|
+
<tspan y="-25705.22" x="15826.84"/>
|
|
846
|
+
</text>
|
|
847
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-111276.3" x="8530.63" font-family="Arial"/>
|
|
848
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-27567.27" x="29354.58" font-family="Gentium Book Basic" line-height="125%">
|
|
849
|
+
<tspan y="-27567.27" x="29354.58"/>
|
|
850
|
+
</text>
|
|
851
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-118747.73" x="11901.67" font-family="Arial"/>
|
|
852
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%">
|
|
853
|
+
<text y="5357.13" x="-13299.91" font-size="4848.4">
|
|
854
|
+
<tspan y="5357.13" x="-13299.91"/>
|
|
855
|
+
</text>
|
|
856
|
+
<text transform="scale(1.05082.95163)" font-size="109.71" y="128.85" x="87.65" fill="#fff">
|
|
857
|
+
<tspan y="128.85" x="87.65"/>
|
|
858
|
+
</text>
|
|
859
|
+
</g>
|
|
860
|
+
<g fill="#fff">
|
|
861
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="39.866" y="220.65" x="189.17" font-family="Arial"/>
|
|
862
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="58.74" y="98.44" x="434.27" font-family="Gentium Book Basic" line-height="125%">
|
|
863
|
+
<tspan y="98.44" x="434.27"/>
|
|
864
|
+
</text>
|
|
865
|
+
<text style="text-anchor:middle" transform="scale(4.21676.23715)" font-size="21.341" y="236.47" x="197.8" font-family="Arial"/>
|
|
866
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="171.59" y="225.51" x="-866.85" font-family="Gentium Book Basic" line-height="125%">
|
|
867
|
+
<tspan y="225.51" x="-866.85"/>
|
|
868
|
+
</text>
|
|
869
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="62.35" y="441.31" x="45.672" font-family="Arial"/>
|
|
870
|
+
</g>
|
|
871
|
+
<g>
|
|
872
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="96.14" y="121.83" x="12.13" font-family="Gentium Book Basic" line-height="125%">
|
|
873
|
+
<tspan y="121.83" x="12.13"/>
|
|
874
|
+
</text>
|
|
875
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="34.933" y="229.17" x="149.63" font-family="Arial"/>
|
|
876
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="51.46" y="95.18" x="315.86" font-family="Gentium Book Basic" line-height="125%">
|
|
877
|
+
<tspan y="95.18" x="315.86"/>
|
|
878
|
+
</text>
|
|
879
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="18.688" y="242.99" x="157.19" font-family="Arial"/>
|
|
880
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="150.34" y="206.08" x="-827.47" font-family="Gentium Book Basic" line-height="125%">
|
|
881
|
+
<tspan y="206.08" x="-827.47"/>
|
|
882
|
+
</text>
|
|
883
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="54.621" y="420.83" x="23.07" font-family="Arial"/>
|
|
884
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(-1.0508 .95163)" font-size="96.14" y="121.83" x="1056.6" font-family="Gentium Book Basic" line-height="125%">
|
|
885
|
+
<tspan y="121.83" x="1056.6"/>
|
|
886
|
+
</text>
|
|
887
|
+
<text style="text-anchor:middle" transform="scale(-4.2168 .23715)" font-size="34.933" y="229.17" x="409.92" font-family="Arial"/>
|
|
888
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(-1.0508 .95163)" font-size="51.46" y="95.18" x="1360.31" font-family="Gentium Book Basic" line-height="125%">
|
|
889
|
+
<tspan y="95.18" x="1360.31"/>
|
|
890
|
+
</text>
|
|
891
|
+
<text style="text-anchor:middle" transform="scale(-4.2168 .23715)" font-size="18.688" y="242.99" x="417.48" font-family="Arial"/>
|
|
892
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(-1 1)" font-size="150.34" y="206.08" x="270.09" font-family="Gentium Book Basic" line-height="125%">
|
|
893
|
+
<tspan y="206.08" x="270.09"/>
|
|
894
|
+
</text>
|
|
895
|
+
<text style="text-anchor:middle" transform="scale(-4.0128 .2492)" font-size="54.621" y="420.83" x="296.6" font-family="Arial"/>
|
|
896
|
+
</g>
|
|
897
|
+
<g fill="#555753">
|
|
898
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="94.88" y="159.64" x="-1649.89" font-family="Gentium Book Basic" line-height="125%">
|
|
899
|
+
<tspan y="159.64" x="-1649.89"/>
|
|
900
|
+
</text>
|
|
901
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="34.49" y="384.26" x="-266.44" font-family="Arial"/>
|
|
902
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="50.804" y="133.35" x="-1350" font-family="Gentium Book Basic" line-height="125%">
|
|
903
|
+
<tspan y="133.35" x="-1350"/>
|
|
904
|
+
</text>
|
|
905
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="18.455" y="397.99" x="-258.97" font-family="Arial"/>
|
|
906
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="148.41" y="240.92" x="-2563.27" font-family="Gentium Book Basic" line-height="125%">
|
|
907
|
+
<tspan y="240.92" x="-2563.27"/>
|
|
908
|
+
</text>
|
|
909
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="53.923" y="565.79" x="-412.4" font-family="Arial"/>
|
|
910
|
+
</g>
|
|
911
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4848.4" y="1197.82" x="-27932.87" font-family="Gentium Book Basic" line-height="125%">
|
|
912
|
+
<tspan y="1197.82" x="-27932.87"/>
|
|
913
|
+
</text>
|
|
914
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1761.7" y="-8293.37" x="433.39" font-family="Arial"/>
|
|
915
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4848.4" y="2109.88" x="-28067.62" font-family="Gentium Book Basic" line-height="125%">
|
|
916
|
+
<tspan y="2109.88" x="-28067.62"/>
|
|
917
|
+
</text>
|
|
918
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1761.7" y="-4633.52" x="399.86" font-family="Arial"/>
|
|
919
|
+
<g fill="#555753">
|
|
920
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="2976.1" y="-4945.91" x="-13564.87" font-family="Gentium Book Basic" line-height="125%">
|
|
921
|
+
<tspan y="-4945.91" x="-13564.87"/>
|
|
922
|
+
</text>
|
|
923
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="1081.5" y="-27888.32" x="1158.53" font-family="Arial"/>
|
|
924
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="1593.2" y="-5770.92" x="-4162.03" font-family="Gentium Book Basic" line-height="125%">
|
|
925
|
+
<tspan y="-5770.92" x="-4162.03"/>
|
|
926
|
+
</text>
|
|
927
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="578.89" y="-27462.19" x="1392.63" font-family="Arial"/>
|
|
928
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-1915.83" x="-40267.41" font-family="Gentium Book Basic" line-height="125%">
|
|
929
|
+
<tspan y="-1915.83" x="-40267.41"/>
|
|
930
|
+
</text>
|
|
931
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-20263.4" x="-2936.01" font-family="Arial"/>
|
|
932
|
+
</g>
|
|
933
|
+
<g>
|
|
934
|
+
<text style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" font-size="4848.4" stroke="#cd1d31" y="-14142.4" x="-26084.31" stroke-width="23.273" line-height="125%">
|
|
935
|
+
<tspan y="-14142.4" x="-26084.31" stroke-width="23.273"/>
|
|
936
|
+
</text>
|
|
937
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1761.7" y="-69851.05" x="894.19" font-family="Arial"/>
|
|
938
|
+
<text style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" font-size="4848.4" stroke="#cd1d31" y="-13230.34" x="-26219.3" stroke-width="23.273" line-height="125%">
|
|
939
|
+
<tspan y="-13230.34" x="-26219.3" stroke-width="23.273"/>
|
|
940
|
+
</text>
|
|
941
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1761.7" y="-66190.97" x="860.52" font-family="Arial"/>
|
|
942
|
+
</g>
|
|
943
|
+
<g fill="#555753">
|
|
944
|
+
<g stroke-width="23.273" stroke="#cd1d31">
|
|
945
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="2976.1" y="-21065.7" x="-11805.69" font-family="Gentium Book Basic" line-height="125%">
|
|
946
|
+
<tspan y="-21065.7" x="-11805.69" stroke-width="23.273"/>
|
|
947
|
+
</text>
|
|
948
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="1081.5" y="-92575.26" x="1596.97" font-family="Arial"/>
|
|
949
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="1593.2" y="-21890.71" x="-2403.08" font-family="Gentium Book Basic" line-height="125%">
|
|
950
|
+
<tspan y="-21890.71" x="-2403.08" stroke-width="23.273"/>
|
|
951
|
+
</text>
|
|
952
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="578.89" y="-92149.12" x="1830.86" font-family="Arial"/>
|
|
953
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-17256.06" x="-38418.86" font-family="Gentium Book Basic" line-height="125%">
|
|
954
|
+
<tspan y="-17256.06" x="-38418.86" stroke-width="23.273"/>
|
|
955
|
+
</text>
|
|
956
|
+
</g>
|
|
957
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-81821.09" x="-2475.45" font-family="Arial"/>
|
|
958
|
+
</g>
|
|
959
|
+
<g>
|
|
960
|
+
<text style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" font-size="4654.6" stroke="#cd1d31" y="-20831.91" x="-9108.49" stroke-width="23.273" line-height="125%">
|
|
961
|
+
<tspan y="-20831.91" x="-9108.49" stroke-width="23.273"/>
|
|
962
|
+
</text>
|
|
963
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-96170.27" x="4828.66" font-family="Arial"/>
|
|
964
|
+
<text style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" font-size="4654.6" stroke="#cd1d31" y="-23713.54" x="11828.12" stroke-width="23.273" line-height="125%">
|
|
965
|
+
<tspan y="-23713.54" x="11828.12" stroke-width="23.273"/>
|
|
966
|
+
</text>
|
|
967
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-107733.51" x="10046.15" font-family="Arial"/>
|
|
968
|
+
</g>
|
|
969
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-418.3" x="9990.74" font-family="Gentium Book Basic" line-height="125%">
|
|
970
|
+
<tspan y="-418.3" x="9990.74"/>
|
|
971
|
+
</text>
|
|
972
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-9804.23" x="7076.33" font-family="Arial"/>
|
|
973
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-2280.05" x="23518.25" font-family="Gentium Book Basic" line-height="125%">
|
|
974
|
+
<tspan y="-2280.05" x="23518.25"/>
|
|
975
|
+
</text>
|
|
976
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-17275.43" x="10447.36" font-family="Arial"/>
|
|
977
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-6498.47" x="-1420.23" font-family="Gentium Book Basic" line-height="125%">
|
|
978
|
+
<tspan y="-6498.47" x="-1420.23"/>
|
|
979
|
+
</text>
|
|
980
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-34203" x="4232.65" font-family="Arial"/>
|
|
981
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-11536.55" x="24134.51" font-family="Gentium Book Basic" line-height="125%">
|
|
982
|
+
<tspan y="-11536.55" x="24134.51"/>
|
|
983
|
+
</text>
|
|
984
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-54419.22" x="10600.73" font-family="Arial"/>
|
|
985
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-13398.36" x="37662.02" font-family="Gentium Book Basic" line-height="125%">
|
|
986
|
+
<tspan y="-13398.36" x="37662.02"/>
|
|
987
|
+
</text>
|
|
988
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-61890.66" x="13972" font-family="Arial"/>
|
|
989
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-24392.41" x="28606.13" font-family="Gentium Book Basic" line-height="125%">
|
|
990
|
+
<tspan y="-24392.41" x="28606.13"/>
|
|
991
|
+
</text>
|
|
992
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-106007.62" x="11715.26" font-family="Arial"/>
|
|
993
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-26254.22" x="42133.87" font-family="Gentium Book Basic" line-height="125%">
|
|
994
|
+
<tspan y="-26254.22" x="42133.87"/>
|
|
995
|
+
</text>
|
|
996
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-113478.81" x="15086.29" font-family="Arial"/>
|
|
997
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%">
|
|
998
|
+
<text y="6669.94" x="-520.6" font-size="4848.4">
|
|
999
|
+
<tspan y="6669.94" x="-520.6"/>
|
|
1000
|
+
</text>
|
|
1001
|
+
<text y="-17707.08" x="82232.31" font-size="3007.5">
|
|
1002
|
+
<tspan y="-17707.08" x="82232.31"/>
|
|
1003
|
+
</text>
|
|
1004
|
+
</g>
|
|
1005
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-79180.57" x="25078.85" font-family="Arial"/>
|
|
1006
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-19568.9" x="95760.05" font-family="Gentium Book Basic" line-height="125%">
|
|
1007
|
+
<tspan y="-19568.9" x="95760.05"/>
|
|
1008
|
+
</text>
|
|
1009
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-86652.02" x="28449.89" font-family="Arial"/>
|
|
1010
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-23787.31" x="70821.46" font-family="Gentium Book Basic" line-height="125%">
|
|
1011
|
+
<tspan y="-23787.31" x="70821.46"/>
|
|
1012
|
+
</text>
|
|
1013
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-103579.35" x="22235.17" font-family="Arial"/>
|
|
1014
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-28825.16" x="96376.09" font-family="Gentium Book Basic" line-height="125%">
|
|
1015
|
+
<tspan y="-28825.16" x="96376.09"/>
|
|
1016
|
+
</text>
|
|
1017
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-123795.56" x="28603.49" font-family="Arial"/>
|
|
1018
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-30686.98" x="109903.82" font-family="Gentium Book Basic" line-height="125%">
|
|
1019
|
+
<tspan y="-30686.98" x="109903.82"/>
|
|
1020
|
+
</text>
|
|
1021
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-131267.02" x="31974.53" font-family="Arial"/>
|
|
1022
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-41681.02" x="100847.94" font-family="Gentium Book Basic" line-height="125%">
|
|
1023
|
+
<tspan y="-41681.02" x="100847.94"/>
|
|
1024
|
+
</text>
|
|
1025
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-175383.95" x="29717.79" font-family="Arial"/>
|
|
1026
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-43542.83" x="114375.68" font-family="Gentium Book Basic" line-height="125%">
|
|
1027
|
+
<tspan y="-43542.83" x="114375.68"/>
|
|
1028
|
+
</text>
|
|
1029
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-182855.39" x="33088.82" font-family="Arial"/>
|
|
1030
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%">
|
|
1031
|
+
<text y="-10618.67" x="71721.19" font-size="4848.4">
|
|
1032
|
+
<tspan y="-10618.67" x="71721.19"/>
|
|
1033
|
+
</text>
|
|
1034
|
+
<text y="-1904.43" x="-9334.7" font-size="3007.5">
|
|
1035
|
+
<tspan y="-1904.43" x="-9334.7"/>
|
|
1036
|
+
</text>
|
|
1037
|
+
</g>
|
|
1038
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-15767.83" x="2260.29" font-family="Arial"/>
|
|
1039
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-3766.25" x="4193.04" font-family="Gentium Book Basic" line-height="125%">
|
|
1040
|
+
<tspan y="-3766.25" x="4193.04"/>
|
|
1041
|
+
</text>
|
|
1042
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-23239.27" x="5631.56" font-family="Arial"/>
|
|
1043
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-7984.66" x="-20745.55" font-family="Gentium Book Basic" line-height="125%">
|
|
1044
|
+
<tspan y="-7984.66" x="-20745.55"/>
|
|
1045
|
+
</text>
|
|
1046
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-40166.61" x="-583.18" font-family="Arial"/>
|
|
1047
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-13022.51" x="4809.07" font-family="Gentium Book Basic" line-height="125%">
|
|
1048
|
+
<tspan y="-13022.51" x="4809.07"/>
|
|
1049
|
+
</text>
|
|
1050
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-60383.06" x="5784.93" font-family="Arial"/>
|
|
1051
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-14884.56" x="18336.81" font-family="Gentium Book Basic" line-height="125%">
|
|
1052
|
+
<tspan y="-14884.56" x="18336.81"/>
|
|
1053
|
+
</text>
|
|
1054
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-67854.26" x="9155.97" font-family="Arial"/>
|
|
1055
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-25878.6" x="9280.92" font-family="Gentium Book Basic" line-height="125%">
|
|
1056
|
+
<tspan y="-25878.6" x="9280.92"/>
|
|
1057
|
+
</text>
|
|
1058
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-111971.21" x="6899.46" font-family="Arial"/>
|
|
1059
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="3007.5" y="-27740.42" x="22808.66" font-family="Gentium Book Basic" line-height="125%">
|
|
1060
|
+
<tspan y="-27740.42" x="22808.66"/>
|
|
1061
|
+
</text>
|
|
1062
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1092.7" y="-119442.66" x="10270.49" font-family="Arial"/>
|
|
1063
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%" font-size="4848.4">
|
|
1064
|
+
<text y="5183.98" x="-19845.83">
|
|
1065
|
+
<tspan y="5183.98" x="-19845.83"/>
|
|
1066
|
+
</text>
|
|
1067
|
+
<text y="1141.97" x="-28748.34">
|
|
1068
|
+
<tspan y="1141.97" x="-28748.34"/>
|
|
1069
|
+
</text>
|
|
1070
|
+
</g>
|
|
1071
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1761.7" y="-8517.48" x="230.25" font-family="Arial"/>
|
|
1072
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4848.4" y="2054.03" x="-28883.09" font-family="Gentium Book Basic" line-height="125%">
|
|
1073
|
+
<tspan y="2054.03" x="-28883.09"/>
|
|
1074
|
+
</text>
|
|
1075
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1761.7" y="-4857.63" x="196.71" font-family="Arial"/>
|
|
1076
|
+
<g fill="#555753">
|
|
1077
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="2976.1" y="-5004.55" x="-14340.78" font-family="Gentium Book Basic" line-height="125%">
|
|
1078
|
+
<tspan y="-5004.55" x="-14340.78"/>
|
|
1079
|
+
</text>
|
|
1080
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="1081.5" y="-28123.84" x="965.13" font-family="Arial"/>
|
|
1081
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="1593.2" y="-5829.57" x="-4938.17" font-family="Gentium Book Basic" line-height="125%">
|
|
1082
|
+
<tspan y="-5829.57" x="-4938.17"/>
|
|
1083
|
+
</text>
|
|
1084
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="578.89" y="-27697.72" x="1199.21" font-family="Arial"/>
|
|
1085
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-1971.69" x="-41082.89" font-family="Gentium Book Basic" line-height="125%">
|
|
1086
|
+
<tspan y="-1971.69" x="-41082.89"/>
|
|
1087
|
+
</text>
|
|
1088
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-20487.52" x="-3139.18" font-family="Arial"/>
|
|
1089
|
+
</g>
|
|
1090
|
+
<g>
|
|
1091
|
+
<text style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" font-size="4848.4" stroke="#cd1d31" y="-14198.25" x="-26899.79" stroke-width="23.273" line-height="125%">
|
|
1092
|
+
<tspan y="-14198.25" x="-26899.79" stroke-width="23.273"/>
|
|
1093
|
+
</text>
|
|
1094
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1761.7" y="-70075.16" x="690.79" font-family="Arial"/>
|
|
1095
|
+
<text style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" font-size="4848.4" stroke="#cd1d31" y="-13286.19" x="-27034.54" stroke-width="23.273" line-height="125%">
|
|
1096
|
+
<tspan y="-13286.19" x="-27034.54" stroke-width="23.273"/>
|
|
1097
|
+
</text>
|
|
1098
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1761.7" y="-66415.09" x="657.3" font-family="Arial"/>
|
|
1099
|
+
</g>
|
|
1100
|
+
<g fill="#555753">
|
|
1101
|
+
<g stroke-width="23.273" stroke="#cd1d31">
|
|
1102
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="2976.1" y="-21124.34" x="-12581.6" font-family="Gentium Book Basic" line-height="125%">
|
|
1103
|
+
<tspan y="-21124.34" x="-12581.6" stroke-width="23.273"/>
|
|
1104
|
+
</text>
|
|
1105
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="1081.5" y="-92810.77" x="1403.57" font-family="Arial"/>
|
|
1106
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="1593.2" y="-21949.36" x="-3178.99" font-family="Gentium Book Basic" line-height="125%">
|
|
1107
|
+
<tspan y="-21949.36" x="-3178.99" stroke-width="23.273"/>
|
|
1108
|
+
</text>
|
|
1109
|
+
<text style="text-anchor:middle" transform="scale(4.21677.23715)" font-size="578.89" y="-92384.64" x="1637.7" font-family="Arial"/>
|
|
1110
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="4654.6" y="-17311.91" x="-39234.34" font-family="Gentium Book Basic" line-height="125%">
|
|
1111
|
+
<tspan y="-17311.91" x="-39234.34" stroke-width="23.273"/>
|
|
1112
|
+
</text>
|
|
1113
|
+
</g>
|
|
1114
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-82045.2" x="-2678.62" font-family="Arial"/>
|
|
1115
|
+
</g>
|
|
1116
|
+
<g>
|
|
1117
|
+
<text style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" font-size="4654.6" stroke="#cd1d31" y="-20887.76" x="-9923.97" stroke-width="23.273" line-height="125%">
|
|
1118
|
+
<tspan y="-20887.76" x="-9923.97" stroke-width="23.273"/>
|
|
1119
|
+
</text>
|
|
1120
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-96394.4" x="4625.49" font-family="Arial"/>
|
|
1121
|
+
<text style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" font-size="4654.6" stroke="#cd1d31" y="-23769.39" x="11012.65" stroke-width="23.273" line-height="125%">
|
|
1122
|
+
<tspan y="-23769.39" x="11012.65" stroke-width="23.273"/>
|
|
1123
|
+
</text>
|
|
1124
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="1691.2" y="-107957.62" x="9842.74" font-family="Arial"/>
|
|
1125
|
+
</g>
|
|
1126
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="891.01" x="86.3" font-family="Gentium Book Basic" line-height="125%">
|
|
1127
|
+
<tspan y="891.01" x="86.3"/>
|
|
1128
|
+
</text>
|
|
1129
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="75.7" y="3012.58" x="339.23" font-family="Arial"/>
|
|
1130
|
+
<path d="m307.08 149.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"/>
|
|
1131
|
+
<g fill-rule="evenodd">
|
|
1132
|
+
<path opacity=".25" d="m193.86 203.09v7.875c0 3.02-2.413 5.5-5.438 5.5h-9.375l-8.5-8.5c-10.258 6.077-17.09 17.228-17.09 30.06v13.688l6.992 6.992c-21.56 14.809-35.68 39.694-35.68 67.852 0 3.914 0.064 7.638 0.594 11.406 0.034 0.055-0.035 0.227 0 0.281 2.575 19.912 9.06 39.25-2.031 53.19l-17.219 17.188-0.5 0.5c-4.429 4.946-4.255 12.527 0.5 17.281l1.531 1.531 73.56 73.56h256.43c3.881 0 7-3.119 7-7v-192.96l-88.2-88.2c-2.065-2.065-4.39-3.872-6.92-5.371v3c0 3.02-2.444 5.5-5.469 5.5h-4.469l-13.375-13.375h-132.34"/>
|
|
1133
|
+
<path d="m193.86 203.09v7.875c0 3.02-2.413 5.5-5.438 5.5h-12.406c-3.02 0-5.469-2.475-5.469-5.5v-3c-10.258 6.077-17.09 17.228-17.09 30.06v13.688c14.745-10.722 32.458-17.217 50.938-17.188 5.623-0.136 11.246 0.203 16.781 1.188 40.12 5.756 72.972 41.2 76.844 81.31 5.546 43.872-25.916 87.79-68.28 98.59-21.677 6.746-44.3-0.032-66.28-0.938-3.667-0.536-6.952 0.078-10 1.438v21.875c0 12.835 6.836 24.02 17.09 30.09 0.145-2.894 2.538-5.219 5.469-5.219h12.406c3.02 0 5.438 2.475 5.438 5.5v4.563h132.34v-4.563c0-3.02 2.413-5.5 5.438-5.5h12.406c2.93 0 5.324 2.325 5.469 5.219 10.258-6.077 17.13-17.259 17.13-30.09v-199.97c0-12.835-6.867-23.985-17.12-30.06v3c0 3.02-2.444 5.5-5.469 5.5h-12.406c-3.02 0-5.438-2.475-5.438-5.5v-7.875h-132.34m137.78 38.19h12.406c3.02 0 5.469 2.413 5.469 5.438v8.594c0 3.02-2.444 5.469-5.469 5.469h-12.406c-3.02 0-5.438-2.444-5.438-5.469v-8.594c0-3.02 2.413-5.438 5.438-5.438m-125.03 3.125c-45.31 0-81.84 36.85-81.84 82.16 0 3.914 0.064 7.638 0.594 11.406 0.034 0.055-0.035 0.227 0 0.281 2.575 19.912 9.06 39.25-2.031 53.19l-17.219 17.188-0.5 0.5c-4.429 4.946-4.255 12.527 0.5 17.281l1.531 1.531c4.755 4.755 12.304 4.898 17.25 0.469l0.031 0.031 0.5-0.5 17.188-17.219c14.505-11.11 33.681-4.207 54.938-2.344 2.956 0.324 6.02 0.031 9.06 0.031 1.534 0 2.861 0.048 4.375-0.031 43.18-2.372 77.47-38.32 77.47-82.09 0-22.656-9.122-42.751-23.969-57.59-14.845-14.847-35.22-24.25-57.875-24.25v-0.031m0 21.938c16.649 0 31.778 6.622 42.688 17.531 10.909 10.907 17.531 26.04 17.531 42.688 0 33.29-26.926 60.22-60.22 60.22-33.29 0-60.22-27.21-60.22-60.5s26.926-59.938 60.22-59.938m125.03 19.25h12.406c3.02 0 5.469 2.444 5.469 5.469v8.563c0 3.02-2.444 5.5-5.469 5.5h-12.406c-3.02 0-5.438-2.475-5.438-5.5v-8.563c0-3.02 2.413-5.469 5.438-5.469m0 44.34h12.406c3.02 0 5.469 2.413 5.469 5.438v8.594c0 3.02-2.444 5.438-5.469 5.438h-12.406c-3.02 0-5.438-2.413-5.438-5.438v-8.594c0-3.02 2.413-5.438 5.438-5.438m0 44.28h12.406c3.02 0 5.469 2.475 5.469 5.5v8.563c0 3.02-2.444 5.469-5.469 5.469h-12.406c-3.02 0-5.438-2.444-5.438-5.469v-8.563c0-3.02 2.413-5.5 5.438-5.5m-155.62 44.34h12.406c3.02 0 5.438 2.444 5.438 5.469v8.594c0 3.02-2.413 5.438-5.438 5.438h-12.406c-3.02 0-5.469-2.413-5.469-5.438v-8.594c0-3.02 2.444-5.469 5.469-5.469m155.63 0h12.406c3.02 0 5.469 2.444 5.469 5.469v8.594c0 3.02-2.444 5.438-5.469 5.438h-12.406c-3.02 0-5.438-2.413-5.438-5.438v-8.594c0-3.02 2.413-5.469 5.438-5.469" fill="#fff"/>
|
|
1134
|
+
</g>
|
|
1135
|
+
</svg>
|