fdb2 1.0.0

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 (125) hide show
  1. package/.dockerignore +21 -0
  2. package/.editorconfig +11 -0
  3. package/.eslintrc.cjs +14 -0
  4. package/.eslintrc.json +7 -0
  5. package/.prettierrc.js +3 -0
  6. package/.tpl.env +22 -0
  7. package/README.md +260 -0
  8. package/bin/build.sh +28 -0
  9. package/bin/deploy.sh +8 -0
  10. package/bin/dev.sh +10 -0
  11. package/bin/docker/.env +4 -0
  12. package/bin/docker/dev-docker-compose.yml +43 -0
  13. package/bin/docker/dev.Dockerfile +24 -0
  14. package/bin/docker/prod-docker-compose.yml +17 -0
  15. package/bin/docker/prod.Dockerfile +29 -0
  16. package/bin/fdb2.js +142 -0
  17. package/data/connections.demo.json +32 -0
  18. package/env.d.ts +1 -0
  19. package/nw-build.js +120 -0
  20. package/nw-dev.js +65 -0
  21. package/package.json +114 -0
  22. package/public/favicon.ico +0 -0
  23. package/public/index.html +9 -0
  24. package/public/modules/header.tpl +14 -0
  25. package/public/modules/initial_state.tpl +55 -0
  26. package/server/index.ts +677 -0
  27. package/server/model/connection.entity.ts +66 -0
  28. package/server/model/database.entity.ts +246 -0
  29. package/server/service/connection.service.ts +334 -0
  30. package/server/service/database/base.service.ts +363 -0
  31. package/server/service/database/database.service.ts +510 -0
  32. package/server/service/database/index.ts +7 -0
  33. package/server/service/database/mssql.service.ts +723 -0
  34. package/server/service/database/mysql.service.ts +761 -0
  35. package/server/service/database/oracle.service.ts +839 -0
  36. package/server/service/database/postgres.service.ts +744 -0
  37. package/server/service/database/sqlite.service.ts +559 -0
  38. package/server/service/session.service.ts +158 -0
  39. package/server.js +128 -0
  40. package/src/adapter/ajax.ts +135 -0
  41. package/src/assets/base.css +1 -0
  42. package/src/assets/database.css +950 -0
  43. package/src/assets/images/collapse.png +0 -0
  44. package/src/assets/images/no-login.png +0 -0
  45. package/src/assets/images/svg/illustrations/illustration-1.svg +1 -0
  46. package/src/assets/images/svg/illustrations/illustration-2.svg +2 -0
  47. package/src/assets/images/svg/illustrations/illustration-3.svg +50 -0
  48. package/src/assets/images/svg/illustrations/illustration-4.svg +1 -0
  49. package/src/assets/images/svg/illustrations/illustration-5.svg +73 -0
  50. package/src/assets/images/svg/illustrations/illustration-6.svg +89 -0
  51. package/src/assets/images/svg/illustrations/illustration-7.svg +39 -0
  52. package/src/assets/images/svg/illustrations/illustration-8.svg +1 -0
  53. package/src/assets/images/svg/separators/curve-2.svg +3 -0
  54. package/src/assets/images/svg/separators/curve.svg +3 -0
  55. package/src/assets/images/svg/separators/line.svg +3 -0
  56. package/src/assets/images/theme/light/screen-1-1000x800.jpg +0 -0
  57. package/src/assets/images/theme/light/screen-2-1000x800.jpg +0 -0
  58. package/src/assets/login/bg.jpg +0 -0
  59. package/src/assets/login/bg.png +0 -0
  60. package/src/assets/login/left.jpg +0 -0
  61. package/src/assets/logo.svg +73 -0
  62. package/src/assets/logo.webp +0 -0
  63. package/src/assets/main.css +1 -0
  64. package/src/base/config.ts +20 -0
  65. package/src/base/detect.ts +134 -0
  66. package/src/base/entity.ts +92 -0
  67. package/src/base/eventBus.ts +37 -0
  68. package/src/base//345/237/272/347/241/200/345/261/202.md +7 -0
  69. package/src/components/connection-editor/index.vue +590 -0
  70. package/src/components/dataGrid/index.vue +105 -0
  71. package/src/components/dataGrid/pagination.vue +106 -0
  72. package/src/components/loading/index.vue +43 -0
  73. package/src/components/modal/index.ts +181 -0
  74. package/src/components/modal/index.vue +560 -0
  75. package/src/components/toast/index.ts +44 -0
  76. package/src/components/toast/toast.vue +58 -0
  77. package/src/components/user/name.vue +104 -0
  78. package/src/components/user/selector.vue +416 -0
  79. package/src/domain/SysConfig.ts +74 -0
  80. package/src/platform/App.vue +8 -0
  81. package/src/platform/database/components/connection-detail.vue +1154 -0
  82. package/src/platform/database/components/data-editor.vue +478 -0
  83. package/src/platform/database/components/data-import-export.vue +1602 -0
  84. package/src/platform/database/components/database-detail.vue +1173 -0
  85. package/src/platform/database/components/database-monitor.vue +1086 -0
  86. package/src/platform/database/components/db-tools.vue +577 -0
  87. package/src/platform/database/components/query-history.vue +1349 -0
  88. package/src/platform/database/components/sql-executor.vue +738 -0
  89. package/src/platform/database/components/sql-query-editor.vue +1046 -0
  90. package/src/platform/database/components/table-detail.vue +1376 -0
  91. package/src/platform/database/components/table-editor.vue +690 -0
  92. package/src/platform/database/explorer.vue +1840 -0
  93. package/src/platform/database/index.vue +1193 -0
  94. package/src/platform/database/layout.vue +367 -0
  95. package/src/platform/database/router.ts +37 -0
  96. package/src/platform/database/styles/common.scss +602 -0
  97. package/src/platform/database/types/common.ts +445 -0
  98. package/src/platform/database/utils/export.ts +232 -0
  99. package/src/platform/database/utils/helpers.ts +437 -0
  100. package/src/platform/index.ts +33 -0
  101. package/src/platform/router.ts +41 -0
  102. package/src/service/base.ts +128 -0
  103. package/src/service/database.ts +500 -0
  104. package/src/service/login.ts +121 -0
  105. package/src/shims-vue.d.ts +7 -0
  106. package/src/stores/connection.ts +266 -0
  107. package/src/stores/session.ts +87 -0
  108. package/src/typings/database-types.ts +413 -0
  109. package/src/typings/database.ts +364 -0
  110. package/src/typings/global.d.ts +58 -0
  111. package/src/typings/pinia.d.ts +8 -0
  112. package/src/utils/clipboard.ts +30 -0
  113. package/src/utils/database-types.ts +243 -0
  114. package/src/utils/modal.ts +124 -0
  115. package/src/utils/request.ts +55 -0
  116. package/src/utils/sleep.ts +4 -0
  117. package/src/utils/toast.ts +73 -0
  118. package/src/utils/util.ts +171 -0
  119. package/src/utils/xlsx.ts +228 -0
  120. package/tsconfig.json +33 -0
  121. package/tsconfig.server.json +19 -0
  122. package/view/index.html +9 -0
  123. package/view/modules/header.tpl +14 -0
  124. package/view/modules/initial_state.tpl +20 -0
  125. package/vite.config.ts +384 -0
Binary file
Binary file
@@ -0,0 +1 @@
1
+ <svg id="ea61258a-e793-48f7-8624-3c5ca462ffd9" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="882.34637" height="778.99856" viewBox="0 0 882.34637 778.99856"><title>remotely</title><path d="M501.18877,80.56067l3.46953-5.362a80.3872,80.3872,0,0,0-3.55952-8.33251l-2.24352,1.81205,1.77642-2.74534c-1.69294-3.3325-3.02505-5.43215-3.02505-5.43215s-6.95827,10.96511-9.283,22.57466l4.45222,6.88072-4.9288-3.981a32.52249,32.52249,0,0,0-.27041,4.0782c0,13.74959,4.49056,24.89583,10.03,24.89583s10.03-11.14624,10.03-24.89583a42.818,42.818,0,0,0-2.29454-12.84723Z" transform="translate(-158.82681 -60.50072)" fill="#e6e6e6"/><path d="M525.74665,92.48079l6.24485-1.33818a80.386,80.386,0,0,0,3.375-8.40894l-2.86772-.30508,3.19738-.68514c1.15933-3.55352,1.70207-5.98014,1.70207-5.98014s-12.67374,2.83326-22.52676,9.39864l-1.71721,8.01359-.67022-6.30016a32.52414,32.52414,0,0,0-3.07493,2.69252c-9.72242,9.72242-14.4287,20.77932-10.51174,24.69627s14.97385-.78932,24.69627-10.51174a42.81769,42.81769,0,0,0,7.46188-10.70686Z" transform="translate(-158.82681 -60.50072)" fill="#e6e6e6"/><path d="M528.02764,145.68472c-14.48118.92631-30.25994-.05387-47.04589,0V107.25287c14.79122,2.30262,30.56472,2.06615,47.04589,0Z" transform="translate(-158.82681 -60.50072)" fill="#e6e6e6"/><path d="M631.62843,175.65222l2.26263-3.49679a52.42392,52.42392,0,0,0-2.32132-5.434l-1.46308,1.18172,1.15847-1.79036c-1.104-2.17326-1.97276-3.54253-1.97276-3.54253a50.2414,50.2414,0,0,0-6.05381,14.72187l2.90347,4.4872-3.21427-2.59615a21.20987,21.20987,0,0,0-.17635,2.65956c0,8.96667,2.92849,16.2356,6.541,16.2356s6.541-7.26893,6.541-16.2356a27.92338,27.92338,0,0,0-1.49636-8.37821Z" transform="translate(-158.82681 -60.50072)" fill="#e6e6e6"/><path d="M647.64364,183.42582l4.07252-.87269a52.42092,52.42092,0,0,0,2.201-5.48381l-1.87016-.199,2.08514-.44681c.756-2.31739,1.11-3.89989,1.11-3.89989a50.241,50.241,0,0,0-14.69062,6.12924l-1.11987,5.226-.43707-4.10859a21.20826,21.20826,0,0,0-2.00529,1.7559c-6.3404,6.34039-9.40955,13.55105-6.85515,16.10546s9.76507-.51475,16.10546-6.85515a27.92314,27.92314,0,0,0,4.8662-6.98238Z" transform="translate(-158.82681 -60.50072)" fill="#e6e6e6"/><path d="M649.13117,218.12229c-9.44378.60408-19.73376-.03513-30.68057,0v-25.063a110.58424,110.58424,0,0,0,30.68057,0Z" transform="translate(-158.82681 -60.50072)" fill="#e6e6e6"/><path d="M643.29962,292.39872c-8.33889.53341-17.425-.031-27.091,0V270.268a97.6466,97.6466,0,0,0,27.091,0Z" transform="translate(-158.82681 -60.50072)" fill="#e6e6e6"/><rect x="167.50834" y="82.48131" width="364.54703" height="10.18288" fill="#e6e6e6"/><rect x="167.50834" y="154.77974" width="364.54703" height="10.18288" fill="#e6e6e6"/><rect x="167.50834" y="227.07818" width="364.54703" height="10.18288" fill="#e6e6e6"/><circle cx="470.9581" cy="197.54783" r="20.36576" fill="#e6e6e6"/><circle cx="470.9581" cy="197.54783" r="16.2926" fill="#fff"/><circle cx="470.9581" cy="197.54783" r="4.07315" fill="#e6e6e6"/><rect x="634.87636" y="249.90225" width="2.03658" height="16.2926" transform="translate(735.11638 -438.34681) rotate(90)" fill="#e6e6e6"/><rect x="628.76663" y="243.79252" width="2.03658" height="16.2926" transform="translate(1100.74302 443.37693) rotate(180)" fill="#e6e6e6"/><rect x="339.72544" y="105.10421" width="13.47506" height="53.33878" fill="#e6e6e6"/><rect x="339.72544" y="113.52612" width="13.47506" height="6.17607" fill="#ccc"/><rect x="339.72544" y="140.47624" width="13.47506" height="6.17607" fill="#ccc"/><rect x="318.95139" y="105.10421" width="13.47506" height="53.33878" fill="#e6e6e6"/><rect x="318.95139" y="113.52612" width="13.47506" height="6.17607" fill="#ccc"/><rect x="318.95139" y="140.47624" width="13.47506" height="6.17607" fill="#ccc"/><rect x="522.69507" y="165.60493" width="13.47506" height="53.33878" transform="translate(-189.17144 194.36555) rotate(-26.3396)" fill="#e6e6e6"/><rect x="515.96897" y="175.60069" width="13.47506" height="6.17607" transform="translate(-183.84194 189.97078) rotate(-26.3396)" fill="#ccc"/><rect x="527.92649" y="199.75285" width="13.47506" height="6.17607" transform="translate(-193.3166 197.7837) rotate(-26.3396)" fill="#ccc"/><rect x="219.56748" y="177.40264" width="13.47506" height="53.33878" fill="#e6e6e6"/><rect x="219.56748" y="185.82455" width="13.47506" height="6.17607" fill="#ccc"/><rect x="219.56748" y="212.77467" width="13.47506" height="6.17607" fill="#ccc"/><rect x="198.79343" y="177.40264" width="13.47506" height="53.33878" fill="#e6e6e6"/><rect x="198.79343" y="185.82455" width="13.47506" height="6.17607" fill="#ccc"/><rect x="198.79343" y="212.77467" width="13.47506" height="6.17607" fill="#ccc"/><rect x="402.53712" y="237.90336" width="13.47506" height="53.33878" transform="translate(-233.72439 148.5586) rotate(-26.3396)" fill="#e6e6e6"/><rect x="395.81101" y="247.89913" width="13.47506" height="6.17607" transform="translate(-228.39489 144.16384) rotate(-26.3396)" fill="#ccc"/><rect x="407.76853" y="272.05128" width="13.47506" height="6.17607" transform="translate(-237.86955 151.97676) rotate(-26.3396)" fill="#ccc"/><rect x="345.83517" y="177.40264" width="13.47506" height="53.33878" fill="#e6e6e6"/><rect x="345.83517" y="185.82455" width="13.47506" height="6.17607" fill="#ccc"/><rect x="345.83517" y="212.77467" width="13.47506" height="6.17607" fill="#ccc"/><rect x="325.06112" y="177.40264" width="13.47506" height="53.33878" fill="#e6e6e6"/><rect x="325.06112" y="185.82455" width="13.47506" height="6.17607" fill="#ccc"/><rect x="325.06112" y="212.77467" width="13.47506" height="6.17607" fill="#ccc"/><rect x="528.8048" y="237.90336" width="13.47506" height="53.33878" transform="translate(-220.61527 204.58241) rotate(-26.3396)" fill="#e6e6e6"/><rect x="522.0787" y="247.89913" width="13.47506" height="6.17607" transform="translate(-215.28577 200.18764) rotate(-26.3396)" fill="#ccc"/><rect x="534.03622" y="272.05128" width="13.47506" height="6.17607" transform="translate(-224.76043 208.00056) rotate(-26.3396)" fill="#ccc"/><rect x="449.98737" y="32.64567" width="53.55594" height="53.55594" fill="#e6e6e6"/><rect x="460.69856" y="43.35686" width="32.13357" height="32.13357" fill="#ccc"/><polygon points="470 54.143 476.814 65.944 483.627 77.745 470 77.745 456.373 77.745 463.187 65.944 470 54.143" fill="#e6e6e6"/><polygon points="481.839 56.398 488.653 68.199 495.466 80 481.839 80 468.212 80 475.026 68.199 481.839 56.398" fill="#e6e6e6"/><circle cx="486.63091" cy="48.99433" r="3.94623" fill="#e6e6e6"/><rect x="179.12282" y="32.64567" width="53.55594" height="53.55594" fill="#e6e6e6"/><rect x="189.83401" y="43.35686" width="32.13357" height="32.13357" fill="#ccc"/><polygon points="199.136 54.143 205.949 65.944 212.763 77.745 199.136 77.745 185.509 77.745 192.322 65.944 199.136 54.143" fill="#e6e6e6"/><polygon points="210.975 56.398 217.788 68.199 224.601 80 210.975 80 197.348 80 204.161 68.199 210.975 56.398" fill="#e6e6e6"/><circle cx="215.76636" cy="48.99433" r="3.94623" fill="#e6e6e6"/><path d="M230.32422,458.34544l3.46953-5.362a80.3871,80.3871,0,0,0-3.55953-8.33251l-2.24351,1.812,1.77642-2.74534c-1.69294-3.3325-3.02505-5.43215-3.02505-5.43215s-6.95827,10.96511-9.283,22.57466l4.45222,6.88072-4.92881-3.981a32.52438,32.52438,0,0,0-.27041,4.0782c0,13.74959,4.49057,24.89583,10.03,24.89583s10.03-11.14624,10.03-24.89583a42.818,42.818,0,0,0-2.29454-12.84723Z" transform="translate(-158.82681 -60.50072)" fill="#008aff"/><path d="M254.8821,470.26556l6.24485-1.33818a80.386,80.386,0,0,0,3.375-8.40894l-2.86772-.30508,3.19737-.68514c1.15934-3.55352,1.70208-5.98014,1.70208-5.98014s-12.67374,2.83326-22.52676,9.39864l-1.71721,8.01359-.67022-6.30016a32.52414,32.52414,0,0,0-3.07493,2.69252c-9.72243,9.72242-14.4287,20.77932-10.51175,24.69627s14.97385-.78932,24.69628-10.51174a42.818,42.818,0,0,0,7.46188-10.70686Z" transform="translate(-158.82681 -60.50072)" fill="#008aff"/><path d="M257.16309,523.46949c-14.48118.92631-30.25994-.05387-47.04589,0V485.03764c14.79122,2.30262,30.56472,2.06615,47.04589,0Z" transform="translate(-158.82681 -60.50072)" fill="#3f3d56"/><rect x="500.99759" y="475.03125" width="195.51126" height="253.55366" fill="#e6e6e6"/><rect x="92.66419" y="488.269" width="10.18288" height="240.31592" fill="#e6e6e6"/><rect y="457.72036" width="696.50885" height="20.36576" fill="#e6e6e6"/><rect x="87.57275" y="478.08612" width="20.36576" height="20.36576" fill="#e6e6e6"/><polygon points="614.155 489.796 613.009 494.379 584.497 494.379 582.779 489.796 510.162 489.796 510.162 536.638 687.344 536.638 687.344 489.796 614.155 489.796" fill="#3f3d56"/><polygon points="614.155 548.857 613.009 553.439 584.497 553.439 582.779 548.857 510.162 548.857 510.162 595.698 687.344 595.698 687.344 548.857 614.155 548.857" fill="#3f3d56"/><polygon points="614.155 607.918 613.009 612.5 584.497 612.5 582.779 607.918 510.162 607.918 510.162 654.759 687.344 654.759 687.344 607.918 614.155 607.918" fill="#3f3d56"/><polygon points="614.155 666.979 613.009 671.561 584.497 671.561 582.779 666.979 510.162 666.979 510.162 713.82 687.344 713.82 687.344 666.979 614.155 666.979" fill="#3f3d56"/><polygon points="377.785 454.665 317.706 454.665 319.742 428.19 375.748 428.19 377.785 454.665" fill="#e6e6e6"/><rect x="314.65093" y="451.61063" width="67.20699" height="6.10973" fill="#e6e6e6"/><path d="M621.63862,318.12753H392.01472a6.10973,6.10973,0,0,0-6.10973,6.10973V464.25183H627.74834V324.23726A6.10973,6.10973,0,0,0,621.63862,318.12753Z" transform="translate(-158.82681 -60.50072)" fill="#3f3d56"/><path d="M385.905,464.25183V487.1633a6.10973,6.10973,0,0,0,6.10973,6.10973h229.6239a6.10973,6.10973,0,0,0,6.10972-6.10973V464.25183Z" transform="translate(-158.82681 -60.50072)" fill="#e6e6e6"/><rect x="239.29763" y="270.35541" width="217.91359" height="122.19453" fill="#fff"/><circle cx="348.25442" cy="418.00714" r="6.10973" fill="#3f3d56"/><path d="M1023.86229,787.5582c-22.25416,1.42352-46.50239-.08278-72.29843,0V728.49751c22.73061,3.53859,46.97076,3.17519,72.29843,0Z" transform="translate(-158.82681 -60.50072)" fill="#3f3d56"/><polygon points="831.432 673.3 825.322 673.3 827.359 553.949 829.395 553.949 831.432 673.3" fill="#3f3d56"/><polygon points="858.926 674.107 852.816 674.107 854.853 554.755 856.889 554.755 858.926 674.107" fill="#3f3d56"/><polygon points="806.993 674.107 800.883 674.107 802.92 554.755 804.956 554.755 806.993 674.107" fill="#3f3d56"/><path d="M995.35023,538.07769l9.8628-15.24249a228.51376,228.51376,0,0,0-10.11861-23.68669l-6.3776,5.1511,5.0498-7.80416c-4.81251-9.47323-8.59926-15.44187-8.59926-15.44187s-19.78017,31.17033-26.3886,64.17264L971.435,564.78593l-14.011-11.31664a92.45186,92.45186,0,0,0-.76869,11.593c0,39.08574,12.76527,70.771,28.51206,70.771s28.512-31.68526,28.512-70.771c0-12.117-2.74124-24.794-6.52266-36.52063Z" transform="translate(-158.82681 -60.50072)" fill="#e6e6e6"/><path d="M1022.844,540.11427l9.8628-15.2425a228.5147,228.5147,0,0,0-10.11861-23.68669l-6.3776,5.15111,5.0498-7.80416c-4.81251-9.47323-8.59926-15.44188-8.59926-15.44188s-19.78017,31.17034-26.3886,64.17264l12.65626,19.55972-14.011-11.31664a92.45186,92.45186,0,0,0-.76869,11.593c0,39.08574,12.76527,70.771,28.51206,70.771s28.51206-31.68526,28.51206-70.771c0-12.117-2.74125-24.794-6.52267-36.52064Z" transform="translate(-158.82681 -60.50072)" fill="#008aff"/><path d="M970.91133,540.11427l9.8628-15.2425a228.51678,228.51678,0,0,0-10.11862-23.68669l-6.3776,5.15111,5.0498-7.80416c-4.8125-9.47323-8.59926-15.44188-8.59926-15.44188s-19.78017,31.17034-26.3886,64.17264l12.65626,19.55972-14.011-11.31664a92.45186,92.45186,0,0,0-.76869,11.593c0,39.08574,12.76527,70.771,28.51206,70.771s28.51206-31.68526,28.51206-70.771c0-12.117-2.74125-24.794-6.52266-36.52064Z" transform="translate(-158.82681 -60.50072)" fill="#008aff"/><rect x="309.96395" y="304.84783" width="58.75616" height="3.37283" fill="#3f3d56"/><rect x="309.96395" y="317.15098" width="90.7323" height="3.37283" fill="#008aff"/><rect x="309.96395" y="328.74233" width="73.94482" height="3.37283" fill="#008aff"/><rect x="309.96395" y="340.28988" width="43.16779" height="3.37283" fill="#3f3d56"/><rect x="309.96395" y="351.83743" width="65.15139" height="3.37283" fill="#3f3d56"/><rect x="283.18393" y="303.64873" width="7.19463" height="7.19463" fill="#3f3d56"/><rect x="283.18393" y="315.24008" width="7.19463" height="7.19463" fill="#008aff"/><rect x="283.18393" y="326.83143" width="7.19463" height="7.19463" fill="#008aff"/><rect x="283.18393" y="338.42278" width="7.19463" height="7.19463" fill="#3f3d56"/><rect x="283.18393" y="350.01413" width="7.19463" height="7.19463" fill="#3f3d56"/><path d="M605.94216,358.96335H575.109a107.84044,107.84044,0,0,1,0-36.76267h30.8332A66.14839,66.14839,0,0,0,605.94216,358.96335Z" transform="translate(-158.82681 -60.50072)" fill="#008aff"/><path d="M381.59071,432.64519l-12.68484-3.092a32.65651,32.65651,0,0,1-32.05067-39.12409v0a42.68467,42.68467,0,0,1,42.631-42.73825h.00008a42.68468,42.68468,0,0,1,42.73825,42.631v.00006C429.41674,415.35014,406.89108,438.81238,381.59071,432.64519Z" transform="translate(-158.82681 -60.50072)" fill="#2f2e41"/><circle cx="236.61974" cy="345.24334" r="31.36369" fill="#ffb8b8"/><path d="M374.992,422.10773s-9.54547,32.72733-15,35.4546,43.63644,6.8182,43.63644,6.8182-1.36364-31.36369,1.36364-34.091S374.992,422.10773,374.992,422.10773Z" transform="translate(-158.82681 -60.50072)" fill="#ffb8b8"/><path d="M424.083,623.92626s61.36374-5.45456,69.54557,15S488.174,780.74471,488.174,780.74471H462.26485V681.19908s-110.4725-31.40179-110.4725-42.31089S424.083,623.92626,424.083,623.92626Z" transform="translate(-158.82681 -60.50072)" fill="#2f2e41"/><path d="M484.08307,775.29015l13.63639,5.45456s16.36366-1.36364,9.54547,10.90911A27.00366,27.00366,0,0,1,488.174,805.29021s-25.90914,9.54547-27.27278,0,6.8182-28.63642,6.8182-28.63642Z" transform="translate(-158.82681 -60.50072)" fill="#2f2e41"/><path d="M389.992,623.92626s61.36374-5.45456,69.54557,15S454.083,780.74471,454.083,780.74471H428.17388V681.19908s-78.4181-18.164-78.4181-29.07315c0-5.12492-5.34348-31.171,4.07315-36.65836C364.45693,609.27432,389.992,623.92626,389.992,623.92626Z" transform="translate(-158.82681 -60.50072)" fill="#2f2e41"/><path d="M449.9921,775.29015l13.63639,5.45456s16.36367-1.36364,9.54547,10.90911A27.00366,27.00366,0,0,1,454.083,805.29021s-25.90914,9.54547-27.27277,0,6.81819-28.63642,6.81819-28.63642Z" transform="translate(-158.82681 -60.50072)" fill="#2f2e41"/><path d="M361.35559,453.47142l40.98018,4.45436a30.18224,30.18224,0,0,1,26.26893,23.76669L444.53755,557.108s5.45455,75.00013-5.45456,79.091-25.90913-16.36366-46.36371-13.63638-47.04554,8.86365-47.04554,8.86365S341.451,497.179,340.901,486.19875C339.80142,464.24769,361.35559,453.47142,361.35559,453.47142Z" transform="translate(-158.82681 -60.50072)" fill="#575a89"/><path d="M458.42733,627.82255l16.82365,9.9078s30.18279-4.33064,29.24058,6.278-33.8887,8.55886-33.8887,8.55886l-20.275-12.493Z" transform="translate(-158.82681 -60.50072)" fill="#ffb8b8"/><circle cx="175.7429" cy="299.47504" r="20.25966" fill="#2f2e41"/><path d="M353.26293,349.08471a20.2502,20.2502,0,0,0-24.24652-19.836,20.25023,20.25023,0,1,1,12.63025,38.16451A20.243,20.243,0,0,0,353.26293,349.08471Z" transform="translate(-158.82681 -60.50072)" fill="#2f2e41"/><path d="M370.64347,360.57471l27.313-5.02907,21.00491,13.16494a31.86273,31.86273,0,0,1,14.6776,31.09515l-21.0372-5.33225-4.71074-11.81208-5.61047,9.196-29.33406,37.75029-16.46978-10.48815-14.68292-23.00931Z" transform="translate(-158.82681 -60.50072)" fill="#2f2e41"/><path d="M393.13569,465.07123l13.63639-6.8182s28.63641,4.09092,34.091,23.18186,30,151.3639,30,151.3639L447.68124,643.7079l-32.72733-80.45468Z" transform="translate(-158.82681 -60.50072)" fill="#575a89"/><polygon points="245.917 458.23 259.565 511.205 283.767 570.701 282.928 572.761 254.063 512.199 245.917 458.23" opacity="0.2"/><polygon points="144.084 750.379 139.271 748.721 185.896 610.231 192.636 612.553 144.084 750.379" fill="#3f3d56"/><polygon points="322.291 750.379 327.105 748.721 280.479 610.231 273.74 612.553 322.291 750.379" fill="#3f3d56"/><polygon points="223.77 778.981 228.861 778.999 230.443 617.107 223.315 617.082 223.77 778.981" fill="#3f3d56"/><path d="M291.12655,589.35709l13.96582,56.44513a44.82625,44.82625,0,0,0,32.64214,32.72145l.00008,0a238.26046,238.26046,0,0,0,118.54694-.7638l20.8512-5.49922c12.11558-3.19531,21.22652-13.60111,22.0886-26.10127a25.68469,25.68469,0,0,0-2.323-12.8718q-.12219-.25966-.24559-.51476a34.06444,34.06444,0,0,0-29.59817-19.13845l-22.08892-.71254L364.521,577.28177s-27.66705-14.0531-50.4117-15.62629C299.08852,560.61654,287.51024,574.74121,291.12655,589.35709Z" transform="translate(-158.82681 -60.50072)" fill="#008aff"/><rect x="543.25654" y="351.30929" width="79.42645" height="107.93851" fill="#e6e6e6"/><rect x="552.42113" y="363.76373" width="61.09727" height="83.02962" fill="#fff"/><rect x="576.46734" y="385.49176" width="29.60198" height="3.37283" fill="#3f3d56"/><rect x="559.8702" y="383.62466" width="7.19463" height="7.19463" fill="#3f3d56"/><rect x="576.46734" y="399.74779" width="29.60198" height="3.37283" fill="#3f3d56"/><rect x="559.8702" y="397.88069" width="7.19463" height="7.19463" fill="#3f3d56"/><rect x="576.46734" y="414.00382" width="29.60198" height="3.37283" fill="#3f3d56"/><rect x="559.8702" y="412.13672" width="7.19463" height="7.19463" fill="#3f3d56"/><rect x="579.9149" y="354.36415" width="6.10973" height="6.10973" rx="3.05486" fill="#3f3d56"/></svg>
@@ -0,0 +1,2 @@
1
+
2
+ <svg id="b3df86d2-2022-47c6-a781-bb5144daf06b" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="802.02697" height="590.91632" viewBox="0 0 802.02697 590.91632"><title>researching</title><rect x="464.90551" y="218.80786" width="337.12145" height="9.8889" fill="#e6e6e6"/><rect x="492.77422" y="136.10073" width="85.4041" height="85.4041" fill="#e6e6e6"/><rect x="509.85504" y="153.18155" width="51.24246" height="51.24246" fill="#ccc"/><rect x="684.2592" y="136.10073" width="21.57577" height="85.4041" fill="#e6e6e6"/><rect x="684.2592" y="149.58559" width="21.57577" height="9.8889" fill="#ccc"/><rect x="684.2592" y="192.73713" width="21.57577" height="9.8889" fill="#ccc"/><rect x="650.99655" y="136.10073" width="21.57577" height="85.4041" fill="#e6e6e6"/><rect x="650.99655" y="149.58559" width="21.57577" height="9.8889" fill="#ccc"/><rect x="650.99655" y="192.73713" width="21.57577" height="9.8889" fill="#ccc"/><rect x="921.90231" y="290.64257" width="21.57577" height="85.4041" transform="translate(-250.05651 293.89202) rotate(-26.3396)" fill="#e6e6e6"/><rect x="911.13272" y="306.64743" width="21.57577" height="9.8889" transform="translate(-241.52311 286.85528) rotate(-26.3396)" fill="#ccc"/><rect x="930.27866" y="345.31898" width="21.57577" height="9.8889" transform="translate(-256.69359 299.36504) rotate(-26.3396)" fill="#ccc"/><polygon points="524.688 170.382 535.554 189.201 546.419 208.02 524.688 208.02 502.958 208.02 513.823 189.201 524.688 170.382" fill="#e6e6e6"/><polygon points="543.567 173.978 554.432 192.797 565.298 211.616 543.567 211.616 521.837 211.616 532.702 192.797 543.567 173.978" fill="#e6e6e6"/><circle cx="551.2086" cy="162.17145" r="6.29293" fill="#e6e6e6"/><rect x="663.89203" y="237.60213" width="337.12145" height="9.8889" transform="translate(1465.91899 330.55131) rotate(-180)" fill="#e6e6e6"/><rect x="887.74067" y="154.895" width="85.4041" height="85.4041" transform="translate(1661.89893 240.65226) rotate(-180)" fill="#e6e6e6"/><rect x="904.82149" y="171.97582" width="51.24246" height="51.24246" transform="translate(1661.89893 240.65226) rotate(-180)" fill="#ccc"/><rect x="760.08402" y="154.895" width="21.57577" height="85.4041" transform="translate(1342.75729 240.65226) rotate(-180)" fill="#e6e6e6"/><rect x="760.08402" y="168.37986" width="21.57577" height="9.8889" transform="translate(1342.75729 192.10677) rotate(-180)" fill="#ccc"/><rect x="760.08402" y="211.5314" width="21.57577" height="9.8889" transform="translate(1342.75729 278.40986) rotate(-180)" fill="#ccc"/><rect x="793.34667" y="154.895" width="21.57577" height="85.4041" transform="translate(1409.28259 240.65226) rotate(-180)" fill="#e6e6e6"/><rect x="793.34667" y="168.37986" width="21.57577" height="9.8889" transform="translate(1409.28259 192.10677) rotate(-180)" fill="#ccc"/><rect x="793.34667" y="211.5314" width="21.57577" height="9.8889" transform="translate(1409.28259 278.40986) rotate(-180)" fill="#ccc"/><rect x="721.42742" y="154.895" width="21.57577" height="85.4041" transform="translate(1101.7535 545.01488) rotate(-153.6604)" fill="#e6e6e6"/><rect x="732.19702" y="170.89985" width="21.57577" height="9.8889" transform="translate(1131.82608 508.54612) rotate(-153.6604)" fill="#ccc"/><rect x="713.05107" y="209.5714" width="21.57577" height="9.8889" transform="translate(1078.36372 573.37946) rotate(-153.6604)" fill="#ccc"/><polygon points="742.244 34.634 731.379 53.453 720.514 72.272 742.244 72.272 763.975 72.272 753.109 53.453 742.244 34.634" fill="#e6e6e6"/><polygon points="723.365 38.23 712.5 57.049 701.635 75.868 723.365 75.868 745.096 75.868 734.231 57.049 723.365 38.23" fill="#e6e6e6"/><circle cx="715.72387" cy="26.42388" r="6.29293" fill="#e6e6e6"/><rect x="663.89203" y="509.09727" width="337.12145" height="9.8889" transform="translate(1465.91899 873.5416) rotate(-180)" fill="#e6e6e6"/><rect x="887.74067" y="426.39014" width="85.4041" height="85.4041" transform="translate(1661.89893 783.64254) rotate(-180)" fill="#e6e6e6"/><rect x="904.82149" y="443.47096" width="51.24246" height="51.24246" transform="translate(1661.89893 783.64254) rotate(-180)" fill="#ccc"/><rect x="760.08402" y="426.39014" width="21.57577" height="85.4041" transform="translate(1342.75729 783.64254) rotate(-180)" fill="#e6e6e6"/><rect x="760.08402" y="439.875" width="21.57577" height="9.8889" transform="translate(1342.75729 735.09706) rotate(-180)" fill="#ccc"/><rect x="760.08402" y="483.02655" width="21.57577" height="9.8889" transform="translate(1342.75729 821.40015) rotate(-180)" fill="#ccc"/><rect x="793.34667" y="426.39014" width="21.57577" height="85.4041" transform="translate(1409.28259 783.64254) rotate(-180)" fill="#e6e6e6"/><rect x="793.34667" y="439.875" width="21.57577" height="9.8889" transform="translate(1409.28259 735.09706) rotate(-180)" fill="#ccc"/><rect x="793.34667" y="483.02655" width="21.57577" height="9.8889" transform="translate(1409.28259 821.40015) rotate(-180)" fill="#ccc"/><rect x="721.42742" y="426.39014" width="21.57577" height="85.4041" transform="translate(981.29362 1059.81853) rotate(-153.6604)" fill="#e6e6e6"/><rect x="732.19702" y="442.395" width="21.57577" height="9.8889" transform="translate(1011.3662 1023.34977) rotate(-153.6604)" fill="#ccc"/><rect x="713.05107" y="481.06655" width="21.57577" height="9.8889" transform="translate(957.90384 1088.18312) rotate(-153.6604)" fill="#ccc"/><polygon points="742.244 306.129 731.379 324.948 720.514 343.768 742.244 343.768 763.975 343.768 753.109 324.948 742.244 306.129" fill="#e6e6e6"/><polygon points="723.365 309.725 712.5 328.544 701.635 347.364 723.365 347.364 745.096 347.364 734.231 328.544 723.365 309.725" fill="#e6e6e6"/><circle cx="715.72387" cy="297.91903" r="6.29293" fill="#e6e6e6"/><ellipse cx="397.12944" cy="562.7111" rx="397.12944" ry="28.20522" fill="#e6e6e6"/><path d="M906.37333,733.04786c-64.75515-11.52541-135.56743-9.60949-209.84681,0,33.85544-28.5813,63.07462-57.16255,29.21918-85.74385,66.03927,13.624,75.28918,12.24508,148.75216,0C857.45856,675.88531,889.334,704.46656,906.37333,733.04786Z" transform="translate(-198.98652 -154.54184)" fill="#006ecc"/><path d="M906.37333,733.04786c-64.75515-11.52541-135.56743-9.60949-209.84681,0,33.85544-28.5813,63.07462-57.16255,29.21918-85.74385,66.03927,13.624,75.28918,12.24508,148.75216,0C857.45856,675.88531,889.334,704.46656,906.37333,733.04786Z" transform="translate(-198.98652 -154.54184)" opacity="0.2"/><path d="M890.57841,720.85416c-55.00706-9.19982-115.15943-7.6705-178.257,0C741.08036,698.04,765.901,675.22584,737.142,652.41166c56.09788,10.875,63.95533,9.77428,126.35937,0C849.02715,675.22584,876.10416,698.04,890.57841,720.85416Z" transform="translate(-198.98652 -154.54184)" fill="#006ecc"/><circle cx="670.64039" cy="500.24412" r="29.30909" fill="#2f2e41"/><polygon points="537.591 466.249 557.899 469.634 568.053 498.967 538.72 517.019 504.873 466.249 536.463 466.249 537.591 466.249" fill="#a0616a"/><circle cx="595.13005" cy="463.99285" r="47.38476" fill="#a0616a"/><path d="M532.37217,445.91877s-115.07728,12.41029-135.385,10.15388-29.33342-4.51284-29.33342-4.51284-13.53851,18.05134-6.76925,25.9488A48.82193,48.82193,0,0,0,374.423,488.7907s12.41029-3.38463,21.436,0,100.41057,18.05133,116.20549,4.51283S532.37217,445.91877,532.37217,445.91877Z" transform="translate(-198.98652 -154.54184)" fill="#2f2e41"/><path d="M540.26963,697.50929s-75.59-21.436-89.12848-116.20549v-9.02567S436.185,598.51641,430.83339,603.868c-6.20515,6.20514-28.20522,62.05147-27.077,67.69251s0,7.89746,0,7.89746l-32.71805-3.38462V665.91945s17.48724-52.4617,18.61545-64.872,43.436-98.71825,43.436-98.71825,15.79492-32.71805,42.87193,0,29.33342,55.28222,29.33342,55.28222l34.97447,67.69252Z" transform="translate(-198.98652 -154.54184)" fill="#2f2e41"/><path d="M371.03833,448.17519l-36.10267-12.4103s-33.84626-24.82059-25.9488,0,44.00013,78.9746,54.154,73.33356,22.36551-19.64318,19.64432-21.66778S362.01266,470.73936,371.03833,448.17519Z" transform="translate(-198.98652 -154.54184)" fill="#2f2e41"/><path d="M375.4022,659.25875l-29.14381,14.233s-35.24366,5.4221-15.58854,15.58855,73.87615,21.01064,76.5872,11.522,1.63541-25.2364-1.21558-24.81793S383.53535,678.23611,375.4022,659.25875Z" transform="translate(-198.98652 -154.54184)" fill="#2f2e41"/><path d="M525.60291,623.04752s-14.66671,63.17969,10.15388,76.71819S734.32151,715.56063,747.86,690.74s6.76926-24.82059,6.76926-24.82059l-36.10268-40.61551L747.86,623.04752s0-9.02567-10.15387-10.15387-41.74372-12.4103-68.82073-4.51284-42.87193-15.79492-42.87193-15.79492Z" transform="translate(-198.98652 -154.54184)" fill="#575a89"/><polygon points="307.437 271.069 288.257 375.993 420.258 360.198 443.95 265.428 307.437 271.069" fill="#3f3d56"/><polygon points="311.386 275.018 295.591 368.659 415.745 354.557 438.873 269.377 311.386 275.018" fill="#fff"/><polygon points="292.77 377.121 288.257 375.993 286.001 380.505 322.104 480.916 325.499 479.618 326.616 473.019 292.77 377.121" fill="#b3b3b3"/><polygon points="288.257 374.864 324.36 479.788 460.873 459.48 420.258 360.198 288.257 374.864" fill="#d0cde1"/><polygon points="306.309 371.48 306.309 377.121 406.719 365.839 405.591 360.198 306.309 371.48" fill="#3f3d56"/><polygon points="308.565 382.762 324.36 426.762 427.027 414.352 408.976 372.608 308.565 382.762" fill="#3f3d56"/><path d="M636.16736,599.35514l-3.38463-9.02567s-25.94879-45.12834-39.4873-36.10267,28.20522,53.0258,28.20522,53.0258h13.5385Z" transform="translate(-198.98652 -154.54184)" fill="#a0616a"/><path d="M550.4235,606.12439l-3.38462-13.5385s-9.02567-41.74372,6.76925-39.4873,20.30776,41.74372,20.30776,41.74372l-1.12821,9.02567Z" transform="translate(-198.98652 -154.54184)" fill="#a0616a"/><path d="M577.50051,600.48335s-29.33342-4.51283-30.46163,2.25642-6.76925,108.308,21.436,111.69265,168.10309,18.05134,153.43638-16.92313-37.23089-30.46163-37.23089-30.46163L588.7826,677.20154Z" transform="translate(-198.98652 -154.54184)" fill="#575a89"/><polygon points="467.078 458.916 437.181 438.044 417.437 453.275 442.258 480.352 467.078 458.916" fill="#575a89"/><polygon points="386.976 479.224 391.488 522.096 469.335 517.583 401.642 516.455 386.976 479.224" opacity="0.2"/><circle cx="618.52064" cy="472.60281" r="56.41043" fill="#2f2e41"/><polygon points="328.309 307.736 398.258 305.301 405.027 279.531 332.822 281.71 328.309 307.736" fill="#006ecc"/><polygon points="310.258 322.403 416.309 319.018 417.437 314.505 311.386 318.239 310.258 322.403" fill="#e6e6e6"/><polygon points="308.001 333.685 414.053 330.3 415.181 325.787 309.129 329.521 308.001 333.685" fill="#e6e6e6"/><polygon points="306.873 342.71 412.924 339.326 414.053 334.813 308.001 338.546 306.873 342.71" fill="#e6e6e6"/></svg>
@@ -0,0 +1,50 @@
1
+ <svg width="1350px" height="1140px" viewBox="0 0 1350 1140" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <!-- Generator: Sketch 63.1 (92452) - https://sketch.com -->
3
+ <title>development</title>
4
+ <desc>Created by Webpixels.</desc>
5
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
6
+ <g id="development-(1)">
7
+ <line x1="1064.4" y1="1137.6" x2="1347.8" y2="1137.6" id="Path" stroke="#CED5E5" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
8
+ <line x1="481.3" y1="1127.4" x2="731.3" y2="1127.4" id="Path" stroke="#CED5E5" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
9
+ <polygon id="Path" fill="#CED5E5" fill-rule="nonzero" points="308.5 1038.3 308.5 1038.3 308.5 912.6 260.2 912.6 260.2 1038.3 127 1073 127 1091.5 284.4 1073 441.7 1091.5 441.7 1073"></polygon>
10
+ <path d="M477.6,1003 L464.4,1046.4 C464.4,1046.4 469.9,1069.8 490.8,1069.6 C511.7,1069.4 508.4,1061.9 508.4,1061.9 L529.7,1009.1 L477.6,1003 Z" id="Path" fill="#FFDFD7" fill-rule="nonzero"></path>
11
+ <path d="M466.6,1039.5 C466.6,1039.5 463.1,1039.6 460.3,1046.7 C457.5,1053.8 446.4,1079.2 446.4,1079.2 L511.6,1119.4 L579.7,1125.6 C579.7,1125.6 591.3,1119.5 583.1,1106.9 C574.9,1094.4 533.9,1081.5 533.9,1081.5 L512.4,1055.1 C512.4,1055.1 499,1057.7 484.8,1052.7 C470.5,1047.8 466.6,1039.5 466.6,1039.5 Z" id="Path" fill="#FE8163" fill-rule="nonzero"></path>
12
+ <path d="M400.7,108.4 C400.7,108.4 363.8,251 473.2,356 C582.6,461 718,480.5 734.2,559.6 C750.4,638.7 724.2,728.7 674.6,796 C624.9,863.3 548.9,952.9 674.6,1003.1 C800.3,1053.3 920.3,1016.3 988.9,951.7 C1057.5,887.1 1069.4,802.2 1002.1,729.3 C934.8,656.3 925.6,635.2 958.6,521.8 C991.6,408.4 1007.4,353 895.3,331.9 C783.2,310.8 697,391.2 639.2,226.4 C581.4,61.6 547.1,-21.7 479.8,6 C412.6,33.7 400.7,108.4 400.7,108.4 Z" id="Path" fill="#F1F2F7" fill-rule="nonzero"></path>
13
+ <polygon id="Path" fill="#CED5E5" fill-rule="nonzero" points="1219.1 939.3 1193.1 939.3 1199.3 719.5 1212.9 719.5"></polygon>
14
+ <polygon id="Path" fill="#A5ACBA" fill-rule="nonzero" points="695.3 1073.8 674.6 1073.8 653.9 1073.8 546.5 1104 546.5 1114.2 674.6 1114.2 802.7 1114.2 802.7 1104"></polygon>
15
+ <path d="M317.1,458.4 C317.1,458.4 332.6,409.1 332.8,408.2 C333.1,407.3 315.5,365.1 326.4,342 C337.2,318.8 361.6,321.2 371.2,321.5 C380.9,321.8 413.4,329.7 411.9,350.2 C410.4,370.7 402.8,410.9 395.2,421.1 C387.6,431.3 353.3,418.5 353.3,418.5 L352.8,454 L317.1,458.4 Z" id="Path" fill="#FFDFD7" fill-rule="nonzero"></path>
16
+ <path d="M505.9,1023.1 L505.6,1063 C505.6,1063 518.6,1083.8 527.6,1084 C536.5,1084.1 555.1,1088.2 559.3,1064.9 C563.4,1041.6 566.8,1024.6 566.8,1024.6 L505.9,1023.1 Z" id="Path" fill="#FFDFD7" fill-rule="nonzero"></path>
17
+ <path d="M121.8,844 C121.8,844 97.8,726.5 94.3,663.2 C90.8,599.9 97.8,533.1 140,530.4 C182.2,527.8 213,599 218.3,627.1 C223.5,655.3 241.7,781.3 121.8,844 Z" id="Path" fill="#52CB96" fill-rule="nonzero"></path>
18
+ <path d="M144,862.8 C144,862.8 126.4,862.4 127.3,879.1 C128.2,895.8 135.2,912.5 195.9,916 C256.6,919.5 389.8,910.7 415.7,903.3 C441.6,895.8 457,880.4 432,854.5 C406.9,828.6 277.7,844.4 247.4,847.5 C216.9,850.5 144,862.8 144,862.8 Z" id="Path" fill="#52CB96" fill-rule="nonzero"></path>
19
+ <circle id="Oval" fill="#283444" fill-rule="nonzero" cx="435.6" cy="1116.6" r="18.5"></circle>
20
+ <circle id="Oval" fill="#283444" fill-rule="nonzero" cx="137.3" cy="1116.6" r="18.5"></circle>
21
+ <path d="M709.1,698.4 L640.1,698.4 C636.2,698.4 633,695.2 633,691.3 L633,665 L716.1,665 L716.1,691.3 C716.1,695.2 713,698.4 709.1,698.4 Z" id="Path" fill="#CED5E5" fill-rule="nonzero"></path>
22
+ <rect id="Rectangle" fill="#CED5E5" fill-rule="nonzero" x="653.9" y="698.4" width="41.3" height="375.4"></rect>
23
+ <polygon id="Path" fill="#CED5E5" fill-rule="nonzero" points="889.1 665 460.1 665 460.1 650 889.1 633.3"></polygon>
24
+ <path d="M412.2,744.1 C412.2,744.1 526.5,748.5 553.5,754.9 C580.5,761.3 595.5,775.9 594.2,803.2 C592.9,830.5 514.9,1012.2 514.9,1012.2 L468.6,1005.8 L489.7,863.4 L412.2,744.1 Z" id="Path" fill="#006FCE" fill-rule="nonzero"></path>
25
+ <polygon id="Path" fill="#00549C" fill-rule="nonzero" points="465.6 983.2 516.2 991.1 511.8 1016.7 461.6 1009"></polygon>
26
+ <path d="M505.6,1063 C505.6,1063 498.4,1065.8 499,1073.8 C499.6,1081.8 501.3,1116.9 501.3,1116.9 C501.3,1116.9 500,1127.6 525,1127.5 C550.1,1127.4 656.6,1126.3 656.6,1126.3 C656.6,1126.3 664.8,1113.7 652.5,1104.3 C640.2,1094.9 559.5,1063 559.5,1063 C559.5,1063 550.5,1070.9 531.5,1071.1 C512.5,1071.2 505.6,1063 505.6,1063 Z" id="Path" fill="#FE8163" fill-rule="nonzero"></path>
27
+ <path d="M332,410.9 C332,410.9 315.4,388.6 317.1,359.3 C318.8,330 320.2,310.4 334.6,305.7 C349,301 354.8,309.8 354.8,309.8 C354.8,309.8 367.7,300.1 382.3,301.3 C397,302.5 399.9,321.3 399.9,321.3 C399.9,321.3 409,313 419.8,316.2 C430.6,319.4 423.1,340.2 411.9,339.4 C411.9,339.4 391.6,337.3 368.2,341.5 L362.3,368.2 L353.8,366.7 C353.8,366.7 357.3,352 349.1,350.3 C340.9,348.5 333.6,358.2 338,369.9 C342.4,381.6 340.6,400.6 332,410.9 Z" id="Path" fill="#FE8163" fill-rule="nonzero"></path>
28
+ <polygon id="Path" fill="#575758" fill-rule="nonzero" points="638.6 643.4 638.6 634.1 806 624.1 807.1 636.8"></polygon>
29
+ <polygon id="Path" fill="#6C7279" fill-rule="nonzero" points="793.8 624.9 856.4 472 866.8 476.4 806.5 630"></polygon>
30
+ <rect id="Rectangle" fill="#008AFF" fill-rule="nonzero" transform="translate(785.689805, 205.079925) rotate(45.000000) translate(-785.689805, -205.079925) " x="778.639873" y="180.480161" width="14.0998648" height="49.1995282"></rect>
31
+ <rect id="Rectangle" fill="#FFC933" fill-rule="nonzero" transform="translate(180.344040, 159.458700) rotate(-37.589552) translate(-180.344040, -159.458700) " x="173.294048" y="134.858728" width="14.0999842" height="49.1999449"></rect>
32
+ <rect id="Rectangle" fill="#FFC933" fill-rule="nonzero" transform="translate(62.502575, 410.827095) rotate(25.486254) translate(-62.502575, -410.827095) " x="55.4524854" y="386.226783" width="14.1001789" height="49.2006243"></rect>
33
+ <rect id="Rectangle" fill="#FFC933" fill-rule="nonzero" transform="translate(943.956297, 220.302470) rotate(2.148641) translate(-943.956297, -220.302470) " x="936.906275" y="195.702394" width="14.1000434" height="49.2001514"></rect>
34
+ <circle id="Oval" fill="#008AFF" fill-rule="nonzero" cx="13.4" cy="248.2" r="13.2"></circle>
35
+ <circle id="Oval" fill="#FFC933" fill-rule="nonzero" cx="777.3" cy="74.9" r="10.3"></circle>
36
+ <circle id="Oval" fill="#008AFF" fill-rule="nonzero" cx="639.2" cy="28.2" r="14.7"></circle>
37
+ <polygon id="Path" fill="#FFC933" fill-rule="nonzero" points="1296 1136.2 1116.2 1136.2 1085.2 933.1 1327 933.1"></polygon>
38
+ <circle id="Oval" fill="#52CB96" fill-rule="nonzero" cx="1206.1" cy="623.3" r="110.8"></circle>
39
+ <circle id="Oval" fill="#008AFF" fill-rule="nonzero" cx="235.1" cy="18.6" r="12.6"></circle>
40
+ <path d="M236.8,729.1 C236.8,729.1 229.3,742.3 231.3,772.6 C233.3,802.9 250.4,849.5 347.8,859.2 C445.2,868.9 507.2,868 507.2,868 L507.2,1029.3 L571.4,1029.3 C571.4,1029.3 582,972.6 584.6,954.1 C587.2,935.6 605.7,855.2 597.8,814.7 C593.999489,795.264477 583.070769,783.744043 569.623244,776.431134 C555.117831,768.542933 537.681727,765.55029 523.1,762.8 C495,757.5 385.9,739.5 385.9,739.5 L236.8,729.1 Z" id="Path" fill="#008AFF" fill-rule="nonzero"></path>
41
+ <line x1="505.8" y1="1033.5" x2="505.6" y2="1063" id="Path" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
42
+ <polygon id="Path" fill="#005297" fill-rule="nonzero" points="578.2 1033.5 498.4 1033.5 498.4 1003 583.3 1004.2"></polygon>
43
+ <path d="M501.2,1112.9 C501.2,1112.9 498.7,1077.5 499.1,1071.3 C499.6,1065.1 505.6,1062.9 505.6,1062.9" id="Path" stroke="#FF562F" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
44
+ <path d="M694.7,626.4 C679.6,618.5 654.4,621.9 646,623.2 C637.6,624.5 624.8,624.7 624.8,624.7 L493.7,611.9 L440.4,553.2 C398.2,562.9 415.9,595.4 415.9,595.4 L473.6,649.2 L627.1,644 C647.9,644.7 674.3,635.8 678.4,635.1 C682.6,634.3 709.8,634.3 694.7,626.4 Z" id="Path" fill="#FFDFD7" fill-rule="nonzero"></path>
45
+ <path d="M230.1,727.4 C230.1,727.4 271.4,739.3 299.6,737.1 C327.7,734.9 385.8,739.7 385.8,739.7 L385.8,566.9 L421.8,613.4 C421.8,613.4 441.1,572.1 460,557.1 C460,557.1 388.8,475 362.4,458.8 C336,442.5 314.5,454.8 309.2,469.4 C304,483.8 230.1,727.4 230.1,727.4 Z" id="Path" fill="#FFC933" fill-rule="nonzero"></path>
46
+ <path d="M374.7,553.2 L421.8,613.4 C421.8,613.4 440.6,572.7 460,557.1" id="Path" stroke="#FEAC00" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
47
+ <line x1="385.8" y1="566.9" x2="385.8" y2="739.7" id="Path" stroke="#FEAC00" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
48
+ </g>
49
+ </g>
50
+ </svg>
@@ -0,0 +1 @@
1
+ <svg id="fe93ff64-a18b-49f4-bb52-e425cf20d0d6" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="1050" height="594.02" viewBox="0 0 1050 594.02"><title>posting photo</title><ellipse cx="525" cy="561.02" rx="525" ry="33" fill="#008aff" opacity="0.1"/><polygon points="497.09 549.99 318.9 547.71 319.43 543.14 328.04 467.75 484.53 467.75 496.04 543.14 496.92 548.85 497.09 549.99" fill="#d0d2d5"/><polygon points="496.92 548.85 408 548.85 318.9 547.71 319.43 543.14 496.04 543.14 496.92 548.85" opacity="0.1"/><rect x="289.2" y="544.28" width="236.45" height="5.71" fill="#d0d2d5"/><path d="M826.24,167.93A14.87,14.87,0,0,0,811.44,153H151.12a14.87,14.87,0,0,0-14.8,14.94V568.2H826.24Z" transform="translate(-75 -152.99)" fill="#3f3d56"/><path d="M136.32,564.2v46.88a14.8,14.8,0,0,0,14.8,14.8H811.44a14.8,14.8,0,0,0,14.8-14.8V564.2Z" transform="translate(-75 -152.99)" fill="#d0d2d5"/><rect x="89.88" y="25.13" width="636.23" height="359.81" fill="#fff"/><path d="M484.71,608.09a15.43,15.43,0,0,0,12.13-5.88v0a16.06,16.06,0,0,0,1.2-1.76L489.57,599l9.15.07a15.44,15.44,0,0,0,.29-12.22l-12.27,6.36,11.32-8.32a15.42,15.42,0,1,0-25.47,17.26v0A15.43,15.43,0,0,0,484.71,608.09Z" transform="translate(-75 -152.99)" fill="#008aff"/><polygon points="425.13 472.89 496.22 544.28 485.31 472.89 425.13 472.89" opacity="0.1"/><path d="M709.94,364.1a1.48,1.48,0,0,0,0-.21,55.29,55.29,0,0,0-2.66-14.57c-.09-.27-.17-.54-.27-.8a55.77,55.77,0,0,0-21.32-28,55.47,55.47,0,0,0-72.69,9A78.52,78.52,0,0,0,608.57,314a248.45,248.45,0,0,1-44,1.64,177.65,177.65,0,0,0,27.91,10.14l-.34,1.27a178.73,178.73,0,0,1-31.19-11.67l-3-1.46,3.36.22a249.73,249.73,0,0,0,46.82-1.35,79.17,79.17,0,0,0-13.8-21.9c-25.18-2.54-50.17-7.82-73.48-18.3l.54-1.19c22.7,10.2,47,15.45,71.61,18a78.63,78.63,0,0,0-125,13.28A108.05,108.05,0,0,0,441.16,242a251.7,251.7,0,0,1-41.45,12.56,250.58,250.58,0,0,1-64.81,5.14,177.9,177.9,0,0,0,27.9,10.14l-.34,1.26a179,179,0,0,1-31.19-11.66l-3-1.47,3.35.22A248.9,248.9,0,0,0,440.24,241c-1.29-1.42-2.63-2.81-4-4.17-43.06.87-89.95.45-132.4-15A108.28,108.28,0,0,0,252.44,314c0,20.32,5.58,48.27,15.3,76.31A325.56,325.56,0,0,0,283,427.06c3,6,6.12,11.9,9.44,17.52h0a198.58,198.58,0,0,0,13.16,19.71c.86,1.13,1.73,2.24,2.6,3.32a120.36,120.36,0,0,0,16.42,17h0q1.82,1.52,3.67,2.9A69.49,69.49,0,0,0,338.82,494a48.34,48.34,0,0,0,19.81,5.38c.55,0,1.09,0,1.64,0v.23h294v-.23h.22a14.74,14.74,0,0,0,5-.88c10.4-3.69,20-18.5,27.93-37.21,1.76-4.15,3.44-8.49,5-12.95,1.41-3.93,2.75-8,4-12a371.64,371.64,0,0,0,9.25-36.12c2.8-13.88,4.35-26,4.35-33.68C710,365.76,710,364.93,709.94,364.1Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><path d="M434.91,235.5a107.89,107.89,0,0,0-129.62-14.61C346.83,235.77,392.68,236.32,434.91,235.5Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><path d="M675.72,477.05l-45.37-78.59a1.45,1.45,0,0,0-2.51,0l-45.37,78.59a1.45,1.45,0,0,0,1.25,2.17h13.54a1.46,1.46,0,0,1,1.45,1.44v16.79a1.44,1.44,0,0,0,1.44,1.45h17.66a1.45,1.45,0,0,0,1.45-1.45v-8.1a1.44,1.44,0,0,1,1.44-1.45h16.79a1.45,1.45,0,0,1,1.45,1.45v8.1a1.45,1.45,0,0,0,1.45,1.45H658a1.44,1.44,0,0,0,1.37-1,1.34,1.34,0,0,0,.08-.46V480.66a1.45,1.45,0,0,1,1.45-1.44h13.53A1.45,1.45,0,0,0,675.72,477.05Zm-63.26,8.69a1.4,1.4,0,0,1-1,.43h-6.37a1.45,1.45,0,0,1-1.45-1.45,1.47,1.47,0,0,1,1.45-1.45h6.37a1.45,1.45,0,0,1,1.45,1.45A1.4,1.4,0,0,1,612.46,485.74Zm41.68,0a1.4,1.4,0,0,1-1,.43h-6.37a1.45,1.45,0,0,1-1-2.47,1.4,1.4,0,0,1,1-.43h6.37a1.45,1.45,0,0,1,1.45,1.45A1.4,1.4,0,0,1,654.14,485.74Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><path d="M395.28,477.74l-45.37-78.59a1.45,1.45,0,0,0-2.5,0L308.21,467A119.89,119.89,0,0,0,324.63,484H331a1.45,1.45,0,0,1,1.45,1.45,1.47,1.47,0,0,1-1.45,1.45h-2.69a70.22,70.22,0,0,0,10.51,6.53V490a1.44,1.44,0,0,1,1.45-1.44h16.79A1.44,1.44,0,0,1,358.5,490v8.1a1.51,1.51,0,0,0,.13.61,1.44,1.44,0,0,0,1.32.84h17.66a1.41,1.41,0,0,0,1.15-.58,1.44,1.44,0,0,0,.29-.87V481.36a1.45,1.45,0,0,1,1.45-1.45H394A1.44,1.44,0,0,0,395.28,477.74Zm-30,6.65a1.43,1.43,0,0,1,1-.43h6.36a1.45,1.45,0,0,1,1.45,1.45,1.45,1.45,0,0,1-1.45,1.45h-6.36a1.45,1.45,0,0,1-1.45-1.45A1.44,1.44,0,0,1,365.29,484.39Zm-28.5-29.08a1.44,1.44,0,0,1-1.44-1.45v-11a1.44,1.44,0,0,1,1.44-1.45h23.74a1.45,1.45,0,0,1,1.44,1.45v11a1.45,1.45,0,0,1-1.44,1.45Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><path d="M574.63,336.57H518.48V324.42a2.9,2.9,0,0,0-2.9-2.9H499.09V308.58a1.82,1.82,0,0,0-1.83-1.82H476a1.83,1.83,0,0,0-1.83,1.82v12.94H454.81a2.9,2.9,0,0,0-2.9,2.9v12.14H398.37a.58.58,0,0,0-.59.59v161.2a.58.58,0,0,0,.59.59H434a.58.58,0,0,0,.59-.59V476.68a.6.6,0,0,1,.59-.6h15a.6.6,0,0,1,.59.6v21.68a.58.58,0,0,0,.59.59h70.32a.59.59,0,0,0,.59-.59V476.68a.59.59,0,0,1,.58-.6h15a.59.59,0,0,1,.59.6v21.68a.59.59,0,0,0,.59.59h35.59a.59.59,0,0,0,.59-.59V337.16A.59.59,0,0,0,574.63,336.57Zm-146.46,132a.58.58,0,0,1-.59.59h-22a.58.58,0,0,1-.59-.59v-7.5a.59.59,0,0,1,.59-.6h22a.59.59,0,0,1,.59.6Zm0-19.39a.59.59,0,0,1-.59.59h-22a.59.59,0,0,1-.59-.59v-7.51a.59.59,0,0,1,.59-.59h22a.59.59,0,0,1,.59.59Zm0-19.4a.58.58,0,0,1-.59.59h-22a.58.58,0,0,1-.59-.59v-7.5a.58.58,0,0,1,.59-.59h22a.58.58,0,0,1,.59.59Zm0-19.39a.58.58,0,0,1-.59.59h-22a.58.58,0,0,1-.59-.59v-7.5a.58.58,0,0,1,.59-.59h22a.58.58,0,0,1,.59.59Zm0-19.39a.59.59,0,0,1-.59.59h-22A.59.59,0,0,1,405,391v-7.51a.59.59,0,0,1,.59-.59h22a.59.59,0,0,1,.59.59Zm0-19.4a.58.58,0,0,1-.59.59h-22a.58.58,0,0,1-.59-.59v-7.5a.58.58,0,0,1,.59-.59h22a.58.58,0,0,1,.59.59Zm0-19.39a.58.58,0,0,1-.59.59h-22a.58.58,0,0,1-.59-.59v-7.5a.58.58,0,0,1,.59-.59h22a.58.58,0,0,1,.59.59Zm52.1,116.36a.58.58,0,0,1-.59.59h-22a.58.58,0,0,1-.59-.59v-7.5a.59.59,0,0,1,.59-.6h22a.59.59,0,0,1,.59.6Zm0-19.39a.59.59,0,0,1-.59.59h-22a.59.59,0,0,1-.59-.59v-7.51a.59.59,0,0,1,.59-.59h22a.59.59,0,0,1,.59.59Zm0-19.4a.58.58,0,0,1-.59.59h-22a.58.58,0,0,1-.59-.59v-7.5a.58.58,0,0,1,.59-.59h22a.58.58,0,0,1,.59.59Zm0-19.39a.58.58,0,0,1-.59.59h-22a.58.58,0,0,1-.59-.59v-7.5a.58.58,0,0,1,.59-.59h22a.58.58,0,0,1,.59.59Zm0-19.39a.59.59,0,0,1-.59.59h-22a.59.59,0,0,1-.59-.59v-7.51a.59.59,0,0,1,.59-.59h22a.59.59,0,0,1,.59.59Zm0-19.4a.58.58,0,0,1-.59.59h-22a.58.58,0,0,1-.59-.59v-7.5a.58.58,0,0,1,.59-.59h22a.58.58,0,0,1,.59.59Zm0-19.39a.58.58,0,0,1-.59.59h-22a.58.58,0,0,1-.59-.59v-7.5a.58.58,0,0,1,.59-.59h22a.58.58,0,0,1,.59.59Zm35.61,116.36a.59.59,0,0,1-.59.59h-22a.59.59,0,0,1-.59-.59v-7.5a.6.6,0,0,1,.59-.6h22a.6.6,0,0,1,.59.6Zm0-19.39a.6.6,0,0,1-.59.59h-22a.6.6,0,0,1-.59-.59v-7.51a.6.6,0,0,1,.59-.59h22a.6.6,0,0,1,.59.59Zm0-19.4a.59.59,0,0,1-.59.59h-22a.59.59,0,0,1-.59-.59v-7.5a.59.59,0,0,1,.59-.59h22a.59.59,0,0,1,.59.59Zm0-19.39a.59.59,0,0,1-.59.59h-22a.59.59,0,0,1-.59-.59v-7.5a.59.59,0,0,1,.59-.59h22a.59.59,0,0,1,.59.59Zm0-19.39a.6.6,0,0,1-.59.59h-22a.6.6,0,0,1-.59-.59v-7.51a.6.6,0,0,1,.59-.59h22a.6.6,0,0,1,.59.59Zm0-19.4a.59.59,0,0,1-.59.59h-22a.59.59,0,0,1-.59-.59v-7.5a.59.59,0,0,1,.59-.59h22a.59.59,0,0,1,.59.59Zm0-19.39a.59.59,0,0,1-.59.59h-22a.59.59,0,0,1-.59-.59v-7.5a.59.59,0,0,1,.59-.59h22a.59.59,0,0,1,.59.59ZM568,468.55a.59.59,0,0,1-.59.59h-22a.58.58,0,0,1-.59-.59v-7.5a.59.59,0,0,1,.59-.6h22a.6.6,0,0,1,.59.6Zm0-19.39a.6.6,0,0,1-.59.59h-22a.59.59,0,0,1-.59-.59v-7.51a.59.59,0,0,1,.59-.59h22a.6.6,0,0,1,.59.59Zm0-19.4a.59.59,0,0,1-.59.59h-22a.58.58,0,0,1-.59-.59v-7.5a.58.58,0,0,1,.59-.59h22a.59.59,0,0,1,.59.59Zm0-19.39a.59.59,0,0,1-.59.59h-22a.58.58,0,0,1-.59-.59v-7.5a.58.58,0,0,1,.59-.59h22a.59.59,0,0,1,.59.59ZM568,391a.6.6,0,0,1-.59.59h-22a.59.59,0,0,1-.59-.59v-7.51a.59.59,0,0,1,.59-.59h22a.6.6,0,0,1,.59.59Zm0-19.4a.59.59,0,0,1-.59.59h-22a.58.58,0,0,1-.59-.59v-7.5a.58.58,0,0,1,.59-.59h22a.59.59,0,0,1,.59.59Zm0-19.39a.59.59,0,0,1-.59.59h-22a.58.58,0,0,1-.59-.59v-7.5a.58.58,0,0,1,.59-.59h22a.59.59,0,0,1,.59.59Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><path d="M414.7,292.87a12.6,12.6,0,0,0-7.33.8,10.79,10.79,0,0,1-8.81,0,12.37,12.37,0,0,0-10.36.2,6.33,6.33,0,0,1-3,.75c-4.2,0-7.7-4.23-8.42-9.81a8.11,8.11,0,0,0,2.09-2.27c2.47-4,6.28-6.51,10.56-6.51s8.06,2.51,10.52,6.44a8.1,8.1,0,0,0,7,3.83h.11C410.4,286.28,413.3,289,414.7,292.87Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><path d="M427.5,275.35l-6.79,4.31,4.12-7.5a6.73,6.73,0,0,0-4.1-1.46h-.11a8.22,8.22,0,0,1-1.41-.1l-2.3,1.45,1-1.79a8.19,8.19,0,0,1-4-3.05l-4.12,2.61,2.6-4.73a12.05,12.05,0,0,0-9.22-4.67c-4.29,0-8.1,2.55-10.57,6.52a7.87,7.87,0,0,1-7,3.76h-.23c-4.72,0-8.56,5.36-8.56,12s3.84,12,8.56,12a6.48,6.48,0,0,0,3-.74,12.3,12.3,0,0,1,10.36-.2,10.9,10.9,0,0,0,8.81,0,12.35,12.35,0,0,1,10.27.19,6.31,6.31,0,0,0,3,.73c4.72,0,8.56-5.36,8.56-12A15.22,15.22,0,0,0,427.5,275.35Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><rect x="505.46" y="102.97" width="371.54" height="447.42" rx="19.8" fill="#3f3d56"/><rect x="522" y="148.11" width="336" height="357.15" fill="#fff"/><circle cx="691.23" cy="528.8" r="13.08" fill="#fff"/><path d="M766.23,288.17a6,6,0,1,1,6-6A6,6,0,0,1,766.23,288.17Z" transform="translate(-75 -152.99)" fill="#fff"/><path d="M766.23,276.58a5.55,5.55,0,1,1-5.54,5.55,5.55,5.55,0,0,1,5.54-5.55m0-1a6.55,6.55,0,1,0,6.54,6.55,6.54,6.54,0,0,0-6.54-6.55Z" transform="translate(-75 -152.99)" fill="#fff"/><path d="M899.2,486.3s0-.08,0-.12a32.12,32.12,0,0,0-1.55-8.47l-.15-.46A32.51,32.51,0,0,0,885.09,461a32.23,32.23,0,0,0-42.25,5.22,47.14,47.14,0,0,0-2.57-9,144.23,144.23,0,0,1-25.59,1A102.72,102.72,0,0,0,830.9,464l-.2.74A103.56,103.56,0,0,1,812.57,458l-1.76-.85,2,.13a144.61,144.61,0,0,0,27.22-.78,46.08,46.08,0,0,0-8-12.73c-14.64-1.48-29.17-4.55-42.72-10.64l.31-.7c13.2,5.94,27.35,9,41.63,10.49a45.71,45.71,0,0,0-72.66,7.72A62.74,62.74,0,0,0,743,415.31a147.66,147.66,0,0,1-24.1,7.3,145.91,145.91,0,0,1-37.68,3,102.72,102.72,0,0,0,16.22,5.89l-.2.73a102.73,102.73,0,0,1-18.13-6.78l-1.76-.85,2,.13a144.71,144.71,0,0,0,63.16-10c-.75-.83-1.53-1.63-2.33-2.42-25,.5-52.29.26-77-8.73a62.93,62.93,0,0,0-29.89,53.62c0,11.81,3.25,28.06,8.9,44.36A187.93,187.93,0,0,0,651,522.91c1.72,3.51,3.55,6.92,5.48,10.18h0a117,117,0,0,0,7.65,11.46c.5.65,1,1.3,1.52,1.93a69.63,69.63,0,0,0,9.54,9.87h0c.71.59,1.42,1.15,2.14,1.68a40.31,40.31,0,0,0,6.11,3.81A28,28,0,0,0,695,565c.31,0,.63,0,.95,0v.13H866.81V565h.12a8.76,8.76,0,0,0,2.89-.51c6-2.15,11.61-10.76,16.23-21.64,1-2.41,2-4.93,2.94-7.52.82-2.29,1.59-4.63,2.33-7a215.07,215.07,0,0,0,5.38-21,110.27,110.27,0,0,0,2.53-19.58C899.23,487.27,899.22,486.79,899.2,486.3Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><path d="M739.31,411.54A62.72,62.72,0,0,0,664,403.05C688.11,411.7,714.76,412,739.31,411.54Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><path d="M879.3,552l-26.37-45.69a.84.84,0,0,0-1.46,0L825.09,552a.84.84,0,0,0,.73,1.26h7.87a.85.85,0,0,1,.84.84v9.76a.85.85,0,0,0,.84.84h10.27a.85.85,0,0,0,.84-.84v-4.71a.83.83,0,0,1,.84-.84h9.76a.84.84,0,0,1,.84.84v4.71a.85.85,0,0,0,.84.84H869a.84.84,0,0,0,.8-.57.86.86,0,0,0,0-.27v-9.76a.84.84,0,0,1,.84-.84h7.87A.84.84,0,0,0,879.3,552Zm-36.77,5a.86.86,0,0,1-.6.25h-3.7a.85.85,0,0,1-.84-.84.81.81,0,0,1,.25-.6.84.84,0,0,1,.59-.25h3.7a.85.85,0,0,1,.85.85A.84.84,0,0,1,842.53,557Zm24.23,0a.86.86,0,0,1-.6.25h-3.7a.85.85,0,0,1,0-1.69h3.7a.85.85,0,0,1,.85.85A.84.84,0,0,1,866.76,557Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><path d="M716.27,552.37,689.9,506.68a.84.84,0,0,0-1.46,0l-22.78,39.46A69.45,69.45,0,0,0,675.2,556h3.7a.84.84,0,0,1,.6,1.43.81.81,0,0,1-.6.25h-1.56a41,41,0,0,0,6.11,3.8v-2a.84.84,0,0,1,.84-.84h9.76a.85.85,0,0,1,.84.84v4.71a.78.78,0,0,0,.08.35.83.83,0,0,0,.76.49H706a.84.84,0,0,0,.67-.34.86.86,0,0,0,.17-.5v-9.76a.84.84,0,0,1,.84-.84h7.87A.84.84,0,0,0,716.27,552.37Zm-17.43,3.86a.83.83,0,0,1,.59-.24h3.71a.83.83,0,0,1,.59,1.43.8.8,0,0,1-.59.25h-3.71a.85.85,0,0,1-.84-.84A.86.86,0,0,1,698.84,556.23Zm-16.57-16.9a.84.84,0,0,1-.84-.85v-6.39a.84.84,0,0,1,.84-.84h13.8a.85.85,0,0,1,.84.84v6.39a.85.85,0,0,1-.84.85Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><path d="M820.53,470.3H787.89v-7.05a1.69,1.69,0,0,0-1.69-1.69h-9.58V454a1.06,1.06,0,0,0-1.06-1.06H763.21a1.05,1.05,0,0,0-1.06,1.06v7.52H750.88a1.69,1.69,0,0,0-1.69,1.69v7.05H718.07a.35.35,0,0,0-.35.34v93.72a.35.35,0,0,0,.35.34h20.68a.34.34,0,0,0,.34-.34V551.75a.35.35,0,0,1,.35-.34h8.73a.35.35,0,0,1,.35.34v12.61a.34.34,0,0,0,.34.34h40.88a.34.34,0,0,0,.34-.34V551.75a.34.34,0,0,1,.34-.34h8.74a.34.34,0,0,1,.34.34v12.61a.35.35,0,0,0,.35.34h20.68a.34.34,0,0,0,.34-.34V470.64A.34.34,0,0,0,820.53,470.3ZM735.39,547a.34.34,0,0,1-.34.34H722.27a.34.34,0,0,1-.34-.34v-4.37a.34.34,0,0,1,.34-.34h12.78a.34.34,0,0,1,.34.34Zm0-11.28a.34.34,0,0,1-.34.34H722.27a.34.34,0,0,1-.34-.34v-4.36a.34.34,0,0,1,.34-.34h12.78a.34.34,0,0,1,.34.34Zm0-11.27a.34.34,0,0,1-.34.34H722.27a.34.34,0,0,1-.34-.34v-4.37a.34.34,0,0,1,.34-.34h12.78a.34.34,0,0,1,.34.34Zm0-11.28a.35.35,0,0,1-.34.35H722.27a.35.35,0,0,1-.34-.35v-4.36a.34.34,0,0,1,.34-.34h12.78a.34.34,0,0,1,.34.34Zm0-11.27a.34.34,0,0,1-.34.34H722.27a.34.34,0,0,1-.34-.34v-4.37a.34.34,0,0,1,.34-.34h12.78a.34.34,0,0,1,.34.34Zm0-11.27a.34.34,0,0,1-.34.34H722.27a.34.34,0,0,1-.34-.34v-4.37a.34.34,0,0,1,.34-.34h12.78a.34.34,0,0,1,.34.34Zm0-11.28a.34.34,0,0,1-.34.34H722.27a.34.34,0,0,1-.34-.34V475a.34.34,0,0,1,.34-.34h12.78a.34.34,0,0,1,.34.34ZM765.68,547a.34.34,0,0,1-.34.34H752.56a.34.34,0,0,1-.34-.34v-4.37a.34.34,0,0,1,.34-.34h12.78a.34.34,0,0,1,.34.34Zm0-11.28a.34.34,0,0,1-.34.34H752.56a.34.34,0,0,1-.34-.34v-4.36a.34.34,0,0,1,.34-.34h12.78a.34.34,0,0,1,.34.34Zm0-11.27a.34.34,0,0,1-.34.34H752.56a.34.34,0,0,1-.34-.34v-4.37a.34.34,0,0,1,.34-.34h12.78a.34.34,0,0,1,.34.34Zm0-11.28a.35.35,0,0,1-.34.35H752.56a.35.35,0,0,1-.34-.35v-4.36a.34.34,0,0,1,.34-.34h12.78a.34.34,0,0,1,.34.34Zm0-11.27a.34.34,0,0,1-.34.34H752.56a.34.34,0,0,1-.34-.34v-4.37a.34.34,0,0,1,.34-.34h12.78a.34.34,0,0,1,.34.34Zm0-11.27a.34.34,0,0,1-.34.34H752.56a.34.34,0,0,1-.34-.34v-4.37a.34.34,0,0,1,.34-.34h12.78a.34.34,0,0,1,.34.34Zm0-11.28a.34.34,0,0,1-.34.34H752.56a.34.34,0,0,1-.34-.34V475a.34.34,0,0,1,.34-.34h12.78a.34.34,0,0,1,.34.34ZM786.38,547a.34.34,0,0,1-.34.34H773.26a.34.34,0,0,1-.34-.34v-4.37a.34.34,0,0,1,.34-.34H786a.34.34,0,0,1,.34.34Zm0-11.28a.34.34,0,0,1-.34.34H773.26a.34.34,0,0,1-.34-.34v-4.36a.34.34,0,0,1,.34-.34H786a.34.34,0,0,1,.34.34Zm0-11.27a.34.34,0,0,1-.34.34H773.26a.34.34,0,0,1-.34-.34v-4.37a.34.34,0,0,1,.34-.34H786a.34.34,0,0,1,.34.34Zm0-11.28a.35.35,0,0,1-.34.35H773.26a.35.35,0,0,1-.34-.35v-4.36a.34.34,0,0,1,.34-.34H786a.34.34,0,0,1,.34.34Zm0-11.27a.34.34,0,0,1-.34.34H773.26a.34.34,0,0,1-.34-.34v-4.37a.34.34,0,0,1,.34-.34H786a.34.34,0,0,1,.34.34Zm0-11.27a.34.34,0,0,1-.34.34H773.26a.34.34,0,0,1-.34-.34v-4.37a.34.34,0,0,1,.34-.34H786a.34.34,0,0,1,.34.34Zm0-11.28a.34.34,0,0,1-.34.34H773.26a.34.34,0,0,1-.34-.34V475a.34.34,0,0,1,.34-.34H786a.34.34,0,0,1,.34.34ZM816.67,547a.35.35,0,0,1-.34.34H803.55a.34.34,0,0,1-.34-.34v-4.37a.34.34,0,0,1,.34-.34h12.78a.34.34,0,0,1,.34.34Zm0-11.28a.34.34,0,0,1-.34.34H803.55a.34.34,0,0,1-.34-.34v-4.36a.34.34,0,0,1,.34-.34h12.78a.34.34,0,0,1,.34.34Zm0-11.27a.34.34,0,0,1-.34.34H803.55a.34.34,0,0,1-.34-.34v-4.37a.34.34,0,0,1,.34-.34h12.78a.35.35,0,0,1,.34.34Zm0-11.28a.35.35,0,0,1-.34.35H803.55a.35.35,0,0,1-.34-.35v-4.36a.34.34,0,0,1,.34-.34h12.78a.34.34,0,0,1,.34.34Zm0-11.27a.34.34,0,0,1-.34.34H803.55a.34.34,0,0,1-.34-.34v-4.37a.34.34,0,0,1,.34-.34h12.78a.35.35,0,0,1,.34.34Zm0-11.27a.35.35,0,0,1-.34.34H803.55a.34.34,0,0,1-.34-.34v-4.37a.34.34,0,0,1,.34-.34h12.78a.34.34,0,0,1,.34.34Zm0-11.28a.34.34,0,0,1-.34.34H803.55a.34.34,0,0,1-.34-.34V475a.34.34,0,0,1,.34-.34h12.78a.34.34,0,0,1,.34.34Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><path d="M727.56,444.9a7.39,7.39,0,0,0-4.26.46,6.34,6.34,0,0,1-2.55.54,6.24,6.24,0,0,1-2.57-.55,7.18,7.18,0,0,0-6,.12,3.72,3.72,0,0,1-1.73.43c-2.44,0-4.47-2.46-4.89-5.7a4.82,4.82,0,0,0,1.22-1.32,6.86,6.86,0,0,1,12.25,0,4.68,4.68,0,0,0,4,2.23h.07C725.06,441.07,726.74,442.62,727.56,444.9Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><path d="M735,434.71l-4,2.51,2.4-4.36a3.92,3.92,0,0,0-2.39-.85H731a5.55,5.55,0,0,1-.82-.06l-1.34.84.58-1a4.72,4.72,0,0,1-2.34-1.77l-2.4,1.51,1.52-2.75a7,7,0,0,0-5.37-2.71,7.35,7.35,0,0,0-6.14,3.79,4.6,4.6,0,0,1-4.06,2.19h-.13c-2.75,0-5,3.11-5,7s2.23,7,5,7a3.73,3.73,0,0,0,1.73-.44,7.18,7.18,0,0,1,6-.11,6.41,6.41,0,0,0,2.57.55,6.34,6.34,0,0,0,2.55-.54,7.19,7.19,0,0,1,6,.11,3.64,3.64,0,0,0,1.71.43c2.75,0,5-3.12,5-7A8.86,8.86,0,0,0,735,434.71Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><rect x="988.64" y="269.17" width="5.36" height="44.17" rx="2.29" fill="#3f3d56"/><rect x="810.55" y="234.57" width="3.01" height="14.54" rx="1.5" fill="#3f3d56"/><rect x="810.44" y="261.19" width="3.39" height="25.31" rx="1.69" fill="#3f3d56"/><rect x="810.49" y="295.35" width="3.23" height="25.53" rx="1.61" fill="#3f3d56"/><rect x="812.25" y="186.51" width="179.29" height="364.37" rx="18.54" fill="#3f3d56"/><rect x="884.6" y="197.39" width="25.04" height="5.08" rx="2.54" fill="#e6e8ec"/><circle cx="916.3" cy="199.94" r="2.88" fill="#e6e8ec"/><path d="M1041.22,349H1020.7v2.47A11.73,11.73,0,0,1,1009,363.19H943.54a11.73,11.73,0,0,1-11.73-11.73V349H912.56a14.25,14.25,0,0,0-14.24,14.24V680.14a14.24,14.24,0,0,0,14.24,14.24h128.66a14.23,14.23,0,0,0,14.24-14.24V363.23A14.24,14.24,0,0,0,1041.22,349Z" transform="translate(-75 -152.99)" fill="#fff"/><path d="M1037.2,524.68v0a14.33,14.33,0,0,0-.7-3.83,1.72,1.72,0,0,0-.07-.21,14.56,14.56,0,0,0-24.65-5,20.46,20.46,0,0,0-1.16-4.07,65.66,65.66,0,0,1-11.55.43,47.79,47.79,0,0,0,7.32,2.66l-.09.33a46.82,46.82,0,0,1-8.18-3.06l-.79-.39.88.06a65.38,65.38,0,0,0,12.28-.35,20.79,20.79,0,0,0-3.62-5.75,61.91,61.91,0,0,1-19.27-4.79l.14-.32a60.89,60.89,0,0,0,18.78,4.73,20.63,20.63,0,0,0-32.78,3.49,28.35,28.35,0,0,0-7-15.94,66.32,66.32,0,0,1-27.87,4.64,46.76,46.76,0,0,0,7.32,2.66l-.09.33a46.82,46.82,0,0,1-8.18-3.06l-.79-.38.88.06a65.26,65.26,0,0,0,28.49-4.52c-.34-.37-.69-.73-1.05-1.09-11.29.23-23.59.12-34.72-3.94a28.4,28.4,0,0,0-13.48,24.19c0,5.33,1.46,12.66,4,20a83.69,83.69,0,0,0,4,9.64q1.17,2.38,2.47,4.6h0a54,54,0,0,0,3.45,5.17l.69.87a32,32,0,0,0,4.3,4.45h0c.32.27.64.52,1,.76a18.94,18.94,0,0,0,2.75,1.72,12.92,12.92,0,0,0,5.2,1.41h.43v.05h77.09v-.05h.06a3.92,3.92,0,0,0,1.3-.23c2.73-1,5.24-4.85,7.32-9.76.47-1.09.91-2.23,1.33-3.4s.72-2.08,1.05-3.15c1-3.2,1.82-6.49,2.43-9.47a50.32,50.32,0,0,0,1.14-8.83C1037.22,525.12,1037.21,524.9,1037.2,524.68Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><path d="M965.07,491a28.3,28.3,0,0,0-34-3.83C942,491,954,491.17,965.07,491Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><path d="M1028.23,554.3l-11.9-20.61a.38.38,0,0,0-.66,0l-11.9,20.61a.38.38,0,0,0,.33.57h3.55a.38.38,0,0,1,.38.38v4.4a.38.38,0,0,0,.38.38H1013a.38.38,0,0,0,.38-.38v-2.12a.38.38,0,0,1,.38-.38h4.4a.38.38,0,0,1,.38.38v2.12a.38.38,0,0,0,.38.38h4.63a.38.38,0,0,0,.36-.26.37.37,0,0,0,0-.12v-4.4a.38.38,0,0,1,.38-.38h3.55A.38.38,0,0,0,1028.23,554.3Zm-16.59,2.28a.39.39,0,0,1-.27.11h-1.67a.38.38,0,0,1-.38-.38.35.35,0,0,1,.11-.26.4.4,0,0,1,.27-.12h1.67a.38.38,0,0,1,.38.38A.37.37,0,0,1,1011.64,556.58Zm10.93,0a.37.37,0,0,1-.27.11h-1.67a.38.38,0,0,1-.38-.38.35.35,0,0,1,.11-.26.4.4,0,0,1,.27-.12h1.67a.38.38,0,0,1,.38.38A.37.37,0,0,1,1022.57,556.58Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><path d="M954.68,554.48l-11.9-20.61a.38.38,0,0,0-.66,0l-10.27,17.8a32,32,0,0,0,4.3,4.45h1.67a.38.38,0,1,1,0,.75h-.7a18.94,18.94,0,0,0,2.75,1.72v-.88a.38.38,0,0,1,.38-.38h4.41a.38.38,0,0,1,.37.38v2.12a.39.39,0,0,0,.38.38h4.64a.38.38,0,0,0,.3-.15.35.35,0,0,0,.07-.23v-4.4a.38.38,0,0,1,.38-.38h3.55A.38.38,0,0,0,954.68,554.48Zm-7.86,1.75a.35.35,0,0,1,.26-.11h1.67a.38.38,0,1,1,0,.75h-1.67a.38.38,0,0,1-.38-.38A.37.37,0,0,1,946.82,556.23Zm-7.48-7.63a.38.38,0,0,1-.38-.38v-2.88a.38.38,0,0,1,.38-.38h6.23a.38.38,0,0,1,.38.38v2.88a.38.38,0,0,1-.38.38Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><path d="M1001.72,517.46H987v-3.19a.76.76,0,0,0-.76-.76H981.9v-3.39a.48.48,0,0,0-.47-.48h-5.57a.48.48,0,0,0-.48.48v3.39h-5.09a.76.76,0,0,0-.76.76v3.19h-14a.15.15,0,0,0-.15.15v42.28a.16.16,0,0,0,.15.16h9.33a.16.16,0,0,0,.16-.16V554.2a.15.15,0,0,1,.15-.15h3.94a.16.16,0,0,1,.16.15v5.69a.16.16,0,0,0,.15.16h18.44a.16.16,0,0,0,.16-.16V554.2a.15.15,0,0,1,.15-.15h3.94a.16.16,0,0,1,.16.15v5.69a.16.16,0,0,0,.15.16h9.34a.16.16,0,0,0,.15-.16V517.61A.15.15,0,0,0,1001.72,517.46Zm-38.41,34.61a.16.16,0,0,1-.16.16h-5.76a.16.16,0,0,1-.16-.16v-2a.16.16,0,0,1,.16-.15h5.76a.16.16,0,0,1,.16.15Zm0-5.08a.16.16,0,0,1-.16.15h-5.76a.16.16,0,0,1-.16-.15v-2a.16.16,0,0,1,.16-.16h5.76a.16.16,0,0,1,.16.16Zm0-5.09a.16.16,0,0,1-.16.16h-5.76a.16.16,0,0,1-.16-.16v-2a.16.16,0,0,1,.16-.15h5.76a.16.16,0,0,1,.16.15Zm0-5.09a.16.16,0,0,1-.16.16h-5.76a.16.16,0,0,1-.16-.16v-2a.16.16,0,0,1,.16-.16h5.76a.16.16,0,0,1,.16.16Zm0-5.08a.16.16,0,0,1-.16.15h-5.76a.16.16,0,0,1-.16-.15v-2a.16.16,0,0,1,.16-.15h5.76a.16.16,0,0,1,.16.15Zm0-5.09a.16.16,0,0,1-.16.16h-5.76a.16.16,0,0,1-.16-.16v-2a.16.16,0,0,1,.16-.15h5.76a.16.16,0,0,1,.16.15Zm0-5.08a.16.16,0,0,1-.16.15h-5.76a.16.16,0,0,1-.16-.15v-2a.16.16,0,0,1,.16-.16h5.76a.16.16,0,0,1,.16.16ZM977,552.07a.16.16,0,0,1-.15.16h-5.77a.16.16,0,0,1-.15-.16v-2a.15.15,0,0,1,.15-.15h5.77a.15.15,0,0,1,.15.15Zm0-5.08a.15.15,0,0,1-.15.15h-5.77a.15.15,0,0,1-.15-.15v-2a.16.16,0,0,1,.15-.16h5.77a.16.16,0,0,1,.15.16Zm0-5.09a.16.16,0,0,1-.15.16h-5.77a.16.16,0,0,1-.15-.16v-2a.15.15,0,0,1,.15-.15h5.77a.15.15,0,0,1,.15.15Zm0-5.09a.16.16,0,0,1-.15.16h-5.77a.16.16,0,0,1-.15-.16v-2a.16.16,0,0,1,.15-.16h5.77a.16.16,0,0,1,.15.16Zm0-5.08a.15.15,0,0,1-.15.15h-5.77a.15.15,0,0,1-.15-.15v-2a.15.15,0,0,1,.15-.15h5.77a.15.15,0,0,1,.15.15Zm0-5.09a.16.16,0,0,1-.15.16h-5.77a.16.16,0,0,1-.15-.16v-2a.15.15,0,0,1,.15-.15h5.77a.15.15,0,0,1,.15.15Zm0-5.08a.15.15,0,0,1-.15.15h-5.77a.15.15,0,0,1-.15-.15v-2a.16.16,0,0,1,.15-.16h5.77a.16.16,0,0,1,.15.16Zm9.34,30.51a.16.16,0,0,1-.16.16h-5.76a.16.16,0,0,1-.16-.16v-2a.16.16,0,0,1,.16-.15h5.76a.16.16,0,0,1,.16.15Zm0-5.08a.16.16,0,0,1-.16.15h-5.76a.16.16,0,0,1-.16-.15v-2a.16.16,0,0,1,.16-.16h5.76a.16.16,0,0,1,.16.16Zm0-5.09a.16.16,0,0,1-.16.16h-5.76a.16.16,0,0,1-.16-.16v-2a.16.16,0,0,1,.16-.15h5.76a.16.16,0,0,1,.16.15Zm0-5.09a.16.16,0,0,1-.16.16h-5.76a.16.16,0,0,1-.16-.16v-2a.16.16,0,0,1,.16-.16h5.76a.16.16,0,0,1,.16.16Zm0-5.08a.16.16,0,0,1-.16.15h-5.76a.16.16,0,0,1-.16-.15v-2a.16.16,0,0,1,.16-.15h5.76a.16.16,0,0,1,.16.15Zm0-5.09a.16.16,0,0,1-.16.16h-5.76a.16.16,0,0,1-.16-.16v-2a.16.16,0,0,1,.16-.15h5.76a.16.16,0,0,1,.16.15Zm0-5.08a.16.16,0,0,1-.16.15h-5.76a.16.16,0,0,1-.16-.15v-2a.16.16,0,0,1,.16-.16h5.76a.16.16,0,0,1,.16.16ZM1000,552.07a.16.16,0,0,1-.15.16h-5.77a.16.16,0,0,1-.15-.16v-2a.15.15,0,0,1,.15-.15h5.77a.15.15,0,0,1,.15.15Zm0-5.08a.15.15,0,0,1-.15.15h-5.77a.15.15,0,0,1-.15-.15v-2a.16.16,0,0,1,.15-.16h5.77a.16.16,0,0,1,.15.16Zm0-5.09a.16.16,0,0,1-.15.16h-5.77a.16.16,0,0,1-.15-.16v-2a.15.15,0,0,1,.15-.15h5.77a.15.15,0,0,1,.15.15Zm0-5.09a.16.16,0,0,1-.15.16h-5.77a.16.16,0,0,1-.15-.16v-2a.16.16,0,0,1,.15-.16h5.77a.16.16,0,0,1,.15.16Zm0-5.08a.15.15,0,0,1-.15.15h-5.77a.15.15,0,0,1-.15-.15v-2a.15.15,0,0,1,.15-.15h5.77a.15.15,0,0,1,.15.15Zm0-5.09a.16.16,0,0,1-.15.16h-5.77a.16.16,0,0,1-.15-.16v-2a.15.15,0,0,1,.15-.15h5.77a.15.15,0,0,1,.15.15Zm0-5.08a.15.15,0,0,1-.15.15h-5.77a.15.15,0,0,1-.15-.15v-2a.16.16,0,0,1,.15-.16h5.77a.16.16,0,0,1,.15.16Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><path d="M959.77,506a3.33,3.33,0,0,0-1.92.21,2.82,2.82,0,0,1-1.15.24,2.72,2.72,0,0,1-1.16-.25,3.27,3.27,0,0,0-2.72.06,1.73,1.73,0,0,1-.78.19c-1.1,0-2-1.11-2.21-2.57a2.06,2.06,0,0,0,.55-.59,3.1,3.1,0,0,1,5.53,0,2.11,2.11,0,0,0,1.83,1h0A2.28,2.28,0,0,1,959.77,506Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><path d="M963.13,501.41l-1.78,1.12,1.08-2a1.75,1.75,0,0,0-1.08-.39h0a1.51,1.51,0,0,1-.37,0l-.61.38.26-.47a2.19,2.19,0,0,1-1.05-.8l-1.08.68.68-1.24a3.16,3.16,0,0,0-2.42-1.22A3.3,3.3,0,0,0,954,499.2a2.09,2.09,0,0,1-1.83,1h-.06c-1.24,0-2.25,1.41-2.25,3.14s1,3.14,2.25,3.14a1.64,1.64,0,0,0,.78-.19,3.23,3.23,0,0,1,2.72,0,2.9,2.9,0,0,0,2.31,0,3.24,3.24,0,0,1,2.69,0,1.6,1.6,0,0,0,.77.19c1.24,0,2.25-1.4,2.25-3.14A4,4,0,0,0,963.13,501.41Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><path d="M174.65,693.59a37,37,0,0,1-.8,7.76c-.1.48-.21.95-.32,1.41-2.84,11.39-10.85,19.72-20.41,20.25-.32,0-.64,0-1,0-10.11,0-18.66-8.72-21.48-20.73-.08-.32-.15-.64-.22-1a37,37,0,0,1-.8-7.76c0-16.27,10.07-29.45,22.5-29.45S174.65,677.32,174.65,693.59Z" transform="translate(-75 -152.99)" fill="#3f3d56"/><path d="M174.65,693.59a37,37,0,0,1-.8,7.76c-.1.48-.21.95-.32,1.41-.34,0-.67,0-1,0a45.76,45.76,0,0,1-7.36-1,44.92,44.92,0,0,1-6.56,1.5,45.87,45.87,0,0,1-5.14.48l-1.74,0a46.41,46.41,0,0,1-6.16-.41,45.17,45.17,0,0,1-9.67-2.4,45.56,45.56,0,0,1-5.22,1.4c-.08-.32-.15-.64-.22-1a37,37,0,0,1-.8-7.76c0-16.27,10.07-29.45,22.5-29.45S174.65,677.32,174.65,693.59Z" transform="translate(-75 -152.99)" opacity="0.1"/><path d="M222.65,638.72a45.6,45.6,0,0,0-4.9-20.61l-26.46,8.23,23.23-13.65a45.71,45.71,0,0,0-34.36-19.59,45.65,45.65,0,0,0-3.57-4.72l-38,11.83,31.17-18.33a45.73,45.73,0,0,0-72,24.39l32.55,37.47L95,618.2a45.74,45.74,0,0,0,40.93,80.7,45.92,45.92,0,0,0,29.28.81,45.74,45.74,0,0,0,55.62-44.66c0-1,0-2-.1-3A45.74,45.74,0,0,0,222.65,638.72Z" transform="translate(-75 -152.99)" fill="#008aff"/><path d="M221.86,647.2a122.14,122.14,0,0,0-42.34-.54c-15.89,2.63-32.13,8.42-47.67,4.19-9.12-2.48-17-8.22-25.91-11.41a49.18,49.18,0,0,0-26.75-1.6,45.76,45.76,0,0,0,56.69,61.06,45.92,45.92,0,0,0,29.28.81,45.74,45.74,0,0,0,55.62-44.66c0-1,0-2-.1-3A46,46,0,0,0,221.86,647.2Z" transform="translate(-75 -152.99)" opacity="0.1"/><path d="M568.71,359.13l-19-.84c-4.35-.19-9.31-.13-12.21,3.11-3.09,3.45-2.28,8.87-.46,13.14s4.48,8.36,4.62,13c.21,7.3-5.78,13.08-11.21,18s-11.23,11-10.44,18.27c.62,5.67,5.14,10.05,9.6,13.59a128.25,128.25,0,0,0,21.85,14c4.43,2.24,9.15,4.26,14.12,4.31,4.36.05,8.58-1.42,12.68-2.9,7.13-2.56,14.45-5.33,19.86-10.62a39.92,39.92,0,0,0,6.9-9.54c9.35-17,11.84-38.26,4.24-56.13a31.55,31.55,0,0,0-7-10.66c-8.1-7.67-20.46-8-31.62-7.91a12.39,12.39,0,0,0-5.92,1.05c-1.77,1-3,3.23-2.18,5.08" transform="translate(-75 -152.99)" fill="#393859"/><path d="M544.39,594.37a411.28,411.28,0,0,0,2.24,60.27c.26,2.29.53,4.58,1,6.84,1.28,7,3.9,13.71,5.95,20.54s3.57,14,2.56,21.07q6.6-.69,13.22-1.13l.06-3.4c.12-6.52-2.44-12.88-1.79-19.37.62-6.14,2.6-12.14,2.51-18.31-.09-5.83-2-11.45-2.91-17.21a97.73,97.73,0,0,1-.82-11.6,146.49,146.49,0,0,1,.1-16c.84-10.82,4.06-21.6,2.57-32.35C560.92,587.48,552.5,590.65,544.39,594.37Z" transform="translate(-75 -152.99)" fill="#a0616a"/><path d="M564.36,726.39a3,3,0,0,0,1.47-.24A3.2,3.2,0,0,0,567,724a26.23,26.23,0,0,1,3.36-7.55c1.13-1.73,2.51-3.49,2.53-5.55,0-3.33-3.48-5.66-4.21-8.91a14.38,14.38,0,0,0-.62-3.08c-.82-1.75-3-2.35-4.88-2.74-2.56-.54-5.87-.76-7.14,1.52-1.08,1.94.12,4.3.28,6.51.2,3-1.58,5.76-3.5,8.07-2.25,2.72-8.16,9.23-4.56,13,1.35,1.42,4.29.94,6,1Z" transform="translate(-75 -152.99)" fill="#3f3d56"/><path d="M603,594.37a409.91,409.91,0,0,1-2.25,60.27c-.25,2.29-.52,4.58-.94,6.84-1.28,7-3.9,13.71-6,20.54s-3.56,14-2.55,21.07q-6.6-.69-13.22-1.13l-.06-3.4c-.12-6.52,2.43-12.88,1.78-19.37-.61-6.14-2.59-12.14-2.5-18.31.09-5.83,2-11.45,2.9-17.21a95.67,95.67,0,0,0,.83-11.6,146.49,146.49,0,0,0-.1-16c-.84-10.82-4.07-21.6-2.57-32.35C586.51,587.48,594.92,590.65,603,594.37Z" transform="translate(-75 -152.99)" fill="#a0616a"/><path d="M583.06,726.39a3,3,0,0,1-1.46-.24,3.2,3.2,0,0,1-1.21-2.15,26.23,26.23,0,0,0-3.36-7.55c-1.13-1.73-2.52-3.49-2.53-5.55,0-3.33,3.48-5.66,4.2-8.91a14.39,14.39,0,0,1,.63-3.08c.82-1.75,3-2.35,4.88-2.74,2.56-.54,5.86-.76,7.14,1.52,1.08,1.94-.13,4.3-.28,6.51-.21,3,1.58,5.76,3.5,8.07,2.25,2.72,8.16,9.23,4.56,13-1.35,1.42-4.29.94-6,1Z" transform="translate(-75 -152.99)" fill="#3f3d56"/><circle cx="492.31" cy="243.59" r="20.49" fill="#a0616a"/><path d="M555.7,415.05A7,7,0,0,1,556,418a5.74,5.74,0,0,1-1.72,2.66,30.58,30.58,0,0,1-10.15,6.77c-.4,1.29.35,2.62,1.08,3.74,2.46,3.79,5.06,7.47,7.67,11.16a74.72,74.72,0,0,0,17.43,18.77l6-7.54a48.75,48.75,0,0,0,3.48-4.73,47.18,47.18,0,0,0,3.12-6.39l7.33-17c-4.41.89-8.89-1.14-12.66-3.61a4.94,4.94,0,0,1-1.84-1.76,5,5,0,0,1-.4-2.18q-.18-5.3-.15-10.59a136.14,136.14,0,0,0-16-1.25c-2.08,0-3.48-.44-4,1.76S555.25,412.92,555.7,415.05Z" transform="translate(-75 -152.99)" fill="#a0616a"/><path d="M564.8,453.61a78.77,78.77,0,0,0-12-16,10.8,10.8,0,0,1-2.51-3.29,10,10,0,0,1-.56-3.18l-.36-5.29a1.23,1.23,0,0,0-.27-.82,1.19,1.19,0,0,0-.81-.23,6.77,6.77,0,0,0-3.71.54,10.4,10.4,0,0,0-2,1.84c-2.29,2.35-5.51,3.46-8.53,4.73a68.63,68.63,0,0,0-6.58,3.17c-1.69.93-3.43,2-4.19,3.8a9.39,9.39,0,0,0-.54,3.58L522,485a2.25,2.25,0,0,1-1.68,2.51,6.1,6.1,0,0,0-2.32,1.77,2.4,2.4,0,0,0-.09,2.75c.3.39.76.63,1.07,1,1,1.19.13,2.91-.54,4.29a9.32,9.32,0,0,0-1,5.81,5,5,0,0,0,3.92,4c.79-2.55-1-5.44,0-7.91a5.67,5.67,0,0,1,3.42-2.85,12.29,12.29,0,0,1,6.24-.68l1.2,4.37c4.31,15.74,1.32,32.65-2.61,48.49-.91,3.7-2.06,7.34-2.74,11.09-1,5.63-1,11.38-1,17.1l0,15.64c0,1.9.12,4.05,1.57,5.28s4.12,1.14,5.21,2.84c.63,1,.51,2.29,1.08,3.31a4.38,4.38,0,0,0,1.7,1.55,11.44,11.44,0,0,0,14.91-3.66c1.08-1.71,1.73-3.78,3.33-5,1.83-1.43,4.37-1.39,6.68-1.28l13.62.65a28.19,28.19,0,0,1,6.92.91,53.46,53.46,0,0,1,5.88,2.54,30.29,30.29,0,0,0,13.77,2.5,8,8,0,0,0,3.72-.9c1.3-.78,2.2-2.2,3.63-2.73,1.61-.6,3.68,0,4.93-1.17a4.47,4.47,0,0,0,1-3.17l.57-13.37c.6-13.79,1.13-28-3.42-41-1.11-3.17-2.51-6.24-3.36-9.49A93.86,93.86,0,0,1,606,520c-1.41-9.51-4.62-18.87-4-28.46,0-.73.64-.9,1.36-1,2.54-.25,5.31.22,7.12,2,1.61,1.6,2.18,4,2.36,6.23a7,7,0,0,1-.86,4.68l3.76-2.76c1.2-.88,2.54-2.09,2.3-3.56-.71-4.37-.47-9.26-1-13.65a199.36,199.36,0,0,0-3.59-22.16A58.25,58.25,0,0,1,612,455c-.36-2.92-.16-5.87-.35-8.81a33.18,33.18,0,0,0-3.14-12,12.26,12.26,0,0,0-2-3.18,13.94,13.94,0,0,0-3.88-2.68A79.93,79.93,0,0,0,583,421.2c-1.35-.29-2.9-.51-4,.33-1.4,1.08-1.24,3.25-.62,4.91s1.57,3.33,1.3,5.08-1.76,3.13-3,4.52c-3.17,3.71-4.61,8.71-8,12.25C567.23,449.92,565.13,451.37,564.8,453.61Z" transform="translate(-75 -152.99)" fill="#ff6f61"/><path d="M552.07,386.46c1.73,1.44,3.18,3.44,5.38,3.91,5.3,1.12,9.44-7.45,14.54-5.62,1.86.67,3,2.52,4.43,3.82a8.77,8.77,0,0,0,12-.87c2.68-3.13,2.71-7.65,2.61-11.77a8.85,8.85,0,0,0-.89-4.42,7.12,7.12,0,0,0-1.77-1.86c-6.05-4.73-14.22-5.41-21.88-5.9a16,16,0,0,0-5,.21c-2.28.58-4.16,2.12-6,3.62-3.44,2.86-11.81,8.3-12.86,12.91S548.67,383.64,552.07,386.46Z" transform="translate(-75 -152.99)" fill="#393859"/><rect x="453.12" y="295.07" width="74.28" height="80.43" rx="2.61" fill="#008aff"/><rect x="459.52" y="302.01" width="61.48" height="48.65" rx="2.61" fill="#fff"/><path d="M588,480.46v0a5.8,5.8,0,0,0-.27-1.46l0-.07a5.53,5.53,0,0,0-9.36-1.9,7.35,7.35,0,0,0-.44-1.54,24.69,24.69,0,0,1-4.38.16,16.21,16.21,0,0,0,2.78,1l0,.13a18.07,18.07,0,0,1-3.1-1.16l-.3-.15.33,0a24.17,24.17,0,0,0,4.66-.13,7.72,7.72,0,0,0-1.37-2.18,23.49,23.49,0,0,1-7.32-1.82l.06-.12a23.14,23.14,0,0,0,7.13,1.79,7.83,7.83,0,0,0-12.45,1.33,10.74,10.74,0,0,0-2.67-6.05,25.14,25.14,0,0,1-10.58,1.76,18.48,18.48,0,0,0,2.78,1l0,.12a18.07,18.07,0,0,1-3.1-1.16l-.3-.14.33,0a24.79,24.79,0,0,0,10.82-1.72c-.13-.14-.26-.28-.4-.41-4.29.09-8.95,0-13.18-1.5a10.8,10.8,0,0,0-5.12,9.19,25.33,25.33,0,0,0,1.52,7.6,32.44,32.44,0,0,0,1.52,3.66c.3.6.61,1.18.94,1.74h0a20.87,20.87,0,0,0,1.31,2l.26.33a11.48,11.48,0,0,0,1.64,1.69h0a4.57,4.57,0,0,0,.36.29,7.58,7.58,0,0,0,1.05.66,4.87,4.87,0,0,0,2,.53h.17v0h29.27v0h0a1.62,1.62,0,0,0,.49-.08c1-.37,2-1.85,2.79-3.71.17-.41.34-.84.5-1.29s.27-.79.4-1.19c.38-1.22.69-2.47.92-3.6a18.77,18.77,0,0,0,.43-3.35Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.3"/><path d="M560.65,467.65a10.72,10.72,0,0,0-12.91-1.45C551.88,467.68,556.44,467.73,560.65,467.65Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.3"/><path d="M584.63,491.7l-4.52-7.82a.14.14,0,0,0-.25,0l-4.52,7.82a.15.15,0,0,0,.13.22h1.35a.14.14,0,0,1,.14.14v1.68a.14.14,0,0,0,.14.14h1.76a.15.15,0,0,0,.15-.14v-.81a.15.15,0,0,1,.14-.15h1.67a.15.15,0,0,1,.15.15v.81a.14.14,0,0,0,.14.14h1.76a.13.13,0,0,0,.13-.1.06.06,0,0,0,0,0v-1.68a.15.15,0,0,1,.15-.14h1.34A.15.15,0,0,0,584.63,491.7Zm-6.3.87a.13.13,0,0,1-.1,0h-.64a.14.14,0,0,1-.14-.14.15.15,0,0,1,0-.1.14.14,0,0,1,.1-.05h.64a.15.15,0,0,1,.14.15A.13.13,0,0,1,578.33,492.57Zm4.15,0a.13.13,0,0,1-.1,0h-.64a.14.14,0,0,1-.14-.14.15.15,0,0,1,0-.1.14.14,0,0,1,.1-.05h.64a.15.15,0,0,1,.14.15A.13.13,0,0,1,582.48,492.57Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.3"/><path d="M556.7,491.77,552.19,484a.14.14,0,0,0-.25,0L548,490.71a11.91,11.91,0,0,0,1.64,1.68h.63a.15.15,0,0,1,.15.15.14.14,0,0,1-.05.1.15.15,0,0,1-.1,0H550a8.55,8.55,0,0,0,1.05.65V493a.15.15,0,0,1,.14-.15h1.68a.15.15,0,0,1,.14.15v.8a.35.35,0,0,0,0,.06.17.17,0,0,0,.13.09h1.76a.14.14,0,0,0,.12-.06.12.12,0,0,0,0-.09v-1.67a.14.14,0,0,1,.14-.14h1.35A.14.14,0,0,0,556.7,491.77Zm-3,.66a.15.15,0,0,1,.1,0h.63a.15.15,0,0,1,.15.15.14.14,0,0,1-.05.1.15.15,0,0,1-.1,0h-.63a.15.15,0,0,1-.15-.14A.16.16,0,0,1,553.72,492.43Zm-2.84-2.89a.15.15,0,0,1-.15-.15V488.3a.15.15,0,0,1,.15-.14h2.36a.15.15,0,0,1,.15.14v1.09a.15.15,0,0,1-.15.15Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.3"/><path d="M574.56,477.71H569v-1.2a.29.29,0,0,0-.29-.29H567v-1.29a.18.18,0,0,0-.18-.18h-2.12a.18.18,0,0,0-.18.18v1.29h-1.93a.29.29,0,0,0-.29.29v1.2H557a.06.06,0,0,0-.06.06v16.06a.06.06,0,0,0,.06.05h3.54s.06,0,.06-.05v-2.16a.06.06,0,0,1,.06-.06h1.5a.06.06,0,0,1,.06.06v2.16s0,.05.06.05h7a.06.06,0,0,0,.06-.05v-2.16s0-.06,0-.06h1.5a.06.06,0,0,1,.06.06v2.16a.06.06,0,0,0,.06.05h3.54a.06.06,0,0,0,.06-.05V477.77A.06.06,0,0,0,574.56,477.71ZM560,490.86a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.06-.06v-.75a.06.06,0,0,1,.06-.06h2.19a.06.06,0,0,1,.06.06Zm0-1.93a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.06-.06v-.75a.06.06,0,0,1,.06-.06h2.19a.06.06,0,0,1,.06.06Zm0-1.93a.06.06,0,0,1-.06.05h-2.19a.06.06,0,0,1-.06-.05v-.75a.06.06,0,0,1,.06-.06h2.19a.06.06,0,0,1,.06.06Zm0-1.94a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.06-.06v-.74a.06.06,0,0,1,.06-.06h2.19a.06.06,0,0,1,.06.06Zm0-1.93a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.06-.06v-.74a.06.06,0,0,1,.06-.06h2.19a.06.06,0,0,1,.06.06Zm0-1.93a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.06-.06v-.75a.06.06,0,0,1,.06-.05h2.19a.06.06,0,0,1,.06.05Zm0-1.93a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.06-.06v-.75a.06.06,0,0,1,.06-.06h2.19a.06.06,0,0,1,.06.06Zm5.19,11.59a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.06-.06v-.75a.06.06,0,0,1,.06-.06h2.19a.06.06,0,0,1,.06.06Zm0-1.93a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.06-.06v-.75a.06.06,0,0,1,.06-.06h2.19a.06.06,0,0,1,.06.06Zm0-1.93a.06.06,0,0,1-.06.05h-2.19a.06.06,0,0,1-.06-.05v-.75a.06.06,0,0,1,.06-.06h2.19a.06.06,0,0,1,.06.06Zm0-1.94a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.06-.06v-.74a.06.06,0,0,1,.06-.06h2.19a.06.06,0,0,1,.06.06Zm0-1.93a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.06-.06v-.74a.06.06,0,0,1,.06-.06h2.19a.06.06,0,0,1,.06.06Zm0-1.93a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.06-.06v-.75a.06.06,0,0,1,.06-.05h2.19a.06.06,0,0,1,.06.05Zm0-1.93a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.06-.06v-.75a.06.06,0,0,1,.06-.06h2.19a.06.06,0,0,1,.06.06Zm3.54,11.59a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.05-.06v-.75a.06.06,0,0,1,.05-.06h2.19a.06.06,0,0,1,.06.06Zm0-1.93a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.05-.06v-.75a.06.06,0,0,1,.05-.06h2.19a.06.06,0,0,1,.06.06Zm0-1.93s0,.05-.06.05h-2.19a0,0,0,0,1-.05-.05v-.75a.06.06,0,0,1,.05-.06h2.19a.06.06,0,0,1,.06.06Zm0-1.94a.05.05,0,0,1-.06.06h-2.19s-.05,0-.05-.06v-.74s0-.06.05-.06h2.19a.05.05,0,0,1,.06.06Zm0-1.93a.05.05,0,0,1-.06.06h-2.19s-.05,0-.05-.06v-.74s0-.06.05-.06h2.19a.05.05,0,0,1,.06.06Zm0-1.93a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.05-.06v-.75a0,0,0,0,1,.05-.05h2.19s.06,0,.06.05Zm0-1.93a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.05-.06v-.75a.06.06,0,0,1,.05-.06h2.19a.06.06,0,0,1,.06.06Zm5.19,11.59a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.06-.06v-.75a.06.06,0,0,1,.06-.06h2.19a.06.06,0,0,1,.06.06Zm0-1.93a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.06-.06v-.75a.06.06,0,0,1,.06-.06h2.19a.06.06,0,0,1,.06.06Zm0-1.93a.06.06,0,0,1-.06.05h-2.19a.06.06,0,0,1-.06-.05v-.75a.06.06,0,0,1,.06-.06h2.19a.06.06,0,0,1,.06.06Zm0-1.94a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.06-.06v-.74a.06.06,0,0,1,.06-.06h2.19a.06.06,0,0,1,.06.06Zm0-1.93a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.06-.06v-.74a.06.06,0,0,1,.06-.06h2.19a.06.06,0,0,1,.06.06Zm0-1.93a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.06-.06v-.75a.06.06,0,0,1,.06-.05h2.19a.06.06,0,0,1,.06.05Zm0-1.93a.06.06,0,0,1-.06.06h-2.19a.06.06,0,0,1-.06-.06v-.75a.06.06,0,0,1,.06-.06h2.19a.06.06,0,0,1,.06.06Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.3"/><path d="M558.64,473.36a1.38,1.38,0,0,0-.73.08,1,1,0,0,1-.88,0,1.23,1.23,0,0,0-1,0,.61.61,0,0,1-.3.08c-.42,0-.77-.43-.84-1a.77.77,0,0,0,.21-.23,1.28,1.28,0,0,1,1-.65,1.27,1.27,0,0,1,1,.65.81.81,0,0,0,.69.38h0A.87.87,0,0,1,558.64,473.36Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><path d="M559.91,471.62l-.67.43.41-.75a.7.7,0,0,0-.41-.14h-.15l-.23.14.09-.18a.79.79,0,0,1-.4-.3l-.41.26.26-.47a1.2,1.2,0,0,0-.92-.47,1.28,1.28,0,0,0-1.05.65.79.79,0,0,1-.69.38h0c-.47,0-.85.53-.85,1.19s.38,1.19.85,1.19a.73.73,0,0,0,.3-.07,1.2,1.2,0,0,1,1,0,1.12,1.12,0,0,0,.44.09,1.08,1.08,0,0,0,.44-.09,1.21,1.21,0,0,1,1,0,.73.73,0,0,0,.3.07c.47,0,.85-.53.85-1.19A1.52,1.52,0,0,0,559.91,471.62Z" transform="translate(-75 -152.99)" fill="#008aff" opacity="0.1"/><ellipse cx="450.81" cy="350.66" rx="6.15" ry="10.25" fill="#a0616a"/><ellipse cx="531.76" cy="345.53" rx="6.15" ry="10.25" fill="#a0616a"/></svg>
@@ -0,0 +1,73 @@
1
+ <svg class="" width="1387px" height="1277px" viewBox="0 0 1387 1277" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <!-- Generator: Sketch 63.1 (92452) - https://sketch.com -->
3
+ <title>Business Woman Working</title>
4
+ <desc>Created by Webpixels.</desc>
5
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
6
+ <g id="business-woman-working" transform="translate(2.000000, 2.000000)">
7
+ <line x1="0.4" y1="1111.3" x2="282.9" y2="1111.3" id="Path" stroke="#CED5E5" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
8
+ <line x1="593.7" y1="1111.3" x2="1013.6" y2="1111.3" id="Path" stroke="#CED5E5" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
9
+ <line x1="334.4" y1="1111.3" x2="551.3" y2="1111.3" id="Path" stroke="#CED5E5" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
10
+ <line x1="1040.2" y1="1111.3" x2="1117.1" y2="1111.3" id="Path" stroke="#CED5E5" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
11
+ <line x1="1156.2" y1="1111.3" x2="1361.6" y2="1111.3" id="Path" stroke="#CED5E5" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
12
+ <path d="M1.6,335.7 C11.5,247.3 74.5,161.1 153,129.9 C236.8,96.5 282.1,148.2 404.7,162.2 C657,191 812.2,12 882.6,77.2 C936.8,127.4 843.9,232.7 901.3,320.4 C976.9,435.8 1194.9,340.7 1306.1,456.5 C1389.5,543.3 1410.2,705.2 1348.6,766 C1272.7,840.9 1135,700 926.8,752.4 C753.6,796 762.2,915.4 571.3,990.5 C360.3,1073.5 88.6,1030.4 39,915.7 C4.1,835 107.9,785.4 95.1,630 C83.4,485.9 -11.7,455.7 1.6,335.7 Z" id="Path" fill="#F1F2F7" fill-rule="nonzero"></path>
13
+ <path d="M298.4,943.8 C298.4,943.8 284.8,593.2 283.1,561.5 C281.4,529.7 289.1,506.7 349.4,505.9 C409.8,505 446.3,515.5 446.3,515.5 C446.3,515.5 473.4,512.7 471.8,681.9 C470.2,851.1 456.7,897.9 456.7,897.9 L540.8,899.1 C561.1,899.4 577.4,915.9 577.4,936.2 L577.4,944.2 C577.4,964.7 560.8,981.3 540.3,981.3 L335.7,981.3 C316.8,981.3 301,967.1 298.9,948.4 L298.4,943.8 Z" id="Path" fill="#FFC933" fill-rule="nonzero"></path>
14
+ <polyline id="Path" stroke="#FEAC00" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" points="318.1 509.1 337 905.5 542.6 908.9"></polyline>
15
+ <path d="M494.2,373.2 C494.2,373.2 492.5,331.8 461.3,330.7 C430.1,329.6 431.3,354.5 422.2,360.2 C413.1,365.9 390.5,368.7 388.8,389.1 C387.1,409.5 391.6,420.8 382,428.8 C372.4,436.8 357.1,443.3 359,459.1 C360.9,474.9 376.3,481.5 365.8,497.4 C355.3,513.3 342.8,515.8 343.7,530 C344.6,544.2 357.9,568 357.9,568 L419,568 C419,568 513,554.7 519.8,544.5 C526.6,534.3 542,514.7 544.6,501.4 C547.2,488.1 550.3,467 546.5,447.7 C544.2,436.2 532.3,415.5 531.5,394.2 C530.5,372.9 501,363.6 494.2,373.2 Z" id="Path" fill="#ED85C3" fill-rule="nonzero"></path>
16
+ <line x1="337" y1="905.5" x2="409.6" y2="869.1" id="Path" stroke="#FEAC00" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"></line>
17
+ <path d="M1102.1,583.6 C1102.1,583.6 1078.4,544.1 1075.6,518 C1072.8,491.9 1077.1,499.1 1084.2,508.4 C1091.2,517.6 1104.8,558.6 1102.1,583.6 Z" id="Path" fill="#52CB96" fill-rule="nonzero"></path>
18
+ <path d="M1107.6,548.2 C1107.6,548.2 1122.9,511.9 1142.4,501.5 C1161.9,491.1 1170.9,486.9 1176,490.7 C1181.1,494.5 1158.6,515.1 1146.7,524 C1134.8,532.9 1107.6,548.2 1107.6,548.2 Z" id="Path" fill="#52CB96" fill-rule="nonzero"></path>
19
+ <path d="M722.9,839.6 C722.9,839.6 801.2,855.1 803.5,876.7 C805.8,898.3 725.8,1178.9 725.8,1178.9 C725.8,1178.9 748.2,1216.9 763.8,1225.1 C763.8,1225.1 779.1,1235.3 777.4,1241.5 C775.7,1247.7 756.4,1246.9 741.1,1241.5 C725.8,1236.1 692.6,1206.6 693.8,1199.5 C694.9,1192.4 699.2,1173.1 699.8,1165.5 C700.4,1157.8 707.2,966.4 733.6,932 L672.9,921.6 C672.8,921.6 672.8,854.8 722.9,839.6 Z" id="Path" fill="#FFDFD7" fill-rule="nonzero"></path>
20
+ <path d="M703.7,1173.3 C703.7,1173.3 692.6,1183.2 692.4,1199.1 C692.2,1215 692.4,1242 692.4,1242 L698,1242 L700.1,1215.5 C700.1,1215.5 710.3,1218.5 713.1,1226.8 C715.9,1235.1 725.2,1246.8 747.1,1251 C769,1255.2 781.9,1255.6 783.4,1248.7 C784.9,1241.8 780.3,1229.4 764.2,1225.2 C764.2,1225.2 736,1226.3 720.9,1208.7 C705.8,1191.1 703.7,1173.3 703.7,1173.3 Z" id="Path" fill="#37B37F" fill-rule="nonzero"></path>
21
+ <path d="M692.2,874 C692.2,874 775.5,886.3 777.7,907.8 C780,929.3 700,1202 700,1202 C700,1202 722.4,1240 738,1248.2 C738,1248.2 753.3,1258.4 751.6,1264.6 C749.9,1270.8 730.6,1270 715.3,1264.6 C700,1259.2 666.8,1229.7 668,1222.6 C669.2,1215.5 673.4,1196.2 674,1188.6 C674.6,1181 681.4,989.5 707.8,955.1 L647.1,944.7 C647.1,944.8 642.1,889.2 692.2,874 Z" id="Path" fill="#FFDFD7" fill-rule="nonzero"></path>
22
+ <path d="M742.5,749.9 C742.5,749.9 798.7,754.6 812,787.8 L736.5,787.8 C736.5,787.8 731,771.3 733.3,762.4 C735.6,753.5 742.5,749.9 742.5,749.9 Z" id="Path" fill="#FFDFD7" fill-rule="nonzero"></path>
23
+ <path d="M501.3,524.8 C501.3,524.8 559.8,594.3 581.7,640.8 C603.6,687.3 626.3,726.4 626.3,726.4 C626.3,726.4 696.6,733.8 744.2,746.2 C744.2,746.2 731.3,770.9 737,789.9 L573.8,772.9 L501.3,552.3 L501.3,528.8 L501.3,524.8 Z" id="Path" fill="#FFB3DA" fill-rule="nonzero"></path>
24
+ <path d="M463.9,515.5 C463.9,515.5 437.9,540.6 431.1,548.2 C424.3,555.8 403.9,588.3 397.5,606.4 C391.1,624.5 359.7,753.8 362,768.2 C364.3,782.6 370.3,787.9 370.3,787.9 L581.8,787.9 C581.8,787.9 570.3,715.1 562.9,693 C555.5,670.9 531.2,585.3 531.2,585.3 C531.2,585.3 514.5,532.1 497.2,521.4 L463.9,515.5 Z" id="Path" fill="#FFB3DA" fill-rule="nonzero"></path>
25
+ <line x1="451.7" y1="616.4" x2="427.9" y2="728.7" id="Path" stroke="#ED85C3" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
26
+ <line x1="535" y1="598.7" x2="576.2" y2="755.2" id="Path" stroke="#ED85C3" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
27
+ <path d="M554.6,754 C554.6,754 581.5,752.7 603.2,762.2 C625,771.8 634.4,780.1 634.4,787.8 L555.6,787.8 C555.7,787.8 546.5,775.2 554.6,754 Z" id="Path" fill="#FFDFD7" fill-rule="nonzero"></path>
28
+ <line x1="554.6" y1="754" x2="411.3" y2="726.1" id="Path" stroke="#ED85C3" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
29
+ <path d="M414.9,823.7 C414.9,823.7 402.4,841.1 402.8,865.3 C403.2,889.5 409.6,898.9 467.8,909.1 C526,919.3 644.7,949.2 644.7,949.2 C644.7,949.2 695,857.4 727.1,836.6 L414.9,823.7 Z" id="Path" fill="#37B37F" fill-rule="nonzero"></path>
30
+ <g id="Group" transform="translate(124.000000, 836.000000)" stroke="#283444" stroke-linecap="round" stroke-linejoin="round" stroke-width="7">
31
+ <line x1="111.5" y1="0.9" x2="0.1" y2="433.5" id="Path"></line>
32
+ <line x1="996.7" y1="0.9" x2="1108.1" y2="433.5" id="Path"></line>
33
+ </g>
34
+ <path d="M1022.2,516.1 C1023.7,517.6 1054.3,598.5 1063.4,635.5" id="Path" stroke="#52CB96" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
35
+ <line x1="1069.1" y1="565.7" x2="1084.1" y2="635.5" id="Path" stroke="#52CB96" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
36
+ <path d="M1119.6,487.4 C1119.6,487.4 1107.1,548.1 1103.7,571.3 C1100.3,594.5 1096.9,635.5 1096.9,635.5" id="Path" stroke="#52CB96" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
37
+ <path d="M1120.7,635.5 C1120.7,635.5 1136.3,592 1157.8,565.7" id="Path" stroke="#52CB96" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
38
+ <circle id="Oval" fill="#FFB3DA" fill-rule="nonzero" cx="1066.4" cy="548.2" r="19.1"></circle>
39
+ <circle id="Oval" fill="#FFB3DA" fill-rule="nonzero" cx="1169.4" cy="552.3" r="19.6"></circle>
40
+ <path d="M1017.3,508.1 C1017.3,508.1 993.2,501.4 993.2,486.2 C993.2,471 1006.4,483.1 1006.4,483.1 C1006.4,483.1 1018.4,495.3 1021.8,504.5 C1021.8,504.5 1023.7,475.4 1034.4,470.9 C1045.1,466.4 1049.4,476.8 1049.1,479.5 C1048.8,482.2 1048.1,488.2 1042.1,494.1 C1036.1,500 1026.1,505.6 1026.1,505.6 C1026.1,505.6 1044.1,503.6 1051.6,509.2 C1059.2,514.8 1060.3,521.1 1050.1,520.4 C1039.9,519.7 1022.1,515.2 1022.1,515.2 C1022.1,515.2 1013.9,525.6 1003.9,529.1 C993.9,532.6 989.6,524.9 992.5,521 C995.4,517 997.6,508.8 1017.3,508.1 Z" id="Path" fill="#FFC933" fill-rule="nonzero"></path>
41
+ <path d="M1123,489.9 C1120.9,491.1 1118.4,490.9 1116.5,489.4 C1108.5,483.2 1088.4,463.9 1096.9,432.9 C1096.9,432.9 1099.2,425 1103.8,425.1 C1108.5,425.2 1112.2,448.9 1112.2,448.9 C1112.2,448.9 1115.3,428.8 1120.7,425.1 C1126.1,421.4 1127.6,424 1129.2,428.5 C1130.8,433 1130.1,452.6 1130.1,452.6 C1130.1,452.6 1137.9,429.2 1142.6,425.7 C1147.3,422.2 1150.3,448.1 1148.1,455.7 C1146.1,463 1140.4,480.2 1123,489.9 Z" id="Path" fill="#FFB3DA" fill-rule="nonzero"></path>
42
+ <path d="M1049.8,590.7 C1049.8,590.7 1025,585.2 1009,571 C993,556.8 994.1,553.4 996.5,551.2 C999,548.9 1036.8,567.8 1049.8,590.7 Z" id="Path" fill="#52CB96" fill-rule="nonzero"></path>
43
+ <path d="M1131.9,608.9 C1131.9,608.9 1122.2,575.8 1127.5,560.3 C1132.8,544.8 1138.1,590 1134.7,603.2 L1131.9,608.9 Z" id="Path" fill="#52CB96" fill-rule="nonzero"></path>
44
+ <path d="M1140.6,591.8 C1140.6,591.8 1156.4,577.1 1174.9,577.9 C1193.4,578.7 1177,592.1 1169.4,593.2 C1161.7,594.3 1137.5,597.7 1137.5,597.7 L1140.6,591.8 Z" id="Path" fill="#52CB96" fill-rule="nonzero"></path>
45
+ <polygon id="Path" fill="#CED5E5" fill-rule="nonzero" points="944 679.5 699.5 679.5 712.3 492.8 956.8 492.8"></polygon>
46
+ <path d="M860.9,578 C858.6,567.5 849.3,560.1 838.6,560.1 C824.4,560.1 813.6,573 816.2,587 L849.9,770.9 L812.5,771.4 L809.8,787.8 L906.5,787.8 L860.9,578 Z M845,616.9 C839.7,617.9 834.3,612.3 832.9,604.4 C831.5,596.5 834.6,589.4 839.9,588.5 C845.2,587.5 850.6,593.1 852,601 C853.4,608.9 850.3,615.9 845,616.9 Z" id="Shape" fill="#283444" fill-rule="nonzero"></path>
47
+ <rect id="Rectangle" fill="#CED5E5" fill-rule="nonzero" x="121.5" y="787.8" width="1113.2" height="49.1"></rect>
48
+ <polygon id="Path" fill="#CED5E5" fill-rule="nonzero" points="441 1129.8 441 981.2 421.1 981.2 421.1 1129.8 334.4 1172.3 334.4 1184.2 431 1153.6 527.7 1184.2 527.7 1172.3"></polygon>
49
+ <polygon id="Path" fill="#CED5E5" fill-rule="nonzero" points="441 1126.6 491.4 1131.9 491.4 1145.3 441 1143.1"></polygon>
50
+ <circle id="Oval" fill="#283444" fill-rule="nonzero" cx="348.2" cy="1199.6" r="13.8"></circle>
51
+ <circle id="Oval" fill="#283444" fill-rule="nonzero" cx="513.9" cy="1199.6" r="13.8"></circle>
52
+ <path d="M673.4,1193.7 C673.4,1193.7 662.3,1203.6 662.1,1219.5 C661.9,1235.4 662.1,1262.4 662.1,1262.4 L667.7,1262.4 L669.8,1235.9 C669.8,1235.9 680,1238.9 682.8,1247.2 C685.6,1255.5 694.9,1267.2 716.8,1271.4 C738.7,1275.6 751.6,1276 753.1,1269.1 C754.6,1262.2 750,1249.8 733.9,1245.6 C733.9,1245.6 705.7,1246.7 690.6,1229.1 C675.5,1211.5 673.4,1193.7 673.4,1193.7 Z" id="Path" fill="#37B37F" fill-rule="nonzero"></path>
53
+ <path d="M1151.5,635.5 L1086.9,635.5 L1022.3,635.5 L1043.4,672.5 C1051.3,686.4 1050.7,703.6 1041.8,716.9 L1041.8,716.9 C1032.6,730.8 1031.6,748.6 1039.3,763.3 L1039.3,763.3 C1047.2,778.3 1062.7,787.7 1079.7,787.7 L1086.9,787.7 L1094.1,787.7 C1111.1,787.7 1126.6,778.3 1134.5,763.3 L1134.5,763.3 C1142.2,748.5 1141.3,730.7 1132,716.9 L1132,716.9 C1123.1,703.6 1122.5,686.4 1130.4,672.5 L1151.5,635.5 Z" id="Path" fill="#FE8163" fill-rule="nonzero"></path>
54
+ <line x1="441" y1="1129.8" x2="527.7" y2="1172.3" id="Path" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
55
+ <path d="M692.2,874 C692.2,874 775.5,886.3 777.7,907.8 C779.6,925.8 724.2,1118.7 705.9,1182" id="Path" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
56
+ <path d="M463.9,515.5 C463.9,515.5 472.6,501.1 469.2,490.6 C465.8,480 460.1,477.5 463.3,464.8 C466.5,452.1 464.9,445.1 462.3,440.3 C459.8,435.5 453.4,421.6 458.5,406.1 C463.6,390.6 491.3,388.1 506.4,394.8 C506.4,394.8 520,415 520.4,444.9 C520.8,474.8 509.4,490.3 505.1,492.9 C500.8,495.5 486.2,489.9 486.2,489.9 C486.2,489.9 492.6,515.2 497,521.5 C497.1,521.3 480.1,525.7 463.9,515.5 Z" id="Path" fill="#FFDFD7" fill-rule="nonzero"></path>
57
+ <line x1="812.5" y1="771.4" x2="873.8" y2="770.9" id="Path" stroke="#CED5E5" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
58
+ <rect id="Rectangle" stroke="#FFFFFF" stroke-width="3" fill="#CED5E5" fill-rule="nonzero" stroke-linecap="round" stroke-linejoin="round" x="672.8" y="0.1" width="259.1" height="323.2"></rect>
59
+ <rect id="Rectangle" fill="#F1F2F7" fill-rule="nonzero" x="700.6" y="27.9" width="203.5" height="267.6"></rect>
60
+ <g id="Group" transform="translate(700.000000, 181.000000)" stroke="#FFFFFF" stroke-linecap="round" stroke-linejoin="round" stroke-width="3">
61
+ <path d="M0.6,0.3 C21,0.3 21,4.3 41.3,4.3 C61.7,4.3 61.7,0.3 82,0.3 C102.4,0.3 102.4,4.3 122.7,4.3 C143.1,4.3 143.1,0.3 163.4,0.3 C183.8,0.3 183.8,4.3 204.1,4.3" id="Path"></path>
62
+ <path d="M0.6,14.8 C21,14.8 21,18.8 41.3,18.8 C61.7,18.8 61.7,14.8 82,14.8 C102.4,14.8 102.4,18.8 122.7,18.8 C143.1,18.8 143.1,14.8 163.4,14.8 C183.8,14.8 183.8,18.8 204.1,18.8" id="Path"></path>
63
+ <path d="M0.6,29.2 C21,29.2 21,33.2 41.3,33.2 C61.7,33.2 61.7,29.2 82,29.2 C102.4,29.2 102.4,33.2 122.7,33.2 C143.1,33.2 143.1,29.2 163.4,29.2 C183.8,29.2 183.8,33.2 204.1,33.2" id="Path"></path>
64
+ <path d="M0.6,43.7 C21,43.7 21,47.7 41.3,47.7 C61.7,47.7 61.7,43.7 82,43.7 C102.4,43.7 102.4,47.7 122.7,47.7 C143.1,47.7 143.1,43.7 163.4,43.7 C183.8,43.7 183.8,47.7 204.1,47.7" id="Path"></path>
65
+ <path d="M0.6,58.2 C21,58.2 21,62.2 41.3,62.2 C61.7,62.2 61.7,58.2 82,58.2 C102.4,58.2 102.4,62.2 122.7,62.2 C143.1,62.2 143.1,58.2 163.4,58.2 C183.8,58.2 183.8,62.2 204.1,62.2" id="Path"></path>
66
+ <path d="M0.6,72.6 C21,72.6 21,76.6 41.3,76.6 C61.7,76.6 61.7,72.6 82,72.6 C102.4,72.6 102.4,76.6 122.7,76.6 C143.1,76.6 143.1,72.6 163.4,72.6 C183.8,72.6 183.8,76.6 204.1,76.6" id="Path"></path>
67
+ <path d="M0.6,87.1 C21,87.1 21,91.1 41.3,91.1 C61.7,91.1 61.7,87.1 82,87.1 C102.4,87.1 102.4,91.1 122.7,91.1 C143.1,91.1 143.1,87.1 163.4,87.1 C183.8,87.1 183.8,91.1 204.1,91.1" id="Path"></path>
68
+ <path d="M0.6,101.5 C21,101.5 21,105.5 41.3,105.5 C61.7,105.5 61.7,101.5 82,101.5 C102.4,101.5 102.4,105.5 122.7,105.5 C143.1,105.5 143.1,101.5 163.4,101.5 C183.8,101.5 183.8,105.5 204.1,105.5" id="Path"></path>
69
+ </g>
70
+ <circle id="Oval" fill="#FFFFFF" fill-rule="nonzero" cx="832" cy="79.8" r="17"></circle>
71
+ </g>
72
+ </g>
73
+ </svg>
@@ -0,0 +1,89 @@
1
+ <svg width="1543px" height="1282px" viewBox="0 0 1543 1282" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <!-- Generator: Sketch 63.1 (92452) - https://sketch.com -->
3
+ <title>Page 1</title>
4
+ <desc>Created with Sketch.</desc>
5
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
6
+ <g id="design-team-(1)">
7
+ <rect id="Rectangle" fill="#CED5E5" fill-rule="nonzero" x="0.3" y="0.6" width="1542.6" height="57.8" rx="3"></rect>
8
+ <path d="M405.6,63.1 L405.6,859.1 L1484.7,859.1 C1516.6,859.1 1542.5,833.2 1542.5,801.3 L1542.5,63.1 L405.6,63.1 Z" id="Path" fill="#F1F2F7" fill-rule="nonzero"></path>
9
+ <path d="M0.3,64.4 L0.3,802.5 L0.3,802.5 C0.3,834.4 26.2,860.3 58.1,860.3 L400,860.3 L400,64.3 L0.3,64.3 L0.3,64.4 Z" id="Path" fill="#CED5E5" fill-rule="nonzero"></path>
10
+ <g id="Group" transform="translate(590.000000, 310.000000)" fill="#F8972D" fill-rule="nonzero">
11
+ <path d="M104.5,135.8 L104.5,135.8 C161.7,135.8 208.1,182.2 208.1,239.4 L208.1,300.8 L0.9,300.8 L0.9,239.4 C0.9,182.2 47.3,135.8 104.5,135.8 Z" id="Path"></path>
12
+ <circle id="Oval" cx="104.5" cy="53.8" r="53.8"></circle>
13
+ </g>
14
+ <path d="M1248.1,610.9 L588.2,610.9 C565.7,610.9 547.4,592.6 547.4,570.1 L547.4,258.3 C547.4,235.8 565.7,217.5 588.2,217.5 L1248.1,217.5 C1270.6,217.5 1288.9,235.8 1288.9,258.3 L1288.9,570 C1288.9,592.6 1270.6,610.9 1248.1,610.9 Z" id="Path" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
15
+ <line x1="22.1" y1="1181.1" x2="331.9" y2="1181.1" id="Path" stroke="#CED5E5" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
16
+ <line x1="736.7" y1="1181.1" x2="1514.8" y2="1181.1" id="Path" stroke="#CED5E5" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
17
+ <polygon id="Path" fill="#FFDFD7" fill-rule="nonzero" points="537.1 902.6 588.9 1197 621 1189.8 605.9 884.4"></polygon>
18
+ <path d="M627,492.1 L655.8,446.2 C655.8,446.2 663.5,444.1 660.8,453.9 C658.2,463.7 653.9,471.9 653.9,471.9 C653.9,471.9 667.1,481.1 668.7,489.3 C670.3,497.5 649.5,504.3 649.5,504.3 L627,492.1 Z" id="Path" fill="#FFDFD7" fill-rule="nonzero"></path>
19
+ <path d="M507.8,602.2 C507.8,602.2 593.2,543.6 626,490.3 L651.9,504.2 C651.9,504.2 584.7,615.9 530.1,648.7 L505,621.6 L507.8,602.2 Z" id="Path" fill="#008AFF" fill-rule="nonzero"></path>
20
+ <path d="M130.1,1020.3 C130.1,1020.3 76.8,978.3 91.5,930.7 C106.2,883.1 147.6,870.6 88.9,766.3 C30.2,662 102.8,589.4 158.4,590.6 C214,591.7 226.4,690.4 201.5,742.5 C176.6,794.6 252.5,795.8 253.1,860.4 C253.7,925 220.8,955.6 210.6,1020.3 L130.1,1020.3 L130.1,1020.3 Z" id="Path" fill="#51CB96" fill-rule="nonzero"></path>
21
+ <path d="M1225.9,330.3 L902.7,330.3 C895.8,330.3 890.1,324.7 890.1,317.7 L890.1,317.7 C890.1,310.8 895.7,305.1 902.7,305.1 L1225.9,305.1 C1232.8,305.1 1238.5,310.7 1238.5,317.7 L1238.5,317.7 C1238.4,324.6 1232.8,330.3 1225.9,330.3 Z" id="Path" fill="#CED5E5" fill-rule="nonzero"></path>
22
+ <path d="M1225.9,384.2 L902.7,384.2 C895.8,384.2 890.1,378.6 890.1,371.6 L890.1,371.6 C890.1,364.7 895.7,359 902.7,359 L1225.9,359 C1232.8,359 1238.5,364.6 1238.5,371.6 L1238.5,371.6 C1238.4,378.6 1232.8,384.2 1225.9,384.2 Z" id="Path" fill="#CED5E5" fill-rule="nonzero"></path>
23
+ <path d="M1225.9,438.2 L902.7,438.2 C895.8,438.2 890.1,432.6 890.1,425.6 L890.1,425.6 C890.1,418.7 895.7,413 902.7,413 L1225.9,413 C1232.8,413 1238.5,418.6 1238.5,425.6 L1238.5,425.6 C1238.4,432.6 1232.8,438.2 1225.9,438.2 Z" id="Path" fill="#CED5E5" fill-rule="nonzero"></path>
24
+ <path d="M1225.9,492.2 L902.7,492.2 C895.8,492.2 890.1,486.6 890.1,479.6 L890.1,479.6 C890.1,472.7 895.7,467 902.7,467 L1225.9,467 C1232.8,467 1238.5,472.6 1238.5,479.6 L1238.5,479.6 C1238.4,486.6 1232.8,492.2 1225.9,492.2 Z" id="Path" fill="#CED5E5" fill-rule="nonzero"></path>
25
+ <path d="M1225.9,546.2 L902.7,546.2 C895.8,546.2 890.1,540.6 890.1,533.6 L890.1,533.6 C890.1,526.7 895.7,521 902.7,521 L1225.9,521 C1232.8,521 1238.5,526.6 1238.5,533.6 L1238.5,533.6 C1238.4,540.6 1232.8,546.2 1225.9,546.2 Z" id="Path" fill="#CED5E5" fill-rule="nonzero"></path>
26
+ <path d="M967.1,727 C967.1,727 964.3,718.2 971.6,711.1 C978.9,703.9 985.4,697.7 998.9,690.2 L1032.2,678.8 L1046.9,706.5 L967.1,727 Z" id="Path" fill="#FCDD8B" fill-rule="nonzero"></path>
27
+ <g id="Group" transform="translate(948.000000, 284.000000)" fill="#283444" fill-rule="nonzero">
28
+ <path d="M12.8,997.4 L12.8,997.4 C5.9,997.4 0.4,991.7 0.6,984.8 L31.6,12.5 C31.8,5.9 37.2,0.7 43.8,0.7 L43.8,0.7 C50.7,0.7 56.2,6.4 56,13.3 L25,985.6 C24.7,992.2 19.3,997.4 12.8,997.4 Z" id="Path"></path>
29
+ <path d="M267.2,997.4 L267.2,997.4 C274.1,997.4 279.6,991.7 279.4,984.8 L248.4,12.5 C248.2,5.9 242.8,0.7 236.2,0.7 L236.2,0.7 C229.3,0.7 223.8,6.4 224,13.3 L255,985.6 C255.2,992.2 260.6,997.4 267.2,997.4 Z" id="Path"></path>
30
+ <rect id="Rectangle" x="44.4" y="17.7" width="190.5" height="16.4"></rect>
31
+ <rect id="Rectangle" x="40.8" y="153.6" width="197.7" height="16.4"></rect>
32
+ <rect id="Rectangle" x="33.8" y="289.5" width="211.7" height="16.4"></rect>
33
+ <rect id="Rectangle" x="32.5" y="425.4" width="214.3" height="16.4"></rect>
34
+ <rect id="Rectangle" x="26.1" y="561.2" width="227.1" height="16.4"></rect>
35
+ <rect id="Rectangle" x="22.3" y="697.1" width="234.7" height="16.4"></rect>
36
+ <rect id="Rectangle" x="17.4" y="833" width="244.5" height="16.4"></rect>
37
+ </g>
38
+ <polygon id="Path" fill="#FFC933" fill-rule="nonzero" points="606 869.7 630.4 1150.1 569.6 1154.1 524.4 880"></polygon>
39
+ <polygon id="Path" fill="#FFDFD7" fill-rule="nonzero" points="481.3 906.7 501.5 1213.3 535.1 1209.5 553.5 895.8"></polygon>
40
+ <polygon id="Path" fill="#FFC933" fill-rule="nonzero" points="468.5 884.7 485.9 1158 549.5 1155.2 554.7 867.1"></polygon>
41
+ <polygon id="Path" fill="#FFC933" fill-rule="nonzero" points="481.3 1158 553.5 1154.1 553.5 1170.9 483.6 1174.6"></polygon>
42
+ <path d="M498.3,1192.3 L495.7,1228.8 L587.4,1233.6 C587.4,1233.6 567.5,1209 534.6,1203.2 L537.7,1187.1 L498.3,1192.3 Z" id="Path" fill="#283444" fill-rule="nonzero"></path>
43
+ <path d="M485.9,610.9 C485.9,610.9 463.3,636.6 461.5,667.6 C459.7,698.6 458.1,885.5 458.1,885.5 C458.1,885.5 597.4,880.9 612,866.3 C612,866.3 564.4,714.3 553.5,676.1 C542.6,637.9 511.4,617 511.4,617 L485.9,610.9 Z" id="Path" fill="#008AFF" fill-rule="nonzero"></path>
44
+ <path d="M490.6,587.6 L485.9,610.9 C485.9,610.9 494.8,618.6 511.4,617 L507.4,591 C507.4,590.9 501.4,580.9 490.6,587.6 Z" id="Path" fill="#FFDFD7" fill-rule="nonzero"></path>
45
+ <path d="M505,500.8 C505,500.8 532.9,567.8 519.6,584.8 C506.2,601.9 472.3,577.6 472.3,577.6 C472.3,577.6 422.5,549.7 428.6,515.7 C434.7,481.7 497,479.2 505,500.8 Z" id="Path" fill="#FFDFD7" fill-rule="nonzero"></path>
46
+ <polygon id="Path" fill="#FFC933" fill-rule="nonzero" points="566.3 1153.1 633.2 1148.5 633.8 1165.6 568.3 1169"></polygon>
47
+ <path d="M587.5,1188.8 L587.5,1224.4 L676.8,1222.8 C676.8,1222.8 655.8,1200.3 623.5,1196.9 L625.4,1181.1 L587.5,1188.8 Z" id="Path" fill="#283444" fill-rule="nonzero"></path>
48
+ <path d="M502.4,496.5 C502.4,496.5 515.9,478.6 498.7,471.7 C481.5,464.8 471.4,480.2 471.4,480.2 C471.4,480.2 464.1,467.7 449.1,473.7 C434.1,479.8 438.6,491.1 438.6,491.1 C438.6,491.1 426.5,485.3 418.8,497.9 C411.1,510.4 418,520.3 424.9,522.7 C424.9,522.7 410.1,530.6 421.7,548.2 C431.3,562.9 449.1,585.4 482.7,584 C487.3,583.8 483.3,562 480.3,550.5 C477.4,539 476,534.6 479,528.6 C481.1,524.4 483.6,524 485.9,524.4 C492.1,525.4 496,544 496,544 L501.9,538.1 C501.9,538.1 491.5,515.1 494.4,505.3 C496.7,502.5 499.4,499.6 502.4,496.5 Z" id="Path" fill="#283444" fill-rule="nonzero"></path>
49
+ <polygon id="Path" fill="#008AFF" fill-rule="nonzero" points="507.4 676.8 490 914.4 455.6 914.4 461.6 667.5"></polygon>
50
+ <path d="M457.2,914.4 C457.2,914.4 450.5,956.7 452.3,965.6 C454.1,974.5 460,983.6 466.7,984.6 C473.4,985.6 483.2,984.7 483.8,978 C484.7,967.7 484.5,939 484.5,939 C484.5,939 487.5,965 491.6,964.6 C495.9,964.2 493.6,944.1 492.4,931.7 C491.2,919.4 488.2,914.3 488.2,914.3 L457.2,914.3 L457.2,914.4 Z" id="Path" fill="#FFDFD7" fill-rule="nonzero"></path>
51
+ <path d="M507.4,676.8 L492.2,883.8 C492.2,883.8 598.4,878.8 612,866.2" id="Path" stroke="#027FE9" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
52
+ <path d="M537.7,643.7 C537.7,643.7 529.2,631.5 511.4,617 C511.4,617 499.3,620.4 485.9,610.9" id="Path" stroke="#027FE9" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
53
+ <line x1="552.1" y1="1048.1" x2="554.7" y2="925.3" id="Path" stroke="#FFBB23" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
54
+ <line x1="481.3" y1="1158" x2="553.5" y2="1154.1" id="Path" stroke="#FFBB23" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
55
+ <line x1="566.3" y1="1153.1" x2="633.2" y2="1148.5" id="Path" stroke="#FFBB23" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
56
+ <polyline id="Path" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" points="163.6 1012.5 186.5 875.8 136.3 732.3 144.8 654.6"></polyline>
57
+ <line x1="174.1" y1="949.7" x2="140.6" y2="910.3" id="Path" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
58
+ <line x1="186.5" y1="875.8" x2="213.7" y2="841.7" id="Path" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
59
+ <line x1="136.3" y1="732.3" x2="106.6" y2="703.1" id="Path" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
60
+ <path d="M229.6,1057.7 L247.7,1011.8 L92.1,1011.8 L110.2,1057.7 L90.8,1106.3 C83.8,1123.8 85.9,1143.6 96.3,1159.3 L96.3,1159.3 C105,1172.3 119.6,1180.2 135.3,1180.2 L204.5,1180.2 C220.2,1180.2 234.8,1172.4 243.5,1159.3 L243.5,1159.3 C254,1143.6 256,1123.8 249,1106.3 L229.6,1057.7 Z" id="Path" fill="#C7C7C7" fill-rule="nonzero"></path>
61
+ <line x1="150.1" y1="771.5" x2="169" y2="732.3" id="Path" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
62
+ <circle id="Oval" fill="#FFFFFF" fill-rule="nonzero" cx="634.7" cy="709.4" r="35"></circle>
63
+ <circle id="Oval" fill="#FFFFFF" fill-rule="nonzero" cx="759.7" cy="709.4" r="35"></circle>
64
+ <circle id="Oval" fill="#FFFFFF" fill-rule="nonzero" cx="884.7" cy="709.4" r="35"></circle>
65
+ <rect id="Rectangle" fill="#CED5E5" fill-rule="nonzero" x="1501.7" y="196" width="15" height="513.4"></rect>
66
+ <g id="Group" transform="translate(1502.000000, 175.000000)" fill="#CED5E5" fill-rule="nonzero">
67
+ <path d="M6.34433261,0.755395683 L0.180773222,12.7697842 C-0.332856727,13.7769784 0.309180709,15 1.33644061,15 L13.6635594,15 C14.6908193,15 15.3328567,13.7769784 14.8192268,12.7697842 L8.65566739,0.755395683 C8.14203744,-0.251798561 6.85796256,-0.251798561 6.34433261,0.755395683 Z" id="Path"></path>
68
+ <path d="M8.65566739,555.244604 L14.8192268,543.230216 C15.3328567,542.223022 14.6908193,541 13.6635594,541 L1.33644061,541 C0.309180709,541 -0.332856727,542.223022 0.180773222,543.230216 L6.34433261,555.244604 C6.85796256,556.251799 8.14203744,556.251799 8.65566739,555.244604 Z" id="Path"></path>
69
+ </g>
70
+ <path d="M873,192.1 C873,192.1 860.1,174.1 851.6,169.7 C841.8,164.6 834.5,157.1 822.9,158 C816.5,158.5 822.3,172.4 833.3,185.8 C842.4,196.8 855.6,207.4 862.4,209.8 C877.3,214.9 873,192.1 873,192.1 Z" id="Path" fill="#FFDFD7" fill-rule="nonzero"></path>
71
+ <polygon id="Path" fill="#292A29" fill-rule="nonzero" points="1161.2 484.5 1164.5 819.6 1131.5 819.6 1077.1 508.3 1153.8 480.6"></polygon>
72
+ <path d="M1079.3,845.2 C1079.3,845.2 1080.8,837.2 1091.1,833.3 C1101.3,829.4 1114.7,822 1131.6,819.6 L1164.5,819.6 L1167.1,845.3 L1079.3,845.3 L1079.3,845.2 Z" id="Path" fill="#FCDD8B" fill-rule="nonzero"></path>
73
+ <path d="M1027.7,465.7 C1027.7,465.7 919.9,537.9 908.6,557.2 C899.5,572.7 998.8,690.1 998.8,690.1 L1032.1,678.7 L970.7,573.4 C970.7,573.4 1105,519.7 1149.8,486.7 L1027.7,465.7 Z" id="Path" fill="#363736" fill-rule="nonzero"></path>
74
+ <path d="M1064.9,155.3 C1064.9,155.3 1052.6,194 1054.3,218.2 C1056.1,242.4 1089.8,220 1100.8,211.2 C1111.9,202.4 1110.1,160.9 1110.1,160.9 C1110.1,160.9 1094.3,133.4 1064.9,155.3 Z" id="Path" fill="#FFDFD7" fill-rule="nonzero"></path>
75
+ <polygon id="Path" fill="#FFDFD7" fill-rule="nonzero" points="1083.3 220 1080.4 255.8 1096.4 258.5 1106.5 255.8 1098.2 207.3"></polygon>
76
+ <path d="M1062.5,161 C1062.5,161 1055.4,150.2 1072.7,138.4 C1090,126.6 1120.8,132.1 1139.4,156.8 C1158,181.5 1160.8,170.2 1182.4,186 C1204,201.8 1230.4,228.3 1213.3,252 C1198.9,272.1 1165,279.7 1132.3,251.6 C1102.3,225.8 1097.7,216.5 1086.4,182.8 C1080.8,166.1 1075.7,169 1062.5,161 Z" id="Path" fill="#272626" fill-rule="nonzero"></path>
77
+ <path d="M1043.9,315 L1022.5,463.9 C1022.5,463.9 1099.9,493.2 1164.5,485.8 C1164.5,485.8 1151.5,321.5 1106.1,253.3 C1106.1,253.3 1094.5,259.8 1080.4,254.1 C1080.4,254 1057.5,281.1 1043.9,315 Z" id="Path" fill="#FFFFFF" fill-rule="nonzero"></path>
78
+ <path d="M1093.5,280.4 C1093.5,280.4 1012.9,265 979.8,253.2 C961.4,246.6 877.2,189.4 877.2,189.4 C877.2,189.4 861.7,196.5 861.7,216.5 L946.5,284.7 L1064,334.3 L1087.1,307.3 L1093.5,280.4 Z" id="Path" fill="#FFFFFF" fill-rule="nonzero"></path>
79
+ <path d="M324.7,209.7 L75.5,209.7 C67.1,209.7 60.2,202.9 60.2,194.4 L60.2,194.4 C60.2,186 67,179.1 75.5,179.1 L324.8,179.1 C333.2,179.1 340.1,185.9 340.1,194.4 L340.1,194.4 C340,202.9 333.2,209.7 324.7,209.7 Z" id="Path" fill="#FFFFFF" fill-rule="nonzero"></path>
80
+ <path d="M324.7,300 L75.5,300 C67.1,300 60.2,293.2 60.2,284.7 L60.2,284.7 C60.2,276.3 67,269.4 75.5,269.4 L324.8,269.4 C333.2,269.4 340.1,276.2 340.1,284.7 L340.1,284.7 C340,293.2 333.2,300 324.7,300 Z" id="Path" fill="#FFFFFF" fill-rule="nonzero"></path>
81
+ <path d="M324.7,390.2 L75.5,390.2 C67.1,390.2 60.2,383.4 60.2,374.9 L60.2,374.9 C60.2,366.5 67,359.6 75.5,359.6 L324.8,359.6 C333.2,359.6 340.1,366.4 340.1,374.9 L340.1,374.9 C340,383.4 333.2,390.2 324.7,390.2 Z" id="Path" fill="#FFFFFF" fill-rule="nonzero"></path>
82
+ <line x1="842.1" y1="217.5" x2="842.1" y2="610.9" id="Path" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
83
+ <path d="M1120.8,280.8 L1160,353.9 C1160,353.9 1162.4,320.2 1172,287.8 C1172,287.8 1174.2,290.3 1181.2,292 C1188.2,293.7 1193.5,292.9 1193.5,292.9 C1193.5,292.9 1193.9,378.7 1182.9,399.2 C1179.5,405.6 1164.5,401.1 1152.5,396.2 C1143.7,392.6 1136.4,388.7 1136.4,388.7 L1121.3,284.7 L1120.8,280.8 Z" id="Path" fill="#FFFFFF" fill-rule="nonzero"></path>
84
+ <path d="M1152.5,396.2 C1148.8,375.6 1147.8,374 1144.9,361.3" id="Path" stroke="#F1F2F7" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
85
+ <path d="M1172.4,288.4 C1172.4,288.4 1171.7,282.6 1177,280.9 C1182.3,279.2 1198.6,281.5 1199.6,287.1 C1200.6,292.7 1196.5,294.4 1195.4,292.3 C1194.3,290.2 1192.6,293 1192.6,293 C1192.6,293 1177.6,297.1 1172.4,288.4 Z" id="Path" fill="#FFDFD7" fill-rule="nonzero"></path>
86
+ </g>
87
+ <circle id="Oval" stroke="#979797" fill="#FFFFFF" cx="36" cy="32" r="10"></circle>
88
+ </g>
89
+ </svg>
@@ -0,0 +1,39 @@
1
+ <svg width="1821px" height="1321px" viewBox="0 0 1821 1321" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <!-- Generator: Sketch 63.1 (92452) - https://sketch.com -->
3
+ <title>big-launch</title>
4
+ <desc>Created with Sketch.</desc>
5
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
6
+ <g id="big-launch">
7
+ <path d="M246.2,441.3 C218,245.6 373.2,71.1 581.8,143.7 C802.8,220.6 786.1,395.2 885.7,451.9 C985.2,508.6 1358.7,313.6 1550.1,486.2 C1658.3,583.7 1662.7,666.2 1595.5,778.7 C1547.9,858.4 1414.2,989.7 1085.3,989.7 C849.9,989.7 782.1,1094.8 606.8,1229.9 C380,1404.6 241.7,1296.7 323.3,1012.5 C400,745.2 289.1,739.9 246.2,441.3 Z" id="Path" fill="#F1F2F7" fill-rule="nonzero"></path>
8
+ <path d="M908.8,680.8 C908.8,680.8 739.7,664.2 700,672.2 C660.3,680.2 765.3,929.6 765.3,929.6 L817.6,912.6 L774.5,745.1 C774.5,745.1 881.6,791.3 990.2,778.6 C990.2,778.6 989.4,705.7 908.8,680.8 Z" id="Path" fill="#37B37F" fill-rule="nonzero"></path>
9
+ <path d="M1254.5,1064 L1298.4,1069.7 C1298.4,1069.7 1310.1,1122.2 1289.3,1158 C1268.5,1193.8 1244.3,1211 1216.4,1218 L1187.7,1172.8 L1254.5,1064 Z" id="Path" fill="#283444" fill-rule="nonzero"></path>
10
+ <path d="M690.5,755.3 C742.8,678 745.6,616.7 745.7,610 C753.5,615.8 757.3,619.2 757.3,619.2 L1259.5,1032.6 C1281.6,1189.4 1146.4,1212.7 1146.4,1212.7 C1146.4,1212.7 765.5,1012.6 562.5,839.1 C570.2,838.6 638.3,832.4 690.5,755.3 Z" id="Path" fill="#FFFFFF" fill-rule="nonzero"></path>
11
+ <path d="M1235.4,1012.7 L1259.5,1032.5 C1281.6,1189.3 1146.4,1212.6 1146.4,1212.6 C1146.4,1212.6 1135.5,1206.9 1116.3,1196.5" id="Path" stroke="#F1F2F7" stroke-width="3"></path>
12
+ <path d="M345.3,481 C576.9,497.5 707.8,581.8 745.7,610 C745.5,616.7 742.7,678 690.5,755.3 C638.3,832.5 570.2,838.6 562.4,839.1 C562.3,839 562.1,838.9 562,838.7 C359,665.1 345.3,481 345.3,481 Z" id="Path" fill="#FE8163" fill-rule="nonzero"></path>
13
+ <polygon id="Path" fill="#FEAC00" fill-rule="nonzero" points="1399.5 1016.6 1394.9 1001.8 1184.7 814.7 986.3 807.7 1023.2 840.1"></polygon>
14
+ <polygon id="Path" fill="#FFDFD7" fill-rule="nonzero" points="813.1 939 820.2 975.7 795.3 983.2 777.2 943.5"></polygon>
15
+ <polygon id="Path" fill="#FEAC00" fill-rule="nonzero" points="1180.2 1314.3 1175.6 1320.1 910.5 1201.9 816.1 1020.7 861.3 1044"></polygon>
16
+ <path d="M1399.5,1016.6 L1186,832 L1023.3,840.1 L1235.7,1012.4 C1235.7,1012.3 1291.1,994.6 1399.5,1016.6 Z" id="Path" fill="#FFC933" fill-rule="nonzero"></path>
17
+ <path d="M1112.4,1191 C1112.4,1191 1140.9,1266.8 1180.2,1314.3 L922.4,1197.3 L861.3,1044 L1112.4,1191 Z" id="Path" fill="#FFC933" fill-rule="nonzero"></path>
18
+ <polygon id="Path" fill="#FEAC00" fill-rule="nonzero" points="1246.1 1223.8 1239.8 1230.9 1016.5 1081.6 912.6 990.2 946.1 955.8"></polygon>
19
+ <path d="M1171.6,1109.9 C1171.6,1109.9 1221.7,1171.4 1246.1,1223.8 L1025.2,1072.4 L946,955.9 L1171.6,1109.9 Z" id="Path" fill="#FFC933" fill-rule="nonzero"></path>
20
+ <path d="M990.2,778.6 C990.2,778.6 978.1,796.8 784.4,784.6 C784.4,784.6 815,894 825,946.7 L756.8,961.7 C756.8,961.7 697,780.6 697.199001,756 C697.4,731.4 715.8,721.9 764.9,709.1 C814,696.3 906.3,681.4 906.3,681.4 C906.3,681.4 967.2,696.2 980.2,722.6 C993.1,749.1 990.2,778.6 990.2,778.6 Z" id="Path" fill="#37B37F" fill-rule="nonzero"></path>
21
+ <polygon id="Path" fill="#FFDFD7" fill-rule="nonzero" points="1085.7 513.9 1087.4 482.9 1071.7 483 1057 508.3"></polygon>
22
+ <path d="M1087.1,489 C1087.1,489 1113.7,480.7 1126.1,448.5 C1138.6,416.3 1108.5,396.5 1085.9,402.1 C1063.3,407.7 1045,457.7 1043.4,463.9 C1041.8,470.2 1031,498.5 1087.1,489 Z" id="Path" fill="#FFDFD7" fill-rule="nonzero"></path>
23
+ <path d="M1070.6,412.4 C1070.6,412.4 1068.8,394.7 1097.7,390.8 C1126.5,386.9 1137.4,434.7 1172.2,446.1 C1206.9,457.5 1240.3,455.3 1267.4,480.6 C1294.5,505.8 1297.6,533.3 1296.7,556.8 C1295.9,580.3 1274.4,561.4 1266.7,583.3 C1259,605.2 1237,593.7 1232.7,602.4 C1228.4,611.1 1204.8,652.1 1190.3,625.9 C1175.8,599.7 1176.5,573.8 1144.9,559.8 C1121.9,549.7 1096.2,514.9 1087.2,489 C1083.8,479.2 1086.1,469.2 1087,464.4 C1090.3,447.6 1092.9,435.8 1088.8,426.6 C1086.2,421.1 1083.5,416 1070.6,412.4 Z" id="Path" fill="#4488FB" fill-rule="nonzero"></path>
24
+ <polygon id="Path" fill="#FFDFD7" fill-rule="nonzero" points="943.2 439.9 929.9 333.6 950.1 327.3 974.9 421 1017.2 533 981.4 569.3"></polygon>
25
+ <path d="M1028.4,526.1 C1028.4,526.1 999.1,470.5 977.5,420.9 C977.5,420.9 967.9,432.7 940.5,440.6 L975.2,576 L1028.4,526.1 Z" id="Path" fill="#FFF9B3" fill-rule="nonzero"></path>
26
+ <path d="M820.2,975.7 L833.8,1001.5 L752.6,1033 C752.6,1033 747.8,1018.9 795.3,983.2 L820.2,975.7 Z" id="Path" fill="#4488FB" fill-rule="nonzero"></path>
27
+ <path d="M752.7,650.1 C752.7,650.1 733.9,636.8 723.9,633.4 C713.9,630 730.6,647.1 730.6,647.1 C730.6,647.1 708.7,647.1 696.1,649.6 C683.5,652.1 698.2,680.2 708.4,681.4 C718.6,682.5 759.1,670.5 759.1,670.5 C759.1,670.5 766.9,656.1 752.7,650.1 Z" id="Path" fill="#FFDFD7" fill-rule="nonzero"></path>
28
+ <path d="M950.1,327.3 C950.1,327.3 961.7,312.7 962.7,307.9 C963.6,303.1 958,306.2 952.1,311.8 C952.1,311.8 957.7,285.2 955.3,281.7 C952.9,278.2 932.7,273.8 929.1,292.2 C927,302.9 929.8,333.6 929.8,333.6 C929.8,333.6 945.4,340 950.1,327.3 Z" id="Path" fill="#FFDFD7" fill-rule="nonzero"></path>
29
+ <line x1="845.8" y1="692.1" x2="906.3" y2="681.5" id="Path" stroke="#52CB96" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></line>
30
+ <polygon id="Path" fill="#FFDFD7" fill-rule="nonzero" points="891 660 759.1 670.6 752.7 650.1 878.8 623.8 967.9 574.6 996.4 607.2"></polygon>
31
+ <path d="M1087.2,532.4 C1087.2,532.4 1029.3,731.6 991,781.3 C991,781.3 982.6,739.8 903.5,679.3 C903.5,679.3 961.7,572 1023.4,526.8 C1085,481.7 1091.3,518.7 1087.2,532.4 Z" id="Path" fill="#FFF9B3" fill-rule="nonzero"></path>
32
+ <path d="M983.8,562.8 C983.8,562.8 907.8,608.1 876.1,620.8 C876.1,620.8 885.7,649.2 887.1,666.8 L936.2,647.9 L975.9,590.6 L983.8,562.8 Z" id="Path" fill="#FFF9B3" fill-rule="nonzero"></path>
33
+ <path d="M1035.4,518.5 C1035.4,518.5 1006.2,534.8 983.8,562.7 C983.8,562.7 936,591.1 912.2,603.2 C888.3,615.3 876.1,620.7 876.1,620.7 C876.1,620.7 882.3,635.9 887.1,666.7 L962.8,637.2" id="Path" stroke="#FBF17E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
34
+ <path d="M557.3,309.3 C537,276.5 496.9,258.8 462,258 C411.1,256.8 400.5,293.3 368.8,284.2 C330.6,273.2 337.9,217.7 291.3,202.6 C274.9,197.3 248.3,195 228.5,207.8 C199.3,226.7 196.6,240 182.6,251.8 C179.2,254.7 172.4,259.9 163.1,263.4 C143.1,270.8 123.8,264.6 113.4,261.2 C87.8,252.7 88.4,242.6 70,239.4 C54.9,236.8 35.9,240.4 22.4,251.8 C-1.9,272.3 0.4,310.4 1.5,327.2 C1.7,330.6 2,333.4 2.3,335.3 L569.4,335.3 C566.1,323.6 559.6,313 557.3,309.3 Z" id="Path" fill="#CED5E5" fill-rule="nonzero"></path>
35
+ <circle id="Oval" fill="#FFC933" fill-rule="nonzero" cx="1223.5" cy="142.9" r="142.9"></circle>
36
+ <path d="M1811.8,747.6 C1807.9,735.9 1792.2,690.5 1746.2,664.2 C1687.3,630.5 1623.9,653.8 1620.1,655.3 C1548.2,683 1534.5,758.2 1490.9,753.3 C1465.5,750.5 1465.6,724.4 1431.7,716.4 C1395.7,707.9 1349.8,726.4 1331.1,760.3 C1322.5,775.9 1320.1,794 1321.5,810 L1820.3,810 C1821.6,788.9 1817.8,765.9 1811.8,747.6 Z" id="Path" fill="#CED5E5" fill-rule="nonzero"></path>
37
+ </g>
38
+ </g>
39
+ </svg>
@@ -0,0 +1 @@
1
+ <svg id="aa6a79dc-91b4-4c18-945f-8bd34f390323" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="862.67369" height="714.50889" viewBox="0 0 862.67369 714.50889"><title>decide</title><circle cx="161.31733" cy="27.19468" r="18.13944" fill="#f1f1f1"/><circle cx="244.91174" cy="66.53322" r="11.44272" fill="#f1f1f1"/><circle cx="322.35951" cy="100.95445" r="8.1723" fill="#f1f1f1"/><circle cx="706.7909" cy="27.19468" r="18.13944" fill="#f1f1f1"/><circle cx="623.19648" cy="66.53322" r="11.44272" fill="#f1f1f1"/><circle cx="545.74871" cy="100.95445" r="8.1723" fill="#f1f1f1"/><ellipse cx="442.40081" cy="642.71007" rx="97.11704" ry="11.06397" fill="#f1f1f1"/><polygon points="787.888 581.282 131.511 576.859 138.135 127.046 794.525 136.712 787.888 581.282" fill="#f1f1f1"/><line x1="1.07147" y1="712.78186" x2="861.60222" y2="712.78186" fill="none" stroke="#3f3d56" stroke-miterlimit="10" stroke-width="2"/><line x1="1.07147" y1="1" x2="861.60222" y2="1" fill="none" stroke="#3f3d56" stroke-miterlimit="10" stroke-width="2"/><polygon points="861.674 2.447 539.446 132.578 539.446 576.673 861.674 713 861.674 2.447" fill="#3f3d56" stroke="#3f3d56" stroke-miterlimit="10" stroke-width="2"/><line x1="566.29866" y1="481.65731" x2="797.64134" y2="535.36187" fill="none" stroke="#fff" stroke-miterlimit="10" stroke-width="2"/><line x1="566.29866" y1="446.5428" x2="797.64134" y2="481.65731" fill="none" stroke="#fff" stroke-miterlimit="10" stroke-width="2"/><line x1="566.29866" y1="409.36273" x2="797.64134" y2="434.14944" fill="none" stroke="#fff" stroke-miterlimit="10" stroke-width="2"/><polygon points="768.724 283.285 768.724 336.989 582.823 324.596 582.823 283.285 768.724 283.285" fill="#0c66ff"/><polygon points="768.724 283.285 768.724 336.989 582.823 324.596 582.823 322.53 764.592 332.858 764.592 283.285 768.724 283.285" opacity="0.2"/><polygon points="1 2.447 323.227 132.578 323.227 576.673 1 713 1 2.447" fill="#3f3d56" stroke="#3f3d56" stroke-miterlimit="10" stroke-width="2"/><line x1="296.37504" y1="481.65731" x2="65.03235" y2="535.36187" fill="none" stroke="#fff" stroke-miterlimit="10" stroke-width="2"/><line x1="296.37504" y1="446.5428" x2="65.03235" y2="481.65731" fill="none" stroke="#fff" stroke-miterlimit="10" stroke-width="2"/><line x1="296.37504" y1="409.36273" x2="65.03235" y2="434.14944" fill="none" stroke="#fff" stroke-miterlimit="10" stroke-width="2"/><polygon points="93.95 283.285 93.95 336.989 279.851 324.596 279.851 283.285 93.95 283.285" fill="#0c66ff"/><polygon points="93.95 283.285 93.95 336.989 279.851 324.596 279.851 322.53 98.081 332.858 98.081 283.285 93.95 283.285" opacity="0.2"/><line x1="353.24944" y1="168.53329" x2="514.85876" y2="170.52115" fill="none" stroke="#3f3d56" stroke-miterlimit="10" stroke-width="2"/><polygon points="359.775 176.794 361.158 175.346 354.017 168.545 361.323 161.919 359.977 160.438 351.081 168.509 359.775 176.794" fill="#3f3d56"/><polygon points="508.132 178.619 506.786 177.137 514.091 170.514 506.951 163.71 508.333 162.263 517.028 170.55 508.132 178.619" fill="#3f3d56"/><circle cx="434.05411" cy="169.52723" r="13.52263" fill="#3f3d56"/><path d="M584.63338,692.06887s-3.688,15.98129-2.45866,22.12793,1.22933,19.66928,1.22933,19.66928h3.688v-14.752s9.83464,4.91732,12.2933,12.2933,28.27458,4.91732,29.50391,2.45866-12.2933-7.376-12.2933-7.376l-11.064-33.1919Z" transform="translate(-168.66315 -93)" fill="#2f2e41"/><path d="M576.02807,547.008s6.14665,22.12794,6.14665,30.73324-4.91732,119.245,0,119.245,24.58659,2.45866,25.81592-2.45866-2.45866-50.40252,0-55.31983,19.66928-109.41034,18.44-110.63967S582.17472,523.65071,576.02807,547.008Z" transform="translate(-168.66315 -93)" fill="#2f2e41"/><path d="M573.56941,526.10937s-11.064,29.50391-1.22933,29.50391,15.98129-8.60531,23.35727-6.14665,29.50391-28.27458,29.50391-28.27458Z" transform="translate(-168.66315 -93)" fill="#3f3d56"/><circle cx="451.00612" cy="289.89247" r="19.66927" fill="#ffb9b9"/><path d="M629.50391,389.03911s-8.60531,28.27459-6.14665,31.96257S600,419.77235,600,419.77235s8.60531-23.35726,7.376-28.27458S629.50391,389.03911,629.50391,389.03911Z" transform="translate(-168.66315 -93)" fill="#ffb9b9"/><path d="M615.36662,408.09372s-11.064-3.688-14.752,0-17.21061,90.9704-25.81592,99.5757-14.75195,20.89861-7.376,22.12794,67.61313,8.60531,70.07179,4.91732,1.844-39.95322.61467-48.55852S627.65992,409.32305,615.36662,408.09372Z" transform="translate(-168.66315 -93)" fill="#0c66ff"/><polygon points="436.869 436.797 441.786 449.091 452.85 440.485 451.621 431.88 436.869 436.797" fill="#ffb9b9"/><path d="M600,428.37766s-.61466-15.36662-7.99064,4.30266-23.35727,45.48519-9.83464,65.15447,13.8963,28.25164,20.28394,27.65991,26.43059,6.76132,26.43059,4.30266S605.532,489.22948,605.532,489.22948a22.63166,22.63166,0,0,1,6.14665-19.66927C620.28394,460.9549,615.98129,432.06565,600,428.37766Z" transform="translate(-168.66315 -93)" opacity="0.1"/><path d="M607.99064,413.011s-13.52262-2.45866-20.8986,17.21062-23.35726,45.48519-9.83464,65.15447,20.41662,39.29267,26.80426,38.70094,19.91027-4.27971,19.91027-6.73837-23.35727-40.56788-23.35727-40.56788a22.6317,22.6317,0,0,1,6.14665-19.66927C615.36662,458.49624,623.97193,416.699,607.99064,413.011Z" transform="translate(-168.66315 -93)" fill="#0c66ff"/><path d="M613.57267,353.4583c-10.11449-1.42905-20.0873,4.98055-25.68105,13.52778s-7.62067,18.89334-9.09421,29.00146a34.65445,34.65445,0,0,1-2.08063,8.92582c-2.44482,5.61515-7.98094,9.85512-8.882,15.91276-.57,3.83155.85771,7.63615,1.60348,11.43739,1.981,10.0973-.95418,20.71611-6.33877,29.48459-2.40376,3.91437-5.90786,7.8688-10.49924,8.009l9.62166,1.49156a16.7957,16.7957,0,0,1-7.96258,8.13637,48.7518,48.7518,0,0,0,42.64325-46.4297c.13892-3.48343-.03012-7.22149,1.86212-10.14945,1.63693-2.5329,4.49375-3.93811,7.09-5.47266,8.91987-5.2723,16.37285-14.01437,17.56348-24.30756.52328-4.5243-.16733-9.05161-.346-13.57319-.18827-4.76448,7.8123-7.9801,8.89049-12.54127C633.60118,359.97924,619.93775,354.3576,613.57267,353.4583Z" transform="translate(-168.66315 -93)" fill="#2f2e41"/></svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="96px" viewBox="0 0 100 100" version="1.1" preserveAspectRatio="none" class="injected-svg bg-primary-alt" data-src="@/assets/images/dividers/divider-1.svg">
2
+ <path d="M0,0 C40,33 66,52 75,52 C83,52 92,33 100,0 L100,100 L0,100 L0,0 Z"></path>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none">
2
+ <path d="M 0 0 c 0 0 200 50 500 50 s 500 -50 500 -50 v 101 h -1000 v -100 z"></path>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="2560px" height="100px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="none" x="0px" y="0px" viewBox="0 0 2560 100" style="enable-background:new 0 0 2560 100;" xml:space="preserve">
2
+ <polygon id="Path" points="2560 0 2560 100 0 100"></polygon>
3
+ </svg>
Binary file
Binary file
Binary file