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="659px" preserveAspectRatio="none" style="width:1383px;height:659px;background:#FFFFFF;" version="1.1" viewBox="0 0 1383 659" width="1383px" 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="53"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="15" y="67.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="108" y="67.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="53" y2="73.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="156" y1="73.2969" y2="73.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="15" y="88.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="108" y="88.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="73.2969" y2="93.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="156" y1="93.5938" y2="93.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="15" y="108.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="108" y="108.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="93.5938" y2="113.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="10" y="53"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="225" y="67.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="225" y="67.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="88" x="193" y="101.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="56" x="198" y="116.4951">Default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="264" y="116.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="259" x2="259" y1="101.5" y2="121.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="88" x="193" y="101.5"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="318" y="81"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="323" y="95.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="416" y="95.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="411" x2="411" y1="81" y2="101.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="318" x2="464" y1="101.2969" y2="101.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="323" y="116.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="416" y="116.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="411" x2="411" y1="101.2969" y2="121.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="318" x2="464" y1="121.5938" y2="121.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="323" y="136.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="416" y="136.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="411" x2="411" 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="318" y="81"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="530" y="74.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="530" y="74.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="82" x="501" y="109"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="506" y="123.9951">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="566" y="123.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="561" x2="561" y1="109" y2="129.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="501" x2="583" y1="129.2969" y2="129.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="506" y="144.292">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="566" y="144.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="561" x2="561" y1="129.2969" y2="149.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="501" x2="583" y1="149.5938" y2="149.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="506" y="164.5889">mailer</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="566" y="164.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="561" x2="561" y1="149.5938" y2="169.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="501" x2="583" y1="169.8906" y2="169.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="50" x="506" y="184.8857">offline</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="566" y="184.8857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="561" x2="561" y1="169.8906" y2="190.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="501" x2="583" y1="190.1875" y2="190.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="506" y="205.1826">pages</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="566" y="205.1826"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="561" x2="561" y1="190.1875" y2="210.4844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="82" x="501" y="109"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="645" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="650" y="24.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="703" y="24.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="10" y2="30.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="645" x2="741" y1="30.2969" y2="30.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="650" y="45.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="703" y="45.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="30.2969" y2="50.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="645" y="10"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="842.5" y="30.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="847.5" y="45.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="892.5" y="45.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="887.5" x2="887.5" y1="30.5" y2="50.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="842.5" y="30.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="645" y="69"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="650" y="83.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="703" y="83.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="69" y2="89.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="645" x2="741" y1="89.2969" y2="89.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="650" y="104.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="703" y="104.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="89.2969" y2="109.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="645" y="69"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="842.5" y="85.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="847.5" y="100.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="892.5" y="100.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="887.5" x2="887.5" y1="85.5" y2="105.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="842.5" y="85.5"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="620" y="128"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="625" y="142.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="718" y="142.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="713" x2="713" y1="128" y2="148.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="620" x2="766" y1="148.2969" y2="148.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="625" y="163.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="718" y="163.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="713" x2="713" y1="148.2969" y2="168.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="620" x2="766" y1="168.5938" y2="168.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="625" y="183.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="718" y="183.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="713" x2="713" y1="168.5938" y2="188.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="620" y="128"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="877.5" y="123.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="877.5" y="123.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="173" x="803" y="158"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="123" x="808" y="172.9951">userVerifyEmail</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="959" y="172.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="954" x2="954" y1="158" y2="178.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="803" x2="976" y1="178.2969" y2="178.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="141" x="808" y="193.292">userRecoverEmail</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="959" y="193.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="954" x2="954" y1="178.2969" y2="198.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="173" x="803" y="158"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1013" y="140.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1018" y="155.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1063" y="155.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1058" x2="1058" y1="140.5" y2="160.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1013" y="140.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1013" y="178.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1018" y="193.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1063" y="193.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1058" x2="1058" y1="178.5" y2="198.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1013" y="178.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="645" y="212"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="650" y="226.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="703" y="226.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="212" y2="232.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="645" x2="741" y1="232.2969" y2="232.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="650" y="247.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="703" y="247.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="232.2969" y2="252.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="645" y="212"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="816.5" y="217"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="821.5" y="231.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="914.5" y="231.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="909.5" x2="909.5" y1="217" y2="237.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="816.5" x2="962.5" y1="237.2969" y2="237.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="821.5" y="252.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="914.5" y="252.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="909.5" x2="909.5" y1="237.2969" y2="257.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="816.5" x2="962.5" y1="257.5938" y2="257.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="821.5" y="272.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="914.5" y="272.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="909.5" x2="909.5" y1="257.5938" y2="277.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="816.5" y="217"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="1048" y="216.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="1048" y="216.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="75" x="1022.5" y="251"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1027.5" y="265.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1080.5" y="265.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1075.5" x2="1075.5" y1="251" y2="271.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1022.5" x2="1097.5" y1="271.2969" y2="271.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1027.5" y="286.292">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1080.5" y="286.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1075.5" x2="1075.5" y1="271.2969" y2="291.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1022.5" x2="1097.5" y1="291.5938" y2="291.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1027.5" y="306.5889">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1080.5" y="306.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1075.5" x2="1075.5" y1="291.5938" y2="311.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="1022.5" x2="1097.5" y1="311.8906" y2="311.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="1027.5" y="326.8857">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1080.5" y="326.8857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1075.5" x2="1075.5" y1="311.8906" y2="332.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="1022.5" x2="1097.5" y1="332.1875" y2="332.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="1027.5" y="347.1826">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1080.5" y="347.1826"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1075.5" x2="1075.5" y1="332.1875" y2="352.4844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="75" x="1022.5" y="251"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1145" y="200.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1150" y="215.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1195" y="215.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1190" x2="1190" y1="200.5" y2="220.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1145" y="200.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1145" y="238.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1150" y="253.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1195" y="253.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1190" x2="1190" y1="238.5" y2="258.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1145" y="238.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1145" y="276.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1150" y="291.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1195" y="291.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1190" x2="1190" y1="276.5" y2="296.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1145" y="276.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1144" y="315"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1149" y="329.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1202" y="329.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1197" x2="1197" y1="315" y2="335.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1144" x2="1240" y1="335.2969" y2="335.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1149" y="350.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1202" y="350.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1197" x2="1197" y1="335.2969" y2="355.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1144" y="315"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1277" y="335.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1282" y="350.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1327" y="350.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1322" x2="1322" y1="335.5" y2="355.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1277" y="335.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1144" y="374"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1149" y="388.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1202" y="388.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1197" x2="1197" y1="374" y2="394.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1144" x2="1240" y1="394.2969" y2="394.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1149" y="409.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1202" y="409.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1197" x2="1197" y1="394.2969" y2="414.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1144" y="374"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1277" y="394.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1282" y="409.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1327" y="409.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1322" x2="1322" y1="394.5" y2="414.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1277" y="394.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="645" y="320"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="650" y="334.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="703" y="334.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="320" y2="340.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="645" x2="741" y1="340.2969" y2="340.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="650" y="355.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="703" y="355.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="340.2969" y2="360.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="645" y="320"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="816.5" y="374"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="821.5" y="388.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="914.5" y="388.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="909.5" x2="909.5" y1="374" y2="394.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="816.5" x2="962.5" y1="394.2969" y2="394.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="821.5" y="409.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="914.5" y="409.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="909.5" x2="909.5" y1="394.2969" y2="414.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="816.5" x2="962.5" y1="414.5938" y2="414.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="821.5" y="429.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="914.5" y="429.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="909.5" x2="909.5" y1="414.5938" y2="434.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="816.5" y="374"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="1048" y="395.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="1048" y="395.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="75" x="1022.5" y="461"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1027.5" y="475.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1080.5" y="475.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1075.5" x2="1075.5" y1="461" y2="481.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1022.5" x2="1097.5" y1="481.2969" y2="481.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1027.5" y="496.292">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1080.5" y="496.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1075.5" x2="1075.5" y1="481.2969" y2="501.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1022.5" x2="1097.5" y1="501.5938" y2="501.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1027.5" y="516.5889">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1080.5" y="516.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1075.5" x2="1075.5" y1="501.5938" y2="521.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="1022.5" x2="1097.5" y1="521.8906" y2="521.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="1027.5" y="536.8857">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1080.5" y="536.8857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1075.5" x2="1075.5" y1="521.8906" y2="542.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="1022.5" x2="1097.5" y1="542.1875" y2="542.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="1027.5" y="557.1826">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1080.5" y="557.1826"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1075.5" x2="1075.5" y1="542.1875" y2="562.4844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="75" x="1022.5" y="461"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1145" y="433.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1150" y="448.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1195" y="448.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1190" x2="1190" y1="433.5" y2="453.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1145" y="433.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1145" y="471.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1150" y="486.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1195" y="486.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1190" x2="1190" y1="471.5" y2="491.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1145" y="471.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1145" y="509.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1150" y="524.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1195" y="524.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1190" x2="1190" y1="509.5" y2="529.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1145" y="509.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1144" y="548"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1149" y="562.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1202" y="562.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1197" x2="1197" y1="548" y2="568.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1144" x2="1240" y1="568.2969" y2="568.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1149" y="583.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1202" y="583.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1197" x2="1197" y1="568.2969" y2="588.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1144" y="548"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1277" y="568.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1282" y="583.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1327" y="583.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1322" x2="1322" y1="568.5" y2="588.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1277" y="568.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1144" y="607"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1149" y="621.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1202" y="621.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1197" x2="1197" y1="607" y2="627.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1144" x2="1240" y1="627.2969" y2="627.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1149" y="642.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1202" y="642.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1197" x2="1197" y1="627.2969" y2="647.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1144" y="607"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1277" y="627.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1282" y="642.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1327" y="642.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1322" x2="1322" y1="627.5" y2="647.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1277" y="627.5"/><path d="M144,82.5 L157,82.5 C177.8839,82.5 201.7351,80.0734 217.82,78.0777 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M218.2157,81.1363 L220.114,77.7809 L217.4243,75.019 L225.4665,77.0884 L218.2157,81.1363 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="144" cy="82.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M452,110.5 L465,110.5 C470.9831,110.5 502.482,98.2658 523.15,89.9713 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M524.289,92.7942 L525.2671,89.117 L522.0109,87.1484 L530.2071,87.1236 L524.289,92.7942 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="452" cy="110.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M729.5,40.5 L742.5,40.5 C773.1877,40.5 807.4914,40.5 835.1856,40.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M835.1856,43.551 L837.4738,40.5 L835.1856,37.449 L842.813,40.5 L835.1856,43.551 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="729.5" cy="40.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M571,118.5 L584,118.5 C614.7182,118.5 596.5395,79.3295 620,59.5 C625.3984,54.9371 631.6053,51.0299 638.0674,47.7006 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M639.4232,50.535 L640.1932,46.6837 L636.7115,44.8661 L645.1534,44.311 L639.4232,50.535 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="571" cy="118.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M729.5,99.5 L742.5,99.5 C773.1992,99.5 807.5035,98.6115 835.1952,97.6719 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M835.3014,100.7226 L837.4832,97.5922 L835.0889,94.6213 L842.8218,97.4063 L835.3014,100.7226 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="729.5" cy="99.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M571,138.5 L584,138.5 C602.3033,138.5 603.4698,126.359 620,118.5 C625.8078,115.7388 631.9527,113.0051 638.1103,110.3835 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M639.3186,113.2695 L640.2747,109.4773 L636.9019,107.4976 L645.3251,107.3627 L639.3186,113.2695 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="571" cy="138.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M754,157.5 L767,157.5 C783.4924,157.5 786.9053,152.1002 803,148.5 C825.9748,143.3607 852.5846,138.2253 870.0481,134.9655 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M870.6246,138.0784 L872.3827,134.533 L869.4715,131.8526 L877.8303,133.5241 L870.6246,138.0784 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="754" cy="157.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M964,167.5 L977,167.5 C990.6916,167.5 1005.4031,165.2262 1018.5573,162.3418 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1019.2599,165.36 L1020.821,161.8149 L1017.8548,159.3235 L1026.1029,160.5854 L1019.2599,165.36 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="964" cy="167.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M964,188.5 L977,188.5 C986.2674,188.5 996.1203,188.5 1005.6708,188.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1005.6708,191.531 L1007.9441,188.5 L1005.6708,185.469 L1013.2484,188.5 L1005.6708,191.531 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="964" cy="188.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M754,178.5 L767,178.5 C776.2756,178.5 785.9479,178.5 795.6097,178.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M795.6097,181.5954 L797.9312,178.5 L795.6097,175.4046 L803.3482,178.5 L795.6097,181.5954 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="754" cy="178.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M571,158.5 L584,158.5 C593.2896,158.5 603.0267,158.5 612.694,158.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M612.694,161.5913 L615.0124,158.5 L612.694,155.4087 L620.4221,158.5 L612.694,161.5913 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="571" cy="158.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M951,246.5 L964,246.5 C991.3655,246.5 1022.0419,237.8158 1041.0667,231.3596 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1042.072,234.224 L1043.215,230.6057 L1040.0614,228.4953 L1048.2276,228.8465 L1042.072,234.224 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="951" cy="246.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1086.5,260.5 L1099.5,260.5 C1123.6037,260.5 1122.7836,240.9391 1144,229.5 C1147.9065,227.3938 1152.0977,225.3859 1156.3136,223.5182 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1157.515,226.3472 L1158.4353,222.6172 L1155.1122,220.6892 L1163.3861,220.5148 L1157.515,226.3472 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1086.5" cy="260.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1086.5,280.5 L1099.5,280.5 C1105.6302,280.5 1134.3311,270.2339 1158.0677,261.3312 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1159.1502,264.2019 L1160.2207,260.5194 L1156.9852,258.4606 L1165.2443,258.625 L1159.1502,264.2019 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1086.5" cy="280.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1086.5,300.5 L1099.5,300.5 C1111.9427,300.5 1125.2254,299.2329 1137.7165,297.4611 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1138.1812,300.5254 L1140.0147,297.1127 L1137.2519,294.3969 L1145.3771,296.2995 L1138.1812,300.5254 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1086.5" cy="300.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1228,345.5 L1241,345.5 C1250.2674,345.5 1260.1203,345.5 1269.6708,345.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1269.6708,348.531 L1271.9441,345.5 L1269.6708,342.469 L1277.2484,345.5 L1269.6708,348.531 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1228" cy="345.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1086.5,321.5 L1099.5,321.5 C1111.6751,321.5 1124.6545,322.7132 1136.9096,324.4253 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1136.4599,327.4346 L1139.1665,324.7625 L1137.3592,321.416 L1144.4328,325.5494 L1136.4599,327.4346 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1086.5" cy="321.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1228,404.5 L1241,404.5 C1250.2674,404.5 1260.1203,404.5 1269.6708,404.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1269.6708,407.531 L1271.9441,404.5 L1269.6708,401.469 L1277.2484,404.5 L1269.6708,407.531 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1228" cy="404.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1086.5,341.5 L1099.5,341.5 C1102.596,341.5 1127.7871,356.101 1151.0262,369.9757 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1149.4737,372.5688 L1152.9711,371.1401 L1152.5788,367.3825 L1157.5091,373.8571 L1149.4737,372.5688 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1086.5" cy="341.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M951,267.5 L964,267.5 C981.5512,267.5 999.9205,272.6597 1015.8072,278.959 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1014.6231,281.8041 L1017.941,279.847 L1016.9912,276.1139 L1022.9199,281.9191 L1014.6231,281.8041 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="951" cy="267.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M729.5,242.5 L742.5,242.5 C764.1265,242.5 787.5384,243.051 809.1673,243.7871 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M809.0603,246.8152 L811.4383,243.8674 L809.2743,240.7591 L816.7374,244.0546 L809.0603,246.8152 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="729.5" cy="242.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M571,179.5 L584,179.5 C601.8885,179.5 603.9448,189.6113 620,197.5 C627.2992,201.0865 635.0259,204.8508 642.6085,208.5268 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M641.2711,211.2895 L644.6805,209.5298 L643.9459,205.7641 L649.5153,211.8702 L641.2711,211.2895 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="571" cy="179.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M951,403.5 L964,403.5 C990.5744,403.5 1021.3084,403.5 1040.5761,403.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1040.5761,406.6 L1042.9011,403.5 L1040.5761,400.4 L1048.3261,403.5 L1040.5761,406.6 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="951" cy="403.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1086.5,470.5 L1099.5,470.5 C1110.6677,470.5 1135.403,463.0825 1156.4152,456.0231 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1157.4029,458.9226 L1158.5898,455.2823 L1155.4275,453.1236 L1163.6639,453.5538 L1157.4029,458.9226 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1086.5" cy="470.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1086.5,490.5 L1099.5,490.5 C1111.8598,490.5 1125.1095,489.6854 1137.595,488.5464 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1137.8937,491.6106 L1139.8931,488.3224 L1137.2963,485.4823 L1145.2554,487.7997 L1137.8937,491.6106 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1086.5" cy="490.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1086.5,510.5 L1099.5,510.5 C1111.8598,510.5 1125.1095,511.3146 1137.595,512.4536 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1137.2963,515.5177 L1139.8931,512.6776 L1137.8937,509.3894 L1145.2554,513.2003 L1137.2963,515.5177 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1086.5" cy="510.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1228,578.5 L1241,578.5 C1250.2674,578.5 1260.1203,578.5 1269.6708,578.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1269.6708,581.531 L1271.9441,578.5 L1269.6708,575.469 L1277.2484,578.5 L1269.6708,581.531 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1228" cy="578.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1086.5,531.5 L1099.5,531.5 C1117.1163,531.5 1135.3488,537.4117 1150.8903,544.509 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1149.5593,547.2848 L1152.9721,545.5073 L1152.2212,541.7333 L1157.8297,547.8364 L1149.5593,547.2848 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1086.5" cy="531.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1228,637.5 L1241,637.5 C1250.2674,637.5 1260.1203,637.5 1269.6708,637.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1269.6708,640.531 L1271.9441,637.5 L1269.6708,634.469 L1277.2484,637.5 L1269.6708,640.531 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1228" cy="637.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1086.5,551.5 L1099.5,551.5 C1127.9453,551.5 1121.9291,579.5554 1144,597.5 C1146.1308,599.2325 1148.3675,600.9467 1150.661,602.6258 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1148.9206,605.0939 L1152.5121,603.9312 L1152.4015,600.1578 L1156.8311,606.9769 L1148.9206,605.0939 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1086.5" cy="551.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M951,424.5 L964,424.5 C986.9715,424.5 1006.8484,438.4259 1022.4299,455.1347 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1020.1271,457.1818 L1023.9652,456.8618 L1024.7327,453.0876 L1027.5476,460.8917 L1020.1271,457.1818 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="951" cy="424.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M729.5,350.5 L742.5,350.5 C771.3656,350.5 801.5658,359.8437 826.9956,370.7576 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M825.7502,373.574 L829.1079,371.6917 L828.241,367.9413 L834.0366,373.8711 L825.7502,373.574 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="729.5" cy="350.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M572.5,198.5 L572.5,211.5 C572.5,257.0946 613.1854,293.3288 647.1759,315.6445 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M645.4654,318.3225 L649.1843,316.9274 L648.8864,312.9666 L653.8707,319.9208 L645.4654,318.3225 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="572.5" cy="198.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M452,131.5 L465,131.5 C474.5973,131.5 484.4818,133.4674 493.827,136.3592 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M492.828,139.3045 L496.036,137.1085 L494.826,133.414 L501.1902,138.8567 L492.828,139.3045 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="452" cy="131.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M269,111.5 L282,111.5 C291.2896,111.5 301.0267,111.5 310.694,111.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M310.694,114.5913 L313.0124,111.5 L310.694,108.4087 L318.4221,111.5 L310.694,114.5913 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="269" cy="111.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M144,103.5 L157,103.5 C166.3039,103.5 176.1895,104.0491 185.7135,104.8596 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M185.4333,107.8766 L187.9763,105.0698 L185.9938,101.8426 L193.2561,105.5602 L185.4333,107.8766 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="144" cy="103.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
|
3
|
+
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
|
4
|
+
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="269.000000pt" height="269.000000pt" viewBox="0 0 269.000000 269.000000"
|
|
6
|
+
preserveAspectRatio="xMidYMid meet">
|
|
7
|
+
<metadata>
|
|
8
|
+
Created by potrace 1.11, written by Peter Selinger 2001-2013
|
|
9
|
+
</metadata>
|
|
10
|
+
<g transform="translate(0.000000,269.000000) scale(0.100000,-0.100000)"
|
|
11
|
+
fill="#000000" stroke="none">
|
|
12
|
+
<path d="M980 2475 l0 -65 65 0 65 0 0 65 0 65 -65 0 -65 0 0 -65z"/>
|
|
13
|
+
<path d="M1700 2475 l0 -65 65 0 65 0 0 65 0 65 -65 0 -65 0 0 -65z"/>
|
|
14
|
+
<path d="M1110 2325 l0 -65 -85 0 -85 0 0 -140 0 -140 -60 0 -60 0 0 -160 0
|
|
15
|
+
-160 75 0 75 0 0 -100 0 -100 95 0 95 0 0 -40 0 -40 -240 0 -240 0 0 -445 0
|
|
16
|
+
-445 -65 0 -65 0 0 -135 0 -135 65 0 65 0 0 -55 0 -55 65 0 65 0 0 475 0 475
|
|
17
|
+
85 0 85 0 0 -425 0 -425 425 0 425 0 0 425 0 425 85 0 85 0 0 -475 0 -475 65
|
|
18
|
+
0 65 0 0 55 0 55 60 0 60 0 0 135 0 135 -60 0 -60 0 0 445 0 445 -240 0 -240
|
|
19
|
+
0 0 35 0 35 95 0 95 0 0 105 0 105 75 0 75 0 0 160 0 160 -60 0 -60 0 0 140 0
|
|
20
|
+
140 -85 0 -85 0 0 65 0 65 -75 0 -75 0 0 -65 0 -65 -145 0 -145 0 0 65 0 65
|
|
21
|
+
-75 0 -75 0 0 -65z m210 -505 l0 -110 -110 0 -110 0 0 110 0 110 110 0 110 0
|
|
22
|
+
0 -110z m390 0 l0 -70 -70 0 -70 0 0 70 0 70 70 0 70 0 0 -70z"/>
|
|
23
|
+
</g>
|
|
24
|
+
</svg>
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Default",
|
|
3
|
+
"short_name": "Default",
|
|
4
|
+
"description": null,
|
|
5
|
+
"dir": "auto",
|
|
6
|
+
"lang": "en-US",
|
|
7
|
+
"display": "standalone",
|
|
8
|
+
"orientation": "any",
|
|
9
|
+
"scope": "/",
|
|
10
|
+
"start_url": "/?homescreen=1",
|
|
11
|
+
"background_color": "#fff",
|
|
12
|
+
"theme_color": "#fff",
|
|
13
|
+
"icons": [
|
|
14
|
+
{
|
|
15
|
+
"src": "/android-chrome-36x36.png",
|
|
16
|
+
"sizes": "36x36",
|
|
17
|
+
"type": "image/png",
|
|
18
|
+
"purpose": "any maskable"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"src": "/android-chrome-48x48.png",
|
|
22
|
+
"sizes": "48x48",
|
|
23
|
+
"type": "image/png",
|
|
24
|
+
"purpose": "any maskable"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"src": "/android-chrome-72x72.png",
|
|
28
|
+
"sizes": "72x72",
|
|
29
|
+
"type": "image/png",
|
|
30
|
+
"purpose": "any maskable"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"src": "/android-chrome-96x96.png",
|
|
34
|
+
"sizes": "96x96",
|
|
35
|
+
"type": "image/png",
|
|
36
|
+
"purpose": "any maskable"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"src": "/android-chrome-144x144.png",
|
|
40
|
+
"sizes": "144x144",
|
|
41
|
+
"type": "image/png",
|
|
42
|
+
"purpose": "any maskable"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"src": "/android-chrome-192x192.png",
|
|
46
|
+
"sizes": "192x192",
|
|
47
|
+
"type": "image/png",
|
|
48
|
+
"purpose": "any maskable"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"src": "/android-chrome-256x256.png",
|
|
52
|
+
"sizes": "256x256",
|
|
53
|
+
"type": "image/png",
|
|
54
|
+
"purpose": "any maskable"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"src": "/android-chrome-384x384.png",
|
|
58
|
+
"sizes": "384x384",
|
|
59
|
+
"type": "image/png",
|
|
60
|
+
"purpose": "any maskable"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"src": "/android-chrome-512x512.png",
|
|
64
|
+
"sizes": "512x512",
|
|
65
|
+
"type": "image/png",
|
|
66
|
+
"purpose": "any maskable"
|
|
67
|
+
}
|
|
68
|
+
]
|
|
69
|
+
}
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<xsl:stylesheet version="2.0"
|
|
3
|
+
xmlns:html="http://www.w3.org/TR/REC-html40"
|
|
4
|
+
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"
|
|
5
|
+
xmlns:sitemap="http://www.sitemaps.org/schemas/sitemap/0.9"
|
|
6
|
+
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
7
|
+
<xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes" />
|
|
8
|
+
<xsl:template match="/">
|
|
9
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
10
|
+
<head>
|
|
11
|
+
<title>XML Sitemap</title>
|
|
12
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
13
|
+
<style type="text/css">
|
|
14
|
+
body {
|
|
15
|
+
font-family: sans-serif;
|
|
16
|
+
font-size: 16px;
|
|
17
|
+
color: #242628;
|
|
18
|
+
}
|
|
19
|
+
a {
|
|
20
|
+
color: #000;
|
|
21
|
+
text-decoration: none;
|
|
22
|
+
}
|
|
23
|
+
a:hover {
|
|
24
|
+
text-decoration: underline;
|
|
25
|
+
}
|
|
26
|
+
table {
|
|
27
|
+
border: none;
|
|
28
|
+
border-collapse: collapse;
|
|
29
|
+
width: 100%
|
|
30
|
+
}
|
|
31
|
+
th {
|
|
32
|
+
text-align: left;
|
|
33
|
+
padding-right: 30px;
|
|
34
|
+
font-size: 11px;
|
|
35
|
+
}
|
|
36
|
+
thead th {
|
|
37
|
+
border-bottom: 1px solid #7d878a;
|
|
38
|
+
cursor: pointer;
|
|
39
|
+
}
|
|
40
|
+
td {
|
|
41
|
+
font-size:11px;
|
|
42
|
+
padding: 5px;
|
|
43
|
+
}
|
|
44
|
+
tr:nth-child(odd) td {
|
|
45
|
+
background-color: rgba(0,0,0,0.04);
|
|
46
|
+
}
|
|
47
|
+
tr:hover td {
|
|
48
|
+
background-color: #e2edf2;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
#content {
|
|
52
|
+
margin: 0 auto;
|
|
53
|
+
padding: 2% 5%;
|
|
54
|
+
max-width: 800px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.desc {
|
|
58
|
+
margin: 18px 3px;
|
|
59
|
+
line-height: 1.2em;
|
|
60
|
+
}
|
|
61
|
+
.desc a {
|
|
62
|
+
color: #5ba4e5;
|
|
63
|
+
}
|
|
64
|
+
</style>
|
|
65
|
+
</head>
|
|
66
|
+
<body>
|
|
67
|
+
<div id="content">
|
|
68
|
+
<h1>XML Sitemap</h1>
|
|
69
|
+
<p class="desc"> This is a sitemap generated by <a
|
|
70
|
+
href="https://www.nexodev.org">nexodev.org</a>
|
|
71
|
+
</p>
|
|
72
|
+
<xsl:if test="count(sitemap:sitemapindex/sitemap:sitemap) > 0">
|
|
73
|
+
<table id="sitemap" cellpadding="3">
|
|
74
|
+
<thead>
|
|
75
|
+
<tr>
|
|
76
|
+
<th width="75%">Sitemap</th>
|
|
77
|
+
<th width="25%">Last Modified</th>
|
|
78
|
+
</tr>
|
|
79
|
+
</thead>
|
|
80
|
+
<tbody>
|
|
81
|
+
<xsl:for-each select="sitemap:sitemapindex/sitemap:sitemap">
|
|
82
|
+
<xsl:variable name="sitemapURL">
|
|
83
|
+
<xsl:value-of select="sitemap:loc" />
|
|
84
|
+
</xsl:variable>
|
|
85
|
+
<tr>
|
|
86
|
+
<td>
|
|
87
|
+
<a href="{$sitemapURL}">
|
|
88
|
+
<xsl:value-of select="sitemap:loc" />
|
|
89
|
+
</a>
|
|
90
|
+
</td>
|
|
91
|
+
<td>
|
|
92
|
+
<xsl:value-of
|
|
93
|
+
select="concat(substring(sitemap:lastmod,0,11),concat(' ', substring(sitemap:lastmod,12,5)))" />
|
|
94
|
+
</td>
|
|
95
|
+
</tr>
|
|
96
|
+
</xsl:for-each>
|
|
97
|
+
</tbody>
|
|
98
|
+
</table>
|
|
99
|
+
</xsl:if>
|
|
100
|
+
<xsl:if test="count(sitemap:sitemapindex/sitemap:sitemap) < 1">
|
|
101
|
+
<p class="desc">
|
|
102
|
+
<a href="{{web-url}}sitemap.xml" class="back-link">← Back to index</a>
|
|
103
|
+
</p>
|
|
104
|
+
<table
|
|
105
|
+
id="sitemap" cellpadding="3">
|
|
106
|
+
<thead>
|
|
107
|
+
<tr>
|
|
108
|
+
<th width="70%">URL (<xsl:value-of
|
|
109
|
+
select="count(sitemap:urlset/sitemap:url)" /> total)</th>
|
|
110
|
+
<th width="15%">Images</th>
|
|
111
|
+
<th title="Last Modification Time" width="15%">Last Modified</th>
|
|
112
|
+
</tr>
|
|
113
|
+
</thead>
|
|
114
|
+
<tbody>
|
|
115
|
+
<xsl:variable name="lower" select="'abcdefghijklmnopqrstuvwxyz'" />
|
|
116
|
+
<xsl:variable name="upper" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'" />
|
|
117
|
+
<xsl:for-each select="sitemap:urlset/sitemap:url">
|
|
118
|
+
<tr>
|
|
119
|
+
<td>
|
|
120
|
+
<xsl:variable name="itemURL">
|
|
121
|
+
<xsl:value-of select="sitemap:loc" />
|
|
122
|
+
</xsl:variable>
|
|
123
|
+
<a href="{$itemURL}">
|
|
124
|
+
<xsl:value-of select="sitemap:loc" />
|
|
125
|
+
</a>
|
|
126
|
+
</td>
|
|
127
|
+
<td>
|
|
128
|
+
<xsl:value-of select="count(image:image)" />
|
|
129
|
+
</td>
|
|
130
|
+
<td>
|
|
131
|
+
<xsl:value-of
|
|
132
|
+
select="concat(substring(sitemap:lastmod,0,11),concat(' ', substring(sitemap:lastmod,12,5)))" />
|
|
133
|
+
</td>
|
|
134
|
+
</tr>
|
|
135
|
+
</xsl:for-each>
|
|
136
|
+
</tbody>
|
|
137
|
+
</table>
|
|
138
|
+
<p
|
|
139
|
+
class="desc">
|
|
140
|
+
<a href="{{web-url}}sitemap.xml" class="back-link">← Back to index</a>
|
|
141
|
+
</p>
|
|
142
|
+
</xsl:if>
|
|
143
|
+
</div>
|
|
144
|
+
</body>
|
|
145
|
+
</html>
|
|
146
|
+
|
|
147
|
+
</xsl:template>
|
|
148
|
+
</xsl:stylesheet>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<xsl:stylesheet version="2.0"
|
|
3
|
+
xmlns:html="http://www.w3.org/TR/REC-html40"
|
|
4
|
+
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"
|
|
5
|
+
xmlns:sitemap="http://www.sitemaps.org/schemas/sitemap/0.9"
|
|
6
|
+
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
7
|
+
<xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes" />
|
|
8
|
+
<xsl:template match="/">
|
|
9
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
10
|
+
<head>
|
|
11
|
+
<title>XML Sitemap</title>
|
|
12
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
13
|
+
<style type="text/css">
|
|
14
|
+
body {
|
|
15
|
+
font-family: sans-serif;
|
|
16
|
+
font-size: 16px;
|
|
17
|
+
color: #242628;
|
|
18
|
+
}
|
|
19
|
+
a {
|
|
20
|
+
color: #000;
|
|
21
|
+
text-decoration: none;
|
|
22
|
+
}
|
|
23
|
+
a:hover {
|
|
24
|
+
text-decoration: underline;
|
|
25
|
+
}
|
|
26
|
+
table {
|
|
27
|
+
border: none;
|
|
28
|
+
border-collapse: collapse;
|
|
29
|
+
width: 100%
|
|
30
|
+
}
|
|
31
|
+
th {
|
|
32
|
+
text-align: left;
|
|
33
|
+
padding-right: 30px;
|
|
34
|
+
font-size: 11px;
|
|
35
|
+
}
|
|
36
|
+
thead th {
|
|
37
|
+
border-bottom: 1px solid #7d878a;
|
|
38
|
+
cursor: pointer;
|
|
39
|
+
}
|
|
40
|
+
td {
|
|
41
|
+
font-size:11px;
|
|
42
|
+
padding: 5px;
|
|
43
|
+
}
|
|
44
|
+
tr:nth-child(odd) td {
|
|
45
|
+
background-color: rgba(0,0,0,0.04);
|
|
46
|
+
}
|
|
47
|
+
tr:hover td {
|
|
48
|
+
background-color: #e2edf2;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
#content {
|
|
52
|
+
margin: 0 auto;
|
|
53
|
+
padding: 2% 5%;
|
|
54
|
+
max-width: 800px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.desc {
|
|
58
|
+
margin: 18px 3px;
|
|
59
|
+
line-height: 1.2em;
|
|
60
|
+
}
|
|
61
|
+
.desc a {
|
|
62
|
+
color: #5ba4e5;
|
|
63
|
+
}
|
|
64
|
+
</style>
|
|
65
|
+
</head>
|
|
66
|
+
<body>
|
|
67
|
+
<div id="content">
|
|
68
|
+
<h1>XML Sitemap</h1>
|
|
69
|
+
<p class="desc"> This is a sitemap generated by <a
|
|
70
|
+
href="https://www.nexodev.org">nexodev.org</a>
|
|
71
|
+
</p>
|
|
72
|
+
<xsl:if test="count(sitemap:sitemapindex/sitemap:sitemap) > 0">
|
|
73
|
+
<table id="sitemap" cellpadding="3">
|
|
74
|
+
<thead>
|
|
75
|
+
<tr>
|
|
76
|
+
<th width="75%">Sitemap</th>
|
|
77
|
+
<th width="25%">Last Modified</th>
|
|
78
|
+
</tr>
|
|
79
|
+
</thead>
|
|
80
|
+
<tbody>
|
|
81
|
+
<xsl:for-each select="sitemap:sitemapindex/sitemap:sitemap">
|
|
82
|
+
<xsl:variable name="sitemapURL">
|
|
83
|
+
<xsl:value-of select="sitemap:loc" />
|
|
84
|
+
</xsl:variable>
|
|
85
|
+
<tr>
|
|
86
|
+
<td>
|
|
87
|
+
<a href="{$sitemapURL}">
|
|
88
|
+
<xsl:value-of select="sitemap:loc" />
|
|
89
|
+
</a>
|
|
90
|
+
</td>
|
|
91
|
+
<td>
|
|
92
|
+
<xsl:value-of
|
|
93
|
+
select="concat(substring(sitemap:lastmod,0,11),concat(' ', substring(sitemap:lastmod,12,5)))" />
|
|
94
|
+
</td>
|
|
95
|
+
</tr>
|
|
96
|
+
</xsl:for-each>
|
|
97
|
+
</tbody>
|
|
98
|
+
</table>
|
|
99
|
+
</xsl:if>
|
|
100
|
+
<xsl:if test="count(sitemap:sitemapindex/sitemap:sitemap) < 1">
|
|
101
|
+
<p class="desc">
|
|
102
|
+
<a href="{{web-url}}sitemap.xml" class="back-link">← Back to index</a>
|
|
103
|
+
</p>
|
|
104
|
+
<table
|
|
105
|
+
id="sitemap" cellpadding="3">
|
|
106
|
+
<thead>
|
|
107
|
+
<tr>
|
|
108
|
+
<th width="70%">URL (<xsl:value-of
|
|
109
|
+
select="count(sitemap:urlset/sitemap:url)" /> total)</th>
|
|
110
|
+
<th width="15%">Images</th>
|
|
111
|
+
<th title="Last Modification Time" width="15%">Last Modified</th>
|
|
112
|
+
</tr>
|
|
113
|
+
</thead>
|
|
114
|
+
<tbody>
|
|
115
|
+
<xsl:variable name="lower" select="'abcdefghijklmnopqrstuvwxyz'" />
|
|
116
|
+
<xsl:variable name="upper" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'" />
|
|
117
|
+
<xsl:for-each select="sitemap:urlset/sitemap:url">
|
|
118
|
+
<tr>
|
|
119
|
+
<td>
|
|
120
|
+
<xsl:variable name="itemURL">
|
|
121
|
+
<xsl:value-of select="sitemap:loc" />
|
|
122
|
+
</xsl:variable>
|
|
123
|
+
<a href="{$itemURL}">
|
|
124
|
+
<xsl:value-of select="sitemap:loc" />
|
|
125
|
+
</a>
|
|
126
|
+
</td>
|
|
127
|
+
<td>
|
|
128
|
+
<xsl:value-of select="count(image:image)" />
|
|
129
|
+
</td>
|
|
130
|
+
<td>
|
|
131
|
+
<xsl:value-of
|
|
132
|
+
select="concat(substring(sitemap:lastmod,0,11),concat(' ', substring(sitemap:lastmod,12,5)))" />
|
|
133
|
+
</td>
|
|
134
|
+
</tr>
|
|
135
|
+
</xsl:for-each>
|
|
136
|
+
</tbody>
|
|
137
|
+
</table>
|
|
138
|
+
<p
|
|
139
|
+
class="desc">
|
|
140
|
+
<a href="{{web-url}}sitemap.xml" class="back-link">← Back to index</a>
|
|
141
|
+
</p>
|
|
142
|
+
</xsl:if>
|
|
143
|
+
</div>
|
|
144
|
+
</body>
|
|
145
|
+
</html>
|
|
146
|
+
|
|
147
|
+
</xsl:template>
|
|
148
|
+
</xsl:stylesheet>
|
|
Binary file
|