cyberia 2.8.885
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/.dockerignore +15 -0
- package/.env.development +45 -0
- package/.env.production +50 -0
- package/.env.test +45 -0
- package/.github/workflows/engine-cyberia.cd.yml +31 -0
- package/.github/workflows/engine-cyberia.ci.yml +60 -0
- package/.github/workflows/ghpkg.ci.yml +87 -0
- package/.github/workflows/npmpkg.ci.yml +72 -0
- package/.github/workflows/publish.ci.yml +84 -0
- package/.github/workflows/publish.cyberia.ci.yml +84 -0
- package/.github/workflows/pwa-microservices-template-page.cd.yml +72 -0
- package/.github/workflows/pwa-microservices-template-test.ci.yml +33 -0
- package/.github/workflows/release.cd.yml +37 -0
- package/.nycrc +9 -0
- package/.prettierignore +13 -0
- package/.prettierrc +9 -0
- package/.vscode/extensions.json +51 -0
- package/.vscode/settings.json +87 -0
- package/AUTHORS.md +21 -0
- package/CHANGELOG.md +205 -0
- package/Dockerfile +28 -0
- package/LICENSE +21 -0
- package/README.md +85 -0
- package/bin/build.js +209 -0
- package/bin/cron.js +47 -0
- package/bin/cyberia.js +145 -0
- package/bin/db.js +199 -0
- package/bin/deploy.js +1293 -0
- package/bin/file.js +197 -0
- package/bin/hwt.js +49 -0
- package/bin/index.js +145 -0
- package/bin/ssl.js +63 -0
- package/bin/util.js +80 -0
- package/bin/vs.js +74 -0
- package/cli.md +714 -0
- package/conf.js +204 -0
- package/deployment.yaml +138 -0
- package/jsconfig.json +7 -0
- package/jsdoc.json +32 -0
- package/manifests/deployment/adminer/deployment.yaml +32 -0
- package/manifests/deployment/adminer/kustomization.yaml +7 -0
- package/manifests/deployment/adminer/service.yaml +13 -0
- package/manifests/deployment/dd-default-development/deployment.yaml +167 -0
- package/manifests/deployment/dd-default-development/proxy.yaml +46 -0
- package/manifests/deployment/dd-test-development/deployment.yaml +174 -0
- package/manifests/deployment/dd-test-development/proxy.yaml +51 -0
- package/manifests/deployment/fastapi/backend-deployment.yml +120 -0
- package/manifests/deployment/fastapi/backend-service.yml +19 -0
- package/manifests/deployment/fastapi/frontend-deployment.yml +54 -0
- package/manifests/deployment/fastapi/frontend-service.yml +15 -0
- package/manifests/deployment/fastapi/initial_data.sh +56 -0
- package/manifests/deployment/kafka/deployment.yaml +69 -0
- package/manifests/deployment/mongo-express/deployment.yaml +60 -0
- package/manifests/deployment/phpmyadmin/deployment.yaml +54 -0
- package/manifests/deployment/spark/spark-pi-py.yaml +21 -0
- package/manifests/deployment/tensorflow/tf-gpu-test.yaml +65 -0
- package/manifests/envoy-service-nodeport.yaml +23 -0
- package/manifests/grafana/deployment.yaml +57 -0
- package/manifests/grafana/kustomization.yaml +7 -0
- package/manifests/grafana/pvc.yaml +12 -0
- package/manifests/grafana/service.yaml +14 -0
- package/manifests/kind-config-dev.yaml +12 -0
- package/manifests/kind-config.yaml +12 -0
- package/manifests/kubeadm-calico-config.yaml +119 -0
- package/manifests/kubelet-config.yaml +65 -0
- package/manifests/letsencrypt-prod.yaml +15 -0
- package/manifests/lxd/lxd-admin-profile.yaml +17 -0
- package/manifests/lxd/lxd-preseed.yaml +30 -0
- package/manifests/lxd/underpost-setup.sh +163 -0
- package/manifests/mariadb/config.yaml +10 -0
- package/manifests/mariadb/kustomization.yaml +9 -0
- package/manifests/mariadb/pv.yaml +12 -0
- package/manifests/mariadb/pvc.yaml +10 -0
- package/manifests/mariadb/secret.yaml +8 -0
- package/manifests/mariadb/service.yaml +10 -0
- package/manifests/mariadb/statefulset.yaml +56 -0
- package/manifests/mariadb/storage-class.yaml +10 -0
- package/manifests/mongodb/backup-access.yaml +16 -0
- package/manifests/mongodb/backup-cronjob.yaml +42 -0
- package/manifests/mongodb/backup-pv-pvc.yaml +22 -0
- package/manifests/mongodb/configmap.yaml +26 -0
- package/manifests/mongodb/headless-service.yaml +10 -0
- package/manifests/mongodb/kustomization.yaml +11 -0
- package/manifests/mongodb/pv-pvc.yaml +23 -0
- package/manifests/mongodb/statefulset.yaml +126 -0
- package/manifests/mongodb/storage-class.yaml +9 -0
- package/manifests/mongodb-4.4/kustomization.yaml +7 -0
- package/manifests/mongodb-4.4/pv-pvc.yaml +23 -0
- package/manifests/mongodb-4.4/service-deployment.yaml +63 -0
- package/manifests/mysql/kustomization.yaml +7 -0
- package/manifests/mysql/pv-pvc.yaml +27 -0
- package/manifests/mysql/statefulset.yaml +55 -0
- package/manifests/postgresql/configmap.yaml +9 -0
- package/manifests/postgresql/kustomization.yaml +10 -0
- package/manifests/postgresql/pv.yaml +15 -0
- package/manifests/postgresql/pvc.yaml +13 -0
- package/manifests/postgresql/service.yaml +10 -0
- package/manifests/postgresql/statefulset.yaml +37 -0
- package/manifests/prometheus/deployment.yaml +82 -0
- package/manifests/valkey/kustomization.yaml +7 -0
- package/manifests/valkey/service.yaml +11 -0
- package/manifests/valkey/statefulset.yaml +38 -0
- package/nodemon.json +6 -0
- package/package.json +118 -0
- package/proxy.yaml +35 -0
- package/scripts/device-scan.sh +43 -0
- package/scripts/gpu-diag.sh +19 -0
- package/scripts/maas-setup.sh +120 -0
- package/scripts/nat-iptables.sh +26 -0
- package/scripts/nvim.sh +91 -0
- package/scripts/snap-clean.sh +26 -0
- package/scripts/ssh-cluster-info.sh +14 -0
- package/scripts/ssl.sh +164 -0
- package/src/api/blockchain/blockchain.controller.js +51 -0
- package/src/api/blockchain/blockchain.model.js +90 -0
- package/src/api/blockchain/blockchain.router.js +21 -0
- package/src/api/blockchain/blockchain.service.js +24 -0
- package/src/api/core/core.controller.js +69 -0
- package/src/api/core/core.model.js +11 -0
- package/src/api/core/core.router.js +24 -0
- package/src/api/core/core.service.js +35 -0
- package/src/api/crypto/crypto.controller.js +51 -0
- package/src/api/crypto/crypto.model.js +23 -0
- package/src/api/crypto/crypto.router.js +20 -0
- package/src/api/crypto/crypto.service.js +64 -0
- package/src/api/default/default.controller.js +74 -0
- package/src/api/default/default.model.js +20 -0
- package/src/api/default/default.router.js +27 -0
- package/src/api/default/default.service.js +40 -0
- package/src/api/document/document.controller.js +66 -0
- package/src/api/document/document.model.js +51 -0
- package/src/api/document/document.router.js +24 -0
- package/src/api/document/document.service.js +133 -0
- package/src/api/file/file.controller.js +67 -0
- package/src/api/file/file.model.js +19 -0
- package/src/api/file/file.router.js +22 -0
- package/src/api/file/file.service.js +100 -0
- package/src/api/instance/instance.controller.js +69 -0
- package/src/api/instance/instance.model.js +40 -0
- package/src/api/instance/instance.router.js +34 -0
- package/src/api/instance/instance.service.js +70 -0
- package/src/api/ipfs/ipfs.controller.js +51 -0
- package/src/api/ipfs/ipfs.model.js +17 -0
- package/src/api/ipfs/ipfs.router.js +20 -0
- package/src/api/ipfs/ipfs.service.js +25 -0
- package/src/api/object-layer/README.md +85 -0
- package/src/api/object-layer/object-layer.controller.js +69 -0
- package/src/api/object-layer/object-layer.model.js +181 -0
- package/src/api/object-layer/object-layer.router.js +29 -0
- package/src/api/object-layer/object-layer.service.js +49 -0
- package/src/api/test/test.controller.js +59 -0
- package/src/api/test/test.model.js +14 -0
- package/src/api/test/test.router.js +21 -0
- package/src/api/test/test.service.js +35 -0
- package/src/api/user/postman_collection.json +216 -0
- package/src/api/user/user.build.js +16 -0
- package/src/api/user/user.controller.js +35 -0
- package/src/api/user/user.model.js +100 -0
- package/src/api/user/user.router.js +400 -0
- package/src/api/user/user.service.js +500 -0
- package/src/api.js +23 -0
- package/src/cli/baremetal.js +1310 -0
- package/src/cli/cloud-init.js +548 -0
- package/src/cli/cluster.js +834 -0
- package/src/cli/cron.js +95 -0
- package/src/cli/db.js +414 -0
- package/src/cli/deploy.js +661 -0
- package/src/cli/env.js +101 -0
- package/src/cli/fs.js +256 -0
- package/src/cli/image.js +156 -0
- package/src/cli/index.js +436 -0
- package/src/cli/lxd.js +402 -0
- package/src/cli/monitor.js +260 -0
- package/src/cli/repository.js +274 -0
- package/src/cli/run.js +728 -0
- package/src/cli/script.js +85 -0
- package/src/cli/secrets.js +71 -0
- package/src/cli/ssh.js +46 -0
- package/src/cli/test.js +159 -0
- package/src/client/Cyberia.index.js +50 -0
- package/src/client/CyberiaAdmin.index.js +34 -0
- package/src/client/CyberiaPortal.index.js +36 -0
- package/src/client/Default.index.js +84 -0
- package/src/client/components/core/404.js +20 -0
- package/src/client/components/core/500.js +20 -0
- package/src/client/components/core/Account.js +326 -0
- package/src/client/components/core/AgGrid.js +191 -0
- package/src/client/components/core/Alert.js +77 -0
- package/src/client/components/core/Auth.js +342 -0
- package/src/client/components/core/Badge.js +32 -0
- package/src/client/components/core/Blockchain.js +41 -0
- package/src/client/components/core/Blog.js +9 -0
- package/src/client/components/core/BtnIcon.js +111 -0
- package/src/client/components/core/CalendarCore.js +464 -0
- package/src/client/components/core/Chat.js +64 -0
- package/src/client/components/core/ColorPalette.js +5267 -0
- package/src/client/components/core/CommonJs.js +1010 -0
- package/src/client/components/core/Content.js +196 -0
- package/src/client/components/core/Css.js +1099 -0
- package/src/client/components/core/CssCore.js +882 -0
- package/src/client/components/core/D3Chart.js +44 -0
- package/src/client/components/core/Docs.js +376 -0
- package/src/client/components/core/DropDown.js +223 -0
- package/src/client/components/core/EventsUI.js +133 -0
- package/src/client/components/core/FileExplorer.js +707 -0
- package/src/client/components/core/FullScreen.js +36 -0
- package/src/client/components/core/Input.js +383 -0
- package/src/client/components/core/JoyStick.js +80 -0
- package/src/client/components/core/Keyboard.js +73 -0
- package/src/client/components/core/LoadingAnimation.js +159 -0
- package/src/client/components/core/LogIn.js +190 -0
- package/src/client/components/core/LogOut.js +63 -0
- package/src/client/components/core/Logger.js +29 -0
- package/src/client/components/core/Modal.js +2494 -0
- package/src/client/components/core/NotificationManager.js +84 -0
- package/src/client/components/core/ObjectLayerEngine.js +1229 -0
- package/src/client/components/core/ObjectLayerEngineModal.js +443 -0
- package/src/client/components/core/Pagination.js +207 -0
- package/src/client/components/core/Panel.js +772 -0
- package/src/client/components/core/PanelForm.js +627 -0
- package/src/client/components/core/Polyhedron.js +162 -0
- package/src/client/components/core/Recover.js +207 -0
- package/src/client/components/core/Responsive.js +82 -0
- package/src/client/components/core/RichText.js +43 -0
- package/src/client/components/core/Router.js +317 -0
- package/src/client/components/core/Scroll.js +76 -0
- package/src/client/components/core/SignUp.js +125 -0
- package/src/client/components/core/SocketIo.js +74 -0
- package/src/client/components/core/Stream.js +113 -0
- package/src/client/components/core/ToggleSwitch.js +101 -0
- package/src/client/components/core/ToolTip.js +90 -0
- package/src/client/components/core/Translate.js +522 -0
- package/src/client/components/core/Validator.js +115 -0
- package/src/client/components/core/VanillaJs.js +423 -0
- package/src/client/components/core/Wallet.js +106 -0
- package/src/client/components/core/WebComponent.js +44 -0
- package/src/client/components/core/Webhook.js +25 -0
- package/src/client/components/core/Worker.js +371 -0
- package/src/client/components/core/windowGetDimensions.js +269 -0
- package/src/client/components/cyberia/BagCyberia.js +1253 -0
- package/src/client/components/cyberia/BiomeCyberia.js +130 -0
- package/src/client/components/cyberia/CharacterCyberia.js +321 -0
- package/src/client/components/cyberia/CommonCyberia.js +1834 -0
- package/src/client/components/cyberia/CssCyberia.js +816 -0
- package/src/client/components/cyberia/ElementPreviewCyberia.js +183 -0
- package/src/client/components/cyberia/ElementsCyberia.js +146 -0
- package/src/client/components/cyberia/InteractionPanelCyberia.js +1043 -0
- package/src/client/components/cyberia/JoyStickCyberia.js +53 -0
- package/src/client/components/cyberia/LogInCyberia.js +68 -0
- package/src/client/components/cyberia/LogOutCyberia.js +24 -0
- package/src/client/components/cyberia/MainUserCyberia.js +424 -0
- package/src/client/components/cyberia/MapCyberia.js +160 -0
- package/src/client/components/cyberia/MatrixCyberia.js +147 -0
- package/src/client/components/cyberia/MenuCyberia.js +575 -0
- package/src/client/components/cyberia/PixiCyberia.js +1639 -0
- package/src/client/components/cyberia/PointAndClickMovementCyberia.js +146 -0
- package/src/client/components/cyberia/QuestCyberia.js +1420 -0
- package/src/client/components/cyberia/RoutesCyberia.js +47 -0
- package/src/client/components/cyberia/SettingsCyberia.js +16 -0
- package/src/client/components/cyberia/SignUpCyberia.js +14 -0
- package/src/client/components/cyberia/SkillCyberia.js +124 -0
- package/src/client/components/cyberia/SocketIoCyberia.js +211 -0
- package/src/client/components/cyberia/TileCyberia.js +685 -0
- package/src/client/components/cyberia/TranslateCyberia.js +96 -0
- package/src/client/components/cyberia/UniverseCyberia.js +14 -0
- package/src/client/components/cyberia/WebhookCyberia.js +13 -0
- package/src/client/components/cyberia/WikiCyberia.js +144 -0
- package/src/client/components/cyberia/WorldCyberia.js +680 -0
- package/src/client/components/cyberia-admin/BiomeCyberiaAdmin.js +978 -0
- package/src/client/components/cyberia-admin/CommonCyberiaAdmin.js +29 -0
- package/src/client/components/cyberia-admin/CssCyberiaAdmin.js +15 -0
- package/src/client/components/cyberia-admin/ElementsCyberiaAdmin.js +38 -0
- package/src/client/components/cyberia-admin/InstanceEngineCyberiaAdmin.js +180 -0
- package/src/client/components/cyberia-admin/LogInCyberiaAdmin.js +34 -0
- package/src/client/components/cyberia-admin/LogOutCyberiaAdmin.js +24 -0
- package/src/client/components/cyberia-admin/MenuCyberiaAdmin.js +660 -0
- package/src/client/components/cyberia-admin/RoutesCyberiaAdmin.js +57 -0
- package/src/client/components/cyberia-admin/ServerCyberiaAdmin.js +129 -0
- package/src/client/components/cyberia-admin/SettingsCyberiaAdmin.js +16 -0
- package/src/client/components/cyberia-admin/SignUpCyberiaAdmin.js +11 -0
- package/src/client/components/cyberia-admin/SocketIoCyberiaAdmin.js +53 -0
- package/src/client/components/cyberia-admin/TranslateCyberiaAdmin.js +7 -0
- package/src/client/components/cyberia-biome/CityCyberiaBiome.js +209 -0
- package/src/client/components/cyberia-biome/CityInteriorCyberiaBiome.js +253 -0
- package/src/client/components/cyberia-biome/ColorChaosCyberiaBiome.js +26 -0
- package/src/client/components/cyberia-biome/ForestCyberiaBiome.js +191 -0
- package/src/client/components/cyberia-biome/GridBaseCyberiaBiome.js +364 -0
- package/src/client/components/cyberia-biome/SeedCityCyberiaBiome.js +347 -0
- package/src/client/components/cyberia-biome/ShopCyberiaBiome.js +12 -0
- package/src/client/components/cyberia-biome/SpaceCyberiaBiome.js +58 -0
- package/src/client/components/cyberia-portal/CommonCyberiaPortal.js +29 -0
- package/src/client/components/cyberia-portal/CssCyberiaPortal.js +132 -0
- package/src/client/components/cyberia-portal/ElementsCyberiaPortal.js +38 -0
- package/src/client/components/cyberia-portal/LogInCyberiaPortal.js +18 -0
- package/src/client/components/cyberia-portal/LogOutCyberiaPortal.js +12 -0
- package/src/client/components/cyberia-portal/MenuCyberiaPortal.js +487 -0
- package/src/client/components/cyberia-portal/RoutesCyberiaPortal.js +45 -0
- package/src/client/components/cyberia-portal/ServerCyberiaPortal.js +136 -0
- package/src/client/components/cyberia-portal/SettingsCyberiaPortal.js +16 -0
- package/src/client/components/cyberia-portal/SignUpCyberiaPortal.js +11 -0
- package/src/client/components/cyberia-portal/SocketIoCyberiaPortal.js +52 -0
- package/src/client/components/cyberia-portal/TranslateCyberiaPortal.js +12 -0
- package/src/client/components/default/CommonDefault.js +29 -0
- package/src/client/components/default/CssDefault.js +27 -0
- package/src/client/components/default/ElementsDefault.js +38 -0
- package/src/client/components/default/LogInDefault.js +14 -0
- package/src/client/components/default/LogOutDefault.js +10 -0
- package/src/client/components/default/MenuDefault.js +743 -0
- package/src/client/components/default/RoutesDefault.js +48 -0
- package/src/client/components/default/SettingsDefault.js +16 -0
- package/src/client/components/default/SignUpDefault.js +9 -0
- package/src/client/components/default/SocketIoDefault.js +54 -0
- package/src/client/components/default/TranslateDefault.js +7 -0
- package/src/client/public/default/android-chrome-144x144.png +0 -0
- package/src/client/public/default/android-chrome-192x192.png +0 -0
- package/src/client/public/default/android-chrome-256x256.png +0 -0
- package/src/client/public/default/android-chrome-36x36.png +0 -0
- package/src/client/public/default/android-chrome-384x384.png +0 -0
- package/src/client/public/default/android-chrome-48x48.png +0 -0
- package/src/client/public/default/android-chrome-512x512.png +0 -0
- package/src/client/public/default/android-chrome-72x72.png +0 -0
- package/src/client/public/default/android-chrome-96x96.png +0 -0
- package/src/client/public/default/apple-touch-icon-1024x1024.png +0 -0
- package/src/client/public/default/apple-touch-icon-114x114-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon-114x114.png +0 -0
- package/src/client/public/default/apple-touch-icon-120x120-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon-120x120.png +0 -0
- package/src/client/public/default/apple-touch-icon-144x144-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon-144x144.png +0 -0
- package/src/client/public/default/apple-touch-icon-152x152-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon-152x152.png +0 -0
- package/src/client/public/default/apple-touch-icon-167x167.png +0 -0
- package/src/client/public/default/apple-touch-icon-180x180-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon-180x180.png +0 -0
- package/src/client/public/default/apple-touch-icon-57x57-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon-57x57.png +0 -0
- package/src/client/public/default/apple-touch-icon-60x60-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon-60x60.png +0 -0
- package/src/client/public/default/apple-touch-icon-72x72-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon-72x72.png +0 -0
- package/src/client/public/default/apple-touch-icon-76x76-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon-76x76.png +0 -0
- package/src/client/public/default/apple-touch-icon-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1125x2436.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1136x640.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1170x2532.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1179x2556.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1242x2208.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1242x2688.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1284x2778.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1290x2796.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1334x750.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1488x2266.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1536x2048.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1620x2160.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1640x2160.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1668x2224.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1668x2388.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1792x828.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2048x1536.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2048x2732.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2160x1620.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2160x1640.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2208x1242.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2224x1668.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2266x1488.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2388x1668.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2436x1125.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2532x1170.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2556x1179.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2688x1242.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2732x2048.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2778x1284.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2796x1290.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-640x1136.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-750x1334.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-828x1792.png +0 -0
- package/src/client/public/default/assets/background/dark.jpg +0 -0
- package/src/client/public/default/assets/background/dark.svg +557 -0
- package/src/client/public/default/assets/background/white.jpg +0 -0
- package/src/client/public/default/assets/background/white0-min.jpg +0 -0
- package/src/client/public/default/assets/background/white0.jpg +0 -0
- package/src/client/public/default/assets/logo/base-icon.png +0 -0
- package/src/client/public/default/assets/logo/underpost.gif +0 -0
- package/src/client/public/default/assets/mailer/api-user-check.png +0 -0
- package/src/client/public/default/assets/mailer/api-user-default-avatar.png +0 -0
- package/src/client/public/default/assets/mailer/api-user-invalid-token.png +0 -0
- package/src/client/public/default/assets/mailer/api-user-recover.png +0 -0
- package/src/client/public/default/browserconfig.xml +12 -0
- package/src/client/public/default/favicon-16x16.png +0 -0
- package/src/client/public/default/favicon-32x32.png +0 -0
- package/src/client/public/default/favicon-48x48.png +0 -0
- package/src/client/public/default/favicon.ico +0 -0
- package/src/client/public/default/manifest.webmanifest +69 -0
- package/src/client/public/default/mstile-144x144.png +0 -0
- package/src/client/public/default/mstile-150x150.png +0 -0
- package/src/client/public/default/mstile-310x150.png +0 -0
- package/src/client/public/default/mstile-310x310.png +0 -0
- package/src/client/public/default/mstile-70x70.png +0 -0
- package/src/client/public/default/plantuml/client-conf.svg +1 -0
- package/src/client/public/default/plantuml/client-schema.svg +1 -0
- package/src/client/public/default/plantuml/cron-conf.svg +1 -0
- package/src/client/public/default/plantuml/cron-schema.svg +1 -0
- package/src/client/public/default/plantuml/server-conf.svg +1 -0
- package/src/client/public/default/plantuml/server-schema.svg +1 -0
- package/src/client/public/default/plantuml/ssr-conf.svg +1 -0
- package/src/client/public/default/plantuml/ssr-schema.svg +1 -0
- package/src/client/public/default/safari-pinned-tab.svg +24 -0
- package/src/client/public/default/site.webmanifest +69 -0
- package/src/client/public/default/sitemap +148 -0
- package/src/client/public/default/yandex-browser-50x50.png +0 -0
- package/src/client/public/default/yandex-browser-manifest.json +9 -0
- package/src/client/public/doc/favicon.ico +0 -0
- package/src/client/public/doc/sitemap +148 -0
- package/src/client/public/test/favicon.ico +0 -0
- package/src/client/public/test/sitemap +148 -0
- package/src/client/services/blockchain/blockchain.service.js +73 -0
- package/src/client/services/core/core.service.js +165 -0
- package/src/client/services/crypto/crypto.service.js +73 -0
- package/src/client/services/default/default.management.js +450 -0
- package/src/client/services/default/default.service.js +98 -0
- package/src/client/services/document/document.service.js +97 -0
- package/src/client/services/file/file.service.js +72 -0
- package/src/client/services/instance/instance.management.js +78 -0
- package/src/client/services/instance/instance.service.js +97 -0
- package/src/client/services/ipfs/ipfs.service.js +73 -0
- package/src/client/services/object-layer/object-layer.service.js +93 -0
- package/src/client/services/test/test.service.js +73 -0
- package/src/client/services/user/user.management.js +56 -0
- package/src/client/services/user/user.service.js +108 -0
- package/src/client/ssr/Render.js +237 -0
- package/src/client/ssr/body/404.js +73 -0
- package/src/client/ssr/body/500.js +72 -0
- package/src/client/ssr/body/CacheControl.js +114 -0
- package/src/client/ssr/body/CyberiaDefaultSplashScreen.js +90 -0
- package/src/client/ssr/body/CyberiaSplashScreenLore.js +424 -0
- package/src/client/ssr/body/DefaultSplashScreen.js +90 -0
- package/src/client/ssr/email/DefaultRecoverEmail.js +21 -0
- package/src/client/ssr/email/DefaultVerifyEmail.js +17 -0
- package/src/client/ssr/head/Css.js +241 -0
- package/src/client/ssr/head/CyberiaAdminScripts.js +6 -0
- package/src/client/ssr/head/CyberiaPortalScripts.js +6 -0
- package/src/client/ssr/head/CyberiaScripts.js +6 -0
- package/src/client/ssr/head/DefaultScripts.js +6 -0
- package/src/client/ssr/head/Microdata.js +11 -0
- package/src/client/ssr/head/Production.js +1 -0
- package/src/client/ssr/head/Pwa.js +146 -0
- package/src/client/ssr/head/Seo.js +15 -0
- package/src/client/ssr/mailer/DefaultRecoverEmail.js +21 -0
- package/src/client/ssr/mailer/DefaultVerifyEmail.js +17 -0
- package/src/client/ssr/offline/Maintenance.js +63 -0
- package/src/client/ssr/offline/NoNetworkConnection.js +67 -0
- package/src/client/ssr/pages/404.js +12 -0
- package/src/client/ssr/pages/500.js +12 -0
- package/src/client/ssr/pages/Test.js +198 -0
- package/src/client/ssr/pages/maintenance.js +14 -0
- package/src/client/ssr/pages/offline.js +21 -0
- package/src/client/sw/default.sw.js +108 -0
- package/src/client/sw/template.sw.js +84 -0
- package/src/client.build.js +22 -0
- package/src/client.dev.js +24 -0
- package/src/db/DataBaseProvider.js +98 -0
- package/src/db/mariadb/MariaDB.js +66 -0
- package/src/db/mongo/MongooseDB.js +70 -0
- package/src/index.js +198 -0
- package/src/mailer/EmailRender.js +116 -0
- package/src/mailer/MailerProvider.js +213 -0
- package/src/monitor.js +24 -0
- package/src/proxy.js +22 -0
- package/src/runtime/express/Express.js +256 -0
- package/src/runtime/lampp/Dockerfile +50 -0
- package/src/runtime/lampp/Lampp.js +343 -0
- package/src/server/auth.js +689 -0
- package/src/server/backup.js +96 -0
- package/src/server/client-build-docs.js +205 -0
- package/src/server/client-build-live.js +109 -0
- package/src/server/client-build.js +690 -0
- package/src/server/client-dev-server.js +87 -0
- package/src/server/client-formatted.js +87 -0
- package/src/server/client-icons.js +108 -0
- package/src/server/conf.js +1071 -0
- package/src/server/crypto.js +210 -0
- package/src/server/dns.js +276 -0
- package/src/server/downloader.js +74 -0
- package/src/server/json-schema.js +77 -0
- package/src/server/logger.js +197 -0
- package/src/server/network.js +72 -0
- package/src/server/object-layer.js +294 -0
- package/src/server/peer.js +69 -0
- package/src/server/process.js +171 -0
- package/src/server/proxy.js +110 -0
- package/src/server/runtime.js +170 -0
- package/src/server/ssr.js +127 -0
- package/src/server/start.js +161 -0
- package/src/server/tls.js +251 -0
- package/src/server/valkey.js +293 -0
- package/src/server.js +25 -0
- package/src/ws/IoInterface.js +139 -0
- package/src/ws/IoServer.js +88 -0
- package/src/ws/core/channels/core.ws.chat.js +23 -0
- package/src/ws/core/channels/core.ws.mailer.js +35 -0
- package/src/ws/core/channels/core.ws.stream.js +31 -0
- package/src/ws/core/core.ws.connection.js +62 -0
- package/src/ws/core/core.ws.emit.js +53 -0
- package/src/ws/core/core.ws.server.js +76 -0
- package/src/ws/core/management/core.ws.chat.js +8 -0
- package/src/ws/core/management/core.ws.mailer.js +16 -0
- package/src/ws/core/management/core.ws.stream.js +8 -0
- package/src/ws/cyberia/channels/cyberia.ws.bot.js +56 -0
- package/src/ws/cyberia/channels/cyberia.ws.skill.js +51 -0
- package/src/ws/cyberia/channels/cyberia.ws.user.js +437 -0
- package/src/ws/cyberia/cyberia.ws.connection.js +36 -0
- package/src/ws/cyberia/cyberia.ws.emit.js +14 -0
- package/src/ws/cyberia/cyberia.ws.server.js +67 -0
- package/src/ws/cyberia/management/cyberia.ws.bot.js +669 -0
- package/src/ws/cyberia/management/cyberia.ws.skill.js +441 -0
- package/src/ws/cyberia/management/cyberia.ws.user.js +188 -0
- package/src/ws/default/channels/default.ws.main.js +16 -0
- package/src/ws/default/default.ws.connection.js +22 -0
- package/src/ws/default/default.ws.emit.js +14 -0
- package/src/ws/default/default.ws.server.js +20 -0
- package/src/ws/default/management/default.ws.main.js +8 -0
- package/test/api.test.js +53 -0
- package/test/crypto.test.js +117 -0
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Default",
|
|
3
|
+
"short_name": "Default",
|
|
4
|
+
"description": null,
|
|
5
|
+
"dir": "auto",
|
|
6
|
+
"lang": "en-US",
|
|
7
|
+
"display": "standalone",
|
|
8
|
+
"orientation": "any",
|
|
9
|
+
"scope": "/",
|
|
10
|
+
"start_url": "/?homescreen=1",
|
|
11
|
+
"background_color": "#fff",
|
|
12
|
+
"theme_color": "#fff",
|
|
13
|
+
"icons": [
|
|
14
|
+
{
|
|
15
|
+
"src": "/android-chrome-36x36.png",
|
|
16
|
+
"sizes": "36x36",
|
|
17
|
+
"type": "image/png",
|
|
18
|
+
"purpose": "any maskable"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"src": "/android-chrome-48x48.png",
|
|
22
|
+
"sizes": "48x48",
|
|
23
|
+
"type": "image/png",
|
|
24
|
+
"purpose": "any maskable"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"src": "/android-chrome-72x72.png",
|
|
28
|
+
"sizes": "72x72",
|
|
29
|
+
"type": "image/png",
|
|
30
|
+
"purpose": "any maskable"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"src": "/android-chrome-96x96.png",
|
|
34
|
+
"sizes": "96x96",
|
|
35
|
+
"type": "image/png",
|
|
36
|
+
"purpose": "any maskable"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"src": "/android-chrome-144x144.png",
|
|
40
|
+
"sizes": "144x144",
|
|
41
|
+
"type": "image/png",
|
|
42
|
+
"purpose": "any maskable"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"src": "/android-chrome-192x192.png",
|
|
46
|
+
"sizes": "192x192",
|
|
47
|
+
"type": "image/png",
|
|
48
|
+
"purpose": "any maskable"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"src": "/android-chrome-256x256.png",
|
|
52
|
+
"sizes": "256x256",
|
|
53
|
+
"type": "image/png",
|
|
54
|
+
"purpose": "any maskable"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"src": "/android-chrome-384x384.png",
|
|
58
|
+
"sizes": "384x384",
|
|
59
|
+
"type": "image/png",
|
|
60
|
+
"purpose": "any maskable"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"src": "/android-chrome-512x512.png",
|
|
64
|
+
"sizes": "512x512",
|
|
65
|
+
"type": "image/png",
|
|
66
|
+
"purpose": "any maskable"
|
|
67
|
+
}
|
|
68
|
+
]
|
|
69
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="3027px" preserveAspectRatio="none" style="width:1406px;height:3027px;background:#FFFFFF;" version="1.1" viewBox="0 0 1406 3027" width="1406px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="87" x="10" y="1819.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="55" x="15" y="1834.4951">default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="80" y="1834.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="75" x2="75" y1="1819.5" y2="1839.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="87" x="10" y="1819.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="130" x="134" y="1779"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="73" x="139" y="1793.9951">metadata</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="247" y="1793.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="242" x2="242" y1="1779" y2="1799.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="134" x2="264" y1="1799.2969" y2="1799.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="98" x="139" y="1814.292">components</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="247" y="1814.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="242" x2="242" y1="1799.2969" y2="1819.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="134" x2="264" y1="1819.5938" y2="1819.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="46" x="139" y="1834.5889">views</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="247" y="1834.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="242" x2="242" y1="1819.5938" y2="1839.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="134" x2="264" y1="1839.8906" y2="1839.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="139" y="1854.8857">dists</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="247" y="1854.8857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="242" x2="242" y1="1839.8906" y2="1860.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="134" x2="264" y1="1860.1875" y2="1860.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="67" x="139" y="1875.1826">services</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="247" y="1875.1826"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="242" x2="242" y1="1860.1875" y2="1880.4844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="130" x="134" y="1779"/><rect fill="#F1F1F1" height="162.375" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="401" x="301" y="486.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="306" y="501.4951">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="73" x="457" y="501.4951">Demo App</text><line style="stroke:#000000;stroke-width:1.0;" x1="452" x2="452" y1="486.5" y2="506.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="301" x2="702" y1="506.7969" y2="506.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="141" x="306" y="521.792">backgroundImage</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="240" x="457" y="521.792">assets/background/white0-min.jpg</text><line style="stroke:#000000;stroke-width:1.0;" x1="452" x2="452" y1="506.7969" y2="527.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="301" x2="702" y1="527.0938" y2="527.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="89" x="306" y="542.0889">description</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="109" x="457" y="542.0889">Web application</text><line style="stroke:#000000;stroke-width:1.0;" x1="452" x2="452" y1="527.0938" y2="547.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="301" x2="702" y1="547.3906" y2="547.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="78" x="306" y="562.3857">keywords</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="457" y="562.3857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="452" x2="452" y1="547.3906" y2="567.6875"/><line style="stroke:#000000;stroke-width:1.0;" x1="301" x2="702" y1="567.6875" y2="567.6875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="52" x="306" y="582.6826">author</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="229" x="457" y="582.6826">https://github.com/underpostnet</text><line style="stroke:#000000;stroke-width:1.0;" x1="452" x2="452" y1="567.6875" y2="587.9844"/><line style="stroke:#000000;stroke-width:1.0;" x1="301" x2="702" y1="587.9844" y2="587.9844"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="77" x="306" y="602.9795">thumbnail</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="207" x="457" y="602.9795">android-chrome-384x384.png</text><line style="stroke:#000000;stroke-width:1.0;" x1="452" x2="452" y1="587.9844" y2="608.2813"/><line style="stroke:#000000;stroke-width:1.0;" x1="301" x2="702" y1="608.2813" y2="608.2813"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="92" x="306" y="623.2764">themeColor</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="63" x="457" y="623.2764">#ececec</text><line style="stroke:#000000;stroke-width:1.0;" x1="452" x2="452" y1="608.2813" y2="628.5781"/><line style="stroke:#000000;stroke-width:1.0;" x1="301" x2="702" y1="628.5781" y2="628.5781"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="122" x="306" y="643.5732">pwaAssetsPath</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="4" x="457" y="643.5732"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="452" x2="452" y1="628.5781" y2="648.875"/><rect fill="none" height="162.375" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="401" x="301" y="486.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="102" x="1015.5" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="29" x="1020.5" y="24.9951">web</text><line style="stroke:#000000;stroke-width:1.0;" x1="1015.5" x2="1117.5" y1="30.2969" y2="30.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="26" x="1020.5" y="45.292">app</text><line style="stroke:#000000;stroke-width:1.0;" x1="1015.5" x2="1117.5" y1="50.5938" y2="50.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="25" x="1020.5" y="65.5889">spa</text><line style="stroke:#000000;stroke-width:1.0;" x1="1015.5" x2="1117.5" y1="70.8906" y2="70.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="40" x="1020.5" y="85.8857">demo</text><line style="stroke:#000000;stroke-width:1.0;" x1="1015.5" x2="1117.5" y1="91.1875" y2="91.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="92" x="1020.5" y="106.1826">github-pages</text><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="102" x="1015.5" y="10"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="87" x="458" y="1163"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="36" x="463" y="1177.9951">core</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="528" y="1177.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="523" x2="523" y1="1163" y2="1183.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="458" x2="545" y1="1183.2969" y2="1183.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="55" x="463" y="1198.292">default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="528" y="1198.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="523" x2="523" y1="1183.2969" y2="1203.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="87" x="458" y="1163"/><rect fill="#F1F1F1" height="933.6563" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="993.5" y="129.5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="74" x="998.5" y="144.4951">CommonJs</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="149.7969" y2="149.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="54" x="998.5" y="164.792">VanillaJs</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="170.0938" y2="170.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="81" x="998.5" y="185.0889">Responsive</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="190.3906" y2="190.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="65" x="998.5" y="205.3857">Keyboard</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="210.6875" y2="210.6875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="64" x="998.5" y="225.6826">Translate</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="230.9844" y2="230.9844"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="41" x="998.5" y="245.9795">Modal</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="251.2813" y2="251.2813"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="53" x="998.5" y="266.2764">BtnIcon</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="271.5781" y2="271.5781"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="48" x="998.5" y="286.5732">Logger</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="291.875" y2="291.875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="26" x="998.5" y="306.8701">Css</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="312.1719" y2="312.1719"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="136" x="998.5" y="327.167">NotificationManager</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="332.4688" y2="332.4688"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="93" x="998.5" y="347.4639">ToggleSwitch</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="352.7656" y2="352.7656"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="74" x="998.5" y="367.7607">DropDown</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="373.0625" y2="373.0625"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="122" x="998.5" y="388.0576">LoadingAnimation</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="393.3594" y2="393.3594"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="60" x="998.5" y="408.3545">EventsUI</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="413.6563" y2="413.6563"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="998.5" y="428.6514">AgGrid</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="433.9531" y2="433.9531"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="998.5" y="448.9482">Input</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="454.25" y2="454.25"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="59" x="998.5" y="469.2451">Validator</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="474.5469" y2="474.5469"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="998.5" y="489.542">SignUp</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="494.8438" y2="494.8438"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="37" x="998.5" y="509.8389">LogIn</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="515.1406" y2="515.1406"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="50" x="998.5" y="530.1357">LogOut</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="535.4375" y2="535.4375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="998.5" y="550.4326">Router</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="555.7344" y2="555.7344"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="57" x="998.5" y="570.7295">Account</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="576.0313" y2="576.0313"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="32" x="998.5" y="591.0264">Auth</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="596.3281" y2="596.3281"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="72" x="998.5" y="611.3232">FullScreen</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="616.625" y2="616.625"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="60" x="998.5" y="631.6201">RichText</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="636.9219" y2="636.9219"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="94" x="998.5" y="651.917">CalendarCore</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="657.2188" y2="657.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="57" x="998.5" y="672.2139">D3Chart</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="677.5156" y2="677.5156"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="998.5" y="692.5107">Stream</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="697.8125" y2="697.8125"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="60" x="998.5" y="712.8076">SocketIo</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="718.1094" y2="718.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="36" x="998.5" y="733.1045">Docs</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="738.4063" y2="738.4063"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="998.5" y="753.4014">Content</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="758.7031" y2="758.7031"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="79" x="998.5" y="773.6982">FileExplorer</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="779" y2="779"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="32" x="998.5" y="793.9951">Chat</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="799.2969" y2="799.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="998.5" y="814.292">Worker</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="819.5938" y2="819.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="59" x="998.5" y="834.5889">CssCore</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="839.8906" y2="839.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="41" x="998.5" y="854.8857">Wallet</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="860.1875" y2="860.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="998.5" y="875.1826">Badge</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="880.4844" y2="880.4844"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="51" x="998.5" y="895.4795">ToolTip</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="900.7813" y2="900.7813"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="66" x="998.5" y="915.7764">Webhook</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="921.0781" y2="921.0781"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="57" x="998.5" y="936.0732">Recover</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="941.375" y2="941.375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="998.5" y="956.3701">Panel</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="961.6719" y2="961.6719"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="73" x="998.5" y="976.667">PanelForm</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="981.9688" y2="981.9688"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="37" x="998.5" y="996.9639">Scroll</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="1002.2656" y2="1002.2656"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="998.5" y="1017.2607">Alert</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="1022.5625" y2="1022.5625"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="998.5" y="1037.5576">404</text><line style="stroke:#000000;stroke-width:1.0;" x1="993.5" x2="1139.5" y1="1042.8594" y2="1042.8594"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="998.5" y="1057.8545">500</text><rect fill="none" height="933.6563" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="993.5" y="129.5"/><rect fill="#F1F1F1" height="223.2656" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="124" x="1004.5" y="1082"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="88" x="1009.5" y="1096.9951">MenuDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1004.5" x2="1128.5" y1="1102.2969" y2="1102.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="99" x="1009.5" y="1117.292">RoutesDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1004.5" x2="1128.5" y1="1122.5938" y2="1122.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="114" x="1009.5" y="1137.5889">ElementsDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1004.5" x2="1128.5" y1="1142.8906" y2="1142.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="112" x="1009.5" y="1157.8857">CommonDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1004.5" x2="1128.5" y1="1163.1875" y2="1163.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="75" x="1009.5" y="1178.1826">CssDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1004.5" x2="1128.5" y1="1183.4844" y2="1183.4844"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="86" x="1009.5" y="1198.4795">LogInDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1004.5" x2="1128.5" y1="1203.7813" y2="1203.7813"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="99" x="1009.5" y="1218.7764">LogOutDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1004.5" x2="1128.5" y1="1224.0781" y2="1224.0781"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="98" x="1009.5" y="1239.0732">SignUpDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1004.5" x2="1128.5" y1="1244.375" y2="1244.375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="113" x="1009.5" y="1259.3701">TranslateDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1004.5" x2="1128.5" y1="1264.6719" y2="1264.6719"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="106" x="1009.5" y="1279.667">SettingsDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1004.5" x2="1128.5" y1="1284.9688" y2="1284.9688"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="109" x="1009.5" y="1299.9639">SocketIoDefault</text><rect fill="none" height="223.2656" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="124" x="1004.5" y="1082"/><rect fill="#F1F1F1" height="243.5625" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="489.5" y="1706.5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="494.5" y="1721.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="489.5" x2="511.5" y1="1726.7969" y2="1726.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="494.5" y="1741.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="489.5" x2="511.5" y1="1747.0938" y2="1747.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="494.5" y="1762.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="489.5" x2="511.5" y1="1767.3906" y2="1767.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="494.5" y="1782.3857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="489.5" x2="511.5" y1="1787.6875" y2="1787.6875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="494.5" y="1802.6826"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="489.5" x2="511.5" y1="1807.9844" y2="1807.9844"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="494.5" y="1822.9795"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="489.5" x2="511.5" y1="1828.2813" y2="1828.2813"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="494.5" y="1843.2764"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="489.5" x2="511.5" y1="1848.5781" y2="1848.5781"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="494.5" y="1863.5732"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="489.5" x2="511.5" y1="1868.875" y2="1868.875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="494.5" y="1883.8701"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="489.5" x2="511.5" y1="1889.1719" y2="1889.1719"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="494.5" y="1904.167"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="489.5" x2="511.5" y1="1909.4688" y2="1909.4688"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="494.5" y="1924.4639"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="489.5" x2="511.5" y1="1929.7656" y2="1929.7656"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="494.5" y="1944.7607"> </text><rect fill="none" height="243.5625" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="489.5" y="1706.5"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="112" x="1010.5" y="1323"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1015.5" y="1337.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="5" x="1068.5" y="1337.9951">/</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063.5" x2="1063.5" y1="1323" y2="1343.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1010.5" x2="1122.5" y1="1343.2969" y2="1343.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1015.5" y="1358.292">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="41" x="1068.5" y="1358.292">Home</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063.5" x2="1063.5" y1="1343.2969" y2="1363.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1010.5" x2="1122.5" y1="1363.5938" y2="1363.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1015.5" y="1378.5889">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1068.5" y="1378.5889">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063.5" x2="1063.5" y1="1363.5938" y2="1383.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="1010.5" x2="1122.5" y1="1383.8906" y2="1383.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="1015.5" y="1398.8857">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1068.5" y="1398.8857">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063.5" x2="1063.5" y1="1383.8906" y2="1404.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="112" x="1010.5" y="1323"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="112" x="1010.5" y="1422"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1015.5" y="1436.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1068.5" y="1436.9951">/home</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063.5" x2="1063.5" y1="1422" y2="1442.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1010.5" x2="1122.5" y1="1442.2969" y2="1442.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1015.5" y="1457.292">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="41" x="1068.5" y="1457.292">Home</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063.5" x2="1063.5" y1="1442.2969" y2="1462.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1010.5" x2="1122.5" y1="1462.5938" y2="1462.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1015.5" y="1477.5889">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1068.5" y="1477.5889">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063.5" x2="1063.5" y1="1462.5938" y2="1482.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="1010.5" x2="1122.5" y1="1482.8906" y2="1482.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="1015.5" y="1497.8857">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1068.5" y="1497.8857">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063.5" x2="1063.5" y1="1482.8906" y2="1503.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="112" x="1010.5" y="1422"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="124" x="1004.5" y="1521"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1009.5" y="1535.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="61" x="1062.5" y="1535.9951">/settings</text><line style="stroke:#000000;stroke-width:1.0;" x1="1057.5" x2="1057.5" y1="1521" y2="1541.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1004.5" x2="1128.5" y1="1541.2969" y2="1541.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1009.5" y="1556.292">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1062.5" y="1556.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1057.5" x2="1057.5" y1="1541.2969" y2="1561.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1004.5" x2="1128.5" y1="1561.5938" y2="1561.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="1009.5" y="1576.5889">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1062.5" y="1576.5889">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1057.5" x2="1057.5" y1="1561.5938" y2="1581.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="124" x="1004.5" y="1521"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="112" x="1010.5" y="1600"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1015.5" y="1614.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="1068.5" y="1614.9951">/log-in</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063.5" x2="1063.5" y1="1600" y2="1620.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1010.5" x2="1122.5" y1="1620.2969" y2="1620.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1015.5" y="1635.292">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1068.5" y="1635.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063.5" x2="1063.5" y1="1620.2969" y2="1640.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1010.5" x2="1122.5" y1="1640.5938" y2="1640.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="1015.5" y="1655.5889">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1068.5" y="1655.5889">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063.5" x2="1063.5" y1="1640.5938" y2="1660.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="112" x="1010.5" y="1600"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="120" x="1006.5" y="1679"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1011.5" y="1693.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="57" x="1064.5" y="1693.9951">/sign-up</text><line style="stroke:#000000;stroke-width:1.0;" x1="1059.5" x2="1059.5" y1="1679" y2="1699.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1006.5" x2="1126.5" y1="1699.2969" y2="1699.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1011.5" y="1714.292">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1064.5" y="1714.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1059.5" x2="1059.5" y1="1699.2969" y2="1719.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1006.5" x2="1126.5" y1="1719.5938" y2="1719.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="1011.5" y="1734.5889">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1064.5" y="1734.5889">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1059.5" x2="1059.5" y1="1719.5938" y2="1739.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="120" x="1006.5" y="1679"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="117" x="1008" y="1758"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1013" y="1772.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="54" x="1066" y="1772.9951">/log-out</text><line style="stroke:#000000;stroke-width:1.0;" x1="1061" x2="1061" y1="1758" y2="1778.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1008" x2="1125" y1="1778.2969" y2="1778.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1013" y="1793.292">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1066" y="1793.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1061" x2="1061" y1="1778.2969" y2="1798.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1008" x2="1125" y1="1798.5938" y2="1798.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="1013" y="1813.5889">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1066" y="1813.5889">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1061" x2="1061" y1="1798.5938" y2="1818.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="117" x="1008" y="1758"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="124" x="1004.5" y="1837"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1009.5" y="1851.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="61" x="1062.5" y="1851.9951">/account</text><line style="stroke:#000000;stroke-width:1.0;" x1="1057.5" x2="1057.5" y1="1837" y2="1857.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1004.5" x2="1128.5" y1="1857.2969" y2="1857.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1009.5" y="1872.292">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1062.5" y="1872.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1057.5" x2="1057.5" y1="1857.2969" y2="1877.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1004.5" x2="1128.5" y1="1877.5938" y2="1877.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="1009.5" y="1892.5889">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1062.5" y="1892.5889">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1057.5" x2="1057.5" y1="1877.5938" y2="1897.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="124" x="1004.5" y="1837"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="112" x="1010.5" y="1916"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1015.5" y="1930.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1068.5" y="1930.9951">/docs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063.5" x2="1063.5" y1="1916" y2="1936.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1010.5" x2="1122.5" y1="1936.2969" y2="1936.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1015.5" y="1951.292">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1068.5" y="1951.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063.5" x2="1063.5" y1="1936.2969" y2="1956.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1010.5" x2="1122.5" y1="1956.5938" y2="1956.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="1015.5" y="1971.5889">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1068.5" y="1971.5889">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063.5" x2="1063.5" y1="1956.5938" y2="1976.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="112" x="1010.5" y="1916"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="120" x="1006.5" y="1995"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1011.5" y="2009.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="57" x="1064.5" y="2009.9951">/recover</text><line style="stroke:#000000;stroke-width:1.0;" x1="1059.5" x2="1059.5" y1="1995" y2="2015.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1006.5" x2="1126.5" y1="2015.2969" y2="2015.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1011.5" y="2030.292">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1064.5" y="2030.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1059.5" x2="1059.5" y1="2015.2969" y2="2035.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1006.5" x2="1126.5" y1="2035.5938" y2="2035.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="1011.5" y="2050.5889">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1064.5" y="2050.5889">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1059.5" x2="1059.5" y1="2035.5938" y2="2055.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="120" x="1006.5" y="1995"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="212" x="960.5" y="2074"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="965.5" y="2088.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="149" x="1018.5" y="2088.9951">/default-management</text><line style="stroke:#000000;stroke-width:1.0;" x1="1013.5" x2="1013.5" y1="2074" y2="2094.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="960.5" x2="1172.5" y1="2094.2969" y2="2094.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="965.5" y="2109.292">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1018.5" y="2109.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1013.5" x2="1013.5" y1="2094.2969" y2="2114.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="960.5" x2="1172.5" y1="2114.5938" y2="2114.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="965.5" y="2129.5889">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1018.5" y="2129.5889">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1013.5" x2="1013.5" y1="2114.5938" y2="2134.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="212" x="960.5" y="2074"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="166" x="983.5" y="2153"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="988.5" y="2167.9951">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1041.5" y="2167.9951">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1036.5" x2="1036.5" y1="2153" y2="2173.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="983.5" x2="1149.5" y1="2173.2969" y2="2173.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="988.5" y="2188.292">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1041.5" y="2188.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1036.5" x2="1036.5" y1="2173.2969" y2="2193.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="983.5" x2="1149.5" y1="2193.5938" y2="2193.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="988.5" y="2208.5889">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="32" x="1041.5" y="2208.5889">/404</text><line style="stroke:#000000;stroke-width:1.0;" x1="1036.5" x2="1036.5" y1="2193.5938" y2="2213.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="983.5" x2="1149.5" y1="2213.8906" y2="2213.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="988.5" y="2228.8857">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="103" x="1041.5" y="2228.8857">404 Not Found</text><line style="stroke:#000000;stroke-width:1.0;" x1="1036.5" x2="1036.5" y1="2213.8906" y2="2234.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="166" x="983.5" y="2153"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="175" x="979" y="2252"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="984" y="2266.9951">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1037" y="2266.9951">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1032" x2="1032" y1="2252" y2="2272.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="979" x2="1154" y1="2272.2969" y2="2272.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="984" y="2287.292">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1037" y="2287.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1032" x2="1032" y1="2272.2969" y2="2292.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="979" x2="1154" y1="2292.5938" y2="2292.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="984" y="2307.5889">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="32" x="1037" y="2307.5889">/500</text><line style="stroke:#000000;stroke-width:1.0;" x1="1032" x2="1032" y1="2292.5938" y2="2312.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="979" x2="1154" y1="2312.8906" y2="2312.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="984" y="2327.8857">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="112" x="1037" y="2327.8857">500 Server Error</text><line style="stroke:#000000;stroke-width:1.0;" x1="1032" x2="1032" y1="2312.8906" y2="2333.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="175" x="979" y="2252"/><rect fill="#F1F1F1" height="162.375" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="489.5" y="2528.5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="494.5" y="2543.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="489.5" x2="511.5" y1="2548.7969" y2="2548.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="494.5" y="2563.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="489.5" x2="511.5" y1="2569.0938" y2="2569.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="494.5" y="2584.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="489.5" x2="511.5" y1="2589.3906" y2="2589.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="494.5" y="2604.3857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="489.5" x2="511.5" y1="2609.6875" y2="2609.6875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="494.5" y="2624.6826"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="489.5" x2="511.5" y1="2629.9844" y2="2629.9844"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="494.5" y="2644.9795"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="489.5" x2="511.5" y1="2650.2813" y2="2650.2813"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="494.5" y="2665.2764"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="489.5" x2="511.5" y1="2670.5781" y2="2670.5781"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="494.5" y="2685.5732"> </text><rect fill="none" height="162.375" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="489.5" y="2528.5"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="461" x="836" y="2351"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="47" x="841" y="2365.9951">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="295" x="997" y="2365.9951">./node_modules/@neodrag/vanilla/dist/min</text><line style="stroke:#000000;stroke-width:1.0;" x1="992" x2="992" y1="2351" y2="2371.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="836" x2="1297" y1="2371.2969" y2="2371.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="841" y="2386.292">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="153" x="997" y="2386.292">/dist/@neodrag-vanilla</text><line style="stroke:#000000;stroke-width:1.0;" x1="992" x2="992" y1="2371.2969" y2="2391.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="836" x2="1297" y1="2391.5938" y2="2391.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="841" y="2406.5889">import_name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="118" x="997" y="2406.5889">@neodrag/vanilla</text><line style="stroke:#000000;stroke-width:1.0;" x1="992" x2="992" y1="2391.5938" y2="2411.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="836" x2="1297" y1="2411.8906" y2="2411.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="146" x="841" y="2426.8857">import_name_build</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="210" x="997" y="2426.8857">/dist/@neodrag-vanilla/index.js</text><line style="stroke:#000000;stroke-width:1.0;" x1="992" x2="992" y1="2411.8906" y2="2432.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="461" x="836" y="2351"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="473" x="830" y="2450"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="47" x="835" y="2464.9951">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="352" x="946" y="2464.9951">./node_modules/@fortawesome/fontawesome-free</text><line style="stroke:#000000;stroke-width:1.0;" x1="941" x2="941" y1="2450" y2="2470.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="830" x2="1303" y1="2470.2969" y2="2470.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="835" y="2485.292">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="129" x="946" y="2485.292">/dist/fontawesome</text><line style="stroke:#000000;stroke-width:1.0;" x1="941" x2="941" y1="2470.2969" y2="2490.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="473" x="830" y="2450"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="447" x="843" y="2509"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="47" x="848" y="2523.9951">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="245" x="1004" y="2523.9951">./node_modules/sortablejs/modular</text><line style="stroke:#000000;stroke-width:1.0;" x1="999" x2="999" y1="2509" y2="2529.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="843" x2="1290" y1="2529.2969" y2="2529.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="848" y="2544.292">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="102" x="1004" y="2544.292">/dist/sortablejs</text><line style="stroke:#000000;stroke-width:1.0;" x1="999" x2="999" y1="2529.2969" y2="2549.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="843" x2="1290" y1="2549.5938" y2="2549.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="848" y="2564.5889">import_name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="67" x="1004" y="2564.5889">sortablejs</text><line style="stroke:#000000;stroke-width:1.0;" x1="999" x2="999" y1="2549.5938" y2="2569.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="843" x2="1290" y1="2569.8906" y2="2569.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="146" x="848" y="2584.8857">import_name_build</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="281" x="1004" y="2584.8857">/dist/sortablejs/sortable.complete.esm.js</text><line style="stroke:#000000;stroke-width:1.0;" x1="999" x2="999" y1="2569.8906" y2="2590.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="447" x="843" y="2509"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="295" x="919" y="2608"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="47" x="924" y="2622.9951">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="174" x="1035" y="2622.9951">./node_modules/validator</text><line style="stroke:#000000;stroke-width:1.0;" x1="1030" x2="1030" y1="2608" y2="2628.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="919" x2="1214" y1="2628.2969" y2="2628.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="924" y="2643.292">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="92" x="1035" y="2643.292">/dist/validator</text><line style="stroke:#000000;stroke-width:1.0;" x1="1030" x2="1030" y1="2628.2969" y2="2648.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="295" x="919" y="2608"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="453" x="840" y="2667"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="47" x="845" y="2681.9951">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="332" x="956" y="2681.9951">./node_modules/@loadingio/css-spinner/entries</text><line style="stroke:#000000;stroke-width:1.0;" x1="951" x2="951" y1="2667" y2="2687.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="840" x2="1293" y1="2687.2969" y2="2687.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="845" y="2702.292">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="97" x="956" y="2702.292">/dist/loadingio</text><line style="stroke:#000000;stroke-width:1.0;" x1="951" x2="951" y1="2687.2969" y2="2707.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="453" x="840" y="2667"/><rect fill="#F1F1F1" height="121.7813" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="655" x="739" y="2726.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="744" y="2741.4951">import_name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="129" x="909" y="2741.4951">ag-grid-community</text><line style="stroke:#000000;stroke-width:1.0;" x1="904" x2="904" y1="2726.5" y2="2746.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="739" x2="1394" y1="2746.7969" y2="2746.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="146" x="744" y="2761.792">import_name_build</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="480" x="909" y="2761.792">/dist/ag-grid-community/ag-grid-community.auto.complete.esm.min.js</text><line style="stroke:#000000;stroke-width:1.0;" x1="904" x2="904" y1="2746.7969" y2="2767.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="739" x2="1394" y1="2767.0938" y2="2767.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="47" x="744" y="2782.0889">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="276" x="909" y="2782.0889">./node_modules/ag-grid-community/dist</text><line style="stroke:#000000;stroke-width:1.0;" x1="904" x2="904" y1="2767.0938" y2="2787.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="739" x2="1394" y1="2787.3906" y2="2787.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="744" y="2802.3857">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="164" x="909" y="2802.3857">/dist/ag-grid-community</text><line style="stroke:#000000;stroke-width:1.0;" x1="904" x2="904" y1="2787.3906" y2="2807.6875"/><line style="stroke:#000000;stroke-width:1.0;" x1="739" x2="1394" y1="2807.6875" y2="2807.6875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="47" x="744" y="2822.6826">styles</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="291" x="909" y="2822.6826">./node_modules/ag-grid-community/styles</text><line style="stroke:#000000;stroke-width:1.0;" x1="904" x2="904" y1="2807.6875" y2="2827.9844"/><line style="stroke:#000000;stroke-width:1.0;" x1="739" x2="1394" y1="2827.9844" y2="2827.9844"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="155" x="744" y="2842.9795">public_styles_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="179" x="909" y="2842.9795">/styles/ag-grid-community</text><line style="stroke:#000000;stroke-width:1.0;" x1="904" x2="904" y1="2827.9844" y2="2848.2813"/><rect fill="none" height="121.7813" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="655" x="739" y="2726.5"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="447" x="843" y="2867"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="47" x="848" y="2881.9951">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="252" x="1004" y="2881.9951">./node_modules/socket.io/client-dist</text><line style="stroke:#000000;stroke-width:1.0;" x1="999" x2="999" y1="2867" y2="2887.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="843" x2="1290" y1="2887.2969" y2="2887.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="848" y="2902.292">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="98" x="1004" y="2902.292">/dist/socket.io</text><line style="stroke:#000000;stroke-width:1.0;" x1="999" x2="999" y1="2887.2969" y2="2907.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="843" x2="1290" y1="2907.5938" y2="2907.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="848" y="2922.5889">import_name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="281" x="1004" y="2922.5889">socket.io/client-dist/socket.io.esm.min.js</text><line style="stroke:#000000;stroke-width:1.0;" x1="999" x2="999" y1="2907.5938" y2="2927.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="843" x2="1290" y1="2927.8906" y2="2927.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="146" x="848" y="2942.8857">import_name_build</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="244" x="1004" y="2942.8857">/dist/socket.io/socket.io.esm.min.js</text><line style="stroke:#000000;stroke-width:1.0;" x1="999" x2="999" y1="2927.8906" y2="2948.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="447" x="843" y="2867"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="311" x="911" y="2966"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="47" x="916" y="2980.9951">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="190" x="1027" y="2980.9951">./node_modules/peerjs/dist</text><line style="stroke:#000000;stroke-width:1.0;" x1="1022" x2="1022" y1="2966" y2="2986.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="911" x2="1222" y1="2986.2969" y2="2986.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="916" y="3001.292">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="78" x="1027" y="3001.292">/dist/peerjs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1022" x2="1022" y1="2986.2969" y2="3006.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="311" x="911" y="2966"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="57" x="473" y="2709"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="478" y="2723.9951">default</text><line style="stroke:#000000;stroke-width:1.0;" x1="473" x2="530" y1="2729.2969" y2="2729.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="478" y="2744.292">core</text><line style="stroke:#000000;stroke-width:1.0;" x1="473" x2="530" y1="2749.5938" y2="2749.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="478" y="2764.5889">user</text><line style="stroke:#000000;stroke-width:1.0;" x1="473" x2="530" y1="2769.8906" y2="2769.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="478" y="2784.8857">test</text><line style="stroke:#000000;stroke-width:1.0;" x1="473" x2="530" y1="2790.1875" y2="2790.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="19" x="478" y="2805.1826">file</text><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="57" x="473" y="2709"/><path d="M690,556.5 L703,556.5 C751.6093,556.5 706.3724,156.532 739,120.5 C806.5642,45.8861 933.8279,45.0864 1008.0977,52.1582 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1007.7772,55.319 L1010.4683,52.3986 L1008.4181,48.9974 L1015.9997,52.9594 L1007.7772,55.319 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="690" cy="556.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M253.5,1790.5 L253.5,1777.5 C253.5,1638.4322 273.0393,1289.728 301,1153.5 C338.3124,971.7096 416.2526,768.6144 463.0572,655.6192 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M465.8483,656.7785 L463.9266,653.5259 L460.266,654.4599 L465.9554,648.6413 L465.8483,656.7785 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="253.5" cy="1790.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M534,1172.5 L547,1172.5 C668.767,1172.5 877.6461,884.8046 989.6882,716.0613 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M992.268,717.7708 L990.9703,714.1265 L987.1084,714.3519 L993.9619,709.6118 L992.268,717.7708 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="534" cy="1172.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M534,1193.5 L547,1193.5 C708.3626,1193.5 897.9454,1193.5 997.2998,1193.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M997.2998,1196.5317 L999.5736,1193.5 L997.2998,1190.4683 L1004.8792,1193.5 L997.2998,1196.5317 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="534" cy="1193.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M252,1808.5 L265,1808.5 C316.8631,1808.5 283.5895,1746.3534 301,1697.5 C367.7954,1510.0741 457.9278,1288.26 489.5023,1211.3727 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M492.2952,1212.5207 L490.3633,1209.2781 L486.7094,1210.2247 L492.3723,1204.3905 L492.2952,1212.5207 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="252" cy="1808.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M502,1716.5 L515,1716.5 C682.8282,1716.5 595.2472,1499.1109 739,1412.5 C820.4336,1363.4363 933.3622,1357.3472 1002.9522,1359.1633 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1002.8549,1362.3027 L1005.3068,1359.2363 L1003.0495,1356.0239 L1010.8007,1359.4065 L1002.8549,1362.3027 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="502" cy="1716.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M502,1736.5 L515,1736.5 C656.1074,1736.5 613.0772,1575.1769 739,1511.5 C823.348,1468.8467 934.4679,1460.7906 1003.0281,1460.472 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1003.0296,1463.5653 L1005.348,1460.4709 L1003.0265,1457.3787 L1010.7613,1460.4681 L1003.0296,1463.5653 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="502" cy="1736.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M502,1756.5 L515,1756.5 C638.9132,1756.5 623.8452,1636.2586 739,1590.5 C823.5425,1556.9057 929.3191,1550.0059 997.2724,1549.5949 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M997.2803,1552.6688 L999.5778,1549.589 L997.2645,1546.521 L1004.9571,1549.5751 L997.2803,1552.6688 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="502" cy="1756.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M502,1777.5 L515,1777.5 C625.5229,1777.5 632.9039,1700.4664 739,1669.5 C828.4428,1643.3942 936.5265,1634.7212 1003.2703,1631.8652 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1003.3923,1634.8768 L1005.529,1631.7737 L1003.1483,1628.8535 L1010.7995,1631.5602 L1003.3923,1634.8768 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="502" cy="1777.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M502,1797.5 L515,1797.5 C616.9097,1797.5 638.5086,1765.4431 739,1748.5 C828.7065,1733.3753 933.2277,1721.9854 999.4912,1715.5306 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M999.7809,1718.5257 L1001.7375,1715.3134 L999.2015,1712.5355 L1006.979,1714.8064 L999.7809,1718.5257 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="502" cy="1797.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M502,1817.5 L515,1817.5 C690.6925,1817.5 897.4621,1802.6145 1000.5966,1794.1727 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1000.8451,1797.1911 L1002.8604,1793.9863 L1000.348,1791.1543 L1008.1426,1793.5514 L1000.8451,1797.1911 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="502" cy="1817.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M502,1838.5 L515,1838.5 C688.8234,1838.5 893.0662,1853.0705 997.27,1861.5557 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M997.0199,1864.6089 L999.56,1861.7433 L997.5201,1858.5024 L1004.9031,1862.181 L997.0199,1864.6089 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="502" cy="1838.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M502,1858.5 L515,1858.5 C616.8156,1858.5 638.5908,1889.6353 739,1906.5 C830.3281,1921.8394 936.9427,1933.7766 1002.9712,1940.4788 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1002.6547,1943.6177 L1005.3254,1940.7162 L1003.2877,1937.3399 L1010.8185,1941.2701 L1002.6547,1943.6177 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="502" cy="1858.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M502,1879.5 L515,1879.5 C625.1398,1879.5 633.2062,1954.866 739,1985.5 C826.8115,2010.927 932.4473,2020.1958 999.4166,2023.5714 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M999.2707,2026.5983 L1001.6868,2023.6808 L999.5624,2020.5444 L1006.9839,2023.936 L999.2707,2026.5983 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="502" cy="1879.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M502,1899.5 L515,1899.5 C638.649,1899.5 624.0936,2018.8317 739,2064.5 C806.8006,2091.4466 888.2259,2101.4704 952.8626,2104.7457 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M952.7159,2107.8646 L955.2018,2104.8557 L953.0093,2101.6268 L960.6599,2105.1123 L952.7159,2107.8646 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="502" cy="1899.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M502,1919.5 L515,1919.5 C655.7928,1919.5 613.3822,2079.9172 739,2143.5 C813.0087,2180.9603 907.5958,2192.0666 975.9828,2194.6323 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M975.879,2197.7472 L978.319,2194.7101 L976.0866,2191.5173 L983.7702,2194.8919 L975.879,2197.7472 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="502" cy="1919.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M502,1940.5 L515,1940.5 C682.1135,1940.5 595.8523,2156.2698 739,2242.5 C809.106,2284.7309 902.4917,2295.4385 971.5142,2296.6324 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M971.4754,2299.78 L973.8749,2296.6614 L971.5529,2293.4848 L979.3832,2296.7293 L971.4754,2299.78 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="502" cy="1940.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M252,1828.5 L265,1828.5 C345.7105,1828.5 441.9473,1828.5 482.0266,1828.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M482.0266,1831.5697 L484.3289,1828.5 L482.0266,1825.4303 L489.7009,1828.5 L482.0266,1831.5697 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="252" cy="1828.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M502,2538.5 L515,2538.5 C623.6664,2538.5 634.5828,2470.5907 739,2440.5 C767.6034,2432.2571 798.0361,2425.3431 828.3832,2419.5578 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M828.9619,2422.6428 L830.697,2419.1238 L827.8046,2416.4729 L836.0956,2418.1112 L828.9619,2422.6428 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="502" cy="2538.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M502,2558.5 L515,2558.5 C617.951,2558.5 637.5857,2517.2217 739,2499.5 C766.0572,2494.7719 794.5159,2490.7962 822.8896,2487.4572 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M823.2416,2490.4986 L825.1707,2487.1932 L822.5376,2484.4158 L830.4931,2486.5772 L823.2416,2490.4986 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="502" cy="2558.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M502,2578.5 L515,2578.5 C620.38,2578.5 736.9402,2573.1448 835.6122,2567.0369 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M835.8037,2570.1069 L837.9147,2566.8933 L835.4207,2563.967 L843.2871,2566.5581 L835.8037,2570.1069 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="502" cy="2578.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M502,2598.5 L515,2598.5 C649.1531,2598.5 801.4075,2607.4763 911.8202,2615.6089 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M911.5965,2618.6264 L914.0833,2615.7766 L912.0438,2612.5913 L919.364,2616.168 L911.5965,2618.6264 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="502" cy="2598.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M502,2619.5 L515,2619.5 C616.0532,2619.5 638.8049,2645.3583 739,2658.5 C769.2122,2662.4627 801.0675,2666.035 832.5618,2669.2073 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M832.2597,2672.2339 L834.8318,2669.4338 L832.8639,2666.1806 L840.1284,2669.9625 L832.2597,2672.2339 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="502" cy="2619.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M502,2639.5 L515,2639.5 C602.8439,2639.5 621.3402,2668.1238 703,2700.5 C719.4486,2707.0215 722.2379,2711.8328 739,2717.5 C745.6643,2719.7532 752.4303,2721.9499 759.2735,2724.0904 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M758.3532,2727.0723 L761.5099,2724.7806 L760.1938,2721.1085 L766.7282,2726.3911 L758.3532,2727.0723 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="502" cy="2639.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M502,2659.5 L515,2659.5 C600.5195,2659.5 642.2066,2640.3524 703,2700.5 C753.8904,2750.8498 686.5492,2808.7778 739,2857.5 C765.9091,2882.4963 799.7803,2898.1242 835.4559,2907.5044 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M834.6927,2910.5597 L837.7474,2908.0768 L836.219,2904.4491 L843.0942,2909.4124 L834.6927,2910.5597 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="502" cy="2659.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M502,2680.5 L515,2680.5 C599.027,2680.5 642.6062,2642.078 703,2700.5 C785.8979,2780.6914 655.4024,2878.0383 739,2957.5 C796.6933,3012.339 888.7611,3015.9742 960.5262,3007.9526 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M960.8948,3011.0571 L962.8546,3007.6762 L960.1577,3004.8481 L968.2875,3007.0313 L960.8948,3011.0571 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="502" cy="2680.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M252,1849.5 L265,1849.5 C267.3627,1849.5 438.2389,2405.1825 487.7161,2566.2419 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M484.7691,2567.1472 L488.395,2568.4522 L490.6631,2565.3367 L489.9792,2573.6093 L484.7691,2567.1472 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="252" cy="1849.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M253.5,1868.5 L253.5,1881.5 C253.5,1927.021 272.7795,2663.7821 301,2699.5 C340.4087,2749.3786 419.6691,2759.0773 465.6951,2760.2381 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M465.6463,2763.2942 L467.9871,2760.2747 L465.7438,2757.182 L473.3352,2760.36 L465.6463,2763.2942 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="253.5" cy="1868.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M85,1829.5 L98,1829.5 C107.2931,1829.5 117.0695,1829.5 126.7259,1829.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M126.7259,1832.5828 L129.038,1829.5 L126.7259,1826.4172 L134.4329,1829.5 L126.7259,1832.5828 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="85" cy="1829.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="752px" preserveAspectRatio="none" style="width:1381px;height:752px;background:#FFFFFF;" version="1.1" viewBox="0 0 1381 752" width="1381px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="10" y="376.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="15" y="391.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="108" y="391.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="376.5" y2="396.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="156" y1="396.7969" y2="396.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="15" y="411.792">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="108" y="411.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="396.7969" y2="417.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="156" y1="417.0938" y2="417.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="15" y="432.0889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="108" y="432.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="417.0938" y2="437.3906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="10" y="376.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="224.5" y="391"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="224.5" y="391"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="87" x="193" y="425"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="55" x="198" y="439.9951">default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="263" y="439.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="258" x2="258" y1="425" y2="445.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="87" x="193" y="425"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="317" y="404.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="322" y="419.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="415" y="419.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="410" x2="410" y1="404.5" y2="424.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="317" x2="463" y1="424.7969" y2="424.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="322" y="439.792">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="415" y="439.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="410" x2="410" y1="424.7969" y2="445.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="317" x2="463" y1="445.0938" y2="445.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="322" y="460.0889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="415" y="460.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="410" x2="410" y1="445.0938" y2="465.3906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="317" y="404.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="553" y="398"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="553" y="398"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="130" x="500" y="432.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="73" x="505" y="447.4951">metadata</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="613" y="447.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="608" x2="608" y1="432.5" y2="452.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="500" x2="630" y1="452.7969" y2="452.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="98" x="505" y="467.792">components</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="613" y="467.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="608" x2="608" y1="452.7969" y2="473.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="500" x2="630" y1="473.0938" y2="473.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="46" x="505" y="488.0889">views</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="613" y="488.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="608" x2="608" y1="473.0938" y2="493.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="500" x2="630" y1="493.3906" y2="493.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="505" y="508.3857">dists</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="613" y="508.3857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="608" x2="608" y1="493.3906" y2="513.6875"/><line style="stroke:#000000;stroke-width:1.0;" x1="500" x2="630" y1="513.6875" y2="513.6875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="67" x="505" y="528.6826">services</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="613" y="528.6826"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="608" x2="608" y1="513.6875" y2="533.9844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="130" x="500" y="432.5"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="667" y="133.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="672" y="148.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="765" y="148.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="760" x2="760" y1="133.5" y2="153.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="667" x2="813" y1="153.7969" y2="153.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="672" y="168.792">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="765" y="168.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="760" x2="760" y1="153.7969" y2="174.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="667" x2="813" y1="174.0938" y2="174.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="672" y="189.0889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="765" y="189.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="760" x2="760" y1="174.0938" y2="194.3906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="667" y="133.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="924.5" y="69"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="924.5" y="69"/><rect fill="#F1F1F1" height="162.375" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="173" x="850" y="103"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="855" y="117.9951">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1006" y="117.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1001" x2="1001" y1="103" y2="123.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="850" x2="1023" y1="123.2969" y2="123.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="141" x="855" y="138.292">backgroundImage</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1006" y="138.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1001" x2="1001" y1="123.2969" y2="143.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="850" x2="1023" y1="143.5938" y2="143.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="89" x="855" y="158.5889">description</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1006" y="158.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1001" x2="1001" y1="143.5938" y2="163.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="850" x2="1023" y1="163.8906" y2="163.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="78" x="855" y="178.8857">keywords</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1006" y="178.8857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1001" x2="1001" y1="163.8906" y2="184.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="850" x2="1023" y1="184.1875" y2="184.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="52" x="855" y="199.1826">author</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1006" y="199.1826"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1001" x2="1001" y1="184.1875" y2="204.4844"/><line style="stroke:#000000;stroke-width:1.0;" x1="850" x2="1023" y1="204.4844" y2="204.4844"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="77" x="855" y="219.4795">thumbnail</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1006" y="219.4795"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1001" x2="1001" y1="204.4844" y2="224.7813"/><line style="stroke:#000000;stroke-width:1.0;" x1="850" x2="1023" y1="224.7813" y2="224.7813"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="92" x="855" y="239.7764">themeColor</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1006" y="239.7764"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1001" x2="1001" y1="224.7813" y2="245.0781"/><line style="stroke:#000000;stroke-width:1.0;" x1="850" x2="1023" y1="245.0781" y2="245.0781"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="122" x="855" y="260.0732">pwaAssetsPath</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1006" y="260.0732"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1001" x2="1001" y1="245.0781" y2="265.375"/><rect fill="none" height="162.375" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="173" x="850" y="103"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1102" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1107" y="24.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1152" y="24.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1147" x2="1147" y1="10" y2="30.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1102" y="10"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1102" y="48"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1107" y="62.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1152" y="62.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1147" x2="1147" y1="48" y2="68.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1102" y="48"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1102" y="86"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1107" y="100.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1152" y="100.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1147" x2="1147" y1="86" y2="106.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1102" y="86"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1101" y="124.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1106" y="139.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1159" y="139.4951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1154" x2="1154" y1="124.5" y2="144.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1101" x2="1197" y1="144.7969" y2="144.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1106" y="159.792">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1159" y="159.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1154" x2="1154" y1="144.7969" y2="165.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1101" y="124.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1275" y="145"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1280" y="159.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1325" y="159.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1320" x2="1320" y1="145" y2="165.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1275" y="145"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1102" y="184"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1107" y="198.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1152" y="198.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1147" x2="1147" y1="184" y2="204.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1102" y="184"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1102" y="222"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1107" y="236.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1152" y="236.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1147" x2="1147" y1="222" y2="242.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1102" y="222"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1102" y="260"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1107" y="274.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1152" y="274.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1147" x2="1147" y1="260" y2="280.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1102" y="260"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1102" y="298"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1107" y="312.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1152" y="312.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1147" x2="1147" y1="298" y2="318.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1102" y="298"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="667" y="355.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="672" y="370.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="765" y="370.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="760" x2="760" y1="355.5" y2="375.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="667" x2="813" y1="375.7969" y2="375.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="672" y="390.792">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="765" y="390.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="760" x2="760" y1="375.7969" y2="396.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="667" x2="813" y1="396.0938" y2="396.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="672" y="411.0889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="765" y="411.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="760" x2="760" y1="396.0938" y2="416.3906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="667" y="355.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="924.5" y="351"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="924.5" y="351"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="87" x="893" y="385.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="36" x="898" y="400.4951">core</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="963" y="400.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="958" x2="958" y1="385.5" y2="405.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="893" x2="980" y1="405.7969" y2="405.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="55" x="898" y="420.792">default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="963" y="420.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="958" x2="958" y1="405.7969" y2="426.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="87" x="893" y="385.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1101" y="336.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1106" y="351.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1159" y="351.4951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1154" x2="1154" y1="336.5" y2="356.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1101" x2="1197" y1="356.7969" y2="356.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1106" y="371.792">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1159" y="371.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1154" x2="1154" y1="356.7969" y2="377.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1101" y="336.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1275" y="357"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1280" y="371.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1325" y="371.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1320" x2="1320" y1="357" y2="377.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1275" y="357"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1101" y="395.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1106" y="410.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1159" y="410.4951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1154" x2="1154" y1="395.5" y2="415.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1101" x2="1197" y1="415.7969" y2="415.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1106" y="430.792">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1159" y="430.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1154" x2="1154" y1="415.7969" y2="436.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1101" y="395.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1275" y="416"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1280" y="430.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1325" y="430.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1320" x2="1320" y1="416" y2="436.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1275" y="416"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="692" y="461.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="697" y="476.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="750" y="476.4951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="461.5" y2="481.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="692" x2="788" y1="481.7969" y2="481.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="697" y="496.792">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="750" y="496.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="481.7969" y2="502.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="692" y="461.5"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="863.5" y="461.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="868.5" y="476.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="961.5" y="476.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="956.5" x2="956.5" y1="461.5" y2="481.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="863.5" x2="1009.5" y1="481.7969" y2="481.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="868.5" y="496.792">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="961.5" y="496.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="956.5" x2="956.5" y1="481.7969" y2="502.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="863.5" x2="1009.5" y1="502.0938" y2="502.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="868.5" y="517.0889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="961.5" y="517.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="956.5" x2="956.5" y1="502.0938" y2="522.3906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="863.5" y="461.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="1137" y="455"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="1137" y="455"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="75" x="1111.5" y="489.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1116.5" y="504.4951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1169.5" y="504.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1164.5" x2="1164.5" y1="489.5" y2="509.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1111.5" x2="1186.5" y1="509.7969" y2="509.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1116.5" y="524.792">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1169.5" y="524.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1164.5" x2="1164.5" y1="509.7969" y2="530.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1111.5" x2="1186.5" y1="530.0938" y2="530.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1116.5" y="545.0889">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1169.5" y="545.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1164.5" x2="1164.5" y1="530.0938" y2="550.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="1111.5" x2="1186.5" y1="550.3906" y2="550.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="1116.5" y="565.3857">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1169.5" y="565.3857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1164.5" x2="1164.5" y1="550.3906" y2="570.6875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="75" x="1111.5" y="489.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1275" y="454"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1280" y="468.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1325" y="468.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1320" x2="1320" y1="454" y2="474.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1275" y="454"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1275" y="492"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1280" y="506.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1325" y="506.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1320" x2="1320" y1="492" y2="512.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1275" y="492"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1275" y="530"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1280" y="544.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1325" y="544.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1320" x2="1320" y1="530" y2="550.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1275" y="530"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1275" y="568"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1280" y="582.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1325" y="582.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1320" x2="1320" y1="568" y2="588.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1275" y="568"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="692" y="525.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="697" y="540.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="750" y="540.4951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="525.5" y2="545.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="692" x2="788" y1="545.7969" y2="545.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="697" y="560.792">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="750" y="560.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="545.7969" y2="566.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="692" y="525.5"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="863.5" y="553.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="868.5" y="568.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="961.5" y="568.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="956.5" x2="956.5" y1="553.5" y2="573.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="863.5" x2="1009.5" y1="573.7969" y2="573.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="868.5" y="588.792">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="961.5" y="588.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="956.5" x2="956.5" y1="573.7969" y2="594.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="863.5" x2="1009.5" y1="594.0938" y2="594.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="868.5" y="609.0889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="961.5" y="609.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="956.5" x2="956.5" y1="594.0938" y2="614.3906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="863.5" y="553.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="1137" y="589"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="1137" y="589"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="178" x="1060" y="624.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="47" x="1065" y="639.4951">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1221" y="639.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1216" x2="1216" y1="624.5" y2="644.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1060" x2="1238" y1="644.7969" y2="644.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="1065" y="659.792">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1221" y="659.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1216" x2="1216" y1="644.7969" y2="665.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1060" x2="1238" y1="665.0938" y2="665.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="1065" y="680.0889">import_name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1221" y="680.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1216" x2="1216" y1="665.0938" y2="685.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="1060" x2="1238" y1="685.3906" y2="685.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="146" x="1065" y="700.3857">import_name_build</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1221" y="700.3857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1216" x2="1216" y1="685.3906" y2="705.6875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="178" x="1060" y="624.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1275" y="606"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1280" y="620.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1325" y="620.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1320" x2="1320" y1="606" y2="626.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1275" y="606"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1275" y="644"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1280" y="658.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1325" y="658.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1320" x2="1320" y1="644" y2="664.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1275" y="644"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1275" y="682"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1280" y="696.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1325" y="696.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1320" x2="1320" y1="682" y2="702.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1275" y="682"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1275" y="720"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1280" y="734.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1325" y="734.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1320" x2="1320" y1="720" y2="740.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1275" y="720"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="692" y="594.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="697" y="609.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="750" y="609.4951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="594.5" y2="614.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="692" x2="788" y1="614.7969" y2="614.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="697" y="629.792">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="750" y="629.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="614.7969" y2="635.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="692" y="594.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="889.5" y="633"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="894.5" y="647.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="939.5" y="647.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="934.5" x2="934.5" y1="633" y2="653.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="889.5" y="633"/><path d="M144,406 L157,406 C177.6363,406 201.1869,403.6007 217.1663,401.6115 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M217.5615,404.6557 L219.4495,401.3151 L216.7712,398.5673 L224.7769,400.6235 L217.5615,404.6557 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="144" cy="406" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M451,434 L464,434 C480.7302,434 483.9081,427.5773 500,423 C515.3119,418.6446 532.7782,414.0647 545.6698,410.7574 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M546.4223,413.7076 L547.8824,410.193 L544.9172,407.8072 L553.0453,408.8759 L546.4223,413.7076 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="451" cy="434" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M801,163 L814,163 C848.5897,163 822.3082,114.727 850,94 C869.5293,79.3825 898.316,76.405 917.1126,76.222 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M917.0831,79.2724 L919.4004,76.2441 L917.142,73.1716 L924.7385,76.2957 L917.0831,79.2724 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="801" cy="163" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1011,113 L1024,113 C1060.5743,113 1031.2134,61.5613 1060,39 C1069.9355,31.2132 1082.3494,26.4423 1094.7082,23.5615 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1095.332,26.6276 L1097.0078,23.0936 L1094.0844,20.4954 L1102.3735,22.0019 L1095.332,26.6276 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1011" cy="113" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1011,133 L1024,133 C1053.5881,133 1035.6716,93.84 1060,77 C1070.1653,69.9636 1082.4408,65.4576 1094.5694,62.5912 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1095.2018,65.5963 L1096.8232,62.117 L1093.9371,59.5861 L1102.0821,61.0104 L1095.2018,65.5963 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1011" cy="133" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1011,153 L1024,153 C1047.2644,153 1039.7183,126.3967 1060,115 C1070.5511,109.0711 1082.7635,104.99 1094.6828,102.1813 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1095.3186,105.1278 L1096.8926,101.7045 L1094.047,99.2349 L1102.0489,100.5919 L1095.3186,105.1278 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1011" cy="153" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1185.5,155 L1198.5,155 C1221.1321,155 1246.1066,155 1267.6049,155 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1267.6049,158.101 L1269.9306,155 L1267.6049,151.899 L1275.3573,155 L1267.6049,158.101 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1185.5" cy="155" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1011,173 L1024,173 C1047.286,173 1072.4379,168.28 1093.9982,162.7158 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1094.797,165.7027 L1096.2384,162.1167 L1093.1994,159.7288 L1101.4656,160.7188 L1094.797,165.7027 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1011" cy="173" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1011,194 L1024,194 C1047.2019,194 1072.836,194 1094.7832,194 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1094.7832,197.0397 L1097.063,194 L1094.7832,190.9603 L1102.3824,194 L1094.7832,197.0397 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1011" cy="194" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1011,214 L1024,214 C1047.3455,214 1072.9023,217.1385 1094.7532,220.7944 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1094.229,223.8203 L1097.0226,221.1875 L1095.2773,217.7685 L1102.3178,222.1048 L1094.229,223.8203 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1011" cy="214" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1011,234 L1024,234 C1041.6942,234 1043.2396,245.3278 1060,251 C1071.1117,254.7605 1083.2681,257.9435 1094.9152,260.5659 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1094.258,263.5916 L1097.1844,261.0588 L1095.5723,257.5403 L1102.4793,262.2088 L1094.258,263.5916 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1011" cy="234" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1011,255 L1024,255 C1046.0079,255 1040.5216,278.7562 1060,289 C1070.7118,294.6334 1082.9882,298.5969 1094.9184,301.3853 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1094.2829,304.3319 L1097.1283,301.862 L1095.5539,298.4388 L1102.2848,302.9741 L1094.2829,304.3319 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1011" cy="255" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M801,184 L814,184 C823.2756,184 832.9479,184 842.6097,184 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M842.6097,187.0954 L844.9312,184 L842.6097,180.9046 L850.3482,184 L842.6097,187.0954 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="801" cy="184" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M619.5,444 L619.5,431 C619.5,424.7738 627.0857,427.8419 631,423 C638.3836,413.8666 696.1445,271.6915 724.2456,201.97 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M727.1747,203.1499 L725.1305,199.7732 L721.3164,200.7901 L727.1954,194.6472 L727.1747,203.1499 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="619.5" cy="444" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M801,385 L814,385 C830.4924,385 833.9053,379.6002 850,376 C872.9748,370.8607 899.5846,365.7253 917.0481,362.4655 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M917.6246,365.5784 L919.3827,362.033 L916.4715,359.3526 L924.8303,361.0241 L917.6246,365.5784 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="801" cy="385" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1185.5,367 L1198.5,367 C1221.1321,367 1246.1066,367 1267.6049,367 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1267.6049,370.101 L1269.9306,367 L1267.6049,363.899 L1275.3573,367 L1267.6049,370.101 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1185.5" cy="367" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M969,395 L982,395 C1020.0168,395 1061.72,385.4672 1093.8797,375.9509 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1094.7931,378.9684 L1096.1428,375.2658 L1092.9663,372.9333 L1101.4235,373.6674 L1094.7931,378.9684 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="969" cy="395" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1185.5,426 L1198.5,426 C1221.1321,426 1246.1066,426 1267.6049,426 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1267.6049,429.101 L1269.9306,426 L1267.6049,422.899 L1275.3573,426 L1267.6049,429.101 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1185.5" cy="426" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M969,416 L982,416 C1019.3314,416 1061.371,416 1093.8677,416 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1093.8677,419.0497 L1096.155,416 L1093.8677,412.9503 L1101.492,416 L1093.8677,419.0497 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="969" cy="416" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M801,406 L814,406 C837.5886,406 863.7427,406 885.7658,406 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M885.7658,409.0426 L888.0478,406 L885.7658,402.9574 L893.3724,406 L885.7658,409.0426 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="801" cy="406" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M618,462 L631,462 C646.3181,462 675.073,441.4215 699.1332,421.6808 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M701.1283,424.0827 L700.9346,420.1845 L697.1381,419.2789 L705.138,416.693 L701.1283,424.0827 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="618" cy="462" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M998,491 L1011,491 C1033.3198,491 1038.1489,484.5502 1060,480 C1084.0416,474.9936 1111.8715,469.7356 1129.8064,466.4165 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1130.3587,469.4145 L1132.0549,466.0023 L1129.2542,463.4186 L1137.3014,465.0359 L1130.3587,469.4145 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="998" cy="491" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1175.5,499 L1188.5,499 C1224.5105,499 1264.2531,486.8519 1290.8316,476.8696 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1291.93,479.723 L1292.9716,476.0458 L1289.7331,474.0163 L1297.9649,474.1235 L1291.93,479.723 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1175.5" cy="499" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1175.5,519 L1188.5,519 C1214.6511,519 1243.4628,515.7262 1267.5639,512.0519 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1268.0452,515.112 L1269.8589,511.6909 L1267.0825,508.9919 L1275.214,510.8485 L1268.0452,515.112 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1175.5" cy="519" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1175.5,540 L1188.5,540 C1214.5442,540 1243.4572,540 1267.6551,540 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1267.6551,543.0725 L1269.9594,540 L1267.6551,536.9275 L1275.3363,540 L1267.6551,543.0725 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1175.5" cy="540" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1175.5,560 L1188.5,560 C1214.6765,560 1243.4913,563.4664 1267.5879,567.3568 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1267.0782,570.4162 L1269.8824,567.739 L1268.0976,564.2974 L1275.2364,568.631 L1267.0782,570.4162 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1175.5" cy="560" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M998,512 L1011,512 C1042.3344,512 1077.3483,516.6526 1104.201,521.227 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1103.6619,524.3078 L1106.5117,521.6313 L1104.7402,518.1461 L1111.9032,522.5748 L1103.6619,524.3078 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="998" cy="512" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M776.5,492 L789.5,492 C811.114,492 834.5216,492 856.1504,492 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M856.1504,495.0281 L858.4215,492 L856.1504,488.9719 L863.7207,492 L856.1504,495.0281 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="776.5" cy="492" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M618,482 L631,482 C648.3968,482 667.3627,482 684.5013,482 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M684.5013,485.0935 L686.8214,482 L684.5013,478.9065 L692.235,482 L684.5013,485.0935 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="618" cy="482" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M998,583 L1011,583 C1053.6538,583 1103.3694,589.7503 1129.7734,593.8764 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1129.2792,596.9624 L1132.0879,594.247 L1130.2676,590.7903 L1137.4885,595.1119 L1129.2792,596.9624 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="998" cy="583" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1226,634 L1239,634 C1253.5957,634 1269.317,631.2774 1283.0807,627.9499 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1283.8396,630.9201 L1285.3083,627.3807 L1282.3217,624.9797 L1290.5062,626.0525 L1283.8396,630.9201 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1226" cy="634" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1226,654 L1239,654 C1248.2674,654 1258.1203,654 1267.6708,654 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1267.6708,657.031 L1269.9441,654 L1267.6708,650.969 L1275.2484,654 L1267.6708,657.031 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1226" cy="654" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1226,675 L1239,675 C1252.6916,675 1267.4031,677.2738 1280.5573,680.1582 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1279.8548,683.1765 L1282.821,680.6851 L1281.2599,677.14 L1288.1029,681.9146 L1279.8548,683.1765 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1226" cy="675" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1226,695 L1239,695 C1256.5091,695 1258.894,704.1323 1275,711 C1279.6352,712.9765 1284.5469,715.0287 1289.3741,717.0217 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1288.2293,719.8097 L1291.4651,717.8803 L1290.5189,714.2337 L1296.3441,719.8838 L1288.2293,719.8097 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1226" cy="695" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M998,604 L1011,604 C1022.7235,604 1043.1365,611.5031 1064.7019,621.2464 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1063.4077,624.0594 L1066.8117,622.217 L1065.9961,618.4333 L1071.7346,624.4818 L1063.4077,624.0594 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="998" cy="604" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M776.5,556 L789.5,556 C811.3894,556 834.7966,559.053 856.3325,563.1428 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M855.7379,566.1564 L858.5927,563.5888 L856.9272,560.1293 L863.8664,564.6294 L855.7379,566.1564 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="776.5" cy="556" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M618,503 L631,503 C643.0734,503 667.4185,512.3183 689.9937,522.2793 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M688.7527,525.0527 L692.0738,523.21 L691.2346,519.5058 L696.9274,525.3816 L688.7527,525.0527 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="618" cy="503" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M776.5,625 L789.5,625 C820.4185,625 854.7354,628.9985 882.3791,633.2263 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M881.9009,636.271 L884.6626,633.5849 L882.8573,630.1817 L889.9907,634.4217 L881.9009,636.271 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="776.5" cy="625" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M618,523 L631,523 C659.1091,523 646.1423,556.1564 667,575 C673.2068,580.6075 680.3377,585.7323 687.6518,590.3043 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M686.0353,593.0033 L689.676,591.5167 L689.2683,587.6054 L694.3991,594.3456 L686.0353,593.0033 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="618" cy="523" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M451,455 L464,455 C473.4326,455 483.1865,456.1587 492.7407,458.0048 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M492.0932,461.0486 L495.0236,458.4904 L493.3882,454.961 L500.3502,459.6236 L492.0932,461.0486 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="451" cy="455" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M268,435 L281,435 C290.2896,435 300.0267,435 309.694,435 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M309.694,438.0913 L312.0124,435 L309.694,431.9087 L317.4221,435 L309.694,438.0913 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="268" cy="435" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M144,427 L157,427 C166.3547,427 176.3009,427.5621 185.8678,428.3884 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M185.5824,431.4174 L188.1396,428.6024 L186.1532,425.3593 L193.4404,429.1019 L185.5824,431.4174 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="144" cy="427" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>
|