fdb2 1.0.8 → 1.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.dockerignore +21 -21
- package/.editorconfig +11 -11
- package/.eslintrc.cjs +14 -14
- package/.eslintrc.json +7 -7
- package/.prettierrc.js +3 -3
- package/.tpl.env +21 -21
- package/.vscodeignore +45 -45
- package/README.md +312 -312
- package/bin/build.sh +28 -28
- package/bin/deploy.sh +8 -8
- package/bin/dev.sh +10 -10
- package/bin/docker/dev-docker-compose.yml +43 -43
- package/bin/docker/dev.Dockerfile +24 -24
- package/bin/docker/prod-docker-compose.yml +17 -17
- package/bin/docker/prod.Dockerfile +29 -29
- package/bin/fdb2.js +220 -220
- package/dist/package.json +29 -29
- package/dist/pnpm-lock.yaml +1042 -354
- package/dist/public/explorer.css +1464 -1437
- package/dist/public/explorer.js +759 -223
- package/dist/public/index.css +1026 -1026
- package/dist/public/index.js +15 -9
- package/dist/public/layout.css +221 -221
- package/dist/public/layout.js +1 -1
- package/dist/public/vue.js +8 -2
- package/dist/scripts/preinstall.js +112 -112
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js +8 -0
- package/dist/server/index.js.map +1 -1
- package/dist/server/index.ts +680 -671
- package/dist/server/model/connection.entity.ts +65 -65
- package/dist/server/model/database.entity.ts +245 -245
- package/dist/server/service/connection.service.d.ts +6 -1
- package/dist/server/service/connection.service.d.ts.map +1 -1
- package/dist/server/service/connection.service.js +15 -0
- package/dist/server/service/connection.service.js.map +1 -1
- package/dist/server/service/connection.service.ts +356 -341
- package/dist/server/service/database/base.service.d.ts +27 -0
- package/dist/server/service/database/base.service.d.ts.map +1 -1
- package/dist/server/service/database/base.service.js +17 -0
- package/dist/server/service/database/base.service.js.map +1 -1
- package/dist/server/service/database/base.service.ts +406 -367
- package/dist/server/service/database/cockroachdb.service.d.ts +16 -0
- package/dist/server/service/database/cockroachdb.service.d.ts.map +1 -1
- package/dist/server/service/database/cockroachdb.service.js +220 -154
- package/dist/server/service/database/cockroachdb.service.js.map +1 -1
- package/dist/server/service/database/cockroachdb.service.ts +871 -782
- package/dist/server/service/database/database.service.d.ts +4 -0
- package/dist/server/service/database/database.service.d.ts.map +1 -1
- package/dist/server/service/database/database.service.js +123 -0
- package/dist/server/service/database/database.service.js.map +1 -1
- package/dist/server/service/database/database.service.ts +775 -638
- package/dist/server/service/database/index.ts +6 -6
- package/dist/server/service/database/mongodb.service.d.ts +16 -0
- package/dist/server/service/database/mongodb.service.d.ts.map +1 -1
- package/dist/server/service/database/mongodb.service.js +35 -0
- package/dist/server/service/database/mongodb.service.js.map +1 -1
- package/dist/server/service/database/mongodb.service.ts +39 -1
- package/dist/server/service/database/mssql.service.d.ts +16 -0
- package/dist/server/service/database/mssql.service.d.ts.map +1 -1
- package/dist/server/service/database/mssql.service.js +168 -96
- package/dist/server/service/database/mssql.service.js.map +1 -1
- package/dist/server/service/database/mssql.service.ts +931 -840
- package/dist/server/service/database/mysql.service.d.ts +16 -0
- package/dist/server/service/database/mysql.service.d.ts.map +1 -1
- package/dist/server/service/database/mysql.service.js +189 -80
- package/dist/server/service/database/mysql.service.js.map +1 -1
- package/dist/server/service/database/mysql.service.ts +1025 -890
- package/dist/server/service/database/oracle.service.d.ts +16 -0
- package/dist/server/service/database/oracle.service.d.ts.map +1 -1
- package/dist/server/service/database/oracle.service.js +182 -120
- package/dist/server/service/database/oracle.service.js.map +1 -1
- package/dist/server/service/database/oracle.service.ts +1035 -959
- package/dist/server/service/database/postgres.service.d.ts +16 -0
- package/dist/server/service/database/postgres.service.d.ts.map +1 -1
- package/dist/server/service/database/postgres.service.js +154 -88
- package/dist/server/service/database/postgres.service.js.map +1 -1
- package/dist/server/service/database/postgres.service.ts +960 -871
- package/dist/server/service/database/sap.service.d.ts +16 -0
- package/dist/server/service/database/sap.service.d.ts.map +1 -1
- package/dist/server/service/database/sap.service.js +66 -0
- package/dist/server/service/database/sap.service.js.map +1 -1
- package/dist/server/service/database/sap.service.ts +89 -0
- package/dist/server/service/database/sqlite.service.d.ts +16 -0
- package/dist/server/service/database/sqlite.service.d.ts.map +1 -1
- package/dist/server/service/database/sqlite.service.js +77 -18
- package/dist/server/service/database/sqlite.service.js.map +1 -1
- package/dist/server/service/database/sqlite.service.ts +787 -708
- package/dist/server/service/session.service.ts +158 -158
- package/dist/view/index.html +38 -38
- package/env.d.ts +1 -1
- package/package.json +1 -1
- package/packages/vscode/.vscodeignore +44 -44
- package/packages/vscode/README.md +62 -62
- package/packages/vscode/out/database-services/cockroachdb.service.js +154 -154
- package/packages/vscode/out/database-services/mssql.service.js +96 -96
- package/packages/vscode/out/database-services/mysql.service.js +80 -80
- package/packages/vscode/out/database-services/oracle.service.js +120 -120
- package/packages/vscode/out/database-services/postgres.service.js +88 -88
- package/packages/vscode/out/database-services/sqlite.service.js +18 -18
- package/packages/vscode/out/provider/WebViewProvider.js +32 -32
- package/packages/vscode/package.json +142 -142
- package/packages/vscode/resources/icon.svg +5 -5
- package/packages/vscode/resources/webview/connection.css +41 -41
- package/packages/vscode/resources/webview/database.css +163 -163
- package/packages/vscode/resources/webview/index.html +9 -9
- package/packages/vscode/resources/webview/modules/header.tpl +13 -13
- package/packages/vscode/resources/webview/modules/initial_state.tpl +54 -54
- package/packages/vscode/resources/webview/query.css +104 -104
- package/packages/vscode/src/database-services/base.service.ts +362 -362
- package/packages/vscode/src/database-services/cockroachdb.service.ts +659 -659
- package/packages/vscode/src/database-services/connection.service.ts +340 -340
- package/packages/vscode/src/database-services/database.service.ts +629 -629
- package/packages/vscode/src/database-services/index.ts +6 -6
- package/packages/vscode/src/database-services/model/connection.entity.ts +65 -65
- package/packages/vscode/src/database-services/model/database.entity.ts +245 -245
- package/packages/vscode/src/database-services/mssql.service.ts +722 -722
- package/packages/vscode/src/database-services/mysql.service.ts +760 -760
- package/packages/vscode/src/database-services/oracle.service.ts +831 -831
- package/packages/vscode/src/database-services/postgres.service.ts +740 -740
- package/packages/vscode/src/database-services/sqlite.service.ts +558 -558
- package/packages/vscode/src/extension.ts +76 -76
- package/packages/vscode/src/provider/DatabaseTreeProvider.ts +167 -167
- package/packages/vscode/src/provider/WebViewProvider.ts +277 -277
- package/packages/vscode/src/service/DatabaseServiceBridge.ts +414 -414
- package/packages/vscode/src/typings/connection.ts +90 -90
- package/packages/vscode/tsconfig.json +21 -21
- package/public/index.html +9 -9
- package/public/modules/header.tpl +13 -13
- package/public/modules/initial_state.tpl +54 -54
- package/scripts/preinstall.js +112 -112
- package/server/index.ts +680 -671
- package/server/model/connection.entity.ts +65 -65
- package/server/model/database.entity.ts +245 -245
- package/server/service/connection.service.ts +356 -341
- package/server/service/database/base.service.ts +406 -367
- package/server/service/database/cockroachdb.service.ts +871 -782
- package/server/service/database/database.service.ts +775 -638
- package/server/service/database/index.ts +6 -6
- package/server/service/database/mongodb.service.ts +39 -1
- package/server/service/database/mssql.service.ts +931 -840
- package/server/service/database/mysql.service.ts +1025 -890
- package/server/service/database/oracle.service.ts +1035 -959
- package/server/service/database/postgres.service.ts +960 -871
- package/server/service/database/sap.service.ts +89 -0
- package/server/service/database/sqlite.service.ts +787 -708
- package/server/service/session.service.ts +158 -158
- package/server/tsconfig.json +20 -20
- package/server.js +149 -149
- package/server.pid +1 -0
- package/src/adapter/ajax.ts +135 -135
- package/src/assets/base.css +1 -1
- package/src/assets/database.css +949 -949
- package/src/assets/images/svg/illustrations/illustration-1.svg +1 -1
- package/src/assets/images/svg/illustrations/illustration-2.svg +2 -2
- package/src/assets/images/svg/illustrations/illustration-3.svg +50 -50
- package/src/assets/images/svg/illustrations/illustration-4.svg +1 -1
- package/src/assets/images/svg/illustrations/illustration-5.svg +73 -73
- package/src/assets/images/svg/illustrations/illustration-6.svg +89 -89
- package/src/assets/images/svg/illustrations/illustration-7.svg +39 -39
- package/src/assets/images/svg/separators/curve-2.svg +3 -3
- package/src/assets/images/svg/separators/curve.svg +3 -3
- package/src/assets/images/svg/separators/line.svg +3 -3
- package/src/assets/logo.svg +73 -73
- package/src/assets/main.css +1 -1
- package/src/base/config.ts +20 -20
- package/src/base/detect.ts +134 -134
- package/src/base/entity.ts +92 -92
- package/src/base/eventBus.ts +36 -36
- package/src/components/connection-editor/index.vue +588 -588
- package/src/components/dataGrid/index.vue +104 -104
- package/src/components/dataGrid/pagination.vue +105 -105
- package/src/components/loading/index.vue +42 -42
- package/src/components/modal/index.ts +180 -180
- package/src/components/modal/index.vue +560 -560
- package/src/components/toast/index.ts +43 -43
- package/src/components/toast/toast.vue +57 -57
- package/src/components/user/name.vue +103 -103
- package/src/components/user/selector.vue +416 -416
- package/src/domain/SysConfig.ts +74 -74
- package/src/platform/App.vue +7 -7
- package/src/platform/database/components/connection-detail.vue +1153 -1154
- package/src/platform/database/components/data-editor.vue +477 -477
- package/src/platform/database/components/database-detail.vue +1173 -1172
- package/src/platform/database/components/database-monitor.vue +1085 -1085
- package/src/platform/database/components/db-tools.vue +1264 -816
- package/src/platform/database/components/query-history.vue +1348 -1348
- package/src/platform/database/components/sql-executor.vue +737 -737
- package/src/platform/database/components/sql-query-editor.vue +1045 -1045
- package/src/platform/database/components/table-detail.vue +1375 -1376
- package/src/platform/database/components/table-editor.vue +916 -916
- package/src/platform/database/explorer.vue +1839 -1839
- package/src/platform/database/index.vue +1192 -1192
- package/src/platform/database/layout.vue +366 -366
- package/src/platform/database/router.ts +36 -36
- package/src/platform/database/styles/common.scss +601 -601
- package/src/platform/database/types/common.ts +444 -444
- package/src/platform/database/utils/export.ts +231 -231
- package/src/platform/database/utils/helpers.ts +436 -436
- package/src/platform/index.ts +32 -32
- package/src/platform/router.ts +40 -40
- package/src/platform/vscode/bridge.ts +121 -121
- package/src/platform/vscode/components/ConnectionPanel.vue +272 -272
- package/src/platform/vscode/components/DatabasePanel.vue +532 -532
- package/src/platform/vscode/components/QueryPanel.vue +371 -371
- package/src/platform/vscode/entry/connection.ts +13 -13
- package/src/platform/vscode/entry/database.ts +13 -13
- package/src/platform/vscode/entry/query.ts +13 -13
- package/src/platform/vscode/index.ts +5 -5
- package/src/service/base.ts +133 -127
- package/src/service/database.ts +505 -495
- package/src/service/login.ts +120 -120
- package/src/shims-vue.d.ts +6 -6
- package/src/stores/connection.ts +266 -266
- package/src/stores/session.ts +87 -87
- package/src/typings/database-types.ts +412 -412
- package/src/typings/database.ts +363 -363
- package/src/typings/global.d.ts +58 -58
- package/src/typings/pinia.d.ts +7 -7
- package/src/utils/clipboard.ts +29 -29
- package/src/utils/database-types.ts +242 -242
- package/src/utils/modal.ts +123 -123
- package/src/utils/request.ts +55 -55
- package/src/utils/sleep.ts +3 -3
- package/src/utils/toast.ts +73 -73
- package/src/utils/util.ts +171 -171
- package/src/utils/xlsx.ts +228 -228
- package/tsconfig.json +33 -33
- package/view/index.html +9 -9
- package/view/modules/header.tpl +13 -13
- package/view/modules/initial_state.tpl +19 -19
- package/vite.config.ts +424 -424
- package/vite.config.vscode.ts +47 -47
- package/fdb2.server.pid +0 -1
- package/server/backups/db_ai_breakout_2026-03-11T08-38-48-677Z.sql +0 -0
|
@@ -1,73 +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>
|
|
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>
|
|
@@ -1,89 +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>
|
|
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>
|
|
@@ -1,39 +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>
|
|
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>
|
|
@@ -1,3 +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>
|
|
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>
|
|
@@ -1,3 +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>
|
|
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>
|
|
@@ -1,3 +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>
|
|
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>
|