underpost 2.6.3 → 2.7.2

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.
Files changed (216) hide show
  1. package/.dockerignore +13 -13
  2. package/.env.development +7 -7
  3. package/.env.production +7 -7
  4. package/.env.test +7 -7
  5. package/.github/workflows/publish.yml +26 -0
  6. package/.nycrc +9 -9
  7. package/.prettierignore +12 -12
  8. package/.prettierrc +9 -9
  9. package/.vscode/extensions.json +72 -72
  10. package/.vscode/settings.json +100 -99
  11. package/AUTHORS.md +10 -0
  12. package/CHANGELOG.md +91 -0
  13. package/Dockerfile +89 -89
  14. package/LICENSE +21 -21
  15. package/README.md +96 -96
  16. package/bin/db.js +172 -119
  17. package/bin/deploy.js +582 -626
  18. package/bin/dns.js +1 -1
  19. package/bin/file.js +92 -92
  20. package/bin/index.js +53 -34
  21. package/bin/install.js +398 -357
  22. package/bin/shortcut.js +44 -44
  23. package/bin/ssl.js +65 -61
  24. package/bin/util.js +182 -182
  25. package/bin/vs.js +35 -35
  26. package/conf.js +251 -249
  27. package/docker-compose.yml +67 -67
  28. package/jsconfig.json +7 -7
  29. package/jsdoc.json +32 -32
  30. package/nodemon.json +6 -6
  31. package/package.json +137 -128
  32. package/prometheus.yml +36 -36
  33. package/setup.sh +24 -24
  34. package/src/api/core/core.controller.js +69 -69
  35. package/src/api/core/core.model.js +11 -11
  36. package/src/api/core/core.router.js +23 -23
  37. package/src/api/core/core.service.js +29 -29
  38. package/src/api/crypto/crypto.controller.js +51 -51
  39. package/src/api/crypto/crypto.model.js +23 -23
  40. package/src/api/crypto/crypto.router.js +20 -20
  41. package/src/api/crypto/crypto.service.js +64 -64
  42. package/src/api/default/default.controller.js +69 -69
  43. package/src/api/default/default.model.js +20 -20
  44. package/src/api/default/default.router.js +23 -23
  45. package/src/api/default/default.service.js +31 -31
  46. package/src/api/file/file.controller.js +53 -51
  47. package/src/api/file/file.model.js +19 -19
  48. package/src/api/file/file.router.js +21 -20
  49. package/src/api/file/file.service.js +76 -70
  50. package/src/api/instance/instance.controller.js +69 -69
  51. package/src/api/instance/instance.model.js +36 -36
  52. package/src/api/instance/instance.router.js +33 -33
  53. package/src/api/instance/instance.service.js +48 -48
  54. package/src/api/test/test.controller.js +59 -59
  55. package/src/api/test/test.model.js +14 -14
  56. package/src/api/test/test.router.js +21 -21
  57. package/src/api/test/test.service.js +35 -35
  58. package/src/api/user/user.build.js +16 -0
  59. package/src/api/user/user.controller.js +70 -70
  60. package/src/api/user/user.model.js +65 -65
  61. package/src/api/user/user.router.js +345 -345
  62. package/src/api/user/user.service.js +479 -479
  63. package/src/api.js +23 -23
  64. package/src/client/Default.index.js +40 -40
  65. package/src/client/components/core/Account.js +290 -290
  66. package/src/client/components/core/AgGrid.js +160 -160
  67. package/src/client/components/core/Auth.js +19 -19
  68. package/src/client/components/core/Badge.js +32 -32
  69. package/src/client/components/core/BlockChain.js +41 -41
  70. package/src/client/components/core/Blog.js +9 -9
  71. package/src/client/components/core/BtnIcon.js +101 -94
  72. package/src/client/components/core/CalendarCore.js +458 -319
  73. package/src/client/components/core/Chat.js +64 -64
  74. package/src/client/components/core/ColorPalette.js +5267 -5267
  75. package/src/client/components/core/CommonJs.js +735 -732
  76. package/src/client/components/core/Content.js +193 -49
  77. package/src/client/components/core/Css.js +1064 -1027
  78. package/src/client/components/core/CssCore.js +817 -796
  79. package/src/client/components/core/D3Chart.js +44 -44
  80. package/src/client/components/core/Docs.js +229 -229
  81. package/src/client/components/core/DropDown.js +164 -164
  82. package/src/client/components/core/EventsUI.js +46 -54
  83. package/src/client/components/core/FileExplorer.js +699 -624
  84. package/src/client/components/core/FullScreen.js +45 -45
  85. package/src/client/components/core/Input.js +346 -259
  86. package/src/client/components/core/JoyStick.js +77 -77
  87. package/src/client/components/core/Keyboard.js +73 -73
  88. package/src/client/components/core/LoadingAnimation.js +179 -157
  89. package/src/client/components/core/LogIn.js +187 -181
  90. package/src/client/components/core/LogOut.js +58 -52
  91. package/src/client/components/core/Logger.js +26 -26
  92. package/src/client/components/core/Modal.js +1612 -1596
  93. package/src/client/components/core/NotificationManager.js +84 -84
  94. package/src/client/components/core/Panel.js +613 -413
  95. package/src/client/components/core/PanelForm.js +468 -0
  96. package/src/client/components/core/Polyhedron.js +162 -162
  97. package/src/client/components/core/Recover.js +204 -204
  98. package/src/client/components/core/Responsive.js +53 -53
  99. package/src/client/components/core/RichText.js +51 -27
  100. package/src/client/components/core/Router.js +76 -77
  101. package/src/client/components/core/Scroll.js +34 -0
  102. package/src/client/components/core/SignUp.js +125 -125
  103. package/src/client/components/core/SocketIo.js +72 -72
  104. package/src/client/components/core/Stream.js +113 -113
  105. package/src/client/components/core/ToggleSwitch.js +87 -87
  106. package/src/client/components/core/ToolTip.js +26 -26
  107. package/src/client/components/core/Translate.js +437 -408
  108. package/src/client/components/core/Validator.js +100 -100
  109. package/src/client/components/core/VanillaJs.js +460 -457
  110. package/src/client/components/core/Wallet.js +106 -106
  111. package/src/client/components/core/Webhook.js +25 -25
  112. package/src/client/components/core/Worker.js +272 -272
  113. package/src/client/components/default/CommonDefault.js +29 -29
  114. package/src/client/components/default/CssDefault.js +13 -13
  115. package/src/client/components/default/ElementsDefault.js +38 -38
  116. package/src/client/components/default/LogInDefault.js +41 -41
  117. package/src/client/components/default/LogOutDefault.js +28 -28
  118. package/src/client/components/default/MenuDefault.js +389 -389
  119. package/src/client/components/default/RoutesDefault.js +48 -48
  120. package/src/client/components/default/SettingsDefault.js +16 -16
  121. package/src/client/components/default/SignUpDefault.js +9 -9
  122. package/src/client/components/default/SocketIoDefault.js +54 -54
  123. package/src/client/components/default/TranslateDefault.js +7 -7
  124. package/src/client/public/default/assets/mailer/api-user-check.png +0 -0
  125. package/src/client/public/default/assets/mailer/api-user-invalid-token.png +0 -0
  126. package/src/client/public/default/assets/mailer/api-user-recover.png +0 -0
  127. package/src/client/public/default/browserconfig.xml +11 -11
  128. package/src/client/public/default/manifest.webmanifest +68 -68
  129. package/src/client/public/default/plantuml/client-conf.svg +1 -0
  130. package/src/client/public/default/plantuml/client-schema.svg +1 -0
  131. package/src/client/public/default/plantuml/cron-conf.svg +1 -0
  132. package/src/client/public/default/plantuml/cron-schema.svg +1 -0
  133. package/src/client/public/default/plantuml/server-conf.svg +1 -0
  134. package/src/client/public/default/plantuml/server-schema.svg +1 -0
  135. package/src/client/public/default/plantuml/ssr-conf.svg +1 -0
  136. package/src/client/public/default/plantuml/ssr-schema.svg +1 -0
  137. package/src/client/public/default/sitemap +147 -147
  138. package/src/client/public/default/yandex-browser-manifest.json +8 -8
  139. package/src/client/public/doc/sitemap +147 -147
  140. package/src/client/public/test/sitemap +147 -147
  141. package/src/client/services/core/core.service.js +170 -152
  142. package/src/client/services/crypto/crypto.service.js +70 -70
  143. package/src/client/services/default/default.management.js +345 -345
  144. package/src/client/services/default/default.service.js +89 -89
  145. package/src/client/services/file/file.service.js +70 -70
  146. package/src/client/services/instance/instance.management.js +74 -74
  147. package/src/client/services/instance/instance.service.js +89 -89
  148. package/src/client/services/test/test.service.js +70 -70
  149. package/src/client/services/user/user.management.js +50 -50
  150. package/src/client/services/user/user.service.js +89 -89
  151. package/src/client/ssr/Render.js +16 -16
  152. package/src/client/ssr/body-components/CacheControl.js +114 -113
  153. package/src/client/ssr/body-components/DefaultSplashScreen.js +79 -79
  154. package/src/client/ssr/email-components/DefaultRecoverEmail.js +21 -21
  155. package/src/client/ssr/email-components/DefaultVerifyEmail.js +17 -17
  156. package/src/client/ssr/head-components/Css.js +241 -241
  157. package/src/client/ssr/head-components/DefaultScripts.js +3 -3
  158. package/src/client/ssr/head-components/Microdata.js +11 -11
  159. package/src/client/ssr/head-components/Production.js +1 -1
  160. package/src/client/ssr/head-components/PwaDefault.js +59 -59
  161. package/src/client/ssr/head-components/Seo.js +14 -14
  162. package/src/client/sw/default.sw.js +201 -201
  163. package/src/client/sw/template.sw.js +84 -84
  164. package/src/client.build.js +22 -22
  165. package/src/client.dev.js +21 -21
  166. package/src/cron.js +25 -25
  167. package/src/db/DataBaseProvider.js +34 -34
  168. package/src/db/mariadb/MariaDB.js +33 -33
  169. package/src/db/mongo/MongooseDB.js +46 -46
  170. package/src/dns.js +22 -22
  171. package/src/index.js +42 -0
  172. package/src/mailer/EmailRender.js +69 -69
  173. package/src/mailer/MailerProvider.js +96 -96
  174. package/src/proxy.js +22 -22
  175. package/src/runtime/lampp/Lampp.js +69 -44
  176. package/src/runtime/nginx/Nginx.js +3 -3
  177. package/src/runtime/xampp/Xampp.js +49 -49
  178. package/src/server/auth.js +235 -204
  179. package/src/server/backup.js +101 -84
  180. package/src/server/client-build-live.js +72 -72
  181. package/src/server/client-build.js +705 -699
  182. package/src/server/client-dev-server.js +60 -58
  183. package/src/server/client-formatted.js +48 -48
  184. package/src/server/client-icons.js +149 -150
  185. package/src/server/conf.js +860 -611
  186. package/src/server/dns.js +98 -87
  187. package/src/server/downloader.js +42 -42
  188. package/src/server/logger.js +180 -135
  189. package/src/server/network.js +122 -122
  190. package/src/server/peer.js +33 -33
  191. package/src/server/process.js +66 -66
  192. package/src/server/prompt-optimizer.js +28 -0
  193. package/src/server/proxy.js +118 -118
  194. package/src/server/runtime.js +444 -393
  195. package/src/server/ssl.js +109 -107
  196. package/src/server.js +25 -25
  197. package/src/ws/IoInterface.js +45 -45
  198. package/src/ws/IoServer.js +39 -39
  199. package/src/ws/core/channels/core.ws.chat.js +23 -23
  200. package/src/ws/core/channels/core.ws.mailer.js +35 -35
  201. package/src/ws/core/channels/core.ws.stream.js +31 -31
  202. package/src/ws/core/core.ws.connection.js +28 -28
  203. package/src/ws/core/core.ws.emit.js +14 -14
  204. package/src/ws/core/core.ws.server.js +24 -24
  205. package/src/ws/core/management/core.ws.chat.js +8 -8
  206. package/src/ws/core/management/core.ws.mailer.js +16 -16
  207. package/src/ws/core/management/core.ws.stream.js +8 -8
  208. package/src/ws/default/channels/default.ws.main.js +16 -16
  209. package/src/ws/default/default.ws.connection.js +22 -22
  210. package/src/ws/default/default.ws.emit.js +14 -14
  211. package/src/ws/default/default.ws.server.js +20 -20
  212. package/src/ws/default/management/default.ws.main.js +8 -8
  213. package/startup.js +11 -11
  214. package/supervisord-openssh-server.conf +4 -4
  215. package/test/api.test.js +60 -60
  216. package/bin/help.js +0 -110
@@ -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="2767px" preserveAspectRatio="none" style="width:1445px;height:2767px;background:#FFFFFF;" version="1.1" viewBox="0 0 1445 2767" width="1445px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="80" x="10" y="1630"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="15" y="1646.5332">default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="73" y="1646.5332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="68" x2="68" y1="1630" y2="1651.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="80" x="10" y="1630"/><rect fill="#F1F1F1" height="108.0469" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="118" x="127" y="1587"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="63" x="132" y="1603.5332">metadata</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="228" y="1603.5332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="223" x2="223" y1="1587" y2="1608.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="127" x2="245" y1="1608.6094" y2="1608.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="86" x="132" y="1625.1426">components</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="228" y="1625.1426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="223" x2="223" y1="1608.6094" y2="1630.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="127" x2="245" y1="1630.2188" y2="1630.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="132" y="1646.752">views</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="228" y="1646.752">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="223" x2="223" y1="1630.2188" y2="1651.8281"/><line style="stroke:#000000;stroke-width:1.0;" x1="127" x2="245" y1="1651.8281" y2="1651.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="34" x="132" y="1668.3613">dists</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="228" y="1668.3613">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="223" x2="223" y1="1651.8281" y2="1673.4375"/><line style="stroke:#000000;stroke-width:1.0;" x1="127" x2="245" y1="1673.4375" y2="1673.4375"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="57" x="132" y="1689.9707">services</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="228" y="1689.9707">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="223" x2="223" y1="1673.4375" y2="1695.0469"/><rect fill="none" height="108.0469" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="118" x="127" y="1587"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="516" x="282" y="1200.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="26" x="287" y="1217.0332">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="421" y="1217.0332">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="416" x2="416" y1="1200.5" y2="1222.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="282" x2="798" y1="1222.1094" y2="1222.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="124" x="287" y="1238.6426">backgroundImage</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="372" x="421" y="1238.6426">./src/client/public/default/assets/background/white0-min.jpg</text><line style="stroke:#000000;stroke-width:1.0;" x1="416" x2="416" y1="1222.1094" y2="1243.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="516" x="282" y="1200.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="80" x="500" y="1261.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="505" y="1278.0332">core</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="563" y="1278.0332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="558" x2="558" y1="1261.5" y2="1283.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="500" x2="580" y1="1283.1094" y2="1283.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="505" y="1299.6426">default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="563" y="1299.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="558" x2="558" y1="1283.1094" y2="1304.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="80" x="500" y="1261.5"/><rect fill="#F1F1F1" height="907.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="137" x="1065.5" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="72" x="1070.5" y="26.5332">CommonJs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="31.6094" y2="31.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1070.5" y="48.1426">VanillaJs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="53.2188" y2="53.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="74" x="1070.5" y="69.752">Responsive</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="74.8281" y2="74.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="61" x="1070.5" y="91.3613">Keyboard</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="96.4375" y2="96.4375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="60" x="1070.5" y="112.9707">Translate</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="118.0469" y2="118.0469"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1070.5" y="134.5801">Modal</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="139.6563" y2="139.6563"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="48" x="1070.5" y="156.1895">BtnIcon</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="161.2656" y2="161.2656"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1070.5" y="177.7988">Logger</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="182.875" y2="182.875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="24" x="1070.5" y="199.4082">Css</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="204.4844" y2="204.4844"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="127" x="1070.5" y="221.0176">NotificationManager</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="226.0938" y2="226.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="85" x="1070.5" y="242.627">ToggleSwitch</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="247.7031" y2="247.7031"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="67" x="1070.5" y="264.2363">DropDown</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="269.3125" y2="269.3125"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="114" x="1070.5" y="285.8457">LoadingAnimation</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="290.9219" y2="290.9219"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="57" x="1070.5" y="307.4551">EventsUI</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="312.5313" y2="312.5313"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="44" x="1070.5" y="329.0645">AgGrid</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="334.1406" y2="334.1406"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="32" x="1070.5" y="350.6738">Input</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="355.75" y2="355.75"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1070.5" y="372.2832">Validator</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="377.3594" y2="377.3594"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="1070.5" y="393.8926">SignUp</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="398.9688" y2="398.9688"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="36" x="1070.5" y="415.502">LogIn</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="420.5781" y2="420.5781"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="1070.5" y="437.1113">LogOut</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="442.1875" y2="442.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="1070.5" y="458.7207">Router</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="463.7969" y2="463.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="51" x="1070.5" y="480.3301">Account</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="485.4063" y2="485.4063"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="29" x="1070.5" y="501.9395">Auth</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="507.0156" y2="507.0156"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="68" x="1070.5" y="523.5488">FullScreen</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="528.625" y2="528.625"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1070.5" y="545.1582">RichText</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="550.2344" y2="550.2344"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="89" x="1070.5" y="566.7676">CalendarCore</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="571.8438" y2="571.8438"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="53" x="1070.5" y="588.377">D3Chart</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="593.4531" y2="593.4531"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="1070.5" y="609.9863">Stream</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="615.0625" y2="615.0625"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="55" x="1070.5" y="631.5957">SocketIo</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="636.6719" y2="636.6719"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="32" x="1070.5" y="653.2051">Docs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="658.2813" y2="658.2813"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="50" x="1070.5" y="674.8145">Content</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="679.8906" y2="679.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="76" x="1070.5" y="696.4238">FileExplorer</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="701.5" y2="701.5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="30" x="1070.5" y="718.0332">Chat</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="723.1094" y2="723.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="1070.5" y="739.6426">Worker</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="744.7188" y2="744.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="55" x="1070.5" y="761.252">CssCore</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="766.3281" y2="766.3281"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1070.5" y="782.8613">Wallet</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="787.9375" y2="787.9375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="41" x="1070.5" y="804.4707">Badge</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="809.5469" y2="809.5469"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="48" x="1070.5" y="826.0801">ToolTip</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="831.1563" y2="831.1563"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="60" x="1070.5" y="847.6895">Webhook</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="852.7656" y2="852.7656"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="53" x="1070.5" y="869.2988">Recover</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="874.375" y2="874.375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="36" x="1070.5" y="890.9082">Panel</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="895.9844" y2="895.9844"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="70" x="1070.5" y="912.5176">PanelForm</text><rect fill="none" height="907.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="137" x="1065.5" y="10"/><rect fill="#F1F1F1" height="237.7031" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="115" x="1076.5" y="936"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="81" x="1081.5" y="952.5332">MenuDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1076.5" x2="1191.5" y1="957.6094" y2="957.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="90" x="1081.5" y="974.1426">RoutesDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1076.5" x2="1191.5" y1="979.2188" y2="979.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="104" x="1081.5" y="995.752">ElementsDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1076.5" x2="1191.5" y1="1000.8281" y2="1000.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="103" x="1081.5" y="1017.3613">CommonDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1076.5" x2="1191.5" y1="1022.4375" y2="1022.4375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="69" x="1081.5" y="1038.9707">CssDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1076.5" x2="1191.5" y1="1044.0469" y2="1044.0469"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="81" x="1081.5" y="1060.5801">LogInDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1076.5" x2="1191.5" y1="1065.6563" y2="1065.6563"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="92" x="1081.5" y="1082.1895">LogOutDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1076.5" x2="1191.5" y1="1087.2656" y2="1087.2656"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="91" x="1081.5" y="1103.7988">SignUpDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1076.5" x2="1191.5" y1="1108.875" y2="1108.875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="105" x="1081.5" y="1125.4082">TranslateDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1076.5" x2="1191.5" y1="1130.4844" y2="1130.4844"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="96" x="1081.5" y="1147.0176">SettingsDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1076.5" x2="1191.5" y1="1152.0938" y2="1152.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="100" x="1081.5" y="1168.627">SocketIoDefault</text><rect fill="none" height="237.7031" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="115" x="1076.5" y="936"/><rect fill="#F1F1F1" height="216.0938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="528" y="1532"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="1548.5332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="1553.6094" y2="1553.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="1570.1426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="1575.2188" y2="1575.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="1591.752">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="1596.8281" y2="1596.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="1613.3613">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="1618.4375" y2="1618.4375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="1634.9707">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="1640.0469" y2="1640.0469"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="1656.5801">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="1661.6563" y2="1661.6563"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="1678.1895">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="1683.2656" y2="1683.2656"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="1699.7988">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="1704.875" y2="1704.875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="1721.4082">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="1726.4844" y2="1726.4844"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="1743.0176">   </text><rect fill="none" height="216.0938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="528" y="1532"/><rect fill="#F1F1F1" height="86.4375" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="103" x="1082.5" y="1192"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1087.5" y="1208.5332">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="4" x="1135.5" y="1208.5332">/</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1192" y2="1213.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1082.5" x2="1185.5" y1="1213.6094" y2="1213.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="26" x="1087.5" y="1230.1426">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="1135.5" y="1230.1426">Home</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1213.6094" y2="1235.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1082.5" x2="1185.5" y1="1235.2188" y2="1235.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="1087.5" y="1251.752">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1135.5" y="1251.752">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1235.2188" y2="1256.8281"/><line style="stroke:#000000;stroke-width:1.0;" x1="1082.5" x2="1185.5" y1="1256.8281" y2="1256.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="21" x="1087.5" y="1273.3613">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1135.5" y="1273.3613">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1256.8281" y2="1278.4375"/><rect fill="none" height="86.4375" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="103" x="1082.5" y="1192"/><rect fill="#F1F1F1" height="86.4375" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="103" x="1082.5" y="1296"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1087.5" y="1312.5332">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="40" x="1135.5" y="1312.5332">/home</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1296" y2="1317.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1082.5" x2="1185.5" y1="1317.6094" y2="1317.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="26" x="1087.5" y="1334.1426">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="1135.5" y="1334.1426">Home</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1317.6094" y2="1339.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1082.5" x2="1185.5" y1="1339.2188" y2="1339.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="1087.5" y="1355.752">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1135.5" y="1355.752">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1339.2188" y2="1360.8281"/><line style="stroke:#000000;stroke-width:1.0;" x1="1082.5" x2="1185.5" y1="1360.8281" y2="1360.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="21" x="1087.5" y="1377.3613">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1135.5" y="1377.3613">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1360.8281" y2="1382.4375"/><rect fill="none" height="86.4375" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="103" x="1082.5" y="1296"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1078.5" y="1400.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1083.5" y="1417.0332">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="53" x="1131.5" y="1417.0332">/settings</text><line style="stroke:#000000;stroke-width:1.0;" x1="1126.5" x2="1126.5" y1="1400.5" y2="1422.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1078.5" x2="1189.5" y1="1422.1094" y2="1422.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="1083.5" y="1438.6426">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1131.5" y="1438.6426">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1126.5" x2="1126.5" y1="1422.1094" y2="1443.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1078.5" x2="1189.5" y1="1443.7188" y2="1443.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="21" x="1083.5" y="1460.252">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1131.5" y="1460.252">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1126.5" x2="1126.5" y1="1443.7188" y2="1465.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1078.5" y="1400.5"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="103" x="1082.5" y="1483.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1087.5" y="1500.0332">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1135.5" y="1500.0332">/log-in</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1483.5" y2="1505.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1082.5" x2="1185.5" y1="1505.1094" y2="1505.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="1087.5" y="1521.6426">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1135.5" y="1521.6426">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1505.1094" y2="1526.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1082.5" x2="1185.5" y1="1526.7188" y2="1526.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="21" x="1087.5" y="1543.252">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1135.5" y="1543.252">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1526.7188" y2="1548.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="103" x="1082.5" y="1483.5"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="109" x="1079.5" y="1566.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1084.5" y="1583.0332">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="51" x="1132.5" y="1583.0332">/sign-up</text><line style="stroke:#000000;stroke-width:1.0;" x1="1127.5" x2="1127.5" y1="1566.5" y2="1588.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1079.5" x2="1188.5" y1="1588.1094" y2="1588.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="1084.5" y="1604.6426">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1132.5" y="1604.6426">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1127.5" x2="1127.5" y1="1588.1094" y2="1609.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1079.5" x2="1188.5" y1="1609.7188" y2="1609.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="21" x="1084.5" y="1626.252">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1132.5" y="1626.252">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1127.5" x2="1127.5" y1="1609.7188" y2="1631.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="109" x="1079.5" y="1566.5"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="106" x="1081" y="1649.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1086" y="1666.0332">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="48" x="1134" y="1666.0332">/log-out</text><line style="stroke:#000000;stroke-width:1.0;" x1="1129" x2="1129" y1="1649.5" y2="1671.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1081" x2="1187" y1="1671.1094" y2="1671.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="1086" y="1687.6426">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1134" y="1687.6426">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1129" x2="1129" y1="1671.1094" y2="1692.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1081" x2="1187" y1="1692.7188" y2="1692.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="21" x="1086" y="1709.252">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1134" y="1709.252">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1129" x2="1129" y1="1692.7188" y2="1714.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="106" x="1081" y="1649.5"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="112" x="1078" y="1732.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1083" y="1749.0332">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="54" x="1131" y="1749.0332">/account</text><line style="stroke:#000000;stroke-width:1.0;" x1="1126" x2="1126" y1="1732.5" y2="1754.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1078" x2="1190" y1="1754.1094" y2="1754.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="1083" y="1770.6426">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1131" y="1770.6426">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1126" x2="1126" y1="1754.1094" y2="1775.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1078" x2="1190" y1="1775.7188" y2="1775.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="21" x="1083" y="1792.252">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1131" y="1792.252">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1126" x2="1126" y1="1775.7188" y2="1797.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="112" x="1078" y="1732.5"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="103" x="1082.5" y="1815.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1087.5" y="1832.0332">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="34" x="1135.5" y="1832.0332">/docs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1815.5" y2="1837.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1082.5" x2="1185.5" y1="1837.1094" y2="1837.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="1087.5" y="1853.6426">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1135.5" y="1853.6426">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1837.1094" y2="1858.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1082.5" x2="1185.5" y1="1858.7188" y2="1858.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="21" x="1087.5" y="1875.252">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1135.5" y="1875.252">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1858.7188" y2="1880.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="103" x="1082.5" y="1815.5"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="110" x="1079" y="1898.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1084" y="1915.0332">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="52" x="1132" y="1915.0332">/recover</text><line style="stroke:#000000;stroke-width:1.0;" x1="1127" x2="1127" y1="1898.5" y2="1920.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1079" x2="1189" y1="1920.1094" y2="1920.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="1084" y="1936.6426">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1132" y="1936.6426">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1127" x2="1127" y1="1920.1094" y2="1941.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1079" x2="1189" y1="1941.7188" y2="1941.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="21" x="1084" y="1958.252">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1132" y="1958.252">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1127" x2="1127" y1="1941.7188" y2="1963.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="110" x="1079" y="1898.5"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="194" x="1037" y="1981.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1042" y="1998.0332">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="136" x="1090" y="1998.0332">/default-management</text><line style="stroke:#000000;stroke-width:1.0;" x1="1085" x2="1085" y1="1981.5" y2="2003.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1037" x2="1231" y1="2003.1094" y2="2003.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="1042" y="2019.6426">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1090" y="2019.6426">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1085" x2="1085" y1="2003.1094" y2="2024.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1037" x2="1231" y1="2024.7188" y2="2024.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="21" x="1042" y="2041.252">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1090" y="2041.252">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1085" x2="1085" y1="2024.7188" y2="2046.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="194" x="1037" y="1981.5"/><rect fill="#F1F1F1" height="172.875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="528" y="2251.5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="2268.0332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="2273.1094" y2="2273.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="2289.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="2294.7188" y2="2294.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="2311.252">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="2316.3281" y2="2316.3281"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="2332.8613">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="2337.9375" y2="2337.9375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="2354.4707">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="2359.5469" y2="2359.5469"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="2376.0801">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="2381.1563" y2="2381.1563"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="2397.6895">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="2402.7656" y2="2402.7656"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="2419.2988">   </text><rect fill="none" height="172.875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="528" y="2251.5"/><rect fill="#F1F1F1" height="86.4375" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="422" x="923" y="2065"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="40" x="928" y="2081.5332">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="270" x="1070" y="2081.5332">./node_modules/@neodrag/vanilla/dist/min</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065" x2="1065" y1="2065" y2="2086.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="923" x2="1345" y1="2086.6094" y2="2086.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="91" x="928" y="2103.1426">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="142" x="1070" y="2103.1426">/dist/@neodrag-vanilla</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065" x2="1065" y1="2086.6094" y2="2108.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="923" x2="1345" y1="2108.2188" y2="2108.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="89" x="928" y="2124.752">import_name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="111" x="1070" y="2124.752">@neodrag/vanilla</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065" x2="1065" y1="2108.2188" y2="2129.8281"/><line style="stroke:#000000;stroke-width:1.0;" x1="923" x2="1345" y1="2129.8281" y2="2129.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="132" x="928" y="2146.3613">import_name_build</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="194" x="1070" y="2146.3613">/dist/@neodrag-vanilla/index.js</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065" x2="1065" y1="2129.8281" y2="2151.4375"/><rect fill="none" height="86.4375" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="422" x="923" y="2065"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="432" x="918" y="2169.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="40" x="923" y="2186.0332">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="321" x="1024" y="2186.0332">./node_modules/@fortawesome/fontawesome-free</text><line style="stroke:#000000;stroke-width:1.0;" x1="1019" x2="1019" y1="2169.5" y2="2191.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="918" x2="1350" y1="2191.1094" y2="2191.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="91" x="923" y="2207.6426">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="115" x="1024" y="2207.6426">/dist/fontawesome</text><line style="stroke:#000000;stroke-width:1.0;" x1="1019" x2="1019" y1="2191.1094" y2="2212.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="432" x="918" y="2169.5"/><rect fill="#F1F1F1" height="86.4375" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="405" x="931.5" y="2231"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="40" x="936.5" y="2247.5332">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="223" x="1078.5" y="2247.5332">./node_modules/sortablejs/modular</text><line style="stroke:#000000;stroke-width:1.0;" x1="1073.5" x2="1073.5" y1="2231" y2="2252.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="931.5" x2="1336.5" y1="2252.6094" y2="2252.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="91" x="936.5" y="2269.1426">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="91" x="1078.5" y="2269.1426">/dist/sortablejs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1073.5" x2="1073.5" y1="2252.6094" y2="2274.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="931.5" x2="1336.5" y1="2274.2188" y2="2274.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="89" x="936.5" y="2290.752">import_name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="61" x="1078.5" y="2290.752">sortablejs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1073.5" x2="1073.5" y1="2274.2188" y2="2295.8281"/><line style="stroke:#000000;stroke-width:1.0;" x1="931.5" x2="1336.5" y1="2295.8281" y2="2295.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="132" x="936.5" y="2312.3613">import_name_build</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="253" x="1078.5" y="2312.3613">/dist/sortablejs/sortable.complete.esm.js</text><line style="stroke:#000000;stroke-width:1.0;" x1="1073.5" x2="1073.5" y1="2295.8281" y2="2317.4375"/><rect fill="none" height="86.4375" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="405" x="931.5" y="2231"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="271" x="998.5" y="2335.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="40" x="1003.5" y="2352.0332">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="160" x="1104.5" y="2352.0332">./node_modules/validator</text><line style="stroke:#000000;stroke-width:1.0;" x1="1099.5" x2="1099.5" y1="2335.5" y2="2357.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="998.5" x2="1269.5" y1="2357.1094" y2="2357.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="91" x="1003.5" y="2373.6426">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="84" x="1104.5" y="2373.6426">/dist/validator</text><line style="stroke:#000000;stroke-width:1.0;" x1="1099.5" x2="1099.5" y1="2357.1094" y2="2378.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="271" x="998.5" y="2335.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="412" x="928" y="2396.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="40" x="933" y="2413.0332">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="301" x="1034" y="2413.0332">./node_modules/@loadingio/css-spinner/entries</text><line style="stroke:#000000;stroke-width:1.0;" x1="1029" x2="1029" y1="2396.5" y2="2418.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="928" x2="1340" y1="2418.1094" y2="2418.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="91" x="933" y="2434.6426">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="87" x="1034" y="2434.6426">/dist/loadingio</text><line style="stroke:#000000;stroke-width:1.0;" x1="1029" x2="1029" y1="2418.1094" y2="2439.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="412" x="928" y="2396.5"/><rect fill="#F1F1F1" height="129.6563" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="598" x="835" y="2458"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="89" x="840" y="2474.5332">import_name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="119" x="990" y="2474.5332">ag-grid-community</text><line style="stroke:#000000;stroke-width:1.0;" x1="985" x2="985" y1="2458" y2="2479.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="1433" y1="2479.6094" y2="2479.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="132" x="840" y="2496.1426">import_name_build</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="438" x="990" y="2496.1426">/dist/ag-grid-community/ag-grid-community.auto.complete.esm.min.js</text><line style="stroke:#000000;stroke-width:1.0;" x1="985" x2="985" y1="2479.6094" y2="2501.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="1433" y1="2501.2188" y2="2501.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="40" x="840" y="2517.752">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="251" x="990" y="2517.752">./node_modules/ag-grid-community/dist</text><line style="stroke:#000000;stroke-width:1.0;" x1="985" x2="985" y1="2501.2188" y2="2522.8281"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="1433" y1="2522.8281" y2="2522.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="91" x="840" y="2539.3613">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="149" x="990" y="2539.3613">/dist/ag-grid-community</text><line style="stroke:#000000;stroke-width:1.0;" x1="985" x2="985" y1="2522.8281" y2="2544.4375"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="1433" y1="2544.4375" y2="2544.4375"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="41" x="840" y="2560.9707">styles</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="265" x="990" y="2560.9707">./node_modules/ag-grid-community/styles</text><line style="stroke:#000000;stroke-width:1.0;" x1="985" x2="985" y1="2544.4375" y2="2566.0469"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="1433" y1="2566.0469" y2="2566.0469"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="140" x="840" y="2582.5801">public_styles_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="163" x="990" y="2582.5801">/styles/ag-grid-community</text><line style="stroke:#000000;stroke-width:1.0;" x1="985" x2="985" y1="2566.0469" y2="2587.6563"/><rect fill="none" height="129.6563" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="598" x="835" y="2458"/><rect fill="#F1F1F1" height="86.4375" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="404" x="932" y="2606"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="40" x="937" y="2622.5332">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="226" x="1079" y="2622.5332">./node_modules/socket.io/client-dist</text><line style="stroke:#000000;stroke-width:1.0;" x1="1074" x2="1074" y1="2606" y2="2627.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="932" x2="1336" y1="2627.6094" y2="2627.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="91" x="937" y="2644.1426">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="86" x="1079" y="2644.1426">/dist/socket.io</text><line style="stroke:#000000;stroke-width:1.0;" x1="1074" x2="1074" y1="2627.6094" y2="2649.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="932" x2="1336" y1="2649.2188" y2="2649.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="89" x="937" y="2665.752">import_name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="252" x="1079" y="2665.752">socket.io/client-dist/socket.io.esm.min.js</text><line style="stroke:#000000;stroke-width:1.0;" x1="1074" x2="1074" y1="2649.2188" y2="2670.8281"/><line style="stroke:#000000;stroke-width:1.0;" x1="932" x2="1336" y1="2670.8281" y2="2670.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="132" x="937" y="2687.3613">import_name_build</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="218" x="1079" y="2687.3613">/dist/socket.io/socket.io.esm.min.js</text><line style="stroke:#000000;stroke-width:1.0;" x1="1074" x2="1074" y1="2670.8281" y2="2692.4375"/><rect fill="none" height="86.4375" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="404" x="932" y="2606"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="282" x="993" y="2710.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="40" x="998" y="2727.0332">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="171" x="1099" y="2727.0332">./node_modules/peerjs/dist</text><line style="stroke:#000000;stroke-width:1.0;" x1="1094" x2="1094" y1="2710.5" y2="2732.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="993" x2="1275" y1="2732.1094" y2="2732.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="91" x="998" y="2748.6426">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="69" x="1099" y="2748.6426">/dist/peerjs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1094" x2="1094" y1="2732.1094" y2="2753.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="282" x="993" y="2710.5"/><rect fill="#F1F1F1" height="108.0469" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="53" x="513.5" y="2443"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="518.5" y="2459.5332">default</text><line style="stroke:#000000;stroke-width:1.0;" x1="513.5" x2="566.5" y1="2464.6094" y2="2464.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="28" x="518.5" y="2481.1426">core</text><line style="stroke:#000000;stroke-width:1.0;" x1="513.5" x2="566.5" y1="2486.2188" y2="2486.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="28" x="518.5" y="2502.752">user</text><line style="stroke:#000000;stroke-width:1.0;" x1="513.5" x2="566.5" y1="2507.8281" y2="2507.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="23" x="518.5" y="2524.3613">test</text><line style="stroke:#000000;stroke-width:1.0;" x1="513.5" x2="566.5" y1="2529.4375" y2="2529.4375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="18" x="518.5" y="2545.9707">file</text><rect fill="none" height="108.0469" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="53" x="513.5" y="2443"/><path d="M234.5,1599 L234.5,1586 C234.5,1548.5155 255.1615,1278.1683 282,1252 C283.2437,1250.7874 284.5084,1249.6045 285.7932,1248.4508 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M287.7428,1250.7545 L287.521,1246.9885 L283.8436,1246.147 L291.5526,1243.5767 L287.7428,1250.7545 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="234.5" cy="1599" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M569.5,1273 L569.5,1260 C569.5,1247.2423 789.645,1260.6743 799,1252 C852.2831,1202.594 810.666,995.4683 835,927 C886.3464,782.5277 990.446,637.4275 1061.0904,549.1437 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1063.4883,551.07 L1062.5351,547.3453 L1058.6925,547.2175 L1065.906,543.1489 L1063.4883,551.07 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="569.5" cy="1273" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M568.5,1294 L581.5,1294 C679.9525,1294 720.0512,1310.8216 799,1252 C826.7374,1231.334 809.6323,1206.5143 835,1183 C901.995,1120.8996 1003.7403,1086.1363 1069.423,1068.9803 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1070.1853,1071.9521 L1071.6518,1068.4087 L1068.6607,1066.0086 L1076.8524,1067.0747 L1070.1853,1071.9521 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="568.5" cy="1294" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M233,1619 L246,1619 C291.568,1619 256.6604,1560.8728 282,1523 C343.5175,1431.0554 446.79,1349.1376 502.0055,1309.0406 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M503.7846,1311.5065 L503.8549,1307.7063 L500.2264,1306.5748 L508.1702,1304.5928 L503.7846,1311.5065 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="233" cy="1619" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,1542 L553.5,1542 C637.9056,1542 759.1542,1324.0369 835,1287 C912.2875,1249.2591 1012.617,1238.5156 1075.0264,1235.679 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1075.1553,1238.797 L1077.3649,1235.5824 L1074.8976,1232.5611 L1082.8213,1235.357 L1075.1553,1238.797 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="1542" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,1564 L553.5,1564 C700.3492,1564 697.6559,1442.9739 835,1391 C914.9711,1360.7372 1013.7312,1347.9407 1075.1785,1342.6309 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1075.4349,1345.7009 L1077.481,1342.4386 L1074.9221,1339.5608 L1082.8536,1341.9899 L1075.4349,1345.7009 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="1564" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,1585 L553.5,1585 C687.9863,1585 704.8982,1508.0599 835,1474 C915.0721,1453.0376 1010.1993,1442.325 1071.1798,1437.2 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1071.4307,1440.2533 L1073.4697,1437.0118 L1070.9288,1434.1468 L1078.8129,1436.5727 L1071.4307,1440.2533 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="1585" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,1607 L553.5,1607 C680.5693,1607 709.4765,1576.7605 835,1557 C918.3741,1543.8749 1015.228,1531.0076 1075.4504,1523.2871 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1075.8352,1526.2959 L1077.707,1522.9985 L1075.0656,1520.2782 L1082.9725,1522.3251 L1075.8352,1526.2959 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="1607" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,1629 L553.5,1629 C742.8573,1629 966.5251,1612.8552 1072.2587,1604.253 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1072.5112,1607.3386 L1074.5729,1604.0636 L1072.0062,1601.1674 L1079.9727,1603.6218 L1072.5112,1607.3386 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="1629" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,1651 L553.5,1651 C743.6122,1651 968.2776,1667.8133 1073.4927,1676.6754 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1073.2327,1679.7443 L1075.7944,1676.8704 L1073.7527,1673.6065 L1081.1649,1677.3254 L1073.2327,1679.7443 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="1651" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,1672 L553.5,1672 C680.6478,1672 709.4662,1702.8049 835,1723 C916.2617,1736.0729 1010.3386,1748.935 1070.8146,1756.9113 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1070.4161,1759.9399 L1073.0861,1757.2101 L1071.2131,1753.8826 L1078.3862,1757.9075 L1070.4161,1759.9399 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="1672" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,1694 L553.5,1694 C688.15,1694 704.8489,1771.4847 835,1806 C916.8608,1827.709 1014.5081,1838.755 1075.2714,1843.9441 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1075.0178,1846.9801 L1077.5484,1844.1343 L1075.525,1840.9081 L1082.8613,1844.5781 L1075.0178,1846.9801 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="1694" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,1715 L553.5,1715 C700.5824,1715 696.6696,1839.0206 835,1889 C913.4709,1917.3519 1009.9759,1926.6797 1071.6173,1929.6827 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1071.4767,1932.7682 L1073.9314,1929.7882 L1071.7579,1926.5972 L1079.331,1930.0343 L1071.4767,1932.7682 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="1715" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,1737 L553.5,1737 C716.4768,1737 686.0351,1905.8872 835,1972 C896.1245,1999.128 970.6015,2009.6383 1029.8712,2013.3615 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1029.6947,2016.3692 L1032.1269,2013.4939 L1030.0477,2010.3538 L1037.3903,2013.8028 L1029.6947,2016.3692 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="1737" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M233,1640 L246,1640 C349.8285,1640 474.3178,1640 520.7969,1640 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M520.7969,1643.0028 L523.049,1640 L520.7969,1636.9972 L528.3039,1640 L520.7969,1643.0028 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="233" cy="1640" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,2262 L553.5,2262 C686.571,2262 706.4032,2194.2166 835,2160 C860.9048,2153.1073 888.3244,2146.8983 915.6291,2141.3738 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M916.2451,2144.4526 L917.9382,2140.9118 L915.0131,2138.295 L923.326,2139.8338 L916.2451,2144.4526 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="2262" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,2283 L553.5,2283 C681.5149,2283 708.5886,2242.1978 835,2222 C859.4669,2218.0907 885.1445,2214.5641 910.7385,2211.4128 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M911.1074,2214.4431 L913.0112,2211.1362 L910.3696,2208.3826 L918.3141,2210.4906 L911.1074,2214.4431 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="2283" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,2305 L553.5,2305 C676.5933,2305 814.1723,2297.9514 924.4342,2290.5763 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M924.6377,2293.599 L926.7012,2290.4237 L924.2307,2287.5536 L931.9909,2290.0675 L924.6377,2293.599 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="2305" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,2326 L553.5,2326 C702.9877,2326 873.8391,2336.3954 991.1829,2345.1467 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M990.9534,2348.2071 L993.4782,2345.3188 L991.4125,2342.0862 L998.834,2345.7206 L990.9534,2348.2071 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="2326" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,2349 L553.5,2349 C679.8061,2349 709.5859,2373.0155 835,2388 C862.6535,2391.3041 891.7778,2394.5367 920.5521,2397.5836 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M920.2272,2400.6653 L922.8634,2397.8273 L920.877,2394.5019 L928.2564,2398.3959 L920.2272,2400.6653 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="2349" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,2370 L553.5,2370 C666.2578,2370 692.1415,2398.0057 799,2434 C815.4265,2439.5331 818.5406,2443.5656 835,2449 C841.7949,2451.2435 848.6966,2453.4549 855.675,2455.6314 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M854.7359,2458.6718 L857.9554,2456.3358 L856.6142,2452.5909 L863.2762,2457.9793 L854.7359,2458.6718 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="2370" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,2392 L553.5,2392 C664.1963,2392 718.8727,2357.624 799,2434 C852.7025,2485.1883 781.3752,2545.7303 835,2597 C859.8322,2620.7416 891.4222,2635.7538 924.7057,2644.9455 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M923.9109,2647.9769 L926.9792,2645.5415 L925.5004,2641.914 L932.2842,2646.9323 L923.9109,2647.9769 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="2392" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,2414 L553.5,2414 C662.9726,2414 719.5772,2358.659 799,2434 C885.8722,2516.4075 749.0477,2617.6335 835,2701 C874.2916,2739.1095 931.606,2751.1608 985.5333,2752.1234 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M985.5077,2755.1572 L987.8087,2752.1425 L985.5588,2749.0895 L993.1179,2752.1872 L985.5077,2755.1572 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="2414" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M233,1662 L246,1662 C291.1521,1662 264.8459,1715.2333 282,1757 C369.4525,1969.9291 485.3903,2221.6878 525.2984,2307.5598 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M522.5606,2308.833 L526.2533,2309.6131 L528.0361,2306.2865 L528.4815,2314.4041 L522.5606,2308.833 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="233" cy="1662" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M234.5,1683 L234.5,1696 C234.5,1737.0848 255.6091,2402.5122 282,2434 C337.4821,2500.1975 450.0052,2503.1948 506.1183,2500.079 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M506.3081,2503.0917 L508.3778,2499.9367 L505.9286,2497.0664 L513.65,2499.6048 L506.3081,2503.0917 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="234.5" cy="1683" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M78,1641 L91,1641 C100.2561,1641 110.0221,1641 119.6238,1641 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M119.6238,1644.0609 L121.9195,1641 L119.6238,1637.9391 L127.276,1641 L119.6238,1644.0609 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="78" cy="1641" 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="323px" preserveAspectRatio="none" style="width:1194px;height:323px;background:#FFFFFF;" version="1.1" viewBox="0 0 1194 323" width="1194px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="10" y="125.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="15" y="142.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="95" y="142.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="90" x2="90" y1="125.5" y2="147.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="138" y1="147.1094" y2="147.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="15" y="163.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="95" y="163.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="90" x2="90" y1="147.1094" y2="168.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="10" y="125.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="80" x="175" y="147"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="180" y="163.5332">default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="238" y="163.5332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="233" x2="233" y1="147" y2="168.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="80" x="175" y="147"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="292" y="136.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="297" y="153.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="377" y="153.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="372" x2="372" y1="136.5" y2="158.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="292" x2="420" y1="158.1094" y2="158.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="297" y="174.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="377" y="174.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="372" x2="372" y1="158.1094" y2="179.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="292" y="136.5"/><rect fill="#F1F1F1" height="108.0469" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="118" x="457" y="115"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="63" x="462" y="131.5332">metadata</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="558" y="131.5332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="553" x2="553" y1="115" y2="136.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="457" x2="575" y1="136.6094" y2="136.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="86" x="462" y="153.1426">components</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="558" y="153.1426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="553" x2="553" y1="136.6094" y2="158.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="457" x2="575" y1="158.2188" y2="158.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="462" y="174.752">views</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="558" y="174.752">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="553" x2="553" y1="158.2188" y2="179.8281"/><line style="stroke:#000000;stroke-width:1.0;" x1="457" x2="575" y1="179.8281" y2="179.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="34" x="462" y="196.3613">dists</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="558" y="196.3613">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="553" x2="553" y1="179.8281" y2="201.4375"/><line style="stroke:#000000;stroke-width:1.0;" x1="457" x2="575" y1="201.4375" y2="201.4375"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="57" x="462" y="217.9707">services</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="558" y="217.9707">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="553" x2="553" y1="201.4375" y2="223.0469"/><rect fill="none" height="108.0469" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="118" x="457" y="115"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="612" y="21.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="617" y="38.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="697" y="38.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="692" x2="692" y1="21.5" y2="43.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="612" x2="740" y1="43.1094" y2="43.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="617" y="59.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="697" y="59.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="692" x2="692" y1="43.1094" y2="64.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="612" y="21.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="156" x="777" y="28.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="26" x="782" y="45.0332">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="916" y="45.0332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="911" x2="911" y1="28.5" y2="50.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="777" x2="933" y1="50.1094" y2="50.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="124" x="782" y="66.6426">backgroundImage</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="916" y="66.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="911" x2="911" y1="50.1094" y2="71.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="156" x="777" y="28.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="972.5" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="977.5" y="26.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1017.5" y="26.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1012.5" x2="1012.5" y1="10" y2="31.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="972.5" y="10"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="972.5" y="50"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="977.5" y="66.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1017.5" y="66.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1012.5" x2="1012.5" y1="50" y2="71.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="972.5" y="50"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="612" y="85.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="617" y="102.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="697" y="102.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="692" x2="692" y1="85.5" y2="107.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="612" x2="740" y1="107.1094" y2="107.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="617" y="123.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="697" y="123.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="692" x2="692" y1="107.1094" y2="128.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="612" y="85.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="80" x="815" y="101.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="820" y="118.0332">core</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="878" y="118.0332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="873" x2="873" y1="101.5" y2="123.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="815" x2="895" y1="123.1094" y2="123.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="820" y="139.6426">default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="878" y="139.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="873" x2="873" y1="123.1094" y2="144.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="80" x="815" y="101.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="90" x="970" y="90.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="975" y="107.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1022" y="107.0332">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1017" x2="1017" y1="90.5" y2="112.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="970" x2="1060" y1="112.1094" y2="112.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="975" y="128.6426">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1022" y="128.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1017" x2="1017" y1="112.1094" y2="133.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="90" x="970" y="90.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="1097" y="112"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1102" y="128.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1142" y="128.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1137" x2="1137" y1="112" y2="133.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="1097" y="112"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="90" x="970" y="151.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="975" y="168.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1022" y="168.0332">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1017" x2="1017" y1="151.5" y2="173.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="970" x2="1060" y1="173.1094" y2="173.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="975" y="189.6426">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1022" y="189.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1017" x2="1017" y1="173.1094" y2="194.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="90" x="970" y="151.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="1097" y="173"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1102" y="189.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1142" y="189.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1137" x2="1137" y1="173" y2="194.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="1097" y="173"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="90" x="631" y="146.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="636" y="163.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="683" y="163.0332">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="678" x2="678" y1="146.5" y2="168.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="631" x2="721" y1="168.1094" y2="168.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="636" y="184.6426">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="683" y="184.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="678" x2="678" y1="168.1094" y2="189.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="90" x="631" y="146.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="88" x="811" y="168"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="816" y="184.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="856" y="184.5332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="851" x2="851" y1="168" y2="189.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="88" x="811" y="168"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="90" x="631" y="207.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="636" y="224.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="683" y="224.0332">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="678" x2="678" y1="207.5" y2="229.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="631" x2="721" y1="229.1094" y2="229.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="636" y="245.6426">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="683" y="245.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="678" x2="678" y1="229.1094" y2="250.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="90" x="631" y="207.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="88" x="811" y="229"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="816" y="245.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="856" y="245.5332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="851" x2="851" y1="229" y2="250.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="88" x="811" y="229"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="90" x="631" y="268.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="636" y="285.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="683" y="285.0332">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="678" x2="678" y1="268.5" y2="290.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="631" x2="721" y1="290.1094" y2="290.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="636" y="306.6426">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="683" y="306.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="678" x2="678" y1="290.1094" y2="311.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="90" x="631" y="268.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="812.5" y="290"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="817.5" y="306.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="857.5" y="306.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="852.5" x2="852.5" y1="290" y2="311.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="812.5" y="290"/><path d="M921,39 L934,39 C946.8082,39 960.4924,36.803 972.8772,33.9441 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M973.618,36.9537 L975.1344,33.3885 L972.1365,30.9345 L980.4012,32.0922 L973.618,36.9537 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="921" cy="39" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M921,61 L934,61 C944.0232,61 954.7484,61 964.9956,61 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M964.9956,64.0893 L967.3126,61 L964.9956,57.9107 L972.719,61 L964.9956,64.0893 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="921" cy="61" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M728,54 L741,54 C750.257,54 759.9361,53.8655 769.5711,53.6457 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M769.6485,56.7292 L771.8837,53.5877 L769.4937,50.5623 L777.2798,53.4522 L769.6485,56.7292 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="728" cy="54" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M563,125 L576,125 C603.0235,125 591.475,93.5783 612,76 C614.9327,73.4884 618.0891,71.1002 621.3718,68.8426 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M623.0434,71.4197 L623.3047,67.5889 L619.7003,66.2655 L627.8146,64.6637 L623.0434,71.4197 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="563" cy="125" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1048,123 L1061,123 C1070.2961,123 1080.2155,123 1089.7553,123 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1089.7553,126.0201 L1092.0204,123 L1089.7553,119.9799 L1097.3056,123 L1089.7553,126.0201 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1048" cy="123" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M883.5,112 L896.5,112 C918.1168,112 941.9612,112 962.5242,112 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M962.5242,115.0835 L964.8368,112 L962.5242,108.9165 L970.233,112 L962.5242,115.0835 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="883.5" cy="112" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1048,184 L1061,184 C1070.2961,184 1080.2155,184 1089.7553,184 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1089.7553,187.0201 L1092.0204,184 L1089.7553,180.9799 L1097.3056,184 L1089.7553,187.0201 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1048" cy="184" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M883.5,134 L896.5,134 C919.4675,134 943.7371,140.7433 964.2548,148.6218 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M963.1248,151.4589 L966.3826,149.4693 L965.3847,145.7848 L971.3474,151.4467 L963.1248,151.4589 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="883.5" cy="134" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M728,118 L741,118 C762.9495,118 787.2635,118.9448 807.7387,120.013 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M807.5732,123.0716 L810.0326,120.1372 L807.9042,116.9545 L815.3851,120.4268 L807.5732,123.0716 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="728" cy="118" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M563,147 L576,147 C586.0733,147 605.4088,139.853 624.3763,131.6011 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M625.6079,134.3825 L626.4624,130.6774 L623.1447,128.8197 L631.3299,128.5221 L625.6079,134.3825 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="563" cy="147" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M709.5,179 L722.5,179 C749.2789,179 779.1137,179 803.6351,179 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M803.6351,182.1057 L805.9644,179 L803.6351,175.8943 L811.3993,179 L803.6351,182.1057 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="709.5" cy="179" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M563,168 L576,168 C591.4457,168 608.24,168 623.5567,168 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M623.5567,171.144 L625.9147,168 L623.5567,164.856 L631.4166,168 L623.5567,171.144 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="563" cy="168" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M709.5,240 L722.5,240 C749.2789,240 779.1137,240 803.6351,240 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M803.6351,243.1057 L805.9644,240 L803.6351,236.8943 L811.3993,240 L803.6351,243.1057 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="709.5" cy="240" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M563,190 L576,190 C586.0387,190 605.3688,196.9683 624.3417,205.0139 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M623.1409,207.7963 L626.4285,205.9145 L625.5425,202.2315 L631.2977,208.0159 L623.1409,207.7963 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="563" cy="190" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M709.5,301 L722.5,301 C749.9141,301 780.5307,301 805.3708,301 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M805.3708,304.0054 L807.6249,301 L805.3708,297.9946 L812.8844,301 L805.3708,304.0054 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="709.5" cy="301" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M563,212 L576,212 C602.6667,212 591.3375,243.1426 612,260 C615.9355,263.2107 620.2715,266.1709 624.7735,268.877 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M623.2605,271.552 L626.7798,270.0118 L626.2866,266.202 L631.461,272.6596 L623.2605,271.552 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="563" cy="212" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M408,169 L421,169 C430.2561,169 440.0221,169 449.6238,169 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M449.6238,172.0609 L451.9195,169 L449.6238,165.9391 L457.276,169 L449.6238,172.0609 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="408" cy="169" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M243,158 L256,158 C265.2687,158 275.0232,158 284.6525,158 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M284.6525,161.0736 L286.9577,158 L284.6525,154.9264 L292.3365,158 L284.6525,161.0736 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="243" cy="158" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M126,158 L139,158 C148.3085,158 158.2625,158 167.7876,158 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M167.7876,161.0106 L170.0455,158 L167.7876,154.9894 L175.3141,158 L167.7876,161.0106 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="126" cy="158" 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="167px" preserveAspectRatio="none" style="width:805px;height:167px;background:#FFFFFF;" version="1.1" viewBox="0 0 805 167" width="805px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="101" x="10" y="73"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="69" x="15" y="89.5332">ipDaemon</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="94" y="89.5332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="89" x2="89" y1="73" y2="94.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="111" y1="94.6094" y2="94.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="52" x="15" y="111.1426">records</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="94" y="111.1426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="89" x2="89" y1="94.6094" y2="116.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="111" y1="116.2188" y2="116.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="59" x="15" y="132.752">backups</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="94" y="132.752">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="89" x2="89" y1="116.2188" y2="137.8281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="101" x="10" y="73"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="205" x="148" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="13" x="153" y="26.5332">ip</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="8" x="302" y="26.5332">␀</text><line style="stroke:#000000;stroke-width:1.0;" x1="297" x2="297" y1="10" y2="31.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="148" x2="353" y1="31.6094" y2="31.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="139" x="153" y="48.1426">minutesTimeInterval</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="8" x="302" y="48.1426">3</text><line style="stroke:#000000;stroke-width:1.0;" x1="297" x2="297" y1="31.6094" y2="53.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="148" x2="353" y1="53.2188" y2="53.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="59" x="153" y="69.752">disabled</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="302" y="69.752">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="297" x2="297" y1="53.2188" y2="74.8281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="205" x="148" y="10"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="42" x="229.5" y="93.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="10" x="234.5" y="110.0332">A</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="254.5" y="110.0332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="249.5" x2="249.5" y1="93.5" y2="115.1094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="42" x="229.5" y="93.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="482" y="93.5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="487" y="110.0332">   </text><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="482" y="93.5"/><rect fill="#F1F1F1" height="86.4375" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="158" x="635" y="61.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="640" y="78.0332">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="85" x="703" y="78.0332">example.com</text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="61.5" y2="83.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="635" x2="793" y1="83.1094" y2="83.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="26" x="640" y="99.6426">dns</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="74" x="703" y="99.6426">dondominio</text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="83.1094" y2="104.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="635" x2="793" y1="104.7188" y2="104.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="53" x="640" y="121.252">api_key</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="24" x="703" y="121.252">???</text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="104.7188" y2="126.3281"/><line style="stroke:#000000;stroke-width:1.0;" x1="635" x2="793" y1="126.3281" y2="126.3281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="640" y="142.8613">user</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="24" x="703" y="142.8613">???</text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="126.3281" y2="147.9375"/><rect fill="none" height="86.4375" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="158" x="635" y="61.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="238.5" y="133.5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="243.5" y="150.0332">   </text><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="238.5" y="133.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="208" x="390" y="133.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="103" x="395" y="150.0332">deployGroupId</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="85" x="508" y="150.0332">default-group</text><line style="stroke:#000000;stroke-width:1.0;" x1="503" x2="503" y1="133.5" y2="155.1094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="208" x="390" y="133.5"/><path d="M99,83.5 L112,83.5 C128.2555,83.5 145.1586,80.8536 161.331,76.9055 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M162.0913,79.8552 L163.5433,76.3353 L160.5707,73.9558 L168.7052,75.0048 L162.0913,79.8552 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="99" cy="83.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M493.5863,104.5 L506.5863,104.5 C529.6054,104.5 581.557,104.5 627.6417,104.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M627.6417,107.5544 L629.9326,104.5 L627.6417,101.4456 L635.2778,104.5 L627.6417,107.5544 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="493.5863" cy="104.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M260,104.5 L273,104.5 C347.7382,104.5 436.7258,104.5 474.7601,104.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M474.7601,107.5908 L477.0782,104.5 L474.7601,101.4092 L482.4872,104.5 L474.7601,107.5908 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="260" cy="104.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M99,104.5 L112,104.5 C150.1602,104.5 194.256,104.5 222.1294,104.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M222.1294,107.6035 L224.4571,104.5 L222.1294,101.3965 L229.8883,104.5 L222.1294,107.6035 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="99" cy="104.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M250.0256,144.5 L263.0256,144.5 C285.2964,144.5 335.0384,144.5 382.6314,144.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M382.6314,147.5462 L384.916,144.5 L382.6314,141.4538 L390.2468,144.5 L382.6314,147.5462 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="250.0256" cy="144.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M99,127.5 L112,127.5 C155.0964,127.5 205.1993,135.7679 231.5762,140.7719 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M231.0021,143.728 L233.7933,141.2025 L232.1504,137.8158 L238.9664,142.2073 L231.0021,143.728 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="99" cy="127.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="256px" preserveAspectRatio="none" style="width:1242px;height:256px;background:#FFFFFF;" version="1.1" viewBox="0 0 1242 256" width="1242px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="10" y="101.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="15" y="118.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="95" y="118.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="90" x2="90" y1="101.5" y2="123.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="138" y1="123.1094" y2="123.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="15" y="139.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="95" y="139.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="90" x2="90" y1="123.1094" y2="144.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="10" y="101.5"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="101" x="175" y="101.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="69" x="180" y="118.0332">ipDaemon</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="259" y="118.0332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="254" x2="254" y1="101.5" y2="123.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="175" x2="276" y1="123.1094" y2="123.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="52" x="180" y="139.6426">records</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="259" y="139.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="254" x2="254" y1="123.1094" y2="144.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="175" x2="276" y1="144.7188" y2="144.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="59" x="180" y="161.252">backups</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="259" y="161.252">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="254" x2="254" y1="144.7188" y2="166.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="101" x="175" y="101.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="313" y="41.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="318" y="58.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="398" y="58.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="393" x2="393" y1="41.5" y2="63.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="313" x2="441" y1="63.1094" y2="63.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="318" y="79.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="398" y="79.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="393" x2="393" y1="63.1094" y2="84.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="313" y="41.5"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="171" x="478" y="34.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="13" x="483" y="51.0332">ip</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="632" y="51.0332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="627" x2="627" y1="34.5" y2="56.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="478" x2="649" y1="56.1094" y2="56.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="139" x="483" y="72.6426">minutesTimeInterval</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="632" y="72.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="627" x2="627" y1="56.1094" y2="77.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="478" x2="649" y1="77.7188" y2="77.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="59" x="483" y="94.252">disabled</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="632" y="94.252">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="627" x2="627" y1="77.7188" y2="99.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="171" x="478" y="34.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="72" x="717.5" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="722.5" y="26.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="22" x="762.5" y="26.5332">null</text><line style="stroke:#000000;stroke-width:1.0;" x1="757.5" x2="757.5" y1="10" y2="31.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="72" x="717.5" y="10"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="706.5" y="50"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="711.5" y="66.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="44" x="751.5" y="66.5332">integer</text><line style="stroke:#000000;stroke-width:1.0;" x1="746.5" x2="746.5" y1="50" y2="71.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="706.5" y="50"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="101" x="703" y="90"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="708" y="106.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="51" x="748" y="106.5332">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="743" x2="743" y1="90" y2="111.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="101" x="703" y="90"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="313" y="111.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="318" y="128.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="398" y="128.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="393" x2="393" y1="111.5" y2="133.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="313" x2="441" y1="133.1094" y2="133.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="318" y="149.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="398" y="149.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="393" x2="393" y1="133.1094" y2="154.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="313" y="111.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="42" x="542.5" y="136"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="10" x="547.5" y="152.5332">A</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="567.5" y="152.5332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="562.5" x2="562.5" y1="136" y2="157.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="42" x="542.5" y="136"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="90" x="708.5" y="130.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="713.5" y="147.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="760.5" y="147.0332">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="755.5" x2="755.5" y1="130.5" y2="152.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="708.5" x2="798.5" y1="152.1094" y2="152.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="713.5" y="168.6426">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="760.5" y="168.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="755.5" x2="755.5" y1="152.1094" y2="173.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="90" x="708.5" y="130.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="858" y="141.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="863" y="158.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="943" y="158.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="938" x2="938" y1="141.5" y2="163.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="858" x2="986" y1="163.1094" y2="163.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="863" y="179.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="943" y="179.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="938" x2="938" y1="163.1094" y2="184.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="858" y="141.5"/><rect fill="#F1F1F1" height="86.4375" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="1023" y="131"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1028" y="147.5332">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1091" y="147.5332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1086" x2="1086" y1="131" y2="152.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1023" x2="1108" y1="152.6094" y2="152.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="26" x="1028" y="169.1426">dns</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1091" y="169.1426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1086" x2="1086" y1="152.6094" y2="174.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1023" x2="1108" y1="174.2188" y2="174.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="53" x="1028" y="190.752">api_key</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1091" y="190.752">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1086" x2="1086" y1="174.2188" y2="195.8281"/><line style="stroke:#000000;stroke-width:1.0;" x1="1023" x2="1108" y1="195.8281" y2="195.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1028" y="212.3613">user</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1091" y="212.3613">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1086" x2="1086" y1="195.8281" y2="217.4375"/><rect fill="none" height="86.4375" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="1023" y="131"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="1145" y="103"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1150" y="119.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1190" y="119.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1185" x2="1185" y1="103" y2="124.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="1145" y="103"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="1145" y="143"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1150" y="159.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1190" y="159.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1185" x2="1185" y1="143" y2="164.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="1145" y="143"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="1145" y="183"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1150" y="199.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1190" y="199.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1185" x2="1185" y1="183" y2="204.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="1145" y="183"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="1145" y="223"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1150" y="239.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1190" y="239.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1185" x2="1185" y1="223" y2="244.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="1145" y="223"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="90" x="332" y="172.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="337" y="189.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="384" y="189.0332">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="379" x2="379" y1="172.5" y2="194.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="332" x2="422" y1="194.1094" y2="194.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="337" y="210.6426">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="384" y="210.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="379" x2="379" y1="194.1094" y2="215.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="90" x="332" y="172.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="499.5" y="183.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="504.5" y="200.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="584.5" y="200.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="579.5" x2="579.5" y1="183.5" y2="205.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="499.5" x2="627.5" y1="205.1094" y2="205.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="504.5" y="221.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="584.5" y="221.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="579.5" x2="579.5" y1="205.1094" y2="226.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="499.5" y="183.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="135" x="686" y="205"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="103" x="691" y="221.5332">deployGroupId</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="804" y="221.5332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="799" x2="799" y1="205" y2="226.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="135" x="686" y="205"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="879.5" y="205"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="884.5" y="221.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="924.5" y="221.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="919.5" x2="919.5" y1="205" y2="226.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="879.5" y="205"/><path d="M637,45 L650,45 C661.8046,45 687.7363,38.9451 710.6253,32.9179 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M711.4046,35.839 L712.8162,32.3334 L709.846,29.9967 L717.9281,30.9697 L711.4046,35.839 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="637" cy="45" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M637,66 L650,66 C666.0008,66 683.3834,65.3906 699.2327,64.5972 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M699.3936,67.6551 L701.526,64.4765 L699.0717,61.5394 L706.8773,64.1949 L699.3936,67.6551 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="637" cy="66" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M637,89 L650,89 C664.8707,89 680.8684,90.2493 695.7176,91.9418 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M695.3491,95.0012 L698.0121,92.2181 L696.086,88.8824 L703.366,92.8629 L695.3491,95.0012 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="637" cy="89" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M429,74 L442,74 C451.298,74 460.9911,73.7914 470.666,73.4463 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M470.7879,76.5452 L472.9902,73.3549 L470.5442,70.3474 L478.4133,73.1417 L470.7879,76.5452 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="429" cy="74" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M264,112 L277,112 C289.0406,112 313.0633,100.3058 334.4874,88.3432 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M335.9708,90.963 L336.4522,87.2307 L333.004,85.7235 L341.0367,84.6347 L335.9708,90.963 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="264" cy="112" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1096,141 L1109,141 C1117.9652,141 1136.8004,134.5498 1153.7156,127.9548 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1154.8424,130.7937 L1155.8448,127.1097 L1152.5888,125.1158 L1160.813,125.1378 L1154.8424,130.7937 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1096" cy="141" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1096,163 L1109,163 C1118.3578,163 1128.3058,162.3528 1137.8544,161.4056 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1138.1814,164.4269 L1140.1205,161.1603 L1137.5275,158.3842 L1145.4078,160.5882 L1138.1814,164.4269 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1096" cy="163" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1096,185 L1109,185 C1118.3578,185 1128.3058,185.6472 1137.8544,186.5944 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1137.5275,189.6158 L1140.1205,186.8397 L1138.1814,183.5731 L1145.4078,187.4118 L1137.5275,189.6158 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1096" cy="185" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1096,206 L1109,206 C1118.1902,206 1137.632,212.9727 1154.8053,219.959 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1153.6155,222.8328 L1156.9607,220.8514 L1155.9952,217.0851 L1161.9899,222.9337 L1153.6155,222.8328 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1096" cy="206" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M974,174 L987,174 C996.2961,174 1006.2155,174 1015.7553,174 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1015.7553,177.0201 L1018.0204,174 L1015.7553,170.9799 L1023.3056,174 L1015.7553,177.0201 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="974" cy="174" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M787,163 L800,163 C816.463,163 834.1808,163 850.8581,163 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M850.8581,166.0324 L853.1324,163 L850.8581,159.9676 L858.4392,163 L850.8581,166.0324 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="787" cy="163" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M573,147 L586,147 C624.5344,147 668.048,148.3465 700.9955,149.642 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M700.8715,152.7269 L703.3092,149.735 L701.1194,146.5571 L708.7078,149.9519 L700.8715,152.7269 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="573" cy="147" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M429,144 L442,144 C474.0446,144 510.8482,145.0645 535.3702,145.9253 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M535.2619,148.9288 L537.6227,146.0066 L535.4784,142.9219 L542.8787,146.1961 L535.2619,148.9288 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="429" cy="144" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M264,133 L277,133 C286.2687,133 296.0232,133 305.6525,133 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M305.6525,136.0736 L307.9577,133 L305.6525,129.9264 L313.3365,133 L305.6525,136.0736 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="264" cy="133" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M809,216 L822,216 C838.3296,216 856.1667,216 872.1714,216 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M872.1714,219.078 L874.4798,216 L872.1714,212.922 L879.8663,216 L872.1714,219.078 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="809" cy="216" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M616,216 L629,216 C645.0029,216 662.1675,216 678.4698,216 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M678.4698,219.1699 L680.8472,216 L678.4698,212.8301 L686.3946,216 L678.4698,219.1699 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="616" cy="216" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M410.5,205 L423.5,205 C445.8144,205 470.1365,205 492.1307,205 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M492.1307,208.0702 L494.4333,205 L492.1307,201.9298 L499.8061,205 L492.1307,208.0702 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="410.5" cy="205" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M264,156 L277,156 C287.0048,156 306.3296,162.7896 325.3078,170.6289 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M324.1378,173.4123 L327.3953,171.5065 L326.4778,167.8456 L332.2662,173.554 L324.1378,173.4123 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="264" cy="156" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M126,134 L139,134 C148.3071,134 158.1808,134 167.7933,134 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M167.7933,137.0549 L170.0844,134 L167.7933,130.9451 L175.4305,134 L167.7933,137.0549 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="126" cy="134" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>