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 @@
|
|
|
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="236px" preserveAspectRatio="none" style="width:740px;height:236px;background:#FFFFFF;" version="1.1" viewBox="0 0 740 236" width="740px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="110" x="10" y="36.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="78" x="15" y="51.4951">ipDaemon</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="103" y="51.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="98" x2="98" y1="36.5" y2="56.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="120" y1="56.7969" y2="56.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="62" x="15" y="71.792">records</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="103" y="71.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="98" x2="98" y1="56.7969" y2="77.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="120" y1="77.0938" y2="77.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="66" x="15" y="92.0889">backups</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="103" y="92.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="98" x2="98" y1="77.0938" y2="97.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="120" y1="97.3906" y2="97.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="33" x="15" y="112.3857">jobs</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="103" y="112.3857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="98" x2="98" y1="97.3906" y2="117.6875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="110" x="10" y="36.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="45" x="183.5" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="14" x="188.5" y="24.9951">ip</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="11" x="212.5" y="24.9951">␀</text><line style="stroke:#000000;stroke-width:1.0;" x1="207.5" x2="207.5" y1="10" y2="30.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="45" x="183.5" y="10"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="43" x="184.5" y="48"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="11" x="189.5" y="62.9951">A</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="210.5" y="62.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="205.5" x2="205.5" y1="48" y2="68.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="43" x="184.5" y="48"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="394.5" y="48"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="399.5" y="62.9951"> </text><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="394.5" y="48"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="170" x="558" y="17.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="563" y="32.4951">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="92" x="631" y="32.4951">example.com</text><line style="stroke:#000000;stroke-width:1.0;" x1="626" x2="626" y1="17.5" y2="37.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="558" x2="728" y1="37.7969" y2="37.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="29" x="563" y="52.792">dns</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="82" x="631" y="52.792">dondominio</text><line style="stroke:#000000;stroke-width:1.0;" x1="626" x2="626" y1="37.7969" y2="58.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="558" x2="728" y1="58.0938" y2="58.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="58" x="563" y="73.0889">api_key</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="21" x="631" y="73.0889">???</text><line style="stroke:#000000;stroke-width:1.0;" x1="626" x2="626" y1="58.0938" y2="78.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="558" x2="728" y1="78.3906" y2="78.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="36" x="563" y="93.3857">user</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="21" x="631" y="93.3857">???</text><line style="stroke:#000000;stroke-width:1.0;" x1="626" x2="626" y1="78.3906" y2="98.6875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="170" x="558" y="17.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="194" y="86"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="199" y="100.9951"> </text><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="194" y="86"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="229" x="292" y="86"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="116" x="297" y="100.9951">deployGroupId</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="93" x="423" y="100.9951">default-group</text><line style="stroke:#000000;stroke-width:1.0;" x1="418" x2="418" y1="86" y2="106.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="229" x="292" y="86"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="98" x="157" y="135.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="29" x="162" y="150.4951">dns</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="238" y="150.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="233" x2="233" y1="135.5" y2="155.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="157" x2="255" y1="155.7969" y2="155.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="66" x="162" y="170.792">backups</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="238" y="170.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="233" x2="233" y1="155.7969" y2="176.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="98" x="157" y="135.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="159" x="327" y="124.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="88" x="332" y="139.4951">expression</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="51" x="430" y="139.4951">* * * * *</text><line style="stroke:#000000;stroke-width:1.0;" x1="425" x2="425" y1="124.5" y2="144.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="327" x2="486" y1="144.7969" y2="144.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="63" x="332" y="159.792">enabled</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="430" y="159.792">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="425" x2="425" y1="144.7969" y2="165.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="159" x="327" y="124.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="163" x="325" y="183.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="88" x="330" y="198.4951">expression</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="55" x="428" y="198.4951">0 1 * * *</text><line style="stroke:#000000;stroke-width:1.0;" x1="423" x2="423" y1="183.5" y2="203.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="325" x2="488" y1="203.7969" y2="203.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="63" x="330" y="218.792">enabled</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="428" y="218.792">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="423" x2="423" y1="203.7969" y2="224.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="163" x="325" y="183.5"/><path d="M108,46 L121,46 C131.9361,46 156.8794,37.9439 176.8475,30.8005 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M177.8771,33.639 L178.9764,30.0283 L175.818,27.9619 L183.9439,28.2266 L177.8771,33.639 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="108" cy="46" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M406.0022,58 L419.0022,58 C443.2968,58 500.2712,58 550.6116,58 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M550.6116,61.0779 L552.9201,58 L550.6116,54.9221 L558.3065,58 L550.6116,61.0779 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="406.0022" cy="58" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M216.5,58 L229.5,58 C286.8826,58 354.7592,58 387.0714,58 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M387.0714,61.111 L389.4046,58 L387.0714,54.889 L394.8489,58 L387.0714,61.111 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="216.5" cy="58" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M108,66 L121,66 C139.742,66 160.7186,64.0253 177.0833,62.0381 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M177.4704,65.0913 L179.3732,61.7477 L176.6961,58.9849 L184.7163,61.0701 L177.4704,65.0913 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="108" cy="66" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M205.6793,96 L218.6793,96 C232.753,96 257.4572,96 284.3978,96 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M284.3978,99.0604 L286.6931,96 L284.3978,92.9396 L292.0488,96 L284.3978,99.0604 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="205.6793" cy="96" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M108,87 L121,87 C143.6944,87 169.6255,90.2496 186.7092,92.8435 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M186.2278,95.8927 L188.9961,93.2046 L187.1907,89.7944 L194.3321,94.0471 L186.2278,95.8927 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="108" cy="87" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M243,145 L256,145 C276.6421,145 298.882,145 319.7514,145 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M319.7514,148.0485 L322.0377,145 L319.7514,141.9515 L327.3726,145 L319.7514,148.0485 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="243" cy="145" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M243,166 L256,166 C256.4722,166 285.4932,173.3375 317.8819,181.564 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M317.1303,184.5222 L320.1006,182.1277 L318.6335,178.6057 L325.2775,183.443 L317.1303,184.5222 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="243" cy="166" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M108,107 L121,107 C142.109,107 162.6681,118.5849 178.2213,130.4886 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M176.3289,132.8561 L179.9969,131.9079 L180.1137,128.1212 L184.14,135.2196 L176.3289,132.8561 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="108" cy="107" 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="448px" preserveAspectRatio="none" style="width:1328px;height:448px;background:#FFFFFF;" version="1.1" viewBox="0 0 1328 448" width="1328px" 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="81"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="15" y="95.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="108" y="95.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="81" y2="101.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="156" y1="101.2969" y2="101.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="15" y="116.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="108" y="116.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="101.2969" y2="121.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="156" y1="121.5938" y2="121.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="15" y="136.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="108" y="136.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="121.5938" y2="141.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="10" y="81"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="236" y="79.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="236" y="79.5"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="110" x="193" y="114"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="78" x="198" y="128.9951">ipDaemon</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="286" y="128.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="281" x2="281" y1="114" y2="134.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="193" x2="303" y1="134.2969" y2="134.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="62" x="198" y="149.292">records</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="286" y="149.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="281" x2="281" y1="134.2969" y2="154.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="193" x2="303" y1="154.5938" y2="154.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="66" x="198" y="169.5889">backups</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="286" y="169.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="281" x2="281" y1="154.5938" y2="174.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="193" x2="303" y1="174.8906" y2="174.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="33" x="198" y="189.8857">jobs</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="286" y="189.8857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="281" x2="281" y1="174.8906" y2="195.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="110" x="193" y="114"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="340" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="345" y="24.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="438" y="24.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="433" x2="433" y1="10" y2="30.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="340" x2="486" y1="30.2969" y2="30.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="345" y="45.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="438" y="45.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="433" x2="433" y1="30.2969" y2="50.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="340" x2="486" y1="50.5938" y2="50.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="345" y="65.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="438" y="65.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="433" x2="433" y1="50.5938" y2="70.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="340" y="10"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="584" y="20.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="584" y="20.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="46" x="573" y="54.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="14" x="578" y="69.4951">ip</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="602" y="69.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="597" x2="597" y1="54.5" y2="74.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="46" x="573" y="54.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="733" y="54.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="738" y="69.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="783" y="69.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="778" x2="778" y1="54.5" y2="74.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="733" y="54.5"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="340" y="89"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="345" y="103.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="438" y="103.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="433" x2="433" y1="89" y2="109.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="340" x2="486" y1="109.2969" y2="109.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="345" y="124.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="438" y="124.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="433" x2="433" y1="109.2969" y2="129.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="340" x2="486" y1="129.5938" y2="129.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="345" y="144.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="438" y="144.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="433" x2="433" y1="129.5938" y2="149.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="340" y="89"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="584" y="95.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="584" y="95.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="43" x="574.5" y="129.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="11" x="579.5" y="144.4951">A</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="600.5" y="144.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="595.5" x2="595.5" y1="129.5" y2="149.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="43" x="574.5" y="129.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="732" y="119"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="737" y="133.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="790" y="133.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="785" x2="785" y1="119" y2="139.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="732" x2="828" y1="139.2969" y2="139.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="737" y="154.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="790" y="154.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="785" x2="785" y1="139.2969" y2="159.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="732" y="119"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="891" y="119"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="896" y="133.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="989" y="133.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="984" x2="984" y1="119" y2="139.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="891" x2="1037" y1="139.2969" y2="139.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="896" y="154.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="989" y="154.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="984" x2="984" y1="139.2969" y2="159.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="891" x2="1037" y1="159.5938" y2="159.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="896" y="174.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="989" y="174.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="984" x2="984" y1="159.5938" y2="179.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="891" y="119"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="1117.5" y="117.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="1117.5" y="117.5"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="90" x="1084.5" y="152"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1089.5" y="166.9951">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1157.5" y="166.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1152.5" x2="1152.5" y1="152" y2="172.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1084.5" x2="1174.5" y1="172.2969" y2="172.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="29" x="1089.5" y="187.292">dns</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1157.5" y="187.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1152.5" x2="1152.5" y1="172.2969" y2="192.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1084.5" x2="1174.5" y1="192.5938" y2="192.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="58" x="1089.5" y="207.5889">api_key</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1157.5" y="207.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1152.5" x2="1152.5" y1="192.5938" y2="212.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="1084.5" x2="1174.5" y1="212.8906" y2="212.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="36" x="1089.5" y="227.8857">user</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1157.5" y="227.8857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1152.5" x2="1152.5" y1="212.8906" y2="233.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="90" x="1084.5" y="152"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1222" y="125.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1227" y="140.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1272" y="140.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1267" x2="1267" y1="125.5" y2="145.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1222" y="125.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1222" y="163.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1227" y="178.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1272" y="178.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1267" x2="1267" y1="163.5" y2="183.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1222" y="163.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1222" y="201.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1227" y="216.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1272" y="216.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1267" x2="1267" y1="201.5" y2="221.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1222" y="201.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1222" y="239.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1227" y="254.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1272" y="254.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1267" x2="1267" y1="239.5" y2="259.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1222" y="239.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="365" y="168"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="370" y="182.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="423" y="182.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="418" x2="418" y1="168" y2="188.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="365" x2="461" y1="188.2969" y2="188.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="370" y="203.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="423" y="203.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="418" x2="418" y1="188.2969" y2="208.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="365" y="168"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="523" y="168"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="528" y="182.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="621" y="182.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="616" x2="616" y1="168" y2="188.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="523" x2="669" y1="188.2969" y2="188.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="528" y="203.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="621" y="203.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="616" x2="616" y1="188.2969" y2="208.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="523" x2="669" y1="208.5938" y2="208.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="528" y="223.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="621" y="223.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="616" x2="616" y1="208.5938" y2="228.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="523" y="168"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="768" y="182.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="768" y="182.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="148" x="706" y="216.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="116" x="711" y="231.4951">deployGroupId</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="837" y="231.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="832" x2="832" y1="216.5" y2="236.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="148" x="706" y="216.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="917" y="216.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="922" y="231.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="967" y="231.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="962" x2="962" y1="216.5" y2="236.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="917" y="216.5"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="340" y="227"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="345" y="241.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="438" y="241.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="433" x2="433" y1="227" y2="247.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="340" x2="486" y1="247.2969" y2="247.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="345" y="262.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="438" y="262.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="433" x2="433" y1="247.2969" y2="267.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="340" x2="486" y1="267.5938" y2="267.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="345" y="282.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="438" y="282.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="433" x2="433" y1="267.5938" y2="287.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="340" y="227"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="584" y="248.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="584" y="248.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="98" x="547" y="283"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="29" x="552" y="297.9951">dns</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="628" y="297.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="623" x2="623" y1="283" y2="303.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="547" x2="645" y1="303.2969" y2="303.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="66" x="552" y="318.292">backups</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="628" y="318.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="623" x2="623" y1="303.2969" y2="323.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="98" x="547" y="283"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="707" y="258"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="712" y="272.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="805" y="272.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="800" x2="800" y1="258" y2="278.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="707" x2="853" y1="278.2969" y2="278.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="712" y="293.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="805" y="293.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="800" x2="800" y1="278.2969" y2="298.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="707" x2="853" y1="298.5938" y2="298.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="712" y="313.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="805" y="313.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="800" x2="800" y1="298.5938" y2="318.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="707" y="258"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="952" y="256.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="952" y="256.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="120" x="904" y="291"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="88" x="909" y="305.9951">expression</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1007" y="305.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1002" x2="1002" y1="291" y2="311.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="904" x2="1024" y1="311.2969" y2="311.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="63" x="909" y="326.292">enabled</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1007" y="326.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1002" x2="1002" y1="311.2969" y2="331.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="120" x="904" y="291"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1082.5" y="282.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1087.5" y="297.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1132.5" y="297.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1127.5" x2="1127.5" y1="282.5" y2="302.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1082.5" y="282.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1074" y="320.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1079" y="335.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1124" y="335.4951">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="1119" x2="1119" y1="320.5" y2="340.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1074" y="320.5"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="707" y="337"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="712" y="351.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="805" y="351.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="800" x2="800" y1="337" y2="357.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="707" x2="853" y1="357.2969" y2="357.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="712" y="372.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="805" y="372.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="800" x2="800" y1="357.2969" y2="377.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="707" x2="853" y1="377.5938" y2="377.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="712" y="392.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="805" y="392.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="800" x2="800" y1="377.5938" y2="397.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="707" y="337"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="952" y="353.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="952" y="353.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="120" x="904" y="388"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="88" x="909" y="402.9951">expression</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1007" y="402.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1002" x2="1002" y1="388" y2="408.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="904" x2="1024" y1="408.2969" y2="408.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="63" x="909" y="423.292">enabled</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1007" y="423.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1002" x2="1002" y1="408.2969" y2="428.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="120" x="904" y="388"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1082.5" y="378.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1087.5" y="393.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1132.5" y="393.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1127.5" x2="1127.5" y1="378.5" y2="398.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1082.5" y="378.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1074" y="416.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1079" y="431.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1124" y="431.4951">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="1119" x2="1119" y1="416.5" y2="436.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1074" y="416.5"/><path d="M144,110.5 L157,110.5 C170.9214,110.5 206.8976,100.1476 229.0694,93.3336 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M229.9654,96.2168 L231.2318,92.6616 L228.1735,90.4504 L236.2774,91.0938 L229.9654,96.2168 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="144" cy="110.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M474,39.5 L487,39.5 C518.7304,39.5 555.4155,34.7858 576.9696,31.5297 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M577.4351,34.5209 L579.2131,31.1806 L576.5042,28.5384 L584.4477,30.366 L577.4351,34.5209 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="474" cy="39.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M607.5,64.5 L620.5,64.5 C655.4904,64.5 694.8122,64.5 725.5974,64.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M725.5974,67.554 L727.8879,64.5 L725.5974,61.446 L733.2324,64.5 L725.5974,67.554 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="607.5" cy="64.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M474,60.5 L487,60.5 C513.6928,60.5 544.0544,61.724 565.8583,62.8178 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M565.7004,65.867 L568.1452,62.9361 L566.0161,59.7685 L573.4814,63.2124 L565.7004,65.867 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="474" cy="60.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M291,123.5 L304,123.5 C329.267,123.5 320.5017,95.5697 340,79.5 C341.5441,78.2274 343.1361,76.9774 344.7663,75.7512 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M346.6095,78.3334 L346.7029,74.3688 L342.923,73.169 L351.2218,71.1431 L346.6095,78.3334 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="291" cy="123.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M474,118.5 L487,118.5 C518.8688,118.5 555.5111,112.0715 577.0192,107.6314 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M577.6539,110.6156 L579.2573,107.1553 L576.3844,104.6471 L584.4798,106.0445 L577.6539,110.6156 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="474" cy="118.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1025,148.5 L1038,148.5 C1051.9937,148.5 1088.1702,138.1476 1110.4661,131.3336 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1111.362,134.2329 L1112.6406,130.6616 L1109.5702,128.4343 L1117.7144,129.0938 L1111.362,134.2329 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1025" cy="148.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1163,161.5 L1176,161.5 C1197.4564,161.5 1220.703,154.9364 1238.5243,148.4048 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1239.6355,151.3186 L1240.7096,147.5714 L1237.413,145.491 L1245.8088,145.6267 L1239.6355,151.3186 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1163" cy="161.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1163,181.5 L1176,181.5 C1188.5476,181.5 1202.0172,180.7603 1214.6878,179.7307 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1214.9576,182.839 L1217.019,179.5284 L1214.418,176.6225 L1222.4584,179.0563 L1214.9576,182.839 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1163" cy="181.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1163,202.5 L1176,202.5 C1188.56,202.5 1202.0344,203.3322 1214.7057,204.4904 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1214.4022,207.5987 L1217.0369,204.718 L1215.0093,201.3822 L1222.4763,205.2492 L1214.4022,207.5987 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1163" cy="202.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1163,222.5 L1176,222.5 C1187.2236,222.5 1212.0935,229.9175 1233.2212,236.9769 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1232.2335,239.8923 L1235.4078,237.7177 L1234.209,234.0615 L1240.5098,239.4462 L1232.2335,239.8923 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1163" cy="222.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1025,169.5 L1038,169.5 C1050.9409,169.5 1064.6099,171.7133 1077.3101,174.7667 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1076.5563,177.7079 L1079.516,175.3321 L1078.0639,171.8256 L1084.663,176.6513 L1076.5563,177.7079 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1025" cy="169.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M816.5,149.5 L829.5,149.5 C847.0061,149.5 865.7986,149.5 883.6087,149.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M883.6087,152.5265 L885.8786,149.5 L883.6087,146.4735 L891.1748,149.5 L883.6087,152.5265 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="816.5" cy="149.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M606.5,139.5 L619.5,139.5 C654.4544,139.5 693.7043,139.5 724.5811,139.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M724.5811,142.5648 L726.8797,139.5 L724.5811,136.4352 L732.2431,139.5 L724.5811,142.5648 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="606.5" cy="139.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M474,139.5 L487,139.5 C514.178,139.5 545.1853,139.5 567.0727,139.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M567.0727,142.5509 L569.3608,139.5 L567.0727,136.4491 L574.6998,139.5 L567.0727,142.5509 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="474" cy="139.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M291,143.5 L304,143.5 C313.362,143.5 323.0733,142.6376 332.6653,141.2398 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M333.1571,144.303 L334.9627,140.8709 L332.1734,138.1766 L340.3232,140.0102 L333.1571,144.303 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="291" cy="143.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M657,197.5 L670,197.5 C701.9246,197.5 738.9782,194.5001 760.7637,192.428 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M761.0599,195.4517 L763.0315,192.2058 L760.4675,189.4042 L768.3231,191.6875 L761.0599,195.4517 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="657" cy="197.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M842,226.5 L855,226.5 C872.7235,226.5 892.0756,226.5 909.4649,226.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M909.4649,229.6355 L911.8165,226.5 L909.4649,223.3645 L917.3035,226.5 L909.4649,229.6355 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="842" cy="226.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M657,218.5 L670,218.5 C679.2498,218.5 688.9275,218.7875 698.5385,219.2534 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M698.3746,222.327 L700.8437,219.3764 L698.7025,216.1798 L706.2226,219.6633 L698.3746,222.327 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="657" cy="218.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M449.5,198.5 L462.5,198.5 C479.6202,198.5 497.98,198.5 515.4252,198.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M515.4252,201.6773 L517.8082,198.5 L515.4252,195.3227 L523.3685,198.5 L515.4252,201.6773 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="449.5" cy="198.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M291,164.5 L304,164.5 C321.7337,164.5 340.7211,167.5943 357.7756,171.5609 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M357.0252,174.6362 L360.0821,172.1236 L358.5259,168.4855 L365.4639,173.4367 L357.0252,174.6362 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="291" cy="164.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M474,256.5 L487,256.5 C518.4295,256.5 554.9802,256.5 576.6253,256.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M576.6253,259.614 L578.9608,256.5 L576.6253,253.386 L584.4102,256.5 L576.6253,259.614 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="474" cy="256.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M841.5,287.5 L854.5,287.5 C863.4275,287.5 916.1794,275.5353 944.8946,268.865 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M945.5853,271.8272 L947.1163,268.347 L944.204,265.9029 L952.3,267.1384 L945.5853,271.8272 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="841.5" cy="287.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1012.5,300.5 L1025.5,300.5 C1041.6849,300.5 1059.2512,299.5155 1075.2381,298.2373 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1075.4973,301.3206 L1077.5506,298.0428 L1074.9789,295.154 L1082.9463,297.5892 L1075.4973,301.3206 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1012.5" cy="300.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1012.5,321.5 L1025.5,321.5 C1038.7681,321.5 1052.9572,322.2431 1066.4423,323.3024 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1066.1796,326.4408 L1068.7962,323.4994 L1066.7051,320.1639 L1074.2885,323.9593 L1066.1796,326.4408 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1012.5" cy="321.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M841.5,308.5 L854.5,308.5 C868.1568,308.5 882.7724,308.7382 896.722,309.0804 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M896.642,312.1488 L899.0232,309.1404 L896.8019,306.0121 L904.3929,309.2804 L896.642,312.1488 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="841.5" cy="308.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M633.5,292.5 L646.5,292.5 C663.6279,292.5 681.991,292.1645 699.4369,291.6878 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M699.5283,294.8651 L701.82,291.6193 L699.3456,288.5104 L707.3804,291.4595 L699.5283,294.8651 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="633.5" cy="292.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M841.5,366.5 L854.5,366.5 C886.2474,366.5 923.1415,364.3572 944.838,362.8771 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M945.0496,365.8887 L947.0966,362.7184 L944.6264,359.8656 L952.3668,362.3482 L945.0496,365.8887 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="841.5" cy="366.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1012.5,397.5 L1025.5,397.5 C1041.6977,397.5 1059.2678,396.3925 1075.2542,394.9544 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1075.5459,398.0375 L1077.5665,394.7357 L1074.9626,391.8713 L1082.9619,394.2253 L1075.5459,398.0375 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1012.5" cy="397.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1012.5,418.5 L1025.5,418.5 C1038.7577,418.5 1052.9423,419.1606 1066.4264,420.1021 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1066.1928,423.2405 L1068.7802,420.2773 L1066.66,416.9637 L1074.2724,420.686 L1066.1928,423.2405 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1012.5" cy="418.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M841.5,387.5 L854.5,387.5 C868.3214,387.5 882.9534,389.1482 896.8572,391.5211 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M896.3024,394.5769 L899.1491,391.9371 L897.412,388.4652 L904.4968,392.908 L896.3024,394.5769 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="841.5" cy="387.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M633.5,313.5 L646.5,313.5 C659.7689,313.5 685.012,322.8437 709.9716,333.7576 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M708.7262,336.5665 L712.0782,334.6917 L711.2169,330.9488 L716.9937,336.8711 L708.7262,336.5665 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="633.5" cy="313.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M474,277.5 L487,277.5 C504.4694,277.5 523.0962,280.7269 539.8967,284.9071 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M539.1048,287.939 L542.1706,285.5009 L540.6885,281.8751 L547.4766,286.8866 L539.1048,287.939 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="474" cy="277.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M291,184.5 L304,184.5 C325.7051,184.5 322.3733,204.8346 340,217.5 C342.3567,219.1934 344.7926,220.8685 347.2805,222.5176 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M345.5608,225.1929 L349.2871,223.8074 L349.0003,219.8422 L353.969,226.8169 L345.5608,225.1929 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="291" cy="184.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M144,131.5 L157,131.5 C166.3379,131.5 176.0555,132.6644 185.5091,134.4693 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M184.8792,137.4744 L187.7629,134.9417 L186.139,131.4642 L193.0218,136.0441 L184.8792,137.4744 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="144" cy="131.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="489px" preserveAspectRatio="none" style="width:1249px;height:489px;background:#FFFFFF;" version="1.1" viewBox="0 0 1249 489" width="1249px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="165" x="10" y="279"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="86" x="15" y="293.9951">default.net</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="158" y="293.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="153" x2="153" y1="279" y2="299.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="175" y1="299.2969" y2="299.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="133" x="15" y="314.292">www.default.net</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="158" y="314.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="153" x2="153" y1="299.2969" y2="319.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="165" x="10" y="279"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="37" x="212" y="245.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="5" x="217" y="260.4951">/</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="232" y="260.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="227" x2="227" y1="245.5" y2="265.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="37" x="212" y="245.5"/><rect fill="#F1F1F1" height="284.1563" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="157" x="286" y="13.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="291" y="28.4951">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="389" y="28.4951">default</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="13.5" y2="33.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="33.7969" y2="33.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="61" x="291" y="48.792">runtime</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="389" y="48.792">nodejs</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="33.7969" y2="54.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="54.0938" y2="54.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="32" x="291" y="69.0889">apis</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="389" y="69.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="54.0938" y2="74.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="74.3906" y2="74.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="54" x="291" y="89.3857">origins</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="389" y="89.3857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="74.3906" y2="94.6875"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="94.6875" y2="94.6875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="85" x="291" y="109.6826">minifyBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="389" y="109.6826">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="94.6875" y2="114.9844"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="114.9844" y2="114.9844"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="80" x="291" y="129.9795">iconsBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="389" y="129.9795">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="114.9844" y2="135.2813"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="135.2813" y2="135.2813"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="62" x="291" y="150.2764">liteBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="389" y="150.2764">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="135.2813" y2="155.5781"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="155.5781" y2="155.5781"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="76" x="291" y="170.5732">docsBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="389" y="170.5732">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="155.5781" y2="175.875"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="175.875" y2="175.875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="88" x="291" y="190.8701">offlineBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="389" y="190.8701">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="175.875" y2="196.1719"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="196.1719" y2="196.1719"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="23" x="291" y="211.167">ws</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="389" y="211.167">core</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="196.1719" y2="216.4688"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="216.4688" y2="216.4688"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="291" y="231.4639">peer</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="389" y="231.4639">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="216.4688" y2="236.7656"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="236.7656" y2="236.7656"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="45" x="291" y="251.7607">proxy</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="389" y="251.7607"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="236.7656" y2="257.0625"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="257.0625" y2="257.0625"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="20" x="291" y="272.0576">db</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="389" y="272.0576"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="257.0625" y2="277.3594"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="277.3594" y2="277.3594"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="291" y="292.3545">mailer</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="389" y="292.3545"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="277.3594" y2="297.6563"/><rect fill="none" height="284.1563" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="157" x="286" y="13.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="57" x="594" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="599" y="24.9951">default</text><line style="stroke:#000000;stroke-width:1.0;" x1="594" x2="651" y1="30.2969" y2="30.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="599" y="45.292">core</text><line style="stroke:#000000;stroke-width:1.0;" x1="594" x2="651" y1="50.5938" y2="50.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="599" y="65.5889">user</text><line style="stroke:#000000;stroke-width:1.0;" x1="594" x2="651" y1="70.8906" y2="70.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="599" y="85.8857">test</text><line style="stroke:#000000;stroke-width:1.0;" x1="594" x2="651" y1="91.1875" y2="91.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="19" x="599" y="106.1826">file</text><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="57" x="594" y="10"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="610.5" y="129.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="610.5" y="129.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="37" x="604" y="170"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="18" x="609" y="184.9951">80</text><line style="stroke:#000000;stroke-width:1.0;" x1="604" x2="641" y1="190.2969" y2="190.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="609" y="205.292">443</text><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="37" x="604" y="170"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="285" x="480" y="229"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="67" x="485" y="243.9951">provider</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="75" x="562" y="243.9951">mongoose</text><line style="stroke:#000000;stroke-width:1.0;" x1="557" x2="557" y1="229" y2="249.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="480" x2="765" y1="249.2969" y2="249.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="485" y="264.292">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="198" x="562" y="264.292">mongodb://127.0.0.1:27017</text><line style="stroke:#000000;stroke-width:1.0;" x1="557" x2="557" y1="249.2969" y2="269.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="480" x2="765" y1="269.5938" y2="269.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="485" y="284.5889">name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="562" y="284.5889">default</text><line style="stroke:#000000;stroke-width:1.0;" x1="557" x2="557" y1="269.5938" y2="289.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="285" x="480" y="229"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="106" x="569.5" y="308"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="56" x="574.5" y="322.9951">sender</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="658.5" y="322.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="653.5" x2="653.5" y1="308" y2="328.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="569.5" x2="675.5" y1="328.2969" y2="328.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="74" x="574.5" y="343.292">transport</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="658.5" y="343.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="653.5" x2="653.5" y1="328.2969" y2="348.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="106" x="569.5" y="308"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="202" x="802" y="268"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="41" x="807" y="282.9951">email</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="139" x="860" y="282.9951">noreply@default.net</text><line style="stroke:#000000;stroke-width:1.0;" x1="855" x2="855" y1="268" y2="288.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="802" x2="1004" y1="288.2969" y2="288.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="807" y="303.292">name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="860" y="303.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="855" x2="855" y1="288.2969" y2="308.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="202" x="802" y="268"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="195" x="805.5" y="327"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="810.5" y="341.9951">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="120" x="875.5" y="341.9951">smtp.default.com</text><line style="stroke:#000000;stroke-width:1.0;" x1="870.5" x2="870.5" y1="327" y2="347.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="805.5" x2="1000.5" y1="347.2969" y2="347.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="33" x="810.5" y="362.292">port</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="875.5" y="362.292">465</text><line style="stroke:#000000;stroke-width:1.0;" x1="870.5" x2="870.5" y1="347.2969" y2="367.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="805.5" x2="1000.5" y1="367.5938" y2="367.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="55" x="810.5" y="382.5889">secure</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="875.5" y="382.5889">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="870.5" x2="870.5" y1="367.5938" y2="387.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="805.5" x2="1000.5" y1="387.8906" y2="387.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="810.5" y="402.8857">auth</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="875.5" y="402.8857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="870.5" x2="870.5" y1="387.8906" y2="408.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="195" x="805.5" y="327"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="196" x="1041" y="377"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="36" x="1046" y="391.9951">user</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="139" x="1093" y="391.9951">noreply@default.net</text><line style="stroke:#000000;stroke-width:1.0;" x1="1088" x2="1088" y1="377" y2="397.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1041" x2="1237" y1="397.2969" y2="397.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="1046" y="412.292">pass</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="4" x="1093" y="412.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1088" x2="1088" y1="397.2969" y2="417.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="196" x="1041" y="377"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="37" x="212" y="333.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="5" x="217" y="348.4951">/</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="232" y="348.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="227" x2="227" y1="333.5" y2="353.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="37" x="212" y="333.5"/><rect fill="#F1F1F1" height="142.0781" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="154" x="287.5" y="325.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="292.5" y="340.4951">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="11" x="387.5" y="340.4951">␀</text><line style="stroke:#000000;stroke-width:1.0;" x1="382.5" x2="382.5" y1="325.5" y2="345.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="287.5" x2="441.5" y1="345.7969" y2="345.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="61" x="292.5" y="360.792">runtime</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="387.5" y="360.792">nodejs</text><line style="stroke:#000000;stroke-width:1.0;" x1="382.5" x2="382.5" y1="345.7969" y2="366.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="287.5" x2="441.5" y1="366.0938" y2="366.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="32" x="292.5" y="381.0889">apis</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="387.5" y="381.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="382.5" x2="382.5" y1="366.0938" y2="386.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="287.5" x2="441.5" y1="386.3906" y2="386.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="54" x="292.5" y="401.3857">origins</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="387.5" y="401.3857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="382.5" x2="382.5" y1="386.3906" y2="406.6875"/><line style="stroke:#000000;stroke-width:1.0;" x1="287.5" x2="441.5" y1="406.6875" y2="406.6875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="85" x="292.5" y="421.6826">minifyBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="387.5" y="421.6826">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="382.5" x2="382.5" y1="406.6875" y2="426.9844"/><line style="stroke:#000000;stroke-width:1.0;" x1="287.5" x2="441.5" y1="426.9844" y2="426.9844"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="62" x="292.5" y="441.9795">liteBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="387.5" y="441.9795">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="382.5" x2="382.5" y1="426.9844" y2="447.2813"/><line style="stroke:#000000;stroke-width:1.0;" x1="287.5" x2="441.5" y1="447.2813" y2="447.2813"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="45" x="292.5" y="462.2764">proxy</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="387.5" y="462.2764"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="382.5" x2="382.5" y1="447.2813" y2="467.5781"/><rect fill="none" height="142.0781" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="154" x="287.5" y="325.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="610.5" y="367.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="610.5" y="367.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="610.5" y="401.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="610.5" y="401.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="37" x="604" y="437"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="18" x="609" y="451.9951">80</text><line style="stroke:#000000;stroke-width:1.0;" x1="604" x2="641" y1="457.2969" y2="457.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="609" y="472.292">443</text><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="37" x="604" y="437"/><path d="M431,63.5 L444,63.5 C493.4225,63.5 550.5529,62.3295 586.4789,61.4508 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M586.5564,64.5607 L588.8113,61.3926 L586.4014,58.3408 L594.2538,61.257 L586.5564,64.5607 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="431" cy="63.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M431,83.5 L444,83.5 C466.6274,83.5 459.6821,109.541 480,119.5 C520.6179,139.4092 575.2683,140.1061 603.4587,138.8466 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M603.6241,141.8609 L605.7194,138.7225 L603.2933,135.8323 L610.9945,138.433 L603.6241,141.8609 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="431" cy="83.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M431,246.5 L444,246.5 C464,246.5 461.7585,227.7004 480,219.5 C518.3881,202.2427 567.2362,195.1562 596.4852,192.317 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M596.7625,195.399 L598.7968,192.1091 L596.208,189.235 L604.1903,191.6239 L596.7625,195.399 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="431" cy="246.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M431,266.5 L444,266.5 C453.2732,266.5 462.816,266.404 472.4381,266.2344 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M472.4986,269.3264 L474.7571,266.189 L472.3775,263.1424 L480.1681,266.0831 L472.4986,269.3264 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="431" cy="266.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M664,317.5 L677,317.5 C715.5088,317.5 757.4168,313.2882 794.5404,308.0748 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M794.991,311.2133 L796.8942,307.7369 L794.0898,304.9363 L802.3866,306.9483 L794.991,311.2133 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="664" cy="317.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M989.5,397.5 L1002.5,397.5 C1012.5698,397.5 1023.0589,397.5 1033.5483,397.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1033.5483,400.5528 L1035.8379,397.5 L1033.5483,394.4472 L1041.1802,397.5 L1033.5483,400.5528 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="989.5" cy="397.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M664,338.5 L677,338.5 C716.7801,338.5 760.1875,342.9945 798.2011,348.4447 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M797.7604,351.4559 L800.4595,348.7752 L798.6417,345.4334 L805.7292,349.5464 L797.7604,351.4559 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="664" cy="338.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M431,287.5 L444,287.5 C460.7302,287.5 463.7997,294.3224 480,298.5 C506.8701,305.4291 536.9008,311.9485 562.4,317.1283 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M561.8025,320.0928 L564.6235,317.5764 L562.9976,314.1637 L569.8114,318.6222 L561.8025,320.0928 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="431" cy="287.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M237,255.5 L250,255.5 C260.2799,255.5 270.0761,253.1736 279.2968,249.2304 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M280.6244,252.0054 L281.3781,248.2347 L277.9693,246.4554 L286.2344,245.9116 L280.6244,252.0054 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="237" cy="255.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M163,288.5 L176,288.5 C190.7397,288.5 204.8606,279.4373 214.9634,270.8105 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M217.0554,273.1068 L216.6856,269.2415 L212.8713,268.5143 L220.7041,265.5804 L217.0554,273.1068 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="163" cy="288.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M430,375.5 L443,375.5 C501.1954,375.5 570.0334,375.5 602.8032,375.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M602.8032,378.6551 L605.1696,375.5 L602.8032,372.3449 L610.691,375.5 L602.8032,378.6551 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="430" cy="375.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M430,395.5 L443,395.5 C501.6215,395.5 570.7141,403.0553 603.2573,407.0654 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M602.8828,410.0484 L605.4946,407.3463 L603.6319,404.0823 L610.7149,408.0018 L602.8828,410.0484 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="430" cy="395.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M430,457.5 L443,457.5 C497.8067,457.5 562.0527,457.5 596.7211,457.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M596.7211,460.599 L599.0454,457.5 L596.7211,454.401 L604.4687,457.5 L596.7211,460.599 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="430" cy="457.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M237,343.5 L250,343.5 C260.2744,343.5 270.625,345.2921 280.6762,348.2172 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M279.7479,351.1215 L282.8544,348.9135 L281.6045,345.313 L287.9368,350.538 L279.7479,351.1215 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="237" cy="343.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M163,309.5 L176,309.5 C191.046,309.5 205.3259,319.0693 215.4179,328.0545 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M213.2466,330.3392 L217.1315,329.683 L217.5892,325.7697 L221.1298,333.4828 L213.2466,330.3392 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="163" cy="309.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>
|