underpost 2.8.0 → 2.8.6

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 (119) hide show
  1. package/.dockerignore +1 -0
  2. package/.github/workflows/ghpkg.yml +19 -49
  3. package/.github/workflows/npmpkg.yml +67 -0
  4. package/.github/workflows/publish.yml +5 -5
  5. package/.github/workflows/pwa-microservices-template.page.yml +12 -4
  6. package/.github/workflows/pwa-microservices-template.test.yml +2 -2
  7. package/.vscode/extensions.json +17 -71
  8. package/.vscode/settings.json +20 -4
  9. package/AUTHORS.md +16 -5
  10. package/CHANGELOG.md +103 -3
  11. package/Dockerfile +24 -66
  12. package/README.md +1 -28
  13. package/bin/build.js +186 -0
  14. package/bin/db.js +2 -24
  15. package/bin/deploy.js +168 -157
  16. package/bin/file.js +59 -16
  17. package/bin/hwt.js +0 -10
  18. package/bin/index.js +201 -61
  19. package/bin/ssl.js +19 -11
  20. package/bin/util.js +24 -101
  21. package/bin/vs.js +26 -2
  22. package/conf.js +30 -132
  23. package/docker-compose.yml +1 -1
  24. package/manifests/deployment/mongo-express/deployment.yaml +60 -0
  25. package/manifests/deployment/phpmyadmin/deployment.yaml +54 -0
  26. package/manifests/kind-config-dev.yaml +12 -0
  27. package/manifests/kind-config.yaml +12 -0
  28. package/manifests/letsencrypt-prod.yaml +15 -0
  29. package/manifests/mariadb/config.yaml +10 -0
  30. package/manifests/mariadb/kustomization.yaml +9 -0
  31. package/manifests/mariadb/pv.yaml +12 -0
  32. package/manifests/mariadb/pvc.yaml +10 -0
  33. package/manifests/mariadb/secret.yaml +8 -0
  34. package/manifests/mariadb/service.yaml +10 -0
  35. package/manifests/mariadb/statefulset.yaml +55 -0
  36. package/manifests/mongodb/backup-access.yaml +16 -0
  37. package/manifests/mongodb/backup-cronjob.yaml +42 -0
  38. package/manifests/mongodb/backup-pv-pvc.yaml +22 -0
  39. package/manifests/mongodb/configmap.yaml +26 -0
  40. package/manifests/mongodb/headless-service.yaml +10 -0
  41. package/manifests/mongodb/kustomization.yaml +11 -0
  42. package/manifests/mongodb/pv-pvc.yaml +23 -0
  43. package/manifests/mongodb/statefulset.yaml +125 -0
  44. package/manifests/mongodb-4.4/kustomization.yaml +7 -0
  45. package/manifests/mongodb-4.4/pv-pvc.yaml +23 -0
  46. package/manifests/mongodb-4.4/service-deployment.yaml +63 -0
  47. package/manifests/valkey/kustomization.yaml +7 -0
  48. package/manifests/valkey/service.yaml +17 -0
  49. package/manifests/valkey/statefulset.yaml +39 -0
  50. package/package.json +133 -134
  51. package/src/api/core/core.service.js +1 -1
  52. package/src/api/user/user.model.js +16 -3
  53. package/src/api/user/user.service.js +1 -1
  54. package/src/cli/cluster.js +202 -0
  55. package/src/cli/cron.js +90 -0
  56. package/src/cli/db.js +212 -0
  57. package/src/cli/deploy.js +318 -0
  58. package/src/cli/env.js +52 -0
  59. package/src/cli/fs.js +149 -0
  60. package/src/cli/image.js +148 -0
  61. package/src/cli/repository.js +125 -0
  62. package/src/cli/script.js +53 -0
  63. package/src/cli/secrets.js +37 -0
  64. package/src/cli/test.js +118 -0
  65. package/src/client/components/core/Account.js +4 -2
  66. package/src/client/components/core/Auth.js +24 -6
  67. package/src/client/components/core/CalendarCore.js +127 -50
  68. package/src/client/components/core/CommonJs.js +282 -19
  69. package/src/client/components/core/Css.js +2 -1
  70. package/src/client/components/core/CssCore.js +8 -4
  71. package/src/client/components/core/Docs.js +1 -1
  72. package/src/client/components/core/DropDown.js +5 -1
  73. package/src/client/components/core/Input.js +22 -6
  74. package/src/client/components/core/JoyStick.js +8 -5
  75. package/src/client/components/core/LoadingAnimation.js +8 -1
  76. package/src/client/components/core/Modal.js +47 -18
  77. package/src/client/components/core/Panel.js +93 -31
  78. package/src/client/components/core/PanelForm.js +27 -19
  79. package/src/client/components/core/Scroll.js +1 -0
  80. package/src/client/components/core/SignUp.js +4 -1
  81. package/src/client/components/core/Translate.js +61 -9
  82. package/src/client/components/core/Validator.js +9 -1
  83. package/src/client/components/core/VanillaJs.js +0 -9
  84. package/src/client/components/core/Worker.js +34 -31
  85. package/src/client/public/default/plantuml/client-conf.svg +1 -1
  86. package/src/client/public/default/plantuml/server-conf.svg +1 -1
  87. package/src/client/public/default/plantuml/server-schema.svg +1 -1
  88. package/src/client/public/default/plantuml/ssr-conf.svg +1 -1
  89. package/src/client/public/default/plantuml/ssr-schema.svg +1 -1
  90. package/src/client/services/core/core.service.js +15 -8
  91. package/src/client/services/default/default.management.js +4 -2
  92. package/src/client/ssr/Render.js +4 -1
  93. package/src/client/ssr/body/CacheControl.js +2 -2
  94. package/src/client/ssr/body/DefaultSplashScreen.js +3 -3
  95. package/src/client/ssr/offline/Maintenance.js +63 -0
  96. package/src/client/sw/default.sw.js +26 -6
  97. package/src/db/mongo/MongooseDB.js +29 -1
  98. package/src/index.js +91 -17
  99. package/src/runtime/lampp/Lampp.js +1 -13
  100. package/src/runtime/xampp/Xampp.js +0 -13
  101. package/src/server/auth.js +3 -3
  102. package/src/server/backup.js +49 -93
  103. package/src/server/client-build.js +41 -50
  104. package/src/server/client-formatted.js +6 -3
  105. package/src/server/client-icons.js +1 -1
  106. package/src/server/conf.js +207 -57
  107. package/src/server/dns.js +30 -55
  108. package/src/server/downloader.js +0 -8
  109. package/src/server/logger.js +22 -15
  110. package/src/server/network.js +17 -43
  111. package/src/server/process.js +25 -2
  112. package/src/server/proxy.js +4 -26
  113. package/src/server/runtime.js +30 -30
  114. package/src/server/ssl.js +1 -1
  115. package/src/server/valkey.js +3 -0
  116. package/test/api.test.js +0 -8
  117. package/src/dns.js +0 -22
  118. package/src/server/prompt-optimizer.js +0 -28
  119. package/startup.js +0 -11
@@ -1 +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="361px" preserveAspectRatio="none" style="width:750px;height:361px;background:#FFFFFF;" version="1.1" viewBox="0 0 750 361" width="750px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="88" x="10" y="164.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="56" x="15" y="179.4951">Default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="81" y="179.4951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="76" x2="76" y1="164.5" y2="184.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="88" x="10" y="164.5"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="82" x="135" y="134"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="140" y="148.9951">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="200" y="148.9951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="195" x2="195" y1="134" y2="154.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="135" x2="217" y1="154.2969" y2="154.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="140" y="169.292">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="200" y="169.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="195" x2="195" y1="154.2969" y2="174.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="135" x2="217" y1="174.5938" y2="174.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="50" x="140" y="189.5889">offline</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="200" y="189.5889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="195" x2="195" y1="174.5938" y2="194.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="135" x2="217" y1="194.8906" y2="194.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="140" y="209.8857">pages</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="200" y="209.8857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="195" x2="195" y1="194.8906" y2="215.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="82" x="135" y="134"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="106" x="278" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="283" y="24.9951">Seo</text><line style="stroke:#000000;stroke-width:1.0;" x1="278" x2="384" y1="30.2969" y2="30.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="28" x="283" y="45.292">Pwa</text><line style="stroke:#000000;stroke-width:1.0;" x1="278" x2="384" y1="50.5938" y2="50.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="26" x="283" y="65.5889">Css</text><line style="stroke:#000000;stroke-width:1.0;" x1="278" x2="384" y1="70.8906" y2="70.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="96" x="283" y="85.8857">DefaultScripts</text><line style="stroke:#000000;stroke-width:1.0;" x1="278" x2="384" y1="91.1875" y2="91.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="75" x="283" y="106.1826">Production</text><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="106" x="278" y="10"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="154" x="254" y="129"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="94" x="259" y="143.9951">CacheControl</text><line style="stroke:#000000;stroke-width:1.0;" x1="254" x2="408" y1="149.2969" y2="149.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="144" x="259" y="164.292">DefaultSplashScreen</text><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="154" x="254" y="129"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="319" y="188.5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="324" y="203.4951">   </text><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="319" y="188.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="227" x="445" y="127"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="450" y="141.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="503" y="141.9951">/offline</text><line style="stroke:#000000;stroke-width:1.0;" x1="498" x2="498" y1="127" y2="147.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="445" x2="672" y1="147.2969" y2="147.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="450" y="162.292">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="164" x="503" y="162.292">No Network Connection</text><line style="stroke:#000000;stroke-width:1.0;" x1="498" x2="498" y1="147.2969" y2="167.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="445" x2="672" y1="167.5938" y2="167.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="450" y="182.5889">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="156" x="503" y="182.5889">NoNetworkConnection</text><line style="stroke:#000000;stroke-width:1.0;" x1="498" x2="498" y1="167.5938" y2="187.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="445" x2="672" y1="187.8906" y2="187.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="450" y="202.8857">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="503" y="202.8857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="498" x2="498" y1="187.8906" y2="208.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="445" x2="672" y1="208.1875" y2="208.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="450" y="223.1826">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="503" y="223.1826">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="498" x2="498" y1="208.1875" y2="228.4844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="227" x="445" y="127"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="709" y="182.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="709" y="182.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="709" y="216.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="709" y="216.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="319" y="246.5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="324" y="261.4951">   </text><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="319" y="246.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="95" x="511" y="246"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="516" y="260.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="32" x="569" y="260.9951">/test</text><line style="stroke:#000000;stroke-width:1.0;" x1="564" x2="564" y1="246" y2="266.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="511" x2="606" y1="266.2969" y2="266.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="516" y="281.292">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="569" y="281.292">Test</text><line style="stroke:#000000;stroke-width:1.0;" x1="564" x2="564" y1="266.2969" y2="286.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="511" x2="606" y1="286.5938" y2="286.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="516" y="301.5889">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="569" y="301.5889">Test</text><line style="stroke:#000000;stroke-width:1.0;" x1="564" x2="564" y1="286.5938" y2="306.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="511" x2="606" y1="306.8906" y2="306.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="516" y="321.8857">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="569" y="321.8857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="564" x2="564" y1="306.8906" y2="327.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="511" x2="606" y1="327.1875" y2="327.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="516" y="342.1826">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="569" y="342.1826">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="564" x2="564" y1="327.1875" y2="347.4844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="95" x="511" y="246"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="709" y="301.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="709" y="301.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="709" y="335.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="709" y="335.5"/><path d="M205,143.5 L218,143.5 C221.6514,143.5 246.7339,125.1557 272.2899,105.7152 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M274.165,108.1731 L274.1333,104.3089 L270.4148,103.2573 L278.4346,101.0274 L274.165,108.1731 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="205" cy="143.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M205,163.5 L218,163.5 C227.3182,163.5 237.0374,163.0212 246.6908,162.2406 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M246.9657,165.3281 L249.0064,162.0345 L246.4159,159.1531 L254.4095,161.5534 L246.9657,165.3281 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="205" cy="163.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M660,197.5 L673,197.5 C682.5729,197.5 693.1162,196.0913 701.8327,194.5377 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M702.4051,197.5022 L704.056,194.1084 L701.2602,191.5733 L709.2438,193.1065 L702.4051,197.5022 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="660" cy="197.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M660,217.5 L673,217.5 C682.5729,217.5 693.1162,218.9087 701.8327,220.4623 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M701.2602,223.4267 L704.056,220.8916 L702.4051,217.4978 L709.2438,221.8935 L701.2602,223.4267 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="660" cy="217.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M330.7331,198.5711 L343.6776,197.3709 C362.1987,195.6538 399.3531,192.209 437.5994,188.663 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M437.8835,191.7264 L439.897,188.4499 L437.3154,185.5995 L445.258,187.9529 L437.8835,191.7264 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="330.7331" cy="198.5711" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M205,184.5 L218,184.5 C251.3055,184.5 289.7356,190.6171 311.9632,194.7644 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M311.3936,197.731 L314.1881,195.1915 L312.5327,191.7977 L319.3797,196.1882 L311.3936,197.731 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="205" cy="184.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M595,316.5 L608,316.5 C640.9692,316.5 679.2686,313.4682 701.6031,311.3952 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M701.8988,314.4887 L703.9232,311.1734 L701.3074,308.3016 L709.3369,310.6559 L701.8988,314.4887 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="595" cy="316.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M595,336.5 L608,336.5 C640.9692,336.5 679.2686,339.5318 701.6031,341.6048 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M701.3074,344.6984 L703.9232,341.8266 L701.8988,338.5113 L709.3369,342.3441 L701.3074,344.6984 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="595" cy="336.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M330.8757,256.3898 L343.6776,258.6506 C373.2797,263.8783 450.4816,277.5122 503.6629,286.904 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M503.1216,289.9695 L505.962,287.3101 L504.2043,283.8386 L511.3265,288.2574 L503.1216,289.9695 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="330.8757" cy="256.3898" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M205,204.5 L218,204.5 C228.0666,204.5 283.5341,232.2881 312.6452,247.2372 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M311.2455,249.953 L314.6821,248.2869 L314.0449,244.5213 L319.4348,250.7364 L311.2455,249.953 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="205" cy="204.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M86,174.5 L99,174.5 C108.327,174.5 118.2936,174.5 127.847,174.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M127.847,177.5212 L130.1129,174.5 L127.847,171.4788 L135.4,174.5 L127.847,177.5212 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="86" cy="174.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>
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="501px" preserveAspectRatio="none" style="width:899px;height:501px;background:#FFFFFF;" version="1.1" viewBox="0 0 899 501" width="899px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="88" x="10" y="239.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="56" x="15" y="254.4951">Default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="81" y="254.4951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="76" x2="76" y1="239.5" y2="259.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="88" x="10" y="239.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="82" x="135" y="199"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="140" y="213.9951">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="200" y="213.9951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="195" x2="195" y1="199" y2="219.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="135" x2="217" y1="219.2969" y2="219.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="140" y="234.292">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="200" y="234.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="195" x2="195" y1="219.2969" y2="239.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="135" x2="217" y1="239.5938" y2="239.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="140" y="254.5889">mailer</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="200" y="254.5889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="195" x2="195" y1="239.5938" y2="259.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="135" x2="217" y1="259.8906" y2="259.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="50" x="140" y="274.8857">offline</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="200" y="274.8857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="195" x2="195" y1="259.8906" y2="280.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="135" x2="217" y1="280.1875" y2="280.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="140" y="295.1826">pages</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="200" y="295.1826">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="195" x2="195" y1="280.1875" y2="300.4844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="82" x="135" y="199"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="106" x="352.5" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="357.5" y="24.9951">Seo</text><line style="stroke:#000000;stroke-width:1.0;" x1="352.5" x2="458.5" y1="30.2969" y2="30.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="28" x="357.5" y="45.292">Pwa</text><line style="stroke:#000000;stroke-width:1.0;" x1="352.5" x2="458.5" y1="50.5938" y2="50.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="26" x="357.5" y="65.5889">Css</text><line style="stroke:#000000;stroke-width:1.0;" x1="352.5" x2="458.5" y1="70.8906" y2="70.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="96" x="357.5" y="85.8857">DefaultScripts</text><line style="stroke:#000000;stroke-width:1.0;" x1="352.5" x2="458.5" y1="91.1875" y2="91.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="75" x="357.5" y="106.1826">Production</text><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="106" x="352.5" y="10"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="154" x="328.5" y="129"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="94" x="333.5" y="143.9951">CacheControl</text><line style="stroke:#000000;stroke-width:1.0;" x1="328.5" x2="482.5" y1="149.2969" y2="149.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="144" x="333.5" y="164.292">DefaultSplashScreen</text><line style="stroke:#000000;stroke-width:1.0;" x1="328.5" x2="482.5" y1="169.5938" y2="169.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="333.5" y="184.5889">404</text><line style="stroke:#000000;stroke-width:1.0;" x1="328.5" x2="482.5" y1="189.8906" y2="189.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="333.5" y="204.8857">500</text><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="154" x="328.5" y="129"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="303" x="254" y="228"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="123" x="259" y="242.9951">userVerifyEmail</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="122" x="410" y="242.9951">DefaultVerifyEmail</text><line style="stroke:#000000;stroke-width:1.0;" x1="405" x2="405" y1="228" y2="248.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="254" x2="557" y1="248.2969" y2="248.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="141" x="259" y="263.292">userRecoverEmail</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="142" x="410" y="263.292">DefaultRecoverEmail</text><line style="stroke:#000000;stroke-width:1.0;" x1="405" x2="405" y1="248.2969" y2="268.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="303" x="254" y="228"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="393.5" y="287"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="398.5" y="301.9951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="393.5" x2="415.5" y1="307.2969" y2="307.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="398.5" y="322.292">   </text><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="393.5" y="287"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="227" x="594" y="148"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="599" y="162.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="652" y="162.9951">/offline</text><line style="stroke:#000000;stroke-width:1.0;" x1="647" x2="647" y1="148" y2="168.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="594" x2="821" y1="168.2969" y2="168.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="599" y="183.292">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="164" x="652" y="183.292">No Network Connection</text><line style="stroke:#000000;stroke-width:1.0;" x1="647" x2="647" y1="168.2969" y2="188.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="594" x2="821" y1="188.5938" y2="188.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="599" y="203.5889">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="156" x="652" y="203.5889">NoNetworkConnection</text><line style="stroke:#000000;stroke-width:1.0;" x1="647" x2="647" y1="188.5938" y2="208.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="594" x2="821" y1="208.8906" y2="208.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="599" y="223.8857">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="652" y="223.8857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="647" x2="647" y1="208.8906" y2="229.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="594" x2="821" y1="229.1875" y2="229.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="599" y="244.1826">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="652" y="244.1826">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="647" x2="647" y1="229.1875" y2="249.4844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="227" x="594" y="148"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="858" y="203.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="858" y="203.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="858" y="237.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="858" y="237.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="200" x="607.5" y="267"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="612.5" y="281.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="95" x="665.5" y="281.9951">/maintenance</text><line style="stroke:#000000;stroke-width:1.0;" x1="660.5" x2="660.5" y1="267" y2="287.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="607.5" x2="807.5" y1="287.2969" y2="287.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="612.5" y="302.292">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="137" x="665.5" y="302.292">Server Maintenance</text><line style="stroke:#000000;stroke-width:1.0;" x1="660.5" x2="660.5" y1="287.2969" y2="307.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="607.5" x2="807.5" y1="307.5938" y2="307.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="612.5" y="322.5889">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="89" x="665.5" y="322.5889">Maintenance</text><line style="stroke:#000000;stroke-width:1.0;" x1="660.5" x2="660.5" y1="307.5938" y2="327.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="607.5" x2="807.5" y1="327.8906" y2="327.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="612.5" y="342.8857">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="665.5" y="342.8857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="660.5" x2="660.5" y1="327.8906" y2="348.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="607.5" x2="807.5" y1="348.1875" y2="348.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="612.5" y="363.1826">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="665.5" y="363.1826">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="660.5" x2="660.5" y1="348.1875" y2="368.4844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="200" x="607.5" y="267"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="858" y="322.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="858" y="322.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="858" y="356.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="858" y="356.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="393.5" y="386.5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="398.5" y="401.4951">   </text><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="393.5" y="386.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="95" x="660" y="386"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="665" y="400.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="32" x="718" y="400.9951">/test</text><line style="stroke:#000000;stroke-width:1.0;" x1="713" x2="713" y1="386" y2="406.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="660" x2="755" y1="406.2969" y2="406.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="665" y="421.292">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="718" y="421.292">Test</text><line style="stroke:#000000;stroke-width:1.0;" x1="713" x2="713" y1="406.2969" y2="426.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="660" x2="755" y1="426.5938" y2="426.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="665" y="441.5889">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="718" y="441.5889">Test</text><line style="stroke:#000000;stroke-width:1.0;" x1="713" x2="713" y1="426.5938" y2="446.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="660" x2="755" y1="446.8906" y2="446.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="665" y="461.8857">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="718" y="461.8857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="713" x2="713" y1="446.8906" y2="467.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="660" x2="755" y1="467.1875" y2="467.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="665" y="482.1826">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="718" y="482.1826">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="713" x2="713" y1="467.1875" y2="487.4844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="95" x="660" y="386"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="858" y="441.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="858" y="441.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="858" y="475.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="858" y="475.5"/><path d="M205,208.5 L218,208.5 C260.669,208.5 223.6497,149.4917 254,119.5 C278.7427,95.0497 314.7894,80.4561 345.4585,71.9008 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M346.2358,74.8063 L347.6377,71.3178 L344.6813,68.9952 L352.7224,69.9576 L346.2358,74.8063 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="205" cy="208.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M205,228.5 L218,228.5 C220.8788,228.5 272.9523,212.0186 321.4143,196.4777 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M322.3677,199.4487 L323.6426,195.7626 L320.4609,193.5066 L328.8419,194.0941 L322.3677,199.4487 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="205" cy="228.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M205,248.5 L218,248.5 C227.4428,248.5 237.1539,248.5 246.9503,248.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M246.9503,251.502 L249.2018,248.5 L246.9503,245.498 L254.4553,248.5 L246.9503,251.502 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="205" cy="248.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M809,218.5 L822,218.5 C831.5729,218.5 842.1162,217.0913 850.8327,215.5377 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M851.4051,218.5022 L853.056,215.1084 L850.2602,212.5733 L858.2438,214.1065 L851.4051,218.5022 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="809" cy="218.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M809,238.5 L822,238.5 C831.5729,238.5 842.1162,239.9087 850.8327,241.4623 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M850.2602,244.4267 L853.056,241.8916 L851.4051,238.4978 L858.2438,242.8935 L850.2602,244.4267 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="809" cy="238.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M406,296.5 L419,296.5 C481.2936,296.5 499.0359,298.5931 558,278.5 C575.5332,272.5252 577.7856,266.4557 594,257.5 C596.8332,255.9351 599.7116,254.3565 602.6206,252.7707 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M604.1044,255.5054 L604.6715,251.6578 L601.1367,250.0361 L609.4571,249.061 L604.1044,255.5054 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="406" cy="296.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M796,337.5 L809,337.5 C823.0892,337.5 838.9025,335.6035 850.8279,333.7848 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M851.3169,336.8112 L853.0977,333.4181 L850.339,330.7584 L858.3939,332.5624 L851.3169,336.8112 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="796" cy="337.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M796,357.5 L809,357.5 C823.0892,357.5 838.9025,359.3965 850.8279,361.2152 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M850.339,364.2416 L853.0977,361.5819 L851.3169,358.1888 L858.3939,362.4376 L850.339,364.2416 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="796" cy="357.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M406,317.5 L419,317.5 C478.9312,317.5 545.8774,317.5 600.1314,317.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M600.1314,320.5277 L602.4022,317.5 L600.1314,314.4723 L607.7006,317.5 L600.1314,320.5277 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="406" cy="317.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M205,269.5 L218,269.5 C234.4924,269.5 237.8956,274.9434 254,278.5 C301.4487,288.979 357.7662,299.2182 386.3496,304.2604 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M385.815,307.3078 L388.6352,304.6613 L386.8842,301.2129 L393.9683,305.5968 L385.815,307.3078 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="205" cy="269.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M744,456.5 L757,456.5 C789.9692,456.5 828.2686,453.4682 850.6031,451.3952 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M850.8988,454.4887 L852.9232,451.1734 L850.3074,448.3016 L858.3369,450.6559 L850.8988,454.4887 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="744" cy="456.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M744,476.5 L757,476.5 C789.9692,476.5 828.2686,479.5318 850.6031,481.6048 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M850.3074,484.6984 L852.9232,481.8266 L850.8988,478.5113 L858.3369,482.3441 L850.3074,484.6984 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="744" cy="476.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M405.2856,396.4051 L418.1724,398.1176 C457.1178,403.2931 580.3422,419.6684 652.6436,429.2766 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M652.2346,432.3542 L654.9518,429.5833 L653.0526,426.199 L660.3377,430.299 L652.2346,432.3542 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="405.2856" cy="396.4051" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M205,289.5 L218,289.5 C244.6667,289.5 232.7694,321.364 254,337.5 C295.5509,369.0801 356.1321,385.8661 386.3748,392.7209 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M385.7335,395.6591 L388.5785,393.2018 L387.0161,389.7826 L393.7204,394.3241 L385.7335,395.6591 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="205" cy="289.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M86,249.5 L99,249.5 C108.327,249.5 118.2936,249.5 127.847,249.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M127.847,252.5212 L130.1129,249.5 L127.847,246.4788 L135.4,249.5 L127.847,252.5212 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="86" cy="249.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>
@@ -1 +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="536px" preserveAspectRatio="none" style="width:1287px;height:536px;background:#FFFFFF;" version="1.1" viewBox="0 0 1287 536" width="1287px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="10" y="18"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="15" y="32.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="108" y="32.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="18" y2="38.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="156" y1="38.2969" y2="38.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="15" y="53.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="108" y="53.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="38.2969" y2="58.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="156" y1="58.5938" y2="58.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="15" y="73.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="108" y="73.5889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="58.5938" y2="78.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="10" y="18"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="225" y="32.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="225" y="32.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="88" x="193" y="66.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="56" x="198" y="81.4951">Default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="264" y="81.4951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="259" x2="259" y1="66.5" y2="86.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="88" x="193" y="66.5"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="318" y="46"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="323" y="60.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="416" y="60.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="411" x2="411" y1="46" y2="66.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="318" x2="464" y1="66.2969" y2="66.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="323" y="81.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="416" y="81.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="411" x2="411" y1="66.2969" y2="86.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="318" x2="464" y1="86.5938" y2="86.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="323" y="101.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="416" y="101.5889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="411" x2="411" y1="86.5938" y2="106.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="318" y="46"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="530" y="44.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="530" y="44.5"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="82" x="501" y="79"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="506" y="93.9951">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="566" y="93.9951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="561" x2="561" y1="79" y2="99.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="501" x2="583" y1="99.2969" y2="99.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="506" y="114.292">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="566" y="114.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="561" x2="561" y1="99.2969" y2="119.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="501" x2="583" y1="119.5938" y2="119.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="50" x="506" y="134.5889">offline</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="566" y="134.5889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="561" x2="561" y1="119.5938" y2="139.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="501" x2="583" y1="139.8906" y2="139.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="506" y="154.8857">pages</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="566" y="154.8857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="561" x2="561" y1="139.8906" y2="160.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="82" x="501" y="79"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="620" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="625" y="24.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="678" y="24.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="673" x2="673" y1="10" y2="30.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="620" x2="716" y1="30.2969" y2="30.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="625" y="45.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="678" y="45.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="673" x2="673" y1="30.2969" y2="50.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="620" y="10"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="779" y="30.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="784" y="45.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="829" y="45.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="824" x2="824" y1="30.5" y2="50.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="779" y="30.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="620" y="69"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="625" y="83.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="678" y="83.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="673" x2="673" y1="69" y2="89.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="620" x2="716" y1="89.2969" y2="89.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="625" y="104.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="678" y="104.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="673" x2="673" y1="89.2969" y2="109.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="620" y="69"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="779" y="89.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="784" y="104.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="829" y="104.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="824" x2="824" y1="89.5" y2="109.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="779" y="89.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="620" y="128"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="625" y="142.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="678" y="142.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="673" x2="673" y1="128" y2="148.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="620" x2="716" y1="148.2969" y2="148.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="625" y="163.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="678" y="163.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="673" x2="673" y1="148.2969" y2="168.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="620" y="128"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="753" y="128"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="758" y="142.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="851" y="142.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="128" y2="148.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="753" x2="899" y1="148.2969" y2="148.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="758" y="163.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="163.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="148.2969" y2="168.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="753" x2="899" y1="168.5938" y2="168.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="758" y="183.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="183.5889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="168.5938" y2="188.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="753" y="128"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="961.5" y="93.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="961.5" y="93.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="75" x="936" y="128"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="941" y="142.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="994" y="142.9951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="989" x2="989" y1="128" y2="148.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="936" x2="1011" y1="148.2969" y2="148.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="941" y="163.292">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="994" y="163.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="989" x2="989" y1="148.2969" y2="168.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="936" x2="1011" y1="168.5938" y2="168.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="941" y="183.5889">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="994" y="183.5889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="989" x2="989" y1="168.5938" y2="188.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="936" x2="1011" y1="188.8906" y2="188.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="941" y="203.8857">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="994" y="203.8857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="989" x2="989" y1="188.8906" y2="209.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="936" x2="1011" y1="209.1875" y2="209.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="941" y="224.1826">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="994" y="224.1826">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="989" x2="989" y1="209.1875" y2="229.4844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="75" x="936" y="128"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1049" y="77.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1054" y="92.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1099" y="92.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1094" x2="1094" y1="77.5" y2="97.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1049" y="77.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1049" y="115.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1054" y="130.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1099" y="130.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1094" x2="1094" y1="115.5" y2="135.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1049" y="115.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1049" y="153.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1054" y="168.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1099" y="168.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1094" x2="1094" y1="153.5" y2="173.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1049" y="153.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1048" y="192"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1053" y="206.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1106" y="206.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1101" x2="1101" y1="192" y2="212.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1048" x2="1144" y1="212.2969" y2="212.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1053" y="227.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1106" y="227.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1101" x2="1101" y1="212.2969" y2="232.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1048" y="192"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1181" y="212.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1186" y="227.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1231" y="227.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1226" x2="1226" y1="212.5" y2="232.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1181" y="212.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1048" y="251"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1053" y="265.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1106" y="265.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1101" x2="1101" y1="251" y2="271.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1048" x2="1144" y1="271.2969" y2="271.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1053" y="286.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1106" y="286.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1101" x2="1101" y1="271.2969" y2="291.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1048" y="251"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1181" y="271.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1186" y="286.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1231" y="286.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1226" x2="1226" y1="271.5" y2="291.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1181" y="271.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="620" y="215"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="625" y="229.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="678" y="229.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="673" x2="673" y1="215" y2="235.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="620" x2="716" y1="235.2969" y2="235.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="625" y="250.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="678" y="250.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="673" x2="673" y1="235.2969" y2="255.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="620" y="215"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="753" y="242"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="758" y="256.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="851" y="256.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="242" y2="262.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="753" x2="899" y1="262.2969" y2="262.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="758" y="277.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="277.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="262.2969" y2="282.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="753" x2="899" y1="282.5938" y2="282.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="758" y="297.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="297.5889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="282.5938" y2="302.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="753" y="242"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="961.5" y="263.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="961.5" y="263.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="75" x="936" y="338"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="941" y="352.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="994" y="352.9951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="989" x2="989" y1="338" y2="358.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="936" x2="1011" y1="358.2969" y2="358.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="941" y="373.292">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="994" y="373.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="989" x2="989" y1="358.2969" y2="378.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="936" x2="1011" y1="378.5938" y2="378.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="941" y="393.5889">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="994" y="393.5889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="989" x2="989" y1="378.5938" y2="398.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="936" x2="1011" y1="398.8906" y2="398.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="941" y="413.8857">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="994" y="413.8857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="989" x2="989" y1="398.8906" y2="419.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="936" x2="1011" y1="419.1875" y2="419.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="941" y="434.1826">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="994" y="434.1826">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="989" x2="989" y1="419.1875" y2="439.4844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="75" x="936" y="338"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1049" y="310.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1054" y="325.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1099" y="325.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1094" x2="1094" y1="310.5" y2="330.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1049" y="310.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1049" y="348.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1054" y="363.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1099" y="363.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1094" x2="1094" y1="348.5" y2="368.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1049" y="348.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1049" y="386.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1054" y="401.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1099" y="401.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1094" x2="1094" y1="386.5" y2="406.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1049" y="386.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1048" y="425"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1053" y="439.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1106" y="439.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1101" x2="1101" y1="425" y2="445.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1048" x2="1144" y1="445.2969" y2="445.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1053" y="460.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1106" y="460.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1101" x2="1101" y1="445.2969" y2="465.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1048" y="425"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1181" y="445.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1186" y="460.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1231" y="460.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1226" x2="1226" y1="445.5" y2="465.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1181" y="445.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1048" y="484"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1053" y="498.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1106" y="498.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1101" x2="1101" y1="484" y2="504.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1048" x2="1144" y1="504.2969" y2="504.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1053" y="519.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1106" y="519.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1101" x2="1101" y1="504.2969" y2="524.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1048" y="484"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1181" y="504.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1186" y="519.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1231" y="519.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1226" x2="1226" y1="504.5" y2="524.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1181" y="504.5"/><path d="M144,47.5 L157,47.5 C177.8839,47.5 201.7351,45.0734 217.82,43.0777 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M218.2157,46.1363 L220.114,42.7809 L217.4243,40.019 L225.4665,42.0884 L218.2157,46.1363 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="144" cy="47.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M452,75.5 L465,75.5 C485.5493,75.5 507.9387,67.7949 523.1541,61.304 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M524.4487,64.206 L525.3306,60.3331 L521.8596,58.402 L530.4091,58.0677 L524.4487,64.206 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="452" cy="75.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M704,40.5 L717,40.5 C734.7235,40.5 754.0756,40.5 771.4649,40.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M771.4649,43.6355 L773.8165,40.5 L771.4649,37.3645 L779.3035,40.5 L771.4649,43.6355 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="704" cy="40.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M571,88.5 L584,88.5 C604.5456,88.5 603.1966,71.3224 620,59.5 C622.015,58.0823 624.0999,56.6592 626.2208,55.246 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M627.8988,57.8206 L628.1517,53.9875 L624.5428,52.6714 L632.6573,51.051 L627.8988,57.8206 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="571" cy="88.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M704,99.5 L717,99.5 C734.7235,99.5 754.0756,99.5 771.4649,99.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M771.4649,102.6355 L773.8165,99.5 L771.4649,96.3645 L779.3035,99.5 L771.4649,102.6355 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="704" cy="99.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M571,108.5 L584,108.5 C593.3848,108.5 603.2184,107.3447 612.7089,105.604 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M613.3132,108.6129 L614.9656,105.1508 L612.1046,102.595 L620.2313,104.0933 L613.3132,108.6129 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="571" cy="108.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M887,157.5 L900,157.5 C923.5891,157.5 916.9121,132.3599 936,118.5 C941.6738,114.3802 948.5053,110.9008 954.7457,108.1841 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M955.8784,110.9638 L956.8306,107.3346 L953.6131,105.4043 L961.6951,105.3525 L955.8784,110.9638 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="887" cy="157.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M999,137.5 L1012,137.5 C1033.1146,137.5 1029.9521,117.459 1048,106.5 C1051.4638,104.3968 1055.2016,102.4397 1059.0059,100.6435 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1060.2284,103.3933 L1061.0682,99.7267 L1057.7834,97.8937 L1065.8804,97.5874 L1060.2284,103.3933 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="999" cy="137.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M999,157.5 L1012,157.5 C1014.8017,157.5 1041.001,147.3222 1063.3159,138.4464 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1064.4445,141.2761 L1065.4381,137.6 L1062.1874,135.6168 L1070.39,135.625 L1064.4445,141.2761 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="999" cy="157.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M999,177.5 L1012,177.5 C1022.6452,177.5 1033.95,176.3796 1044.6893,174.7726 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1045.1881,177.8536 L1047,174.3985 L1044.1904,171.6917 L1052.3916,173.5256 L1045.1881,177.8536 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="999" cy="177.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1132,222.5 L1145,222.5 C1154.2674,222.5 1164.1203,222.5 1173.6708,222.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1173.6708,225.531 L1175.9441,222.5 L1173.6708,219.469 L1181.2484,222.5 L1173.6708,225.531 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1132" cy="222.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M999,198.5 L1012,198.5 C1021.3946,198.5 1031.303,199.3727 1040.883,200.6822 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1040.4288,203.7208 L1043.162,201.0229 L1041.3373,197.6436 L1048.4795,201.8178 L1040.4288,203.7208 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="999" cy="198.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1132,281.5 L1145,281.5 C1154.2674,281.5 1164.1203,281.5 1173.6708,281.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1173.6708,284.531 L1175.9441,281.5 L1173.6708,278.469 L1181.2484,281.5 L1173.6708,284.531 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1132" cy="281.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M999,218.5 L1012,218.5 C1030.9867,218.5 1031.9734,231.3195 1048,241.5 C1050.686,243.2062 1053.4588,244.9648 1056.2528,246.7347 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1054.6004,249.3453 L1058.2107,247.9739 L1057.9051,244.1241 L1062.7793,250.8655 L1054.6004,249.3453 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="999" cy="218.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M887,178.5 L900,178.5 C909.2082,178.5 919.0697,178.5 928.472,178.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M928.472,181.6062 L930.8016,178.5 L928.472,175.3938 L936.2375,178.5 L928.472,181.6062 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="887" cy="178.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M704,158.5 L717,158.5 C726.2896,158.5 736.0267,158.5 745.694,158.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M745.694,161.5913 L748.0124,158.5 L745.694,155.4087 L753.4221,158.5 L745.694,161.5913 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="704" cy="158.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M571,129.5 L584,129.5 C593.3848,129.5 603.2184,130.6553 612.7089,132.396 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M612.1046,135.405 L614.9656,132.8492 L613.3132,129.3871 L620.2313,133.9067 L612.1046,135.405 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="571" cy="129.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M887,271.5 L900,271.5 C918.2223,271.5 939.0032,271.5 953.7205,271.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M953.7205,274.6598 L956.0903,271.5 L953.7205,268.3402 L961.6199,271.5 L953.7205,274.6598 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="887" cy="271.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M999,347.5 L1012,347.5 C1022.1322,347.5 1044.2762,340.2115 1063.2151,333.2082 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1064.2768,336.0361 L1065.336,332.4118 L1062.1533,330.3802 L1070.2849,330.5538 L1064.2768,336.0361 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="999" cy="347.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M999,367.5 L1012,367.5 C1021.6436,367.5 1031.8779,366.8992 1041.7538,366.0082 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1042.0469,368.9948 L1043.9938,365.7883 L1041.4606,363.0215 L1049.2204,365.2753 L1042.0469,368.9948 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="999" cy="367.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M999,387.5 L1012,387.5 C1021.6436,387.5 1031.8779,388.1008 1041.7538,388.9918 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1041.4606,391.9785 L1043.9938,389.2117 L1042.0469,386.0052 L1049.2204,389.7247 L1041.4606,391.9785 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="999" cy="387.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1132,455.5 L1145,455.5 C1154.2674,455.5 1164.1203,455.5 1173.6708,455.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1173.6708,458.531 L1175.9441,455.5 L1173.6708,452.469 L1181.2484,455.5 L1173.6708,458.531 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1132" cy="455.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M999,408.5 L1012,408.5 C1028.079,408.5 1044.5215,414.3057 1058.5167,421.3175 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1057.1091,423.9821 L1060.5151,422.3732 L1059.9243,418.6529 L1065.1782,424.8364 L1057.1091,423.9821 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="999" cy="408.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1132,514.5 L1145,514.5 C1154.2674,514.5 1164.1203,514.5 1173.6708,514.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1173.6708,517.531 L1175.9441,514.5 L1173.6708,511.469 L1181.2484,514.5 L1173.6708,517.531 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1132" cy="514.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M999,428.5 L1012,428.5 C1038.3125,428.5 1028.4391,457.9013 1048,475.5 C1049.4455,476.8005 1050.9574,478.0758 1052.5161,479.3218 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1050.6554,481.8033 L1054.3772,480.7173 L1054.3768,476.8402 L1058.7199,483.9735 L1050.6554,481.8033 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="999" cy="428.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M887,292.5 L900,292.5 C923.3331,292.5 940.1851,310.6915 951.777,331.2367 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M949.0838,332.6688 L952.8511,333.2566 L954.4703,329.8045 L955.3574,337.9698 L949.0838,332.6688 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="887" cy="292.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M704,245.5 L717,245.5 C726.513,245.5 736.3601,246.4895 746.0647,248.0896 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M745.5301,251.0438 L748.2803,248.4906 L746.5992,245.1355 L753.4501,249.426 L745.5301,251.0438 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="704" cy="245.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M571,149.5 L584,149.5 C592.3806,149.5 623.2758,183.5513 645.0331,208.8009 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M642.6807,210.817 L646.5452,210.5652 L647.3854,206.7848 L650.0733,214.6818 L642.6807,210.817 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="571" cy="149.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M452,96.5 L465,96.5 C474.5205,96.5 484.4361,98.1539 493.8501,100.5747 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M493.0146,103.5448 L496.0777,101.2014 L494.6857,97.6046 L501.2754,102.6636 L493.0146,103.5448 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="452" cy="96.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M269,76.5 L282,76.5 C291.2896,76.5 301.0267,76.5 310.694,76.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M310.694,79.5913 L313.0124,76.5 L310.694,73.4087 L318.4221,76.5 L310.694,79.5913 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="269" cy="76.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M144,68.5 L157,68.5 C166.3039,68.5 176.1895,69.0491 185.7135,69.8596 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M185.4333,72.8766 L187.9763,70.0698 L185.9938,66.8426 L193.2561,70.5602 L185.4333,72.8766 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="144" cy="68.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="659px" preserveAspectRatio="none" style="width:1383px;height:659px;background:#FFFFFF;" version="1.1" viewBox="0 0 1383 659" width="1383px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="10" y="53"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="15" y="67.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="108" y="67.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="53" y2="73.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="156" y1="73.2969" y2="73.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="15" y="88.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="108" y="88.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="73.2969" y2="93.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="156" y1="93.5938" y2="93.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="15" y="108.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="108" y="108.5889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="93.5938" y2="113.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="10" y="53"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="225" y="67.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="225" y="67.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="88" x="193" y="101.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="56" x="198" y="116.4951">Default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="264" y="116.4951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="259" x2="259" y1="101.5" y2="121.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="88" x="193" y="101.5"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="318" y="81"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="323" y="95.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="416" y="95.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="411" x2="411" y1="81" y2="101.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="318" x2="464" y1="101.2969" y2="101.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="323" y="116.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="416" y="116.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="411" x2="411" y1="101.2969" y2="121.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="318" x2="464" y1="121.5938" y2="121.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="323" y="136.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="416" y="136.5889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="411" x2="411" y1="121.5938" y2="141.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="318" y="81"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="530" y="74.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="530" y="74.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="82" x="501" y="109"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="506" y="123.9951">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="566" y="123.9951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="561" x2="561" y1="109" y2="129.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="501" x2="583" y1="129.2969" y2="129.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="506" y="144.292">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="566" y="144.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="561" x2="561" y1="129.2969" y2="149.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="501" x2="583" y1="149.5938" y2="149.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="506" y="164.5889">mailer</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="566" y="164.5889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="561" x2="561" y1="149.5938" y2="169.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="501" x2="583" y1="169.8906" y2="169.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="50" x="506" y="184.8857">offline</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="566" y="184.8857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="561" x2="561" y1="169.8906" y2="190.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="501" x2="583" y1="190.1875" y2="190.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="506" y="205.1826">pages</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="566" y="205.1826">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="561" x2="561" y1="190.1875" y2="210.4844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="82" x="501" y="109"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="645" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="650" y="24.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="703" y="24.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="10" y2="30.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="645" x2="741" y1="30.2969" y2="30.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="650" y="45.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="703" y="45.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="30.2969" y2="50.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="645" y="10"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="842.5" y="30.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="847.5" y="45.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="892.5" y="45.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="887.5" x2="887.5" y1="30.5" y2="50.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="842.5" y="30.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="645" y="69"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="650" y="83.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="703" y="83.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="69" y2="89.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="645" x2="741" y1="89.2969" y2="89.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="650" y="104.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="703" y="104.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="89.2969" y2="109.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="645" y="69"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="842.5" y="85.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="847.5" y="100.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="892.5" y="100.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="887.5" x2="887.5" y1="85.5" y2="105.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="842.5" y="85.5"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="620" y="128"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="625" y="142.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="718" y="142.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="713" x2="713" y1="128" y2="148.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="620" x2="766" y1="148.2969" y2="148.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="625" y="163.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="718" y="163.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="713" x2="713" y1="148.2969" y2="168.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="620" x2="766" y1="168.5938" y2="168.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="625" y="183.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="718" y="183.5889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="713" x2="713" y1="168.5938" y2="188.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="620" y="128"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="877.5" y="123.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="877.5" y="123.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="173" x="803" y="158"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="123" x="808" y="172.9951">userVerifyEmail</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="959" y="172.9951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="954" x2="954" y1="158" y2="178.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="803" x2="976" y1="178.2969" y2="178.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="141" x="808" y="193.292">userRecoverEmail</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="959" y="193.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="954" x2="954" y1="178.2969" y2="198.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="173" x="803" y="158"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1013" y="140.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1018" y="155.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1063" y="155.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1058" x2="1058" y1="140.5" y2="160.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1013" y="140.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1013" y="178.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1018" y="193.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1063" y="193.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1058" x2="1058" y1="178.5" y2="198.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1013" y="178.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="645" y="212"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="650" y="226.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="703" y="226.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="212" y2="232.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="645" x2="741" y1="232.2969" y2="232.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="650" y="247.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="703" y="247.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="232.2969" y2="252.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="645" y="212"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="816.5" y="217"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="821.5" y="231.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="914.5" y="231.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="909.5" x2="909.5" y1="217" y2="237.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="816.5" x2="962.5" y1="237.2969" y2="237.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="821.5" y="252.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="914.5" y="252.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="909.5" x2="909.5" y1="237.2969" y2="257.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="816.5" x2="962.5" y1="257.5938" y2="257.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="821.5" y="272.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="914.5" y="272.5889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="909.5" x2="909.5" y1="257.5938" y2="277.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="816.5" y="217"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="1048" y="216.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="1048" y="216.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="75" x="1022.5" y="251"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1027.5" y="265.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1080.5" y="265.9951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1075.5" x2="1075.5" y1="251" y2="271.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1022.5" x2="1097.5" y1="271.2969" y2="271.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1027.5" y="286.292">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1080.5" y="286.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1075.5" x2="1075.5" y1="271.2969" y2="291.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1022.5" x2="1097.5" y1="291.5938" y2="291.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1027.5" y="306.5889">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1080.5" y="306.5889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1075.5" x2="1075.5" y1="291.5938" y2="311.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="1022.5" x2="1097.5" y1="311.8906" y2="311.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="1027.5" y="326.8857">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1080.5" y="326.8857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1075.5" x2="1075.5" y1="311.8906" y2="332.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="1022.5" x2="1097.5" y1="332.1875" y2="332.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="1027.5" y="347.1826">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1080.5" y="347.1826">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1075.5" x2="1075.5" y1="332.1875" y2="352.4844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="75" x="1022.5" y="251"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1145" y="200.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1150" y="215.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1195" y="215.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1190" x2="1190" y1="200.5" y2="220.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1145" y="200.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1145" y="238.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1150" y="253.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1195" y="253.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1190" x2="1190" y1="238.5" y2="258.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1145" y="238.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1145" y="276.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1150" y="291.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1195" y="291.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1190" x2="1190" y1="276.5" y2="296.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1145" y="276.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1144" y="315"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1149" y="329.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1202" y="329.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1197" x2="1197" y1="315" y2="335.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1144" x2="1240" y1="335.2969" y2="335.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1149" y="350.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1202" y="350.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1197" x2="1197" y1="335.2969" y2="355.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1144" y="315"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1277" y="335.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1282" y="350.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1327" y="350.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1322" x2="1322" y1="335.5" y2="355.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1277" y="335.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1144" y="374"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1149" y="388.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1202" y="388.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1197" x2="1197" y1="374" y2="394.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1144" x2="1240" y1="394.2969" y2="394.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1149" y="409.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1202" y="409.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1197" x2="1197" y1="394.2969" y2="414.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1144" y="374"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1277" y="394.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1282" y="409.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1327" y="409.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1322" x2="1322" y1="394.5" y2="414.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1277" y="394.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="645" y="320"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="650" y="334.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="703" y="334.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="320" y2="340.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="645" x2="741" y1="340.2969" y2="340.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="650" y="355.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="703" y="355.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="340.2969" y2="360.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="645" y="320"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="816.5" y="374"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="821.5" y="388.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="914.5" y="388.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="909.5" x2="909.5" y1="374" y2="394.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="816.5" x2="962.5" y1="394.2969" y2="394.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="821.5" y="409.292">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="914.5" y="409.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="909.5" x2="909.5" y1="394.2969" y2="414.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="816.5" x2="962.5" y1="414.5938" y2="414.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="821.5" y="429.5889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="914.5" y="429.5889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="909.5" x2="909.5" y1="414.5938" y2="434.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="816.5" y="374"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="1048" y="395.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="1048" y="395.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="75" x="1022.5" y="461"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1027.5" y="475.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1080.5" y="475.9951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1075.5" x2="1075.5" y1="461" y2="481.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1022.5" x2="1097.5" y1="481.2969" y2="481.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1027.5" y="496.292">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1080.5" y="496.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1075.5" x2="1075.5" y1="481.2969" y2="501.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1022.5" x2="1097.5" y1="501.5938" y2="501.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1027.5" y="516.5889">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1080.5" y="516.5889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1075.5" x2="1075.5" y1="501.5938" y2="521.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="1022.5" x2="1097.5" y1="521.8906" y2="521.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="1027.5" y="536.8857">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1080.5" y="536.8857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1075.5" x2="1075.5" y1="521.8906" y2="542.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="1022.5" x2="1097.5" y1="542.1875" y2="542.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="1027.5" y="557.1826">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1080.5" y="557.1826">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1075.5" x2="1075.5" y1="542.1875" y2="562.4844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="75" x="1022.5" y="461"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1145" y="433.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1150" y="448.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1195" y="448.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1190" x2="1190" y1="433.5" y2="453.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1145" y="433.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1145" y="471.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1150" y="486.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1195" y="486.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1190" x2="1190" y1="471.5" y2="491.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1145" y="471.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1145" y="509.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1150" y="524.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1195" y="524.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1190" x2="1190" y1="509.5" y2="529.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1145" y="509.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1144" y="548"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1149" y="562.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1202" y="562.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1197" x2="1197" y1="548" y2="568.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1144" x2="1240" y1="568.2969" y2="568.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1149" y="583.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1202" y="583.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1197" x2="1197" y1="568.2969" y2="588.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1144" y="548"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1277" y="568.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1282" y="583.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1327" y="583.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1322" x2="1322" y1="568.5" y2="588.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1277" y="568.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1144" y="607"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1149" y="621.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1202" y="621.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1197" x2="1197" y1="607" y2="627.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1144" x2="1240" y1="627.2969" y2="627.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1149" y="642.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1202" y="642.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1197" x2="1197" y1="627.2969" y2="647.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1144" y="607"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1277" y="627.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1282" y="642.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1327" y="642.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1322" x2="1322" y1="627.5" y2="647.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1277" y="627.5"/><path d="M144,82.5 L157,82.5 C177.8839,82.5 201.7351,80.0734 217.82,78.0777 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M218.2157,81.1363 L220.114,77.7809 L217.4243,75.019 L225.4665,77.0884 L218.2157,81.1363 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="144" cy="82.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M452,110.5 L465,110.5 C470.9831,110.5 502.482,98.2658 523.15,89.9713 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M524.289,92.7942 L525.2671,89.117 L522.0109,87.1484 L530.2071,87.1236 L524.289,92.7942 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="452" cy="110.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M729.5,40.5 L742.5,40.5 C773.1877,40.5 807.4914,40.5 835.1856,40.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M835.1856,43.551 L837.4738,40.5 L835.1856,37.449 L842.813,40.5 L835.1856,43.551 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="729.5" cy="40.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M571,118.5 L584,118.5 C614.7182,118.5 596.5395,79.3295 620,59.5 C625.3984,54.9371 631.6053,51.0299 638.0674,47.7006 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M639.4232,50.535 L640.1932,46.6837 L636.7115,44.8661 L645.1534,44.311 L639.4232,50.535 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="571" cy="118.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M729.5,99.5 L742.5,99.5 C773.1992,99.5 807.5035,98.6115 835.1952,97.6719 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M835.3014,100.7226 L837.4832,97.5922 L835.0889,94.6213 L842.8218,97.4063 L835.3014,100.7226 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="729.5" cy="99.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M571,138.5 L584,138.5 C602.3033,138.5 603.4698,126.359 620,118.5 C625.8078,115.7388 631.9527,113.0051 638.1103,110.3835 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M639.3186,113.2695 L640.2747,109.4773 L636.9019,107.4976 L645.3251,107.3627 L639.3186,113.2695 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="571" cy="138.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M754,157.5 L767,157.5 C783.4924,157.5 786.9053,152.1002 803,148.5 C825.9748,143.3607 852.5846,138.2253 870.0481,134.9655 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M870.6246,138.0784 L872.3827,134.533 L869.4715,131.8526 L877.8303,133.5241 L870.6246,138.0784 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="754" cy="157.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M964,167.5 L977,167.5 C990.6916,167.5 1005.4031,165.2262 1018.5573,162.3418 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1019.2599,165.36 L1020.821,161.8149 L1017.8548,159.3235 L1026.1029,160.5854 L1019.2599,165.36 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="964" cy="167.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M964,188.5 L977,188.5 C986.2674,188.5 996.1203,188.5 1005.6708,188.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1005.6708,191.531 L1007.9441,188.5 L1005.6708,185.469 L1013.2484,188.5 L1005.6708,191.531 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="964" cy="188.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M754,178.5 L767,178.5 C776.2756,178.5 785.9479,178.5 795.6097,178.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M795.6097,181.5954 L797.9312,178.5 L795.6097,175.4046 L803.3482,178.5 L795.6097,181.5954 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="754" cy="178.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M571,158.5 L584,158.5 C593.2896,158.5 603.0267,158.5 612.694,158.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M612.694,161.5913 L615.0124,158.5 L612.694,155.4087 L620.4221,158.5 L612.694,161.5913 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="571" cy="158.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M951,246.5 L964,246.5 C991.3655,246.5 1022.0419,237.8158 1041.0667,231.3596 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1042.072,234.224 L1043.215,230.6057 L1040.0614,228.4953 L1048.2276,228.8465 L1042.072,234.224 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="951" cy="246.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1086.5,260.5 L1099.5,260.5 C1123.6037,260.5 1122.7836,240.9391 1144,229.5 C1147.9065,227.3938 1152.0977,225.3859 1156.3136,223.5182 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1157.515,226.3472 L1158.4353,222.6172 L1155.1122,220.6892 L1163.3861,220.5148 L1157.515,226.3472 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1086.5" cy="260.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1086.5,280.5 L1099.5,280.5 C1105.6302,280.5 1134.3311,270.2339 1158.0677,261.3312 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1159.1502,264.2019 L1160.2207,260.5194 L1156.9852,258.4606 L1165.2443,258.625 L1159.1502,264.2019 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1086.5" cy="280.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1086.5,300.5 L1099.5,300.5 C1111.9427,300.5 1125.2254,299.2329 1137.7165,297.4611 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1138.1812,300.5254 L1140.0147,297.1127 L1137.2519,294.3969 L1145.3771,296.2995 L1138.1812,300.5254 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1086.5" cy="300.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1228,345.5 L1241,345.5 C1250.2674,345.5 1260.1203,345.5 1269.6708,345.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1269.6708,348.531 L1271.9441,345.5 L1269.6708,342.469 L1277.2484,345.5 L1269.6708,348.531 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1228" cy="345.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1086.5,321.5 L1099.5,321.5 C1111.6751,321.5 1124.6545,322.7132 1136.9096,324.4253 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1136.4599,327.4346 L1139.1665,324.7625 L1137.3592,321.416 L1144.4328,325.5494 L1136.4599,327.4346 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1086.5" cy="321.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1228,404.5 L1241,404.5 C1250.2674,404.5 1260.1203,404.5 1269.6708,404.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1269.6708,407.531 L1271.9441,404.5 L1269.6708,401.469 L1277.2484,404.5 L1269.6708,407.531 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1228" cy="404.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1086.5,341.5 L1099.5,341.5 C1102.596,341.5 1127.7871,356.101 1151.0262,369.9757 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1149.4737,372.5688 L1152.9711,371.1401 L1152.5788,367.3825 L1157.5091,373.8571 L1149.4737,372.5688 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1086.5" cy="341.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M951,267.5 L964,267.5 C981.5512,267.5 999.9205,272.6597 1015.8072,278.959 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1014.6231,281.8041 L1017.941,279.847 L1016.9912,276.1139 L1022.9199,281.9191 L1014.6231,281.8041 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="951" cy="267.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M729.5,242.5 L742.5,242.5 C764.1265,242.5 787.5384,243.051 809.1673,243.7871 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M809.0603,246.8152 L811.4383,243.8674 L809.2743,240.7591 L816.7374,244.0546 L809.0603,246.8152 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="729.5" cy="242.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M571,179.5 L584,179.5 C601.8885,179.5 603.9448,189.6113 620,197.5 C627.2992,201.0865 635.0259,204.8508 642.6085,208.5268 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M641.2711,211.2895 L644.6805,209.5298 L643.9459,205.7641 L649.5153,211.8702 L641.2711,211.2895 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="571" cy="179.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M951,403.5 L964,403.5 C990.5744,403.5 1021.3084,403.5 1040.5761,403.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1040.5761,406.6 L1042.9011,403.5 L1040.5761,400.4 L1048.3261,403.5 L1040.5761,406.6 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="951" cy="403.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1086.5,470.5 L1099.5,470.5 C1110.6677,470.5 1135.403,463.0825 1156.4152,456.0231 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1157.4029,458.9226 L1158.5898,455.2823 L1155.4275,453.1236 L1163.6639,453.5538 L1157.4029,458.9226 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1086.5" cy="470.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1086.5,490.5 L1099.5,490.5 C1111.8598,490.5 1125.1095,489.6854 1137.595,488.5464 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1137.8937,491.6106 L1139.8931,488.3224 L1137.2963,485.4823 L1145.2554,487.7997 L1137.8937,491.6106 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1086.5" cy="490.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1086.5,510.5 L1099.5,510.5 C1111.8598,510.5 1125.1095,511.3146 1137.595,512.4536 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1137.2963,515.5177 L1139.8931,512.6776 L1137.8937,509.3894 L1145.2554,513.2003 L1137.2963,515.5177 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1086.5" cy="510.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1228,578.5 L1241,578.5 C1250.2674,578.5 1260.1203,578.5 1269.6708,578.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1269.6708,581.531 L1271.9441,578.5 L1269.6708,575.469 L1277.2484,578.5 L1269.6708,581.531 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1228" cy="578.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1086.5,531.5 L1099.5,531.5 C1117.1163,531.5 1135.3488,537.4117 1150.8903,544.509 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1149.5593,547.2848 L1152.9721,545.5073 L1152.2212,541.7333 L1157.8297,547.8364 L1149.5593,547.2848 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1086.5" cy="531.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1228,637.5 L1241,637.5 C1250.2674,637.5 1260.1203,637.5 1269.6708,637.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1269.6708,640.531 L1271.9441,637.5 L1269.6708,634.469 L1277.2484,637.5 L1269.6708,640.531 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1228" cy="637.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1086.5,551.5 L1099.5,551.5 C1127.9453,551.5 1121.9291,579.5554 1144,597.5 C1146.1308,599.2325 1148.3675,600.9467 1150.661,602.6258 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1148.9206,605.0939 L1152.5121,603.9312 L1152.4015,600.1578 L1156.8311,606.9769 L1148.9206,605.0939 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1086.5" cy="551.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M951,424.5 L964,424.5 C986.9715,424.5 1006.8484,438.4259 1022.4299,455.1347 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1020.1271,457.1818 L1023.9652,456.8618 L1024.7327,453.0876 L1027.5476,460.8917 L1020.1271,457.1818 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="951" cy="424.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M729.5,350.5 L742.5,350.5 C771.3656,350.5 801.5658,359.8437 826.9956,370.7576 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M825.7502,373.574 L829.1079,371.6917 L828.241,367.9413 L834.0366,373.8711 L825.7502,373.574 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="729.5" cy="350.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M572.5,198.5 L572.5,211.5 C572.5,257.0946 613.1854,293.3288 647.1759,315.6445 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M645.4654,318.3225 L649.1843,316.9274 L648.8864,312.9666 L653.8707,319.9208 L645.4654,318.3225 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="572.5" cy="198.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M452,131.5 L465,131.5 C474.5973,131.5 484.4818,133.4674 493.827,136.3592 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M492.828,139.3045 L496.036,137.1085 L494.826,133.414 L501.1902,138.8567 L492.828,139.3045 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="452" cy="131.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M269,111.5 L282,111.5 C291.2896,111.5 301.0267,111.5 310.694,111.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M310.694,114.5913 L313.0124,111.5 L310.694,108.4087 L318.4221,111.5 L310.694,114.5913 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="269" cy="111.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M144,103.5 L157,103.5 C166.3039,103.5 176.1895,104.0491 185.7135,104.8596 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M185.4333,107.8766 L187.9763,105.0698 L185.9938,101.8426 L193.2561,105.5602 L185.4333,107.8766 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="144" cy="103.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>
@@ -4,13 +4,24 @@ import { getProxyPath } from '../../components/core/VanillaJs.js';
4
4
 
5
5
  const logger = loggerFactory(import.meta);
6
6
 
7
+ logger.info('Load service');
8
+
9
+ const endpoint = 'core';
10
+
7
11
  // https://developer.mozilla.org/en-US/docs/Web/API/AbortController
8
- const getBaseHost = () => location.host;
12
+ const getBaseHost = () => (window.renderPayload?.apiBaseHost ? window.renderPayload.apiBaseHost : location.host);
9
13
 
10
- const getApiBasePath = () => `${getProxyPath()}api/`;
14
+ const getApiBasePath = (options) =>
15
+ `${
16
+ options?.proxyPath
17
+ ? `/${options.proxyPath}/`
18
+ : window.renderPayload?.apiBaseProxyPath
19
+ ? window.renderPayload.apiBaseProxyPath
20
+ : getProxyPath()
21
+ }${window.renderPayload?.apiBasePath ? window.renderPayload.apiBasePath : 'api'}/`;
11
22
 
12
- const getApiBaseUrl = (options = { id: '', endpoint: '' }) =>
13
- `${location.protocol}//${getBaseHost()}${getApiBasePath()}${options?.endpoint ? options.endpoint : ''}${
23
+ const getApiBaseUrl = (options = { id: '', endpoint: '', proxyPath: '' }) =>
24
+ `${location.protocol}//${getBaseHost()}${getApiBasePath(options)}${options?.endpoint ? options.endpoint : ''}${
14
25
  options?.id ? `/${options.id}` : ''
15
26
  }`;
16
27
 
@@ -38,10 +49,6 @@ const payloadFactory = (body) => {
38
49
  return JSON.stringify(body);
39
50
  };
40
51
 
41
- logger.info('Load service');
42
-
43
- const endpoint = 'core';
44
-
45
52
  const CoreService = {
46
53
  getRaw: (options = { url: '' }) =>
47
54
  new Promise((resolve, reject) =>
@@ -1,6 +1,6 @@
1
1
  import { AgGrid } from '../../components/core/AgGrid.js';
2
2
  import { BtnIcon } from '../../components/core/BtnIcon.js';
3
- import { getId, timer } from '../../components/core/CommonJs.js';
3
+ import { getId, getValueFromJoinString, timer } from '../../components/core/CommonJs.js';
4
4
  import { darkTheme } from '../../components/core/Css.js';
5
5
  import { EventsUI } from '../../components/core/EventsUI.js';
6
6
  import { loggerFactory } from '../../components/core/Logger.js';
@@ -88,7 +88,9 @@ const DefaultManagement = {
88
88
  ${Translate.Render('confirm-delete-item')}
89
89
  ${Object.keys(params.data).length > 0
90
90
  ? html`<br />
91
- "${params.data[Object.keys(params.data)[0]]}"`
91
+ "${options.defaultColKeyFocus
92
+ ? getValueFromJoinString(params.data, options.defaultColKeyFocus)
93
+ : params.data[Object.keys(params.data)[0]]}"`
92
94
  : ''}
93
95
  </div>
94
96
  `;
@@ -1,4 +1,4 @@
1
- SrrComponent = ({ title, ssrPath, buildId, ssrHeadComponents, ssrBodyComponents }) => html`
1
+ SrrComponent = ({ title, ssrPath, buildId, ssrHeadComponents, ssrBodyComponents, renderPayload, renderApi }) => html`
2
2
  <!DOCTYPE html>
3
3
  <html dir="ltr" lang="en">
4
4
  <head>
@@ -6,6 +6,9 @@ SrrComponent = ({ title, ssrPath, buildId, ssrHeadComponents, ssrBodyComponents
6
6
  <link rel="icon" type="image/x-icon" href="${ssrPath}favicon.ico" />
7
7
  <meta charset="UTF-8" />
8
8
  <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
9
+ <script>
10
+ window.renderPayload = ${renderApi.JSONweb(renderPayload)};
11
+ </script>
9
12
  ${ssrHeadComponents}
10
13
  </head>
11
14
  <body>
@@ -70,7 +70,7 @@ const CacheControl = function ({ ttiLoadTimeLimit }) {
70
70
  setTimeout(window.cacheControlCallBack, ttiLoadTimeLimit); // 70s limit);
71
71
  };
72
72
 
73
- SrrComponent = ({ ttiLoadTimeLimit }) => {
73
+ SrrComponent = ({ ttiLoadTimeLimit, version }) => {
74
74
  const borderChar = (px, color, selectors) => {
75
75
  if (selectors) {
76
76
  return selectors
@@ -109,6 +109,6 @@ SrrComponent = ({ ttiLoadTimeLimit }) => {
109
109
  const CacheControl = ${CacheControl};
110
110
  CacheControl({ ttiLoadTimeLimit: ${ttiLoadTimeLimit ? ttiLoadTimeLimit : 1000 * 70 * 1} });
111
111
  </script>
112
- <div class="clean-cache-container">v2.8.0</div>
112
+ <div class="clean-cache-container">${version}</div>
113
113
  `;
114
114
  };