@underpostnet/underpost 2.7.9
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 +14 -0
- package/.env.development +6 -0
- package/.env.production +6 -0
- package/.env.test +6 -0
- package/.github/workflows/ghpkg.yml +115 -0
- package/.github/workflows/publish.yml +84 -0
- package/.github/workflows/pwa-microservices-template.page.yml +54 -0
- package/.github/workflows/pwa-microservices-template.test.yml +30 -0
- package/.nycrc +9 -0
- package/.prettierignore +13 -0
- package/.prettierrc +9 -0
- package/.vscode/extensions.json +72 -0
- package/.vscode/settings.json +106 -0
- package/AUTHORS.md +10 -0
- package/CHANGELOG.md +85 -0
- package/Dockerfile +90 -0
- package/LICENSE +21 -0
- package/README.md +96 -0
- package/bin/cron.js +47 -0
- package/bin/db.js +180 -0
- package/bin/deploy.js +859 -0
- package/bin/file.js +109 -0
- package/bin/index.js +82 -0
- package/bin/ssl.js +55 -0
- package/bin/util.js +204 -0
- package/bin/vs.js +35 -0
- package/conf.js +265 -0
- package/docker-compose.yml +67 -0
- package/jsconfig.json +7 -0
- package/jsdoc.json +32 -0
- package/nodemon.json +6 -0
- package/package.json +134 -0
- package/prometheus.yml +36 -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 +23 -0
- package/src/api/core/core.service.js +31 -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 +69 -0
- package/src/api/default/default.model.js +20 -0
- package/src/api/default/default.router.js +23 -0
- package/src/api/default/default.service.js +31 -0
- package/src/api/file/file.controller.js +53 -0
- package/src/api/file/file.model.js +19 -0
- package/src/api/file/file.router.js +21 -0
- package/src/api/file/file.service.js +80 -0
- package/src/api/instance/instance.controller.js +69 -0
- package/src/api/instance/instance.model.js +36 -0
- package/src/api/instance/instance.router.js +33 -0
- package/src/api/instance/instance.service.js +48 -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/user.build.js +16 -0
- package/src/api/user/user.controller.js +70 -0
- package/src/api/user/user.model.js +65 -0
- package/src/api/user/user.router.js +345 -0
- package/src/api/user/user.service.js +479 -0
- package/src/api.js +23 -0
- package/src/client/Default.index.js +40 -0
- package/src/client/components/core/Account.js +290 -0
- package/src/client/components/core/AgGrid.js +160 -0
- package/src/client/components/core/Auth.js +19 -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 +101 -0
- package/src/client/components/core/CalendarCore.js +458 -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 +742 -0
- package/src/client/components/core/Content.js +193 -0
- package/src/client/components/core/Css.js +846 -0
- package/src/client/components/core/CssCore.js +844 -0
- package/src/client/components/core/D3Chart.js +44 -0
- package/src/client/components/core/Docs.js +331 -0
- package/src/client/components/core/DropDown.js +164 -0
- package/src/client/components/core/EventsUI.js +46 -0
- package/src/client/components/core/FileExplorer.js +699 -0
- package/src/client/components/core/FullScreen.js +45 -0
- package/src/client/components/core/Input.js +346 -0
- package/src/client/components/core/JoyStick.js +77 -0
- package/src/client/components/core/Keyboard.js +73 -0
- package/src/client/components/core/LoadingAnimation.js +178 -0
- package/src/client/components/core/LogIn.js +187 -0
- package/src/client/components/core/LogOut.js +58 -0
- package/src/client/components/core/Logger.js +26 -0
- package/src/client/components/core/Modal.js +1814 -0
- package/src/client/components/core/NotificationManager.js +84 -0
- package/src/client/components/core/Panel.js +613 -0
- package/src/client/components/core/PanelForm.js +469 -0
- package/src/client/components/core/Polyhedron.js +162 -0
- package/src/client/components/core/Recover.js +204 -0
- package/src/client/components/core/Responsive.js +68 -0
- package/src/client/components/core/RichText.js +53 -0
- package/src/client/components/core/Router.js +76 -0
- package/src/client/components/core/Scroll.js +34 -0
- package/src/client/components/core/SignUp.js +125 -0
- package/src/client/components/core/SocketIo.js +72 -0
- package/src/client/components/core/Stream.js +113 -0
- package/src/client/components/core/ToggleSwitch.js +87 -0
- package/src/client/components/core/ToolTip.js +26 -0
- package/src/client/components/core/Translate.js +446 -0
- package/src/client/components/core/Validator.js +100 -0
- package/src/client/components/core/VanillaJs.js +463 -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 +280 -0
- package/src/client/components/default/CommonDefault.js +29 -0
- package/src/client/components/default/CssDefault.js +13 -0
- package/src/client/components/default/ElementsDefault.js +38 -0
- package/src/client/components/default/LogInDefault.js +41 -0
- package/src/client/components/default/LogOutDefault.js +28 -0
- package/src/client/components/default/MenuDefault.js +389 -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.png +0 -0
- package/src/client/public/default/apple-touch-icon-120x120.png +0 -0
- package/src/client/public/default/apple-touch-icon-144x144.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.png +0 -0
- package/src/client/public/default/apple-touch-icon-57x57.png +0 -0
- package/src/client/public/default/apple-touch-icon-60x60.png +0 -0
- package/src/client/public/default/apple-touch-icon-72x72.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/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/mailer/api-user-check.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/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/core/core.service.js +170 -0
- package/src/client/services/crypto/crypto.service.js +70 -0
- package/src/client/services/default/default.management.js +343 -0
- package/src/client/services/default/default.service.js +89 -0
- package/src/client/services/file/file.service.js +70 -0
- package/src/client/services/instance/instance.management.js +74 -0
- package/src/client/services/instance/instance.service.js +89 -0
- package/src/client/services/test/test.service.js +70 -0
- package/src/client/services/user/user.management.js +50 -0
- package/src/client/services/user/user.service.js +89 -0
- package/src/client/ssr/Render.js +237 -0
- package/src/client/ssr/common/Alert.js +75 -0
- package/src/client/ssr/common/SsrCore.js +91 -0
- package/src/client/ssr/common/Translate.js +26 -0
- package/src/client/ssr/common/Worker.js +28 -0
- package/src/client/ssr/components/body/CacheControl.js +114 -0
- package/src/client/ssr/components/body/DefaultSplashScreen.js +90 -0
- package/src/client/ssr/components/email/DefaultRecoverEmail.js +21 -0
- package/src/client/ssr/components/email/DefaultVerifyEmail.js +17 -0
- package/src/client/ssr/components/head/Css.js +241 -0
- package/src/client/ssr/components/head/DefaultScripts.js +3 -0
- package/src/client/ssr/components/head/Production.js +1 -0
- package/src/client/ssr/components/head/Pwa.js +146 -0
- package/src/client/ssr/components/head/PwaDefault.js +60 -0
- package/src/client/ssr/components/head/Seo.js +14 -0
- package/src/client/ssr/pages/404.js +12 -0
- package/src/client/ssr/pages/500.js +12 -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 +205 -0
- package/src/client/sw/template.sw.js +84 -0
- package/src/client.build.js +22 -0
- package/src/client.dev.js +21 -0
- package/src/db/DataBaseProvider.js +45 -0
- package/src/db/mariadb/MariaDB.js +33 -0
- package/src/db/mongo/MongooseDB.js +124 -0
- package/src/dns.js +22 -0
- package/src/index.js +43 -0
- package/src/mailer/EmailRender.js +69 -0
- package/src/mailer/MailerProvider.js +96 -0
- package/src/proxy.js +22 -0
- package/src/runtime/lampp/Lampp.js +115 -0
- package/src/runtime/nginx/Nginx.js +3 -0
- package/src/runtime/xampp/Xampp.js +49 -0
- package/src/server/auth.js +235 -0
- package/src/server/backup.js +120 -0
- package/src/server/client-build-live.js +98 -0
- package/src/server/client-build.js +754 -0
- package/src/server/client-dev-server.js +60 -0
- package/src/server/client-formatted.js +58 -0
- package/src/server/client-icons.js +151 -0
- package/src/server/conf.js +929 -0
- package/src/server/crypto.js +91 -0
- package/src/server/dns.js +118 -0
- package/src/server/downloader.js +42 -0
- package/src/server/logger.js +190 -0
- package/src/server/network.js +209 -0
- package/src/server/peer.js +33 -0
- package/src/server/process.js +66 -0
- package/src/server/prompt-optimizer.js +28 -0
- package/src/server/proxy.js +118 -0
- package/src/server/runtime.js +463 -0
- package/src/server/ssl.js +120 -0
- package/src/server.js +25 -0
- package/src/ws/IoInterface.js +45 -0
- package/src/ws/IoServer.js +39 -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 +28 -0
- package/src/ws/core/core.ws.emit.js +14 -0
- package/src/ws/core/core.ws.server.js +24 -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/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/startup.js +11 -0
- package/supervisord-openssh-server.conf +5 -0
- package/test/api.test.js +60 -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="330px" preserveAspectRatio="none" style="width:1328px;height:330px;background:#FFFFFF;" version="1.1" viewBox="0 0 1328 330" width="1328px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="10" y="89"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="15" y="103.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="108" y="103.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="89" y2="109.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="156" y1="109.2969" y2="109.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="15" y="124.292">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="108" y="124.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="109.2969" y2="129.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="10" y="89"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="110" x="193" y="79"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="78" x="198" y="93.9951">ipDaemon</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="286" y="93.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="281" x2="281" y1="79" y2="99.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="193" x2="303" y1="99.2969" y2="99.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="62" x="198" y="114.292">records</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="286" y="114.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="281" x2="281" y1="99.2969" y2="119.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="193" x2="303" y1="119.5938" y2="119.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="66" x="198" y="134.5889">backups</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="286" y="134.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="281" x2="281" y1="119.5938" y2="139.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="193" x2="303" y1="139.8906" y2="139.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="33" x="198" y="154.8857">jobs</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="286" y="154.8857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="281" x2="281" y1="139.8906" y2="160.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="110" x="193" y="79"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="340" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="345" y="24.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="438" y="24.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="433" x2="433" y1="10" y2="30.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="340" x2="486" y1="30.2969" y2="30.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="345" y="45.292">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="438" y="45.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="433" x2="433" y1="30.2969" y2="50.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="340" y="10"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="46" x="573" y="30.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="14" x="578" y="45.4951">ip</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="602" y="45.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="597" x2="597" y1="30.5" y2="50.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="46" x="573" y="30.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="79" x="740.5" y="30.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="745.5" y="45.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="24" x="790.5" y="45.4951">null</text><line style="stroke:#000000;stroke-width:1.0;" x1="785.5" x2="785.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="79" x="740.5" y="30.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="340" y="69"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="345" y="83.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="438" y="83.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="433" x2="433" y1="69" y2="89.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="340" x2="486" y1="89.2969" y2="89.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="345" y="104.292">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="438" y="104.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="433" x2="433" y1="89.2969" y2="109.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="340" y="69"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="43" x="574.5" y="89.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="11" x="579.5" y="104.4951">A</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="600.5" y="104.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="595.5" x2="595.5" y1="89.5" y2="109.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="43" x="574.5" y="89.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="732" y="79"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="737" y="93.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="790" y="93.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="785" x2="785" y1="79" y2="99.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="732" x2="828" y1="99.2969" y2="99.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="737" y="114.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="790" y="114.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="785" x2="785" y1="99.2969" y2="119.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="732" y="79"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="891" y="89"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="896" y="103.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="989" y="103.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="984" x2="984" y1="89" y2="109.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="891" x2="1037" y1="109.2969" y2="109.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="896" y="124.292">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="989" y="124.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="984" x2="984" y1="109.2969" y2="129.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="891" y="89"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="90" x="1084.5" y="79"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1089.5" y="93.9951">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1157.5" y="93.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1152.5" x2="1152.5" y1="79" y2="99.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1084.5" x2="1174.5" y1="99.2969" y2="99.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="29" x="1089.5" y="114.292">dns</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1157.5" y="114.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1152.5" x2="1152.5" y1="99.2969" y2="119.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1084.5" x2="1174.5" y1="119.5938" y2="119.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="58" x="1089.5" y="134.5889">api_key</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1157.5" y="134.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1152.5" x2="1152.5" y1="119.5938" y2="139.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="1084.5" x2="1174.5" y1="139.8906" y2="139.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="36" x="1089.5" y="154.8857">user</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1157.5" y="154.8857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1152.5" x2="1152.5" y1="139.8906" y2="160.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="90" x="1084.5" y="79"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1222" y="52.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1227" y="67.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1272" y="67.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1267" x2="1267" y1="52.5" y2="72.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1222" y="52.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1222" y="90.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1227" y="105.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1272" y="105.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1267" x2="1267" y1="90.5" y2="110.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1222" y="90.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1222" y="128.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1227" y="143.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1272" y="143.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1267" x2="1267" y1="128.5" y2="148.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1222" y="128.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1222" y="166.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1227" y="181.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1272" y="181.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1267" x2="1267" y1="166.5" y2="186.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1222" y="166.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="365" y="128"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="370" y="142.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="423" y="142.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="418" x2="418" y1="128" y2="148.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="365" x2="461" y1="148.2969" y2="148.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="370" y="163.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="423" y="163.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="418" x2="418" y1="148.2969" y2="168.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="365" y="128"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="523" y="136"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="528" y="150.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="621" y="150.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="616" x2="616" y1="136" y2="156.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="523" x2="669" y1="156.2969" y2="156.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="528" y="171.292">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="621" y="171.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="616" x2="616" y1="156.2969" y2="176.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="523" y="136"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="148" x="706" y="153.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="116" x="711" y="168.4951">deployGroupId</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="837" y="168.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="832" x2="832" y1="153.5" y2="173.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="148" x="706" y="153.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="917" y="153.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="922" y="168.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="967" y="168.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="962" x2="962" y1="153.5" y2="173.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="917" y="153.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="340" y="190"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="345" y="204.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="438" y="204.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="433" x2="433" y1="190" y2="210.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="340" x2="486" y1="210.2969" y2="210.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="345" y="225.292">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="438" y="225.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="433" x2="433" y1="210.2969" y2="230.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="340" y="190"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="98" x="547" y="203"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="29" x="552" y="217.9951">dns</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="628" y="217.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="623" x2="623" y1="203" y2="223.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="547" x2="645" y1="223.2969" y2="223.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="66" x="552" y="238.292">backups</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="628" y="238.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="623" x2="623" y1="223.2969" y2="243.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="98" x="547" y="203"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="707" y="192"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="712" y="206.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="805" y="206.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="800" x2="800" y1="192" y2="212.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="707" x2="853" y1="212.2969" y2="212.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="712" y="227.292">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="805" y="227.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="800" x2="800" y1="212.2969" y2="232.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="707" y="192"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="120" x="904" y="202"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="88" x="909" y="216.9951">expression</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1007" y="216.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1002" x2="1002" y1="202" y2="222.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="904" x2="1024" y1="222.2969" y2="222.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="63" x="909" y="237.292">enabled</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1007" y="237.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1002" x2="1002" y1="222.2969" y2="242.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="120" x="904" y="202"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1082.5" y="184.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1087.5" y="199.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1132.5" y="199.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1127.5" x2="1127.5" y1="184.5" y2="204.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1082.5" y="184.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1074" y="222.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1079" y="237.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1124" y="237.4951">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="1119" x2="1119" y1="222.5" y2="242.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1074" y="222.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="707" y="251"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="712" y="265.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="805" y="265.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="800" x2="800" y1="251" y2="271.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="707" x2="853" y1="271.2969" y2="271.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="712" y="286.292">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="805" y="286.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="800" x2="800" y1="271.2969" y2="291.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="707" y="251"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="120" x="904" y="261"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="88" x="909" y="275.9951">expression</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1007" y="275.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1002" x2="1002" y1="261" y2="281.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="904" x2="1024" y1="281.2969" y2="281.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="63" x="909" y="296.292">enabled</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1007" y="296.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1002" x2="1002" y1="281.2969" y2="301.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="120" x="904" y="261"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1082.5" y="260.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1087.5" y="275.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1132.5" y="275.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1127.5" x2="1127.5" y1="260.5" y2="280.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1082.5" y="260.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1074" y="298.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1079" y="313.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1124" y="313.4951">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="1119" x2="1119" y1="298.5" y2="318.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1074" y="298.5"/><path d="M607.5,40.5 L620.5,40.5 C658.4169,40.5 701.42,40.5 733.135,40.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M733.135,43.624 L735.478,40.5 L733.135,37.376 L740.945,40.5 L733.135,43.624 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="607.5" cy="40.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M474,40.5 L487,40.5 C513.6747,40.5 544.0382,40.5 565.8474,40.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M565.8474,43.5501 L568.135,40.5 L565.8474,37.4499 L573.4727,40.5 L565.8474,43.5501 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="474" cy="40.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M291,88.5 L304,88.5 C324.5456,88.5 322.2659,69.8743 340,59.5 C343.057,57.7117 346.245,55.9864 349.5056,54.3298 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M350.8264,57.0401 L351.5384,53.3392 L348.1848,51.6195 L356.2815,51.0279 L350.8264,57.0401 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="291" cy="88.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1163,88.5 L1176,88.5 C1197.4564,88.5 1220.703,81.9364 1238.5243,75.4048 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1239.6355,78.3186 L1240.7096,74.5714 L1237.413,72.491 L1245.8088,72.6267 L1239.6355,78.3186 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1163" cy="88.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1163,108.5 L1176,108.5 C1188.5476,108.5 1202.0172,107.7603 1214.6878,106.7307 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1214.9576,109.839 L1217.019,106.5284 L1214.418,103.6225 L1222.4584,106.0563 L1214.9576,109.839 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1163" cy="108.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1163,129.5 L1176,129.5 C1188.56,129.5 1202.0344,130.3322 1214.7057,131.4904 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1214.4022,134.5987 L1217.0369,131.718 L1215.0093,128.3822 L1222.4763,132.2492 L1214.4022,134.5987 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1163" cy="129.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1163,149.5 L1176,149.5 C1187.2236,149.5 1212.0935,156.9175 1233.2212,163.9769 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1232.2335,166.8923 L1235.4078,164.7177 L1234.209,161.0615 L1240.5098,166.4462 L1232.2335,166.8923 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1163" cy="149.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1025,119.5 L1038,119.5 C1050.5599,119.5 1064.0949,119.5 1076.7881,119.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1076.7881,122.6113 L1079.1216,119.5 L1076.7881,116.3887 L1084.5664,119.5 L1076.7881,122.6113 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1025" cy="119.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M816.5,109.5 L829.5,109.5 C847.0061,109.5 865.7986,109.5 883.6087,109.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M883.6087,112.5265 L885.8786,109.5 L883.6087,106.4735 L891.1748,109.5 L883.6087,112.5265 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="816.5" cy="109.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M606.5,99.5 L619.5,99.5 C654.4544,99.5 693.7043,99.5 724.5811,99.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M724.5811,102.5648 L726.8797,99.5 L724.5811,96.4352 L732.2431,99.5 L724.5811,102.5648 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="606.5" cy="99.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M474,99.5 L487,99.5 C514.178,99.5 545.1853,99.5 567.0727,99.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M567.0727,102.5509 L569.3608,99.5 L567.0727,96.4491 L574.6998,99.5 L567.0727,102.5509 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="474" cy="99.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M291,108.5 L304,108.5 C313.3555,108.5 323.0978,107.8061 332.7372,106.6836 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M333.132,109.7633 L335.047,106.3875 L332.3424,103.6039 L340.4365,105.6965 L333.132,109.7633 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="291" cy="108.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M842,163.5 L855,163.5 C872.7235,163.5 892.0756,163.5 909.4649,163.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M909.4649,166.6355 L911.8165,163.5 L909.4649,160.3645 L917.3035,163.5 L909.4649,166.6355 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="842" cy="163.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M657,166.5 L670,166.5 C679.3037,166.5 689.0505,166.3904 698.7311,166.2132 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M698.7935,169.3091 L701.053,166.1664 L698.6688,163.1173 L706.4709,166.0573 L698.7935,169.3091 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="657" cy="166.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M449.5,158.5 L462.5,158.5 C479.6221,158.5 497.9827,158.3322 515.4282,158.0939 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M515.4738,161.2712 L517.8112,158.0596 L515.3825,154.9165 L523.3715,157.9797 L515.4738,161.2712 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="449.5" cy="158.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M291,129.5 L304,129.5 C321.5786,129.5 340.5224,131.9497 357.5845,135.0899 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M356.9904,138.168 L359.893,135.5354 L358.1785,132.0117 L365.2797,136.5749 L356.9904,138.168 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="291" cy="129.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1012.5,211.5 L1025.5,211.5 C1043.186,211.5 1062.3499,209.053 1079.3245,206.0158 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1079.8966,209.0686 L1081.6141,205.5867 L1078.7523,202.963 L1086.9564,204.5854 L1079.8966,209.0686 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1012.5" cy="211.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1012.5,232.5 L1025.5,232.5 C1038.9176,232.5 1053.3136,232.5 1066.9757,232.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1066.9757,235.5015 L1069.2268,232.5 L1066.9757,229.4985 L1074.4794,232.5 L1066.9757,235.5015 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1012.5" cy="232.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M841.5,222.5 L854.5,222.5 C868.1516,222.5 882.765,222.5 896.714,222.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M896.714,225.5683 L899.0152,222.5 L896.714,219.4317 L904.3847,222.5 L896.714,225.5683 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="841.5" cy="222.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M633.5,212.5 L646.5,212.5 C663.6202,212.5 681.98,212.5 699.4252,212.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M699.4252,215.6773 L701.8082,212.5 L699.4252,209.3227 L707.3685,212.5 L699.4252,215.6773 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="633.5" cy="212.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1012.5,270.5 L1025.5,270.5 C1041.6368,270.5 1059.1888,270.5 1075.1772,270.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1075.1772,273.5841 L1077.4903,270.5 L1075.1772,267.4159 L1082.8875,270.5 L1075.1772,273.5841 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1012.5" cy="270.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1012.5,291.5 L1025.5,291.5 C1043.186,291.5 1062.3499,293.947 1079.3245,296.9842 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1078.7523,300.037 L1081.6141,297.4133 L1079.8966,293.9314 L1086.9564,298.4146 L1078.7523,300.037 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1012.5" cy="291.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M841.5,281.5 L854.5,281.5 C868.1516,281.5 882.765,281.5 896.714,281.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M896.714,284.5683 L899.0152,281.5 L896.714,278.4317 L904.3847,281.5 L896.714,284.5683 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="841.5" cy="281.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M633.5,233.5 L646.5,233.5 C672.8331,233.5 701.0097,240.4722 724.6188,248.4436 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M723.6191,251.3129 L726.7708,249.1934 L725.6186,245.5743 L731.7921,250.943 L723.6191,251.3129 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="633.5" cy="233.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M474,220.5 L487,220.5 C504.1583,220.5 522.8372,220.8795 539.7842,221.3686 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M539.6916,224.4298 L542.0801,221.438 L539.8768,218.3074 L547.4371,221.6001 L539.6916,224.4298 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="474" cy="220.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M291,149.5 L304,149.5 C324.2698,149.5 322.6573,167.0075 340,177.5 C345.075,180.5704 350.4845,183.5383 355.974,186.3518 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M354.5831,189.1426 L358.0671,187.395 L357.3649,183.561 L362.951,189.8291 L354.5831,189.1426 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="291" cy="149.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M144,119.5 L157,119.5 C166.2982,119.5 176.1338,119.5 185.7614,119.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M185.7614,122.5649 L188.06,119.5 L185.7614,116.4351 L193.4237,119.5 L185.7614,122.5649 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="144" cy="119.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="526px" preserveAspectRatio="none" style="width:1347px;height:526px;background:#FFFFFF;" version="1.1" viewBox="0 0 1347 526" width="1347px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="165" x="10" y="324"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="86" x="15" y="338.9951">default.net</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="158" y="338.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="153" x2="153" y1="324" y2="344.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="175" y1="344.2969" y2="344.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="133" x="15" y="359.292">www.default.net</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="158" y="359.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="153" x2="153" y1="344.2969" y2="364.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="165" x="10" y="324"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="37" x="212" y="287.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="5" x="217" y="302.4951">/</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="232" y="302.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="227" x2="227" y1="287.5" y2="307.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="37" x="212" y="287.5"/><rect fill="#F1F1F1" height="263.8594" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="154" x="286" y="55.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="291" y="70.4951">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="386" y="70.4951">default</text><line style="stroke:#000000;stroke-width:1.0;" x1="381" x2="381" y1="55.5" y2="75.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="440" y1="75.7969" y2="75.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="61" x="291" y="90.792">runtime</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="386" y="90.792">nodejs</text><line style="stroke:#000000;stroke-width:1.0;" x1="381" x2="381" y1="75.7969" y2="96.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="440" y1="96.0938" y2="96.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="32" x="291" y="111.0889">apis</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="386" y="111.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="381" x2="381" y1="96.0938" y2="116.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="440" y1="116.3906" y2="116.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="54" x="291" y="131.3857">origins</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="386" y="131.3857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="381" x2="381" y1="116.3906" y2="136.6875"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="440" y1="136.6875" y2="136.6875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="85" x="291" y="151.6826">minifyBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="386" y="151.6826">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="381" x2="381" y1="136.6875" y2="156.9844"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="440" y1="156.9844" y2="156.9844"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="80" x="291" y="171.9795">iconsBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="386" y="171.9795">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="381" x2="381" y1="156.9844" y2="177.2813"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="440" y1="177.2813" y2="177.2813"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="62" x="291" y="192.2764">liteBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="386" y="192.2764">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="381" x2="381" y1="177.2813" y2="197.5781"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="440" y1="197.5781" y2="197.5781"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="76" x="291" y="212.5732">docsBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="386" y="212.5732">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="381" x2="381" y1="197.5781" y2="217.875"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="440" y1="217.875" y2="217.875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="23" x="291" y="232.8701">ws</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="386" y="232.8701">core</text><line style="stroke:#000000;stroke-width:1.0;" x1="381" x2="381" y1="217.875" y2="238.1719"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="440" y1="238.1719" y2="238.1719"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="291" y="253.167">peer</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="386" y="253.167">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="381" x2="381" y1="238.1719" y2="258.4688"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="440" y1="258.4688" y2="258.4688"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="45" x="291" y="273.4639">proxy</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="386" y="273.4639"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="381" x2="381" y1="258.4688" y2="278.7656"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="440" y1="278.7656" y2="278.7656"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="20" x="291" y="293.7607">db</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="386" y="293.7607"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="381" x2="381" y1="278.7656" y2="299.0625"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="440" y1="299.0625" y2="299.0625"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="291" y="314.0576">mailer</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="386" y="314.0576"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="381" x2="381" y1="299.0625" y2="319.3594"/><rect fill="none" height="263.8594" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="154" x="286" y="55.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="57" x="591" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="596" y="24.9951">default</text><line style="stroke:#000000;stroke-width:1.0;" x1="591" x2="648" y1="30.2969" y2="30.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="596" y="45.292">core</text><line style="stroke:#000000;stroke-width:1.0;" x1="591" x2="648" y1="50.5938" y2="50.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="596" y="65.5889">user</text><line style="stroke:#000000;stroke-width:1.0;" x1="591" x2="648" y1="70.8906" y2="70.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="596" y="85.8857">test</text><line style="stroke:#000000;stroke-width:1.0;" x1="591" x2="648" y1="91.1875" y2="91.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="19" x="596" y="106.1826">file</text><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="57" x="591" y="10"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="607.5" y="129.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="607.5" y="129.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="37" x="601" y="187"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="18" x="606" y="201.9951">80</text><line style="stroke:#000000;stroke-width:1.0;" x1="601" x2="638" y1="207.2969" y2="207.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="606" y="222.292">443</text><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="37" x="601" y="187"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="285" x="477" y="246"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="67" x="482" y="260.9951">provider</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="75" x="559" y="260.9951">mongoose</text><line style="stroke:#000000;stroke-width:1.0;" x1="554" x2="554" y1="246" y2="266.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="477" x2="762" y1="266.2969" y2="266.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="482" y="281.292">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="198" x="559" y="281.292">mongodb://127.0.0.1:27017</text><line style="stroke:#000000;stroke-width:1.0;" x1="554" x2="554" y1="266.2969" y2="286.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="477" x2="762" y1="286.5938" y2="286.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="482" y="301.5889">name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="559" y="301.5889">default</text><line style="stroke:#000000;stroke-width:1.0;" x1="554" x2="554" y1="286.5938" y2="306.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="285" x="477" y="246"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="110" x="564.5" y="325"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="56" x="569.5" y="339.9951">sender</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="657.5" y="339.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="652.5" x2="652.5" y1="325" y2="345.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="564.5" x2="674.5" y1="345.2969" y2="345.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="74" x="569.5" y="360.292">transport</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="657.5" y="360.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="652.5" x2="652.5" y1="345.2969" y2="365.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="564.5" x2="674.5" y1="365.5938" y2="365.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="78" x="569.5" y="380.5889">templates</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="657.5" y="380.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="652.5" x2="652.5" y1="365.5938" y2="385.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="110" x="564.5" y="325"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="202" x="849.5" y="255"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="41" x="854.5" y="269.9951">email</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="139" x="907.5" y="269.9951">noreply@default.net</text><line style="stroke:#000000;stroke-width:1.0;" x1="902.5" x2="902.5" y1="255" y2="275.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="849.5" x2="1051.5" y1="275.2969" y2="275.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="854.5" y="290.292">name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="907.5" y="290.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="902.5" x2="902.5" y1="275.2969" y2="295.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="202" x="849.5" y="255"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="195" x="853" y="314"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="858" y="328.9951">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="120" x="923" y="328.9951">smtp.default.com</text><line style="stroke:#000000;stroke-width:1.0;" x1="918" x2="918" y1="314" y2="334.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="853" x2="1048" y1="334.2969" y2="334.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="33" x="858" y="349.292">port</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="923" y="349.292">465</text><line style="stroke:#000000;stroke-width:1.0;" x1="918" x2="918" y1="334.2969" y2="354.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="853" x2="1048" y1="354.5938" y2="354.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="55" x="858" y="369.5889">secure</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="923" y="369.5889">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="918" x2="918" y1="354.5938" y2="374.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="853" x2="1048" y1="374.8906" y2="374.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="858" y="389.8857">auth</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="923" y="389.8857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="918" x2="918" y1="374.8906" y2="395.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="195" x="853" y="314"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="196" x="1139" y="364"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="36" x="1144" y="378.9951">user</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="139" x="1191" y="378.9951">noreply@default.net</text><line style="stroke:#000000;stroke-width:1.0;" x1="1186" x2="1186" y1="364" y2="384.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1139" x2="1335" y1="384.2969" y2="384.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="1144" y="399.292">pass</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="4" x="1191" y="399.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1186" x2="1186" y1="384.2969" y2="404.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="196" x="1139" y="364"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="303" x="799" y="413"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="123" x="804" y="427.9951">userVerifyEmail</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="122" x="955" y="427.9951">DefaultVerifyEmail</text><line style="stroke:#000000;stroke-width:1.0;" x1="950" x2="950" y1="413" y2="433.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="799" x2="1102" y1="433.2969" y2="433.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="141" x="804" y="448.292">userRecoverEmail</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="142" x="955" y="448.292">DefaultRecoverEmail</text><line style="stroke:#000000;stroke-width:1.0;" x1="950" x2="950" y1="433.2969" y2="453.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="303" x="799" y="413"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="37" x="212" y="380.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="5" x="217" y="395.4951">/</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="232" y="395.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="227" x2="227" y1="380.5" y2="400.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="37" x="212" y="380.5"/><rect fill="#F1F1F1" height="142.0781" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="154" x="286" y="362.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="291" y="377.4951">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="11" x="386" y="377.4951">␀</text><line style="stroke:#000000;stroke-width:1.0;" x1="381" x2="381" y1="362.5" y2="382.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="440" y1="382.7969" y2="382.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="61" x="291" y="397.792">runtime</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="386" y="397.792">nodejs</text><line style="stroke:#000000;stroke-width:1.0;" x1="381" x2="381" y1="382.7969" y2="403.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="440" y1="403.0938" y2="403.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="32" x="291" y="418.0889">apis</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="386" y="418.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="381" x2="381" y1="403.0938" y2="423.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="440" y1="423.3906" y2="423.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="54" x="291" y="438.3857">origins</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="386" y="438.3857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="381" x2="381" y1="423.3906" y2="443.6875"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="440" y1="443.6875" y2="443.6875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="85" x="291" y="458.6826">minifyBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="386" y="458.6826">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="381" x2="381" y1="443.6875" y2="463.9844"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="440" y1="463.9844" y2="463.9844"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="62" x="291" y="478.9795">liteBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="386" y="478.9795">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="381" x2="381" y1="463.9844" y2="484.2813"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="440" y1="484.2813" y2="484.2813"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="45" x="291" y="499.2764">proxy</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="386" y="499.2764"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="381" x2="381" y1="484.2813" y2="504.5781"/><rect fill="none" height="142.0781" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="154" x="286" y="362.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="607.5" y="404.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="607.5" y="404.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="607.5" y="438.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="607.5" y="438.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="37" x="601" y="474"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="18" x="606" y="488.9951">80</text><line style="stroke:#000000;stroke-width:1.0;" x1="601" x2="638" y1="494.2969" y2="494.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="606" y="509.292">443</text><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="37" x="601" y="474"/><path d="M428,105.5 L441,105.5 C492.0355,105.5 548.8603,87.8974 584.2692,74.7108 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M585.3648,77.5992 L586.4355,73.8891 L583.1736,71.8224 L591.4903,71.9718 L585.3648,77.5992 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="428" cy="105.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M428,125.5 L441,125.5 C499.0016,125.5 567.3942,131.9212 599.9389,135.3693 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M599.6003,138.5025 L602.2888,135.6233 L600.2775,132.2361 L607.7718,136.2158 L599.6003,138.5025 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="428" cy="125.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M428,268.5 L441,268.5 C462.4073,268.5 457.8566,246.0813 477,236.5 C514.8434,217.5593 564.2528,210.9889 593.6967,208.7099 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M593.9109,211.8095 L596.0214,208.5492 L593.4824,205.6103 L601.4457,208.1742 L593.9109,211.8095 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="428" cy="268.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M428,288.5 L441,288.5 C450.287,288.5 459.8405,288.3354 469.4705,288.0447 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M469.5743,291.139 L471.7913,287.9669 L469.3667,284.9503 L477.2064,287.7853 L469.5743,291.139 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="428" cy="288.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M663,334.5 L676,334.5 C715.578,334.5 724.7096,325.5133 763,315.5 C779.1859,311.2672 782.7619,308.5279 799,304.5 C812.8999,301.0521 827.6054,297.7757 842.1685,294.7504 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M842.792,297.7894 L844.4477,294.2828 L841.545,291.7114 L849.766,293.1917 L842.792,297.7894 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="663" cy="334.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1037,384.5 L1050,384.5 C1076.3752,384.5 1104.8485,384.5 1131.4142,384.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1131.4142,387.623 L1133.7564,384.5 L1131.4142,381.377 L1139.2217,384.5 L1131.4142,387.623 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1037" cy="384.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M663,354.5 L676,354.5 C731.9928,354.5 794.4219,354.5 845.5311,354.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M845.5311,357.6116 L847.8648,354.5 L845.5311,351.3884 L853.3102,354.5 L845.5311,357.6116 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="663" cy="354.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M663,375.5 L676,375.5 C732.0652,375.5 744.1662,391.814 799,403.5 C811.3463,406.1312 824.2768,408.8127 837.1555,411.4363 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M836.5406,414.4651 L839.4271,411.8975 L837.7704,408.4075 L844.7276,412.9735 L836.5406,414.4651 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="663" cy="375.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M428,309.5 L441,309.5 C452.8538,309.5 510.8883,324.9896 557.5162,337.992 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M556.6911,340.9427 L559.7292,338.6108 L558.3413,335.0413 L564.8929,340.0547 L556.6911,340.9427 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="428" cy="309.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M237,297.5 L250,297.5 C260.4484,297.5 270.2861,295.0443 279.4623,290.8667 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M280.8695,293.6216 L281.5284,289.8113 L278.055,288.1118 L286.3495,287.3486 L280.8695,293.6216 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="237" cy="297.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M163,333.5 L176,333.5 C191.6352,333.5 206.1866,322.9224 216.2351,313.2345 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M218.441,315.3826 L217.8462,311.5801 L214.0293,311.0864 L221.6054,307.7199 L218.441,315.3826 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="163" cy="333.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M428,412.5 L441,412.5 C498.8703,412.5 567.3237,412.5 599.9105,412.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M599.9105,415.6375 L602.2636,412.5 L599.9105,409.3625 L607.7541,412.5 L599.9105,415.6375 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="428" cy="412.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M428,432.5 L441,432.5 C499.049,432.5 567.4196,439.9914 599.9491,444.0142 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M599.5541,447.1459 L602.2979,444.3105 L600.3441,440.8826 L607.7782,445.0018 L599.5541,447.1459 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="428" cy="432.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M428,494.5 L441,494.5 C495.3575,494.5 559.0523,494.5 593.5903,494.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M593.5903,497.5898 L595.9076,494.5 L593.5903,491.4102 L601.3149,494.5 L593.5903,497.5898 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="428" cy="494.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M237,390.5 L250,390.5 C259.664,390.5 269.5055,391.9016 279.1454,394.1987 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M278.3763,397.1291 L281.3432,394.7755 L279.9145,391.2683 L286.4715,396.1215 L278.3763,397.1291 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="237" cy="390.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M163,354.5 L176,354.5 C191.6352,354.5 206.1866,365.0776 216.2351,374.7655 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M214.0293,376.9136 L217.8462,376.4199 L218.441,372.6174 L221.6054,380.2801 L214.0293,376.9136 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="163" cy="354.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="871px" preserveAspectRatio="none" style="width:2124px;height:871px;background:#FFFFFF;" version="1.1" viewBox="0 0 2124 871" width="2124px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="10" y="508.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="15" y="523.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="108" y="523.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="508.5" y2="528.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="156" y1="528.7969" y2="528.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="15" y="543.792">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="108" y="543.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="528.7969" y2="549.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="10" y="508.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="165" x="193" y="518.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="86" x="198" y="533.4951">default.net</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="341" y="533.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="336" x2="336" y1="518.5" y2="538.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="193" x2="358" y1="538.7969" y2="538.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="133" x="198" y="553.792">www.default.net</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="341" y="553.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="336" x2="336" y1="538.7969" y2="559.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="165" x="193" y="518.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="395" y="485.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="400" y="500.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="493" y="500.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="488" x2="488" y1="485.5" y2="505.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="395" x2="541" y1="505.7969" y2="505.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="400" y="520.792">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="493" y="520.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="488" x2="488" y1="505.7969" y2="526.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="395" y="485.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="37" x="578" y="494"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="5" x="583" y="508.9951">/</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="598" y="508.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="593" x2="593" y1="494" y2="514.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="37" x="578" y="494"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="652" y="436.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="657" y="451.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="750" y="451.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="436.5" y2="456.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="652" x2="798" y1="456.7969" y2="456.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="657" y="471.792">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="750" y="471.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="456.7969" y2="477.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="652" y="436.5"/><rect fill="#F1F1F1" height="263.8594" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="117" x="835" y="147"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="840" y="161.9951">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="935" y="161.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="930" x2="930" y1="147" y2="167.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="952" y1="167.2969" y2="167.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="61" x="840" y="182.292">runtime</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="935" y="182.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="930" x2="930" y1="167.2969" y2="187.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="952" y1="187.5938" y2="187.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="32" x="840" y="202.5889">apis</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="935" y="202.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="930" x2="930" y1="187.5938" y2="207.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="952" y1="207.8906" y2="207.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="54" x="840" y="222.8857">origins</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="935" y="222.8857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="930" x2="930" y1="207.8906" y2="228.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="952" y1="228.1875" y2="228.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="85" x="840" y="243.1826">minifyBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="935" y="243.1826"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="930" x2="930" y1="228.1875" y2="248.4844"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="952" y1="248.4844" y2="248.4844"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="80" x="840" y="263.4795">iconsBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="935" y="263.4795"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="930" x2="930" y1="248.4844" y2="268.7813"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="952" y1="268.7813" y2="268.7813"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="62" x="840" y="283.7764">liteBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="935" y="283.7764"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="930" x2="930" y1="268.7813" y2="289.0781"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="952" y1="289.0781" y2="289.0781"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="76" x="840" y="304.0732">docsBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="935" y="304.0732"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="930" x2="930" y1="289.0781" y2="309.375"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="952" y1="309.375" y2="309.375"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="23" x="840" y="324.3701">ws</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="935" y="324.3701"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="930" x2="930" y1="309.375" y2="329.6719"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="952" y1="329.6719" y2="329.6719"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="840" y="344.667">peer</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="935" y="344.667"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="930" x2="930" y1="329.6719" y2="349.9688"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="952" y1="349.9688" y2="349.9688"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="45" x="840" y="364.9639">proxy</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="935" y="364.9639"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="930" x2="930" y1="349.9688" y2="370.2656"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="952" y1="370.2656" y2="370.2656"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="20" x="840" y="385.2607">db</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="935" y="385.2607"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="930" x2="930" y1="370.2656" y2="390.5625"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="952" y1="390.5625" y2="390.5625"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="840" y="405.5576">mailer</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="935" y="405.5576"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="930" x2="930" y1="390.5625" y2="410.8594"/><rect fill="none" height="263.8594" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="117" x="835" y="147"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1015" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1020" y="24.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1065" y="24.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1060" x2="1060" y1="10" y2="30.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1015" y="10"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1015" y="48"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1020" y="62.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1065" y="62.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1060" x2="1060" y1="48" y2="68.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1015" y="48"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1014" y="86.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1019" y="101.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1072" y="101.4951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1067" x2="1067" y1="86.5" y2="106.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1014" x2="1110" y1="106.7969" y2="106.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1019" y="121.792">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1072" y="121.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1067" x2="1067" y1="106.7969" y2="127.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1014" y="86.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1180" y="107"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1185" y="121.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1230" y="121.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1225" x2="1225" y1="107" y2="127.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1180" y="107"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="88" x="1018" y="146"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1023" y="160.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1068" y="160.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063" x2="1063" y1="146" y2="166.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="88" x="1018" y="146"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1006.5" y="184"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1011.5" y="198.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1056.5" y="198.9951">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="1051.5" x2="1051.5" y1="184" y2="204.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1006.5" y="184"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1006.5" y="222"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1011.5" y="236.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1056.5" y="236.9951">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="1051.5" x2="1051.5" y1="222" y2="242.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1006.5" y="222"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1006.5" y="260"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1011.5" y="274.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1056.5" y="274.9951">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="1051.5" x2="1051.5" y1="260" y2="280.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1006.5" y="260"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1006.5" y="298"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1011.5" y="312.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1056.5" y="312.9951">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="1051.5" x2="1051.5" y1="298" y2="318.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1006.5" y="298"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1015" y="336"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1020" y="350.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1065" y="350.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1060" x2="1060" y1="336" y2="356.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1015" y="336"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1006.5" y="374"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1011.5" y="388.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1056.5" y="388.9951">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="1051.5" x2="1051.5" y1="374" y2="394.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1006.5" y="374"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1014" y="412.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1019" y="427.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1072" y="427.4951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1067" x2="1067" y1="412.5" y2="432.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1014" x2="1110" y1="432.7969" y2="432.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1019" y="447.792">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1072" y="447.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1067" x2="1067" y1="432.7969" y2="453.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1014" y="412.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="104" x="1175" y="433"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1180" y="447.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1225" y="447.9951">integer</text><line style="stroke:#000000;stroke-width:1.0;" x1="1220" x2="1220" y1="433" y2="453.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="104" x="1175" y="433"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="989" y="471.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="994" y="486.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="1087" y="486.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="1082" x2="1082" y1="471.5" y2="491.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="989" x2="1135" y1="491.7969" y2="491.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="994" y="506.792">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1087" y="506.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1082" x2="1082" y1="491.7969" y2="512.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="989" y="471.5"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="99" x="1177.5" y="471.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="67" x="1182.5" y="486.4951">provider</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1259.5" y="486.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1254.5" x2="1254.5" y1="471.5" y2="491.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1177.5" x2="1276.5" y1="491.7969" y2="491.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1182.5" y="506.792">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1259.5" y="506.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1254.5" x2="1254.5" y1="491.7969" y2="512.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1177.5" x2="1276.5" y1="512.0938" y2="512.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1182.5" y="527.0889">name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1259.5" y="527.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1254.5" x2="1254.5" y1="512.0938" y2="532.3906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="99" x="1177.5" y="471.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1345" y="428"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1350" y="442.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1395" y="442.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1390" x2="1390" y1="428" y2="448.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1345" y="428"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1336.5" y="466.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1341.5" y="481.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1403.5" y="481.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1398.5" x2="1398.5" y1="466.5" y2="486.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1336.5" x2="1447.5" y1="486.7969" y2="486.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="52" x="1341.5" y="501.792">format</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="17" x="1403.5" y="501.792">uri</text><line style="stroke:#000000;stroke-width:1.0;" x1="1398.5" x2="1398.5" y1="486.7969" y2="507.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1336.5" y="466.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1345" y="526"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1350" y="540.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1395" y="540.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1390" x2="1390" y1="526" y2="546.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1345" y="526"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="989" y="530.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="994" y="545.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="1087" y="545.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="1082" x2="1082" y1="530.5" y2="550.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="989" x2="1135" y1="550.7969" y2="550.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="994" y="565.792">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1087" y="565.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1082" x2="1082" y1="550.7969" y2="571.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="989" y="530.5"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="110" x="1172" y="595.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="56" x="1177" y="610.4951">sender</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1265" y="610.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1260" x2="1260" y1="595.5" y2="615.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1172" x2="1282" y1="615.7969" y2="615.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="74" x="1177" y="630.792">transport</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1265" y="630.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1260" x2="1260" y1="615.7969" y2="636.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1172" x2="1282" y1="636.0938" y2="636.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="78" x="1177" y="651.0889">templates</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1265" y="651.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1260" x2="1260" y1="636.0938" y2="656.3906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="110" x="1172" y="595.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="1319" y="564.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1324" y="579.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="1417" y="579.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="1412" x2="1412" y1="564.5" y2="584.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1319" x2="1465" y1="584.7969" y2="584.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="1324" y="599.792">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1417" y="599.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1412" x2="1412" y1="584.7969" y2="605.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="1319" y="564.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="75" x="1551" y="528.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="41" x="1556" y="543.4951">email</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1609" y="543.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1604" x2="1604" y1="528.5" y2="548.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1551" x2="1626" y1="548.7969" y2="548.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1556" y="563.792">name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1609" y="563.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1604" x2="1604" y1="548.7969" y2="569.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="75" x="1551" y="528.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1729.5" y="489.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1734.5" y="504.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1796.5" y="504.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1791.5" x2="1791.5" y1="489.5" y2="509.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1729.5" x2="1840.5" y1="509.7969" y2="509.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="52" x="1734.5" y="524.792">format</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="36" x="1796.5" y="524.792">email</text><line style="stroke:#000000;stroke-width:1.0;" x1="1791.5" x2="1791.5" y1="509.7969" y2="530.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1729.5" y="489.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1738" y="549"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1743" y="563.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1788" y="563.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1783" x2="1783" y1="549" y2="569.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1738" y="549"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="1319" y="623.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1324" y="638.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="1417" y="638.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="1412" x2="1412" y1="623.5" y2="643.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1319" x2="1465" y1="643.7969" y2="643.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="1324" y="658.792">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1417" y="658.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1412" x2="1412" y1="643.7969" y2="664.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="1319" y="623.5"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="87" x="1545" y="613.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1550" y="628.4951">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1615" y="628.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1610" x2="1610" y1="613.5" y2="633.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1545" x2="1632" y1="633.7969" y2="633.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="33" x="1550" y="648.792">port</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1615" y="648.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1610" x2="1610" y1="633.7969" y2="654.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1545" x2="1632" y1="654.0938" y2="654.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="55" x="1550" y="669.0889">secure</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1615" y="669.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1610" x2="1610" y1="654.0938" y2="674.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="1545" x2="1632" y1="674.3906" y2="674.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1550" y="689.3857">auth</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1615" y="689.3857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1610" x2="1610" y1="674.3906" y2="694.6875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="87" x="1545" y="613.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1738" y="587"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1743" y="601.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1788" y="601.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1783" x2="1783" y1="587" y2="607.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1738" y="587"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="104" x="1733" y="625"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1738" y="639.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1783" y="639.9951">integer</text><line style="stroke:#000000;stroke-width:1.0;" x1="1778" x2="1778" y1="625" y2="645.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="104" x="1733" y="625"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1729.5" y="663"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1734.5" y="677.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1779.5" y="677.9951">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="1774.5" x2="1774.5" y1="663" y2="683.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1729.5" y="663"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="1712" y="701.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1717" y="716.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="1810" y="716.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="1805" x2="1805" y1="701.5" y2="721.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1712" x2="1858" y1="721.7969" y2="721.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="1717" y="736.792">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1810" y="736.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1805" x2="1805" y1="721.7969" y2="742.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="1712" y="701.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="69" x="1895" y="711.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="36" x="1900" y="726.4951">user</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1947" y="726.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1942" x2="1942" y1="711.5" y2="731.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1895" x2="1964" y1="731.7969" y2="731.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="1900" y="746.792">pass</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1947" y="746.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1942" x2="1942" y1="731.7969" y2="752.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="69" x="1895" y="711.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="2001" y="686.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="2006" y="701.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="2068" y="701.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="2063" x2="2063" y1="686.5" y2="706.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="2001" x2="2112" y1="706.7969" y2="706.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="52" x="2006" y="721.792">format</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="36" x="2068" y="721.792">email</text><line style="stroke:#000000;stroke-width:1.0;" x1="2063" x2="2063" y1="706.7969" y2="727.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="2001" y="686.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="2009.5" y="746"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="2014.5" y="760.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="2059.5" y="760.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="2054.5" x2="2054.5" y1="746" y2="766.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="2009.5" y="746"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="1319" y="713.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1324" y="728.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="1417" y="728.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="1412" x2="1412" y1="713.5" y2="733.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1319" x2="1465" y1="733.7969" y2="733.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="1324" y="748.792">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1417" y="748.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1412" x2="1412" y1="733.7969" y2="754.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="1319" y="713.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="173" x="1502" y="761.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="123" x="1507" y="776.4951">userVerifyEmail</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1658" y="776.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1653" x2="1653" y1="761.5" y2="781.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1502" x2="1675" y1="781.7969" y2="781.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="141" x="1507" y="796.792">userRecoverEmail</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1658" y="796.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1653" x2="1653" y1="781.7969" y2="802.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="173" x="1502" y="761.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1738" y="761"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1743" y="775.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1788" y="775.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1783" x2="1783" y1="761" y2="781.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1738" y="761"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1738" y="799"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1743" y="813.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1788" y="813.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1783" x2="1783" y1="799" y2="819.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1738" y="799"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="395" y="550.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="400" y="565.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="493" y="565.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="488" x2="488" y1="550.5" y2="570.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="395" x2="541" y1="570.7969" y2="570.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="400" y="585.792">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="493" y="585.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="488" x2="488" y1="570.7969" y2="591.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="395" y="550.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="37" x="578" y="594"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="5" x="583" y="608.9951">/</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="598" y="608.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="593" x2="593" y1="594" y2="614.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="37" x="578" y="594"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="652" y="589.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="657" y="604.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="750" y="604.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="589.5" y2="609.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="652" x2="798" y1="609.7969" y2="609.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="657" y="624.792">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="750" y="624.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="609.7969" y2="630.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="652" y="589.5"/><rect fill="#F1F1F1" height="142.0781" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="117" x="835" y="635"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="840" y="649.9951">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="935" y="649.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="930" x2="930" y1="635" y2="655.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="952" y1="655.2969" y2="655.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="61" x="840" y="670.292">runtime</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="935" y="670.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="930" x2="930" y1="655.2969" y2="675.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="952" y1="675.5938" y2="675.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="32" x="840" y="690.5889">apis</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="935" y="690.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="930" x2="930" y1="675.5938" y2="695.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="952" y1="695.8906" y2="695.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="54" x="840" y="710.8857">origins</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="935" y="710.8857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="930" x2="930" y1="695.8906" y2="716.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="952" y1="716.1875" y2="716.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="85" x="840" y="731.1826">minifyBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="935" y="731.1826"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="930" x2="930" y1="716.1875" y2="736.4844"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="952" y1="736.4844" y2="736.4844"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="62" x="840" y="751.4795">liteBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="935" y="751.4795"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="930" x2="930" y1="736.4844" y2="756.7813"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="952" y1="756.7813" y2="756.7813"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="45" x="840" y="771.7764">proxy</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="935" y="771.7764"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="930" x2="930" y1="756.7813" y2="777.0781"/><rect fill="none" height="142.0781" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="117" x="835" y="635"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="79" x="1022.5" y="590"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1027.5" y="604.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="24" x="1072.5" y="604.9951">null</text><line style="stroke:#000000;stroke-width:1.0;" x1="1067.5" x2="1067.5" y1="590" y2="610.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="79" x="1022.5" y="590"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1015" y="628"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1020" y="642.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1065" y="642.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1060" x2="1060" y1="628" y2="648.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1015" y="628"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="88" x="1018" y="666"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1023" y="680.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1068" y="680.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063" x2="1063" y1="666" y2="686.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="88" x="1018" y="666"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="88" x="1018" y="704"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1023" y="718.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1068" y="718.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063" x2="1063" y1="704" y2="724.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="88" x="1018" y="704"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1006.5" y="742"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1011.5" y="756.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1056.5" y="756.9951">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="1051.5" x2="1051.5" y1="742" y2="762.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1006.5" y="742"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1006.5" y="780"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1011.5" y="794.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1056.5" y="794.9951">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="1051.5" x2="1051.5" y1="780" y2="800.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1006.5" y="780"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1014" y="818.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1019" y="833.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1072" y="833.4951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1067" x2="1067" y1="818.5" y2="838.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1014" x2="1110" y1="838.7969" y2="838.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1019" y="853.792">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1072" y="853.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1067" x2="1067" y1="838.7969" y2="859.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1014" y="818.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="104" x="1175" y="839"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1180" y="853.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1225" y="853.9951">integer</text><line style="stroke:#000000;stroke-width:1.0;" x1="1220" x2="1220" y1="839" y2="859.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="104" x="1175" y="839"/><path d="M942,159 L942,146 C942,94.0589 949.4953,72.7232 989,39 C994.4507,34.347 1000.912,30.8166 1007.6966,28.1413 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1008.7287,31.1239 L1009.9336,27.3672 L1006.6646,25.1587 L1015.1531,25.5611 L1008.7287,31.1239 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="942" cy="159" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M940,177 L953,177 C1000.2367,177 954.1418,108.8781 989,77 C994.4732,71.9947 1001.1033,68.2764 1008.1039,65.5201 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1009.083,68.3581 L1010.2324,64.7858 L1007.1248,62.6822 L1015.1988,63.0725 L1009.083,68.3581 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="940" cy="177" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1098.5,117 L1111.5,117 C1131.5051,117 1153.4676,117 1172.7906,117 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1172.7906,120.0179 L1175.054,117 L1172.7906,113.9821 L1180.3354,117 L1172.7906,120.0179 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1098.5" cy="117" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M940,197 L953,197 C984.0984,197 965.4437,157.303 989,137 C994.5718,132.1977 1001.0189,128.0865 1007.7241,124.5885 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1009.0426,127.2959 L1009.7546,123.5996 L1006.4055,121.8812 L1014.4924,121.2921 L1009.0426,127.2959 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="940" cy="197" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M940,217 L953,217 C977.5855,217 968.1599,188.0436 989,175 C995.6178,170.858 1003.116,167.6139 1010.7185,165.0743 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1011.6433,168.1176 L1013.001,164.3807 L1009.7937,162.0309 L1018.3269,162.7623 L1011.6433,168.1176 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="940" cy="217" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M940,238 L953,238 C972.4797,238 971.3071,221.1496 989,213 C994.4014,210.512 1000.1849,208.3069 1006.0419,206.3628 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1006.9717,209.3368 L1008.2725,205.6654 L1005.1121,203.3888 L1013.477,204.0383 L1006.9717,209.3368 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="940" cy="238" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M940,258 L953,258 C959.5289,258 989.2752,250.7884 1015.9728,243.9614 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1016.7364,246.9323 L1018.201,243.3886 L1015.2092,240.9904 L1023.4002,242.0523 L1016.7364,246.9323 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="940" cy="258" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M940,278 L953,278 C967.9584,278 984.0454,277.2344 999.1313,276.1769 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M999.3621,279.2914 L1001.4672,276.0037 L998.9004,273.0623 L1006.9177,275.5997 L999.3621,279.2914 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="940" cy="278" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M940,299 L953,299 C967.9691,299 984.0602,299.8613 999.1466,301.051 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M998.8869,304.1656 L1001.4825,301.2458 L999.4063,297.9365 L1006.933,301.7003 L998.8869,304.1656 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="940" cy="299" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M940,319 L953,319 C956.3411,319 987.4778,326.8113 1015.5425,334.0309 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1014.7764,337.0021 L1017.7709,334.6055 L1016.3086,331.0596 L1022.9706,335.9462 L1014.7764,337.0021 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="940" cy="319" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M940,340 L953,340 C972.4797,340 971.3071,356.8504 989,365 C994.4014,367.488 1000.1849,369.6931 1006.0419,371.6372 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1005.1121,374.6112 L1008.2725,372.3346 L1006.9717,368.6632 L1013.477,373.9617 L1005.1121,374.6112 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="940" cy="340" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1098.5,443 L1111.5,443 C1129.7558,443 1149.6416,443 1167.6642,443 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1167.6642,446.0399 L1169.9441,443 L1167.6642,439.9601 L1175.2638,443 L1167.6642,446.0399 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1098.5" cy="443" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M940,360 L953,360 C977.9246,360 968.9052,388.2543 989,403 C994.6456,407.1428 1000.9472,410.8314 1007.4138,414.0813 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1006.0718,416.9047 L1009.5313,415.0878 L1008.7558,411.2579 L1014.4722,417.4363 L1006.0718,416.9047 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="940" cy="360" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1265.5,481 L1278.5,481 C1299.4231,481 1299.6931,465.0636 1319,457 C1324.9546,454.5131 1331.323,452.2766 1337.7213,450.287 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1338.6104,453.2877 L1339.9719,449.6202 L1336.8323,447.2862 L1345.2232,448.0644 L1338.6104,453.2877 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1265.5" cy="481" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1265.5,501 L1278.5,501 C1295.0426,501 1312.8448,499.504 1329.3154,497.4901 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1329.6987,500.4759 L1331.5548,497.2026 L1328.9321,494.5042 L1336.78,496.5318 L1329.6987,500.4759 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1265.5" cy="501" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1265.5,522 L1278.5,522 C1297.8727,522 1318.9728,524.0516 1337.6388,526.5841 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1337.1947,529.7195 L1339.9903,526.9172 L1338.0829,523.4487 L1345.4773,527.6943 L1337.1947,529.7195 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1265.5" cy="522" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1123,502 L1136,502 C1146.9786,502 1158.7064,502 1169.9564,502 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1169.9564,505.0788 L1172.2656,502 L1169.9564,498.9212 L1177.6535,502 L1169.9564,505.0788 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1123" cy="502" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M940,380 L953,380 C992.802,380 960.5569,434.1578 989,462 C990.8009,463.7628 992.7201,465.4275 994.7311,466.9991 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M992.955,469.5119 L996.6157,468.3312 L996.5072,464.4863 L1001.0131,471.4393 L992.955,469.5119 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="940" cy="380" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1615,538 L1628,538 C1659.4184,538 1693.8379,532.4642 1722.3781,526.3156 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1723.0419,529.3172 L1724.6293,525.8177 L1721.7143,523.314 L1729.8821,524.656 L1723.0419,529.3172 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1615" cy="538" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1615,559 L1628,559 C1662.0449,559 1700.2558,559 1730.3981,559 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1730.3981,562.1515 L1732.7617,559 L1730.3981,555.8485 L1738.2768,559 L1730.3981,562.1515 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1615" cy="559" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1453,595 L1466,595 C1494.1042,595 1523.6438,584.1803 1546.6162,573.0357 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1547.9992,575.7996 L1548.6891,571.9985 L1545.2332,570.2718 L1553.5258,569.5782 L1547.9992,575.7996 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1453" cy="595" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1270,605 L1283,605 C1292.3706,605 1302.1221,604.2696 1311.7667,603.088 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1312.1823,606.169 L1314.0775,602.7763 L1311.3511,600.007 L1319.4693,602.0489 L1312.1823,606.169 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1270" cy="605" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1621,623 L1634,623 C1670.0549,623 1710.2685,615.6646 1740.0508,608.7864 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1740.7445,611.7217 L1742.2523,608.2662 L1739.3572,605.8511 L1747.389,607.0523 L1740.7445,611.7217 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1621" cy="623" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1621,643 L1634,643 C1664.2547,643 1697.8824,641.3679 1725.6638,639.5781 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1725.8669,642.6473 L1727.9658,639.4258 L1725.4607,636.5089 L1733.3369,639.0703 L1725.8669,642.6473 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1621" cy="643" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1621,664 L1634,664 C1663.0698,664 1695.2417,665.6938 1722.3532,667.6118 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1722.1349,670.6142 L1724.605,667.7755 L1722.5715,664.6095 L1729.8591,668.1575 L1722.1349,670.6142 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1621" cy="664" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1952,721 L1965,721 C1974.3334,721 1984.1434,720.2717 1993.7269,719.1472 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1994.1191,722.1968 L1996.0141,718.8531 L1993.3348,716.0977 L2001.3507,718.1669 L1994.1191,722.1968 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1952" cy="721" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1952,742 L1965,742 C1977.1782,742 1990.1676,743.24 2002.4068,744.9819 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M2001.9497,747.9858 L2004.6597,745.3247 L2002.8639,741.978 L2009.9165,746.1247 L2001.9497,747.9858 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1952" cy="742" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1846,732 L1859,732 C1868.2095,732 1878.1006,732 1887.4627,732 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1887.4627,735.0853 L1889.7767,732 L1887.4627,728.9147 L1895.1759,732 L1887.4627,735.0853 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1846" cy="732" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1621,684 L1634,684 C1663.8054,684 1695.9485,691.0929 1722.846,699.15 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1721.9288,702.1264 L1725.0783,699.8379 L1723.7632,696.1736 L1730.287,701.443 L1721.9288,702.1264 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1621" cy="684" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1453,654 L1466,654 C1489.5886,654 1515.7427,654 1537.7658,654 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1537.7658,657.0426 L1540.0478,654 L1537.7658,650.9574 L1545.3724,654 L1537.7658,657.0426 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1453" cy="654" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1270,625 L1283,625 C1292.3555,625 1302.0978,625.6939 1311.7372,626.8164 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1311.3424,629.8961 L1314.047,627.1125 L1312.132,623.7367 L1319.4365,627.8035 L1311.3424,629.8961 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1270" cy="625" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1663,771 L1676,771 C1693.7235,771 1713.0756,771 1730.4649,771 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1730.4649,774.1355 L1732.8165,771 L1730.4649,767.8645 L1738.3035,771 L1730.4649,774.1355 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1663" cy="771" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1663,792 L1676,792 C1694.7687,792 1715.1459,794.5136 1733.1196,797.6077 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1732.5772,800.6253 L1735.3828,798.0144 L1733.6619,794.59 L1740.6637,798.9636 L1732.5772,800.6253 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1663" cy="792" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1453,744 L1466,744 C1490.1167,744 1515.7511,750.8525 1537.2654,758.7377 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1536.1833,761.5897 L1539.4044,759.5493 L1538.3475,755.8857 L1544.3954,761.443 L1536.1833,761.5897 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1453" cy="744" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1270,646 L1283,646 C1285.494,646 1329.5996,682.3496 1360.7991,708.325 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1358.7819,710.7457 L1362.6146,709.8379 L1362.8162,705.9043 L1366.8507,713.3679 L1358.7819,710.7457 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1270" cy="646" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1123,561 L1136,561 C1158.914,561 1179.999,574.9164 1196.0416,589.8707 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1193.8286,592.1413 L1197.7445,591.5305 L1198.2547,587.6002 L1201.718,595.4033 L1193.8286,592.1413 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1123" cy="561" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M942,399 L942,412 C942,464.7561 951.4214,483.9722 989,521 C990.795,522.7687 992.7093,524.4385 994.7161,526.0144 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M992.9357,528.523 L996.5975,527.3497 L996.4964,523.5058 L1000.9876,530.4653 L992.9357,528.523 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="942" cy="399" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M786,467 L799,467 C830.2493,467 851.1105,445.9633 865.0368,417.9638 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M867.7812,419.2508 L866.002,415.9055 L862.2924,416.6769 L868.2542,411.1028 L867.7812,419.2508 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="786" cy="467" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M603,504 L616,504 C641.4517,504 667.7,492.9757 688.0032,481.6055 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M689.5448,484.2646 L689.9976,480.4494 L686.4617,478.9464 L694.651,477.7517 L689.5448,484.2646 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="603" cy="504" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M529,516 L542,516 C551.5077,516 561.7375,514.2054 570.7091,512.0042 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M571.5108,515.0084 L572.9622,511.4029 L569.9074,509 L578.2195,510 L571.5108,515.0084 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="529" cy="516" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M346,528 L359,528 C368.327,528 378.0167,527.2095 387.5964,525.9281 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M388.0473,528.9882 L389.8915,525.59 L387.1456,522.8681 L395.2466,524.801 L388.0473,528.9882 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="346" cy="528" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M940,645 L953,645 C972.7365,645 971.1509,627.4225 989,619 C997.274,615.0957 1006.4722,611.9028 1015.4627,609.325 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1016.2718,612.3163 L1017.7062,608.7182 L1014.6536,606.3337 L1022.941,607.3022 L1016.2718,612.3163 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="940" cy="645" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M940,665 L953,665 C956.3411,665 987.4778,657.1887 1015.5425,649.9691 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1016.3086,652.9404 L1017.7709,649.3945 L1014.7764,646.9979 L1022.9706,648.0538 L1016.3086,652.9404 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="940" cy="665" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M940,685 L953,685 C971.8542,685 992.4885,683.6336 1010.6531,681.9656 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1010.9452,685.0141 L1012.9395,681.7465 L1010.3611,678.9171 L1018.2744,681.2353 L1010.9452,685.0141 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="940" cy="685" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M940,705 L953,705 C971.8542,705 992.4885,706.3664 1010.6531,708.0344 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1010.3611,711.0829 L1012.9395,708.2535 L1010.9452,704.9859 L1018.2744,708.7647 L1010.3611,711.0829 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="940" cy="705" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M940,726 L953,726 C959.5289,726 989.2752,733.2116 1015.9728,740.0386 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1015.2092,743.0096 L1018.201,740.6114 L1016.7364,737.0677 L1023.4002,741.9477 L1015.2092,743.0096 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="940" cy="726" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M940,746 L953,746 C972.4797,746 971.3071,762.8504 989,771 C994.4014,773.488 1000.1849,775.6931 1006.0419,777.6372 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1005.1121,780.6112 L1008.2725,778.3346 L1006.9717,774.6632 L1013.477,779.9617 L1005.1121,780.6112 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="940" cy="746" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1098.5,849 L1111.5,849 C1129.7558,849 1149.6416,849 1167.6642,849 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1167.6642,852.0399 L1169.9441,849 L1167.6642,845.9601 L1175.2638,849 L1167.6642,852.0399 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1098.5" cy="849" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M940,767 L953,767 C977.5855,767 969.0946,794.5702 989,809 C994.5885,813.0512 1000.8051,816.674 1007.1823,819.8793 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1005.8564,822.6636 L1009.2705,820.8737 L1008.5082,817.095 L1014.1431,823.194 L1005.8564,822.6636 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="940" cy="767" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M786,620 L799,620 C811.4557,620 822.98,624.1613 833.38,630.6532 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M831.6492,633.1845 L835.2785,631.9512 L835.1108,628.1218 L839.7084,634.9801 L831.6492,633.1845 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="786" cy="620" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M603,604 L616,604 C625.3038,604 635.0496,604.2227 644.7217,604.5822 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M644.5953,607.6747 L647.0411,604.677 L644.8481,601.4897 L652.453,604.8983 L644.5953,607.6747 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="603" cy="604" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M529,581 L542,581 C553.2058,581 564.7487,585.2441 574.2715,590.0861 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M572.7679,592.8258 L576.3262,591.2137 L575.775,587.3464 L581.1207,593.8449 L572.7679,592.8258 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="529" cy="581" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M346,549 L359,549 C368.327,549 378.0167,549.7905 387.5964,551.0719 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M387.1456,554.1319 L389.8915,551.41 L388.0473,548.0118 L395.2466,552.199 L387.1456,554.1319 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="346" cy="549" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M144,539 L157,539 C166.2948,539 176.0014,539 185.6819,539 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M185.6819,542.0998 L188.0068,539 L185.6819,535.9002 L193.4315,539 L185.6819,542.0998 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="144" cy="539" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="181px" preserveAspectRatio="none" style="width:409px;height:181px;background:#FFFFFF;" version="1.1" viewBox="0 0 409 181" width="409px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="88" x="10" y="95.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="56" x="15" y="110.4951">Default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="81" y="110.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="76" x2="76" y1="95.5" y2="115.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="88" x="10" y="95.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="71" x="135" y="85"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="140" y="99.9951">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="189" y="99.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="184" x2="184" y1="85" y2="105.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="135" x2="206" y1="105.2969" y2="105.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="140" y="120.292">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="189" y="120.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="184" x2="184" y1="105.2969" y2="125.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="71" x="135" y="85"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="106" x="267" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="272" y="24.9951">Seo</text><line style="stroke:#000000;stroke-width:1.0;" x1="267" x2="373" y1="30.2969" y2="30.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="28" x="272" y="45.292">Pwa</text><line style="stroke:#000000;stroke-width:1.0;" x1="267" x2="373" y1="50.5938" y2="50.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="26" x="272" y="65.5889">Css</text><line style="stroke:#000000;stroke-width:1.0;" x1="267" x2="373" y1="70.8906" y2="70.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="96" x="272" y="85.8857">DefaultScripts</text><line style="stroke:#000000;stroke-width:1.0;" x1="267" x2="373" y1="91.1875" y2="91.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="75" x="272" y="106.1826">Production</text><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="106" x="267" y="10"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="154" x="243" y="129"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="94" x="248" y="143.9951">CacheControl</text><line style="stroke:#000000;stroke-width:1.0;" x1="243" x2="397" y1="149.2969" y2="149.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="144" x="248" y="164.292">DefaultSplashScreen</text><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="154" x="243" y="129"/><path d="M194,94.5 L207,94.5 C224.5169,94.5 242.9373,90.6762 259.6851,85.5933 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M260.651,88.6205 L261.9554,84.8688 L258.7191,82.5661 L267.253,83.1785 L260.651,88.6205 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="194" cy="94.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M194,115.5 L207,115.5 C216.9946,115.5 235.8154,120.4794 255.2433,126.627 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M254.319,129.4949 L257.3942,127.3202 L256.1675,123.759 L262.4131,128.9377 L254.319,129.4949 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="194" cy="115.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M86,105.5 L99,105.5 C108.2448,105.5 118.1667,105.5 127.5755,105.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M127.5755,108.6026 L129.9024,105.5 L127.5755,102.3974 L135.332,105.5 L127.5755,108.6026 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="86" cy="105.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>
|