@kando-env/kando-ui 1.2.278-alpha.47 → 1.2.278-alpha.5
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/lib/Widgets/Map/Map.js +2 -18
- package/lib/Widgets/Map/Map.scss +5 -17
- package/lib/Widgets/Map/MapUtils.js +11 -13
- package/lib/Widgets/Map/areas/AreaPolygon.js +14 -80
- package/lib/Widgets/Map/areas/AreaPolygons.js +3 -6
- package/lib/Widgets/Map/areas/AreaUtils.js +48 -24
- package/lib/Widgets/Map/edges/Edge.js +6 -1
- package/lib/Widgets/Map/edges/arrows/Arrows.js +14 -2
- package/lib/Widgets/Map/events/EventUtils.js +7 -11
- package/lib/Widgets/Map/events/PointOfEvent.js +3 -2
- package/lib/Widgets/Map/points/PointMarker.js +25 -77
- package/lib/Widgets/Map/points/PointMarkers.js +12 -2
- package/lib/Widgets/Map/points/PointUtils.js +33 -18
- package/lib/_style-colors.scss +0 -23
- package/lib/assets/icons/index.js +8 -22
- package/lib/components/CustomInputs/DoubleTabs/styles.js +3 -15
- package/lib/components/Header/DoubleTabs/styles.js +2 -2
- package/lib/components/Sector/Sector.test.js +1 -35
- package/lib/components/Sector/sectorIcons.js +18 -39
- package/lib/components/Sector/svgs/Brewing.svg +100 -0
- package/lib/components/Sector/svgs/Cowshed.svg +28 -0
- package/lib/components/Sector/svgs/Garage.svg +27 -0
- package/lib/components/Sector/svgs/Missing.svg +32 -8
- package/lib/components/Sector/svgs/Motor Vehicle.svg +21 -0
- package/lib/components/Sector/svgs/Polymer.svg +42 -0
- package/lib/components/Sector/svgs/Pulp and Paper.svg +26 -0
- package/lib/components/Sector/svgs/Seafood.svg +26 -0
- package/lib/components/Sector/svgs/barrel.svg +100 -0
- package/lib/components/Sector/svgs/beer.svg +14 -8
- package/lib/components/Sector/svgs/beverage.svg +15 -10
- package/lib/components/Sector/svgs/car-repair.svg +27 -0
- package/lib/components/Sector/svgs/car-wash.svg +36 -0
- package/lib/components/Sector/svgs/chemistry.svg +17 -3
- package/lib/components/Sector/svgs/conductor-manufacturer.svg +20 -3
- package/lib/components/Sector/svgs/cosmetic-manufacturer.svg +25 -6
- package/lib/components/Sector/svgs/cow.svg +28 -0
- package/lib/components/Sector/svgs/cpu.svg +21 -0
- package/lib/components/Sector/svgs/dairy.svg +16 -4
- package/lib/components/Sector/svgs/dippel-oil.svg +21 -5
- package/lib/components/Sector/svgs/food-donation.svg +34 -0
- package/lib/components/Sector/svgs/food-factory.svg +20 -5
- package/lib/components/Sector/svgs/garbage-truck-1.svg +31 -3
- package/lib/components/Sector/svgs/gas-station.svg +22 -3
- package/lib/components/Sector/svgs/glass-manufacturer.svg +20 -8
- package/lib/components/Sector/svgs/glass.svg +23 -0
- package/lib/components/Sector/svgs/hand-washing.svg +17 -9
- package/lib/components/Sector/svgs/hospital.svg +27 -6
- package/lib/components/Sector/svgs/hotel.svg +22 -8
- package/lib/components/Sector/svgs/laundromat.svg +26 -3
- package/lib/components/Sector/svgs/leather-factory.svg +16 -0
- package/lib/components/Sector/svgs/leather.svg +16 -0
- package/lib/components/Sector/svgs/lipstick.svg +26 -0
- package/lib/components/Sector/svgs/meat.svg +23 -6
- package/lib/components/Sector/svgs/metal-coating-plant.svg +21 -8
- package/lib/components/Sector/svgs/metal-facbrication.svg +31 -0
- package/lib/components/Sector/svgs/milk.svg +17 -0
- package/lib/components/Sector/svgs/oil-rig.svg +15 -3
- package/lib/components/Sector/svgs/petrochemical.svg +21 -3
- package/lib/components/Sector/svgs/pie.svg +21 -0
- package/lib/components/Sector/svgs/pills.svg +22 -0
- package/lib/components/Sector/svgs/plant-unkown-3.svg +37 -0
- package/lib/components/Sector/svgs/plastic-rubber.svg +35 -0
- package/lib/components/Sector/svgs/printer.svg +16 -4
- package/lib/components/Sector/svgs/recycling.svg +16 -0
- package/lib/components/Sector/svgs/refinery.svg +17 -0
- package/lib/components/Sector/svgs/repair.svg +15 -0
- package/lib/components/Sector/svgs/sewing-machine.svg +23 -0
- package/lib/components/Sector/svgs/shop.svg +27 -0
- package/lib/components/Sector/svgs/soda.svg +16 -0
- package/lib/components/Sector/svgs/spray-gun.svg +22 -0
- package/lib/components/Sector/svgs/washing-machine.svg +27 -0
- package/lib/components/Sector/svgs/waste.svg +35 -0
- package/lib/components/Sector/svgs/welder-a.svg +31 -0
- package/lib/components/Sector/svgs/wine-glass.svg +10 -4
- package/lib/hooks/useUserTimeZone.js +2 -6
- package/lib/i18n/en.json +1 -12
- package/lib/i18n/he.json +0 -25
- package/lib/macros/getVersion.js +2 -2
- package/lib/pages/DashboardMap/AreaCard.js +7 -44
- package/lib/pages/DashboardMap/FactoryCard.js +11 -50
- package/lib/pages/DashboardMap/List.js +5 -34
- package/lib/pages/DashboardMap/WWTPMap.js +6 -18
- package/lib/pages/DashboardMap/Widget.js +122 -175
- package/lib/pages/DashboardMap/utils.js +6 -21
- package/lib/pages/EventsPage/EventsMapContainer/EventsMapContainer.js +3 -9
- package/lib/pages/SamplingsPage/SamplingsPageContainer.js +7 -2
- package/lib/pages/SitePage/SamplingParameters/NoResults/index.js +12 -25
- package/lib/pages/SitePage/SamplingParameters/ParametersContainer/ParametersContainer.js +3 -7
- package/lib/pages/SitePage/SamplingParameters/SamplingContainer/ExpandableSamplingTable/ExpandableSamplingTable.js +2 -10
- package/lib/pages/SitePage/SamplingParameters/SamplingContainer/ExpandableSamplingTable/ExpandableSamplingTable.scss +16 -15
- package/lib/pages/SitePage/SamplingParameters/SamplingContainer/SamplingContainer.js +7 -6
- package/lib/pages/SitePage/SamplingParameters/SamplingParameters.js +84 -43
- package/lib/pages/SitePage/SamplingParameters/dataParser.js +4 -5
- package/lib/pages/WbeDashboard/WbeDashboardPage.js +3 -6
- package/lib/pages/WwtpPage/WwtpPage.js +8 -31
- package/lib/pages/WwtpPage/WwtpPageContainer.js +17 -8
- package/lib/scss/custom.scss +1 -47
- package/lib/store/areas/models/IArea.js +1 -1
- package/lib/store/points/models/IPoint.js +1 -1
- package/lib/styles/theme/theme.js +5 -15
- package/lib/ui-kit/ContentCard/ContentCard.js +3 -6
- package/lib/ui-kit/InletsPie/InletsPie.js +5 -5
- package/lib/ui-kit/OrganicLoad/TextInfo.js +2 -2
- package/lib/utilities/scoreToData.js +2 -2
- package/package.json +1 -1
- package/lib/assets/icons/no-result.svg +0 -20
- package/lib/assets/icons/noSamplings.svg +0 -15
- package/lib/assets/icons/upgrade.svg +0 -18
- package/lib/components/Sector/svgs/bakery.svg +0 -4
- package/lib/components/Sector/svgs/carwash.svg +0 -4
- package/lib/components/Sector/svgs/cowshed.svg +0 -18
- package/lib/components/Sector/svgs/garage.svg +0 -5
- package/lib/components/Sector/svgs/mechanical.svg +0 -5
- package/lib/components/Sector/svgs/metal-fabrication.svg +0 -7
- package/lib/components/Sector/svgs/motor-vehicle.svg +0 -4
- package/lib/components/Sector/svgs/pharmaceutical.svg +0 -11
- package/lib/components/Sector/svgs/plastic-manufacturer.svg +0 -11
- package/lib/components/Sector/svgs/plastic-recycling-factory.svg +0 -4
- package/lib/components/Sector/svgs/polymer.svg +0 -4
- package/lib/components/Sector/svgs/pulp-and-paper.svg +0 -8
- package/lib/components/Sector/svgs/refinement.svg +0 -6
- package/lib/components/Sector/svgs/seafood.svg +0 -14
- package/lib/components/Sector/svgs/shopping-malls-restaurants.svg +0 -11
- package/lib/components/Sector/svgs/textile.svg +0 -8
- package/lib/pages/DashboardMap/ListContext.js +0 -39
- package/lib/pages/SitePage/SamplingParameters/body/Body.js +0 -39
- package/lib/pages/SitePage/SamplingParameters/body/BodyContainer.js +0 -71
- package/lib/pages/SitePage/SamplingParameters/body/index.js +0 -11
- package/lib/pages/WwtpPage/ContaminateCard.js +0 -18
- package/lib/pages/WwtpPage/PredictionCard.js +0 -18
- package/lib/pages/WwtpPage/UpgradeBox.js +0 -30
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_4613_14583)">
|
|
3
|
+
<path d="M31.219 4.80975L2.62722 20.5558L1.49209 20.9531L0.867952 21.8043L2.00281 22.5987L31.5029 8.10114L32.5811 7.02293V5.434L31.219 4.80975Z" fill="url(#paint0_linear_4613_14583)"/>
|
|
4
|
+
<path d="M12.8504 11.5331L8.07155 12.074L3.92432 14.7338V25.5531L8.07155 29.0693L15.51 28.6636L19.0713 25.9137V15.0043L17.6738 13.0207L12.8504 11.5331Z" fill="url(#paint1_linear_4613_14583)"/>
|
|
5
|
+
<path d="M32.2192 14.8098L2.82421 26.6133L1.68908 27.0105L1.06494 27.8617L2.1998 28.6562L32.5031 18.1011L33.5813 17.0229V15.434L32.2192 14.8098Z" fill="url(#paint2_linear_4613_14583)"/>
|
|
6
|
+
<path d="M13.2446 18.3742L16.1469 17.1013L16.4524 15.6247L15.5359 14.3009L9.37512 13.5881L6.47294 15.2174L6.06543 16.2357L7.79669 17.8141L13.2446 18.3742Z" fill="white"/>
|
|
7
|
+
<path d="M30.6748 4.31376C30.3773 4.34032 30.0958 4.42001 29.8248 4.56876C29.8169 4.56876 29.8115 4.56876 29.8036 4.56876L16.7136 12.0063C15.2712 11.2917 13.4145 10.88 11.3798 10.88C9.20436 10.88 7.22811 11.3449 5.74857 12.155C4.26904 12.9652 3.21982 14.1817 3.21982 15.64V19.5288L1.96607 20.2725L1.92357 20.2938C1.45873 20.5302 1.04436 20.8277 0.776075 21.25C0.497169 21.6856 0.430762 22.3364 0.712325 22.8438C0.720294 22.8517 0.725606 22.857 0.733575 22.865C0.906231 23.1545 1.18779 23.3777 1.47732 23.4813C1.76686 23.5849 2.04045 23.5822 2.28482 23.545C2.66201 23.4892 2.96217 23.3511 3.21982 23.2263V25.16C3.21982 25.3061 3.24373 25.4363 3.26232 25.5638L2.11482 26.01V26.0313H2.09357C1.61014 26.1959 1.17717 26.435 0.861075 26.8175C0.544981 27.1974 0.417481 27.8056 0.627325 28.3263C0.632638 28.3289 0.624669 28.3422 0.627325 28.3475C0.632638 28.3581 0.643263 28.3581 0.648575 28.3688C0.778731 28.6556 1.01248 28.9239 1.26482 29.0488C1.53311 29.1816 1.78811 29.2028 2.02982 29.1975C2.49467 29.1869 2.89045 29.0408 3.17732 28.9213C3.18795 28.916 3.2092 28.9266 3.21982 28.9213V28.9L5.15357 28.22C6.68889 29.3038 8.90951 29.92 11.3798 29.92C13.5553 29.92 15.5315 29.4552 17.0111 28.645C18.4906 27.8349 19.5398 26.6183 19.5398 25.16V23.2263L33.0123 18.53C33.0176 18.5274 33.0283 18.5327 33.0336 18.53C34.1917 18.1316 34.7734 16.8459 34.3936 15.7038C34.0934 14.8006 33.254 14.2242 32.3748 14.2163C32.0879 14.2136 31.8011 14.2853 31.5248 14.4075C31.5195 14.4102 31.5089 14.4049 31.5036 14.4075L19.5398 19.125V15.64C19.5398 15.4116 19.5026 15.1964 19.4548 14.9813L31.9498 8.62751C33.1106 8.04845 33.5064 6.63267 32.9273 5.54626C32.9247 5.54095 32.93 5.53032 32.9273 5.52501H32.9061C32.4625 4.66704 31.5567 4.23142 30.6748 4.31376ZM30.8236 5.65251C31.1742 5.62595 31.5408 5.81454 31.7161 6.16251C31.724 6.17048 31.7294 6.17579 31.7373 6.18376C31.9604 6.59282 31.7984 7.18517 31.3336 7.41626L18.8811 13.7275C18.6394 13.3981 18.3312 13.09 17.9886 12.8138L30.4836 5.75876C30.5845 5.70298 30.7067 5.66048 30.8236 5.65251ZM11.3798 12.24C13.1622 12.24 14.7719 12.6119 15.9698 13.175L16.6286 13.515C17.6592 14.1552 18.1798 14.9175 18.1798 15.64V19.6775L4.57982 24.9969V22.7375C4.57982 24.9969 4.57982 24.9969 4.57982 24.9969V15.64C4.57982 14.8538 5.18279 14.0144 6.40732 13.345C7.63186 12.6756 9.40623 12.24 11.3798 12.24ZM11.3798 12.92C9.61607 12.92 8.16576 13.2999 7.10857 13.8338C6.57998 14.0994 6.15498 14.4022 5.83357 14.7475C5.51217 15.0928 5.25982 15.4913 5.25982 15.98C5.25982 16.4688 5.51217 16.8672 5.83357 17.2125C6.15498 17.5578 6.57998 17.8606 7.10857 18.1263C8.16576 18.6602 9.61607 19.04 11.3798 19.04C13.1436 19.04 14.5939 18.6602 15.6511 18.1263C16.1797 17.8606 16.6047 17.5578 16.9261 17.2125C17.2475 16.8672 17.4998 16.4688 17.4998 15.98C17.4998 15.4913 17.2475 15.0928 16.9261 14.7475C16.6047 14.4022 16.1797 14.0994 15.6511 13.8338C14.5939 13.2999 13.1436 12.92 11.3798 12.92ZM11.3798 14.28C12.9497 14.28 14.2034 14.6253 15.0348 15.045C15.4492 15.2549 15.7706 15.4727 15.9486 15.6613C16.1265 15.8499 16.1398 15.9933 16.1398 15.98C16.1398 15.9667 16.1265 16.1102 15.9486 16.2988C15.7706 16.4874 15.4492 16.7052 15.0348 16.915C14.2034 17.3347 12.9497 17.68 11.3798 17.68C9.80998 17.68 8.55623 17.3347 7.72482 16.915C7.31045 16.7052 6.98904 16.4874 6.81107 16.2988C6.63311 16.1102 6.61982 15.9667 6.61982 15.98C6.61982 15.9933 6.63311 15.8499 6.81107 15.6613C6.98904 15.4727 7.31045 15.2549 7.72482 15.045C8.55623 14.6253 9.80998 14.28 11.3798 14.28ZM11.3798 15.0875C10.2536 15.0875 9.33982 15.5444 9.33982 16.1075C9.33982 16.6706 10.2536 17.1275 11.3798 17.1275C12.5061 17.1275 13.4198 16.6706 13.4198 16.1075C13.4198 15.5444 12.5061 15.0875 11.3798 15.0875ZM32.3536 15.5763C32.6644 15.5895 32.9911 15.8074 33.0973 16.1288C33.2593 16.6122 33.0495 17.0797 32.5873 17.2338C32.5794 17.2338 32.574 17.2338 32.5661 17.2338L5.17482 26.7963C5.13232 26.8069 5.08717 26.8202 5.04732 26.8388L4.98357 26.86C4.96232 26.8653 4.94107 26.8733 4.91982 26.8813L2.73107 27.6463C2.71779 27.6516 2.70186 27.6595 2.68857 27.6675C2.49998 27.7472 2.1892 27.8322 2.00857 27.8375C1.91826 27.8402 1.85982 27.8163 1.85982 27.8163C1.82264 27.7313 1.81732 27.7711 1.90232 27.6675C1.98732 27.5639 2.23967 27.4125 2.56107 27.3063C2.56904 27.2983 2.57436 27.293 2.58232 27.285L32.0348 15.6613C32.0428 15.6533 32.0481 15.648 32.0561 15.64C32.1464 15.5975 32.25 15.5709 32.3536 15.5763ZM3.21982 21.1013V21.6963L2.83732 21.9088H2.81607C2.55842 22.0363 2.25826 22.1584 2.07232 22.185C1.9767 22.1983 1.93154 22.1877 1.92357 22.185C1.91826 22.1824 1.90498 22.1877 1.90232 22.185C1.89701 22.1744 1.90764 22.1717 1.90232 22.1638C1.85982 22.092 1.85186 22.0841 1.92357 21.9725C2.00326 21.8477 2.24764 21.6511 2.58232 21.4838C2.59029 21.4758 2.59561 21.4705 2.60357 21.4625L3.21982 21.1013ZM18.1798 23.6938V25.16C18.1798 25.9463 17.5769 26.7856 16.3523 27.455C15.1278 28.1244 13.3534 28.56 11.3798 28.56C9.6267 28.56 8.03029 28.212 6.83232 27.6463L18.1798 23.6938Z" fill="black"/>
|
|
8
|
+
</g>
|
|
9
|
+
<defs>
|
|
10
|
+
<linearGradient id="paint0_linear_4613_14583" x1="16.3231" y1="18.6562" x2="16.3231" y2="4.80975" gradientUnits="userSpaceOnUse">
|
|
11
|
+
<stop stop-color="#EFC530"/>
|
|
12
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
13
|
+
</linearGradient>
|
|
14
|
+
<linearGradient id="paint1_linear_4613_14583" x1="11.4978" y1="29.0727" x2="11.4978" y2="11.5331" gradientUnits="userSpaceOnUse">
|
|
15
|
+
<stop stop-color="#F37C1C"/>
|
|
16
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
17
|
+
</linearGradient>
|
|
18
|
+
<linearGradient id="paint2_linear_4613_14583" x1="17.3231" y1="28.6562" x2="17.3231" y2="14.8098" gradientUnits="userSpaceOnUse">
|
|
19
|
+
<stop stop-color="#EFC530"/>
|
|
20
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
21
|
+
</linearGradient>
|
|
22
|
+
<clipPath id="clip0_4613_14583">
|
|
23
|
+
<rect width="34" height="34" fill="white" transform="translate(0.5)"/>
|
|
24
|
+
</clipPath>
|
|
25
|
+
</defs>
|
|
26
|
+
</svg>
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_4088_33996)">
|
|
3
|
+
<path d="M3.46094 23.0983C4.07445 23.4795 4.71044 23.8231 5.36539 24.1274L5.43573 24.1599L5.97676 24.3928V21.8635C5.06782 21.6739 4.21841 21.4627 3.4826 21.2461L3.46094 23.0983Z" fill="url(#paint0_linear_4088_33996)"/>
|
|
4
|
+
<path d="M8.7686 8.99512C8.22756 9.15218 7.68656 9.3255 7.21045 9.50964V24.8909C7.69738 25.0696 8.20592 25.243 8.73614 25.3892L8.7686 8.99512Z" fill="url(#paint1_linear_4088_33996)"/>
|
|
5
|
+
<path d="M10.0721 29.4132C10.1057 28.6372 10.2478 27.8697 10.4941 27.1331C9.58077 26.9456 8.67782 26.7106 7.78892 26.429C6.92692 26.15 6.07997 25.8264 5.25146 25.4596C4.16939 26.624 4.05578 27.3985 4.03955 29.4132H10.0721Z" fill="url(#paint2_linear_4088_33996)"/>
|
|
6
|
+
<path d="M16.6082 6.82879V6.1139C16.6068 5.7069 16.4443 5.31705 16.1563 5.02977C15.8683 4.74248 15.4783 4.58117 15.0717 4.58118C14.6651 4.58117 14.2751 4.74248 13.9871 5.02977C13.6991 5.31705 13.5366 5.7069 13.5352 6.1139V6.82879C14.5581 6.75297 15.5853 6.75297 16.6082 6.82879Z" fill="url(#paint3_linear_4088_33996)"/>
|
|
7
|
+
<path d="M10.0024 11.8711C11.6758 11.6693 13.3595 11.5663 15.0449 11.5624H15.1152C16.8006 11.5688 18.4841 11.6719 20.1577 11.8711V8.65944C19.4327 8.48613 18.7023 8.34532 17.9611 8.237C16.6337 8.04658 15.2908 7.98852 13.952 8.06369C12.6205 8.14564 11.2989 8.345 10.0024 8.65944V11.8711Z" fill="url(#paint4_linear_4088_33996)"/>
|
|
8
|
+
<path d="M19.6491 27.1331C19.8935 27.87 20.0337 28.6375 20.0656 29.4132H26.0766C26.0766 27.3985 25.9737 26.624 24.8646 25.4596C24.5183 25.6112 24.1613 25.7629 23.7825 25.8983C23.4038 26.0337 22.9494 26.2124 22.5274 26.3532C22.1054 26.494 21.6833 26.6186 21.2559 26.7377C20.7149 26.8894 20.1738 27.0194 19.6328 27.1331H19.6491Z" fill="url(#paint5_linear_4088_33996)"/>
|
|
9
|
+
<path d="M3.46094 19.9354C4.16969 20.152 5.02455 20.3795 5.95513 20.5799V17.834H3.46094V19.9354Z" fill="url(#paint6_linear_4088_33996)"/>
|
|
10
|
+
<path d="M3.46094 16.5721H5.95513V13.8208C5.02996 14.0212 4.1751 14.2433 3.46094 14.4707V16.5721Z" fill="url(#paint7_linear_4088_33996)"/>
|
|
11
|
+
<path d="M5.95513 10.0081C5.08973 10.3704 4.25551 10.8033 3.46094 11.3025V13.1547C4.20216 12.9381 5.08407 12.7268 5.95513 12.5319V10.0081Z" fill="url(#paint8_linear_4088_33996)"/>
|
|
12
|
+
<path d="M10.0024 16.5722H20.1577V13.1439C18.4742 12.9331 16.7794 12.8264 15.0828 12.8243C13.3952 12.8266 11.7093 12.9333 10.0349 13.1439V16.5722H10.0024Z" fill="url(#paint9_linear_4088_33996)"/>
|
|
13
|
+
<path d="M10.0024 21.2515C11.6752 21.4609 13.3591 21.5695 15.0449 21.5765H15.1152C16.8012 21.5732 18.4852 21.4647 20.1577 21.2515V17.8286H10.0024V21.2515Z" fill="url(#paint10_linear_4088_33996)"/>
|
|
14
|
+
<path d="M10.0025 25.7305C11.6511 26.1377 13.3416 26.3503 15.0395 26.3642H15.1153C16.8133 26.3515 18.5039 26.1388 20.1523 25.7305V22.5243C18.4788 22.7243 16.7952 22.8274 15.1099 22.833H15.0395C13.3542 22.8266 11.6706 22.7235 9.99707 22.5243V25.7305H10.0025Z" fill="url(#paint11_linear_4088_33996)"/>
|
|
15
|
+
<path d="M33.1044 20.309V18.1426C33.1044 17.704 32.9307 17.2833 32.6214 16.9727C32.3121 16.662 31.8924 16.4868 31.4542 16.4854H27.9375V17.9206H31.0538C31.2203 17.9206 31.3799 17.9868 31.4976 18.1046C31.6153 18.2224 31.6815 18.3822 31.6815 18.5488V20.3144L33.1044 20.309Z" fill="url(#paint12_linear_4088_33996)"/>
|
|
16
|
+
<path d="M24.188 16.5721H26.6822V14.4707C25.9626 14.2433 25.1132 14.0212 24.188 13.8208V16.5721Z" fill="url(#paint13_linear_4088_33996)"/>
|
|
17
|
+
<path d="M22.9329 9.50966C22.4424 9.32552 21.9338 9.15763 21.4072 9.00598V25.4C21.9212 25.2484 22.4298 25.0751 22.9329 24.8964V9.50966Z" fill="url(#paint14_linear_4088_33996)"/>
|
|
18
|
+
<path d="M26.6822 11.3025C25.8864 10.8055 25.0523 10.3727 24.188 10.0081V12.5319C25.0861 12.7214 25.941 12.9381 26.6822 13.1547V11.3025Z" fill="url(#paint15_linear_4088_33996)"/>
|
|
19
|
+
<path d="M24.188 20.5745C25.1186 20.3741 25.9734 20.1466 26.6822 19.93V17.8286H24.188V20.5745Z" fill="url(#paint16_linear_4088_33996)"/>
|
|
20
|
+
<path d="M24.188 24.3927C24.3611 24.3169 24.5397 24.241 24.729 24.1598C24.7514 24.1467 24.7749 24.1359 24.7994 24.1273C25.4559 23.8261 26.092 23.4824 26.7038 23.0983V21.2406C25.968 21.4572 25.1132 21.6685 24.2097 21.8634V24.3927H24.188Z" fill="url(#paint17_linear_4088_33996)"/>
|
|
21
|
+
<path d="M33.8076 16.2417C33.391 15.7341 32.8216 15.375 32.1844 15.2181V14.0591H32.7255C32.9168 14.0591 33.1004 13.9834 33.2362 13.8484C33.372 13.7135 33.4491 13.5303 33.4505 13.3388C33.4491 13.1467 33.3722 12.963 33.2366 12.8272C33.1009 12.6914 32.9173 12.6144 32.7255 12.613H30.2097C30.0178 12.6144 29.8343 12.6914 29.6986 12.8272C29.563 12.963 29.4861 13.1467 29.4847 13.3388C29.4861 13.5303 29.5631 13.7135 29.6989 13.8484C29.8347 13.9834 30.0183 14.0591 30.2097 14.0591H30.7507V15.1423H28.0455V10.972C28.0443 10.8549 28.0152 10.7397 27.9606 10.6361C27.9061 10.5325 27.8276 10.4434 27.7317 10.3762C26.0673 9.3117 24.2676 8.47559 22.3809 7.89033C20.9453 7.42809 19.4715 7.0946 17.9769 6.8938V6.12473C17.9769 5.36006 17.6738 4.62664 17.1342 4.08544C16.5945 3.54423 15.8624 3.23947 15.0986 3.23804C14.3328 3.23803 13.5982 3.54181 13.0556 4.08286C12.5131 4.62391 12.2069 5.35813 12.204 6.12473V6.88296C10.7114 7.08767 9.23957 7.42294 7.80542 7.88491C5.91309 8.4712 4.10796 9.30913 2.43837 10.3762C2.34053 10.4418 2.26026 10.5304 2.2046 10.6343C2.14895 10.7382 2.11959 10.8541 2.11914 10.972V23.4287C2.12081 23.5465 2.15007 23.6622 2.20457 23.7666C2.25907 23.871 2.3373 23.9612 2.43295 24.0298C2.92166 24.3512 3.42736 24.6459 3.94784 24.9126C2.73051 26.402 2.73051 27.6206 2.73051 30.0361C2.73051 30.2277 2.80614 30.4114 2.94093 30.5474C3.07572 30.6833 3.25876 30.7604 3.4501 30.7618H10.6999C10.8913 30.7604 11.0743 30.6833 11.2091 30.5474C11.3439 30.4114 11.4195 30.2277 11.4195 30.0361C11.4006 29.1608 11.5399 28.2892 11.8307 27.4635C12.8946 27.6227 13.9687 27.7041 15.0445 27.7073H15.1256C16.2031 27.7041 17.279 27.6226 18.3448 27.4635C18.631 28.2903 18.7684 29.1613 18.7505 30.0361C18.752 30.2281 18.8288 30.4119 18.9645 30.5477C19.1001 30.6835 19.2837 30.7604 19.4755 30.7618H26.72C26.9123 30.7618 27.0967 30.6854 27.2326 30.5493C27.3686 30.4132 27.445 30.2286 27.445 30.0361C27.445 27.6368 27.445 26.402 26.2114 24.9181C26.7315 24.6506 27.2372 24.3559 27.7263 24.0353C27.8238 23.9693 27.9038 23.8806 27.9595 23.7769C28.0151 23.6731 28.0446 23.5573 28.0455 23.4395V19.2692H30.3449V20.9427C30.3463 21.1343 30.4234 21.3175 30.5592 21.4524C30.695 21.5873 30.8786 21.6631 31.0699 21.6631H33.7751C33.9664 21.6631 34.15 21.5873 34.2858 21.4524C34.4216 21.3175 34.4987 21.1343 34.5001 20.9427V18.1373C34.5 17.4455 34.2632 16.7746 33.8292 16.2363L33.8076 16.2417ZM31.0753 17.8232H28.0509V16.5775H31.4757C31.8889 16.5775 32.2853 16.7418 32.5775 17.0343C32.8697 17.3269 33.0339 17.7236 33.0339 18.1373V20.217H31.7949V18.5435C31.7935 18.3529 31.7172 18.1705 31.5826 18.0357C31.4479 17.9009 31.2657 17.8246 31.0753 17.8232ZM24.3016 12.456V10.1488C25.0977 10.4936 25.868 10.8954 26.6064 11.3511V13.0301C25.9409 12.8405 25.1835 12.6509 24.2799 12.456H24.3016ZM24.3016 16.4746V13.9399C25.178 14.1349 25.9463 14.3353 26.6064 14.5411V16.4746H24.3016ZM24.3016 20.4553V17.9206H26.6064V19.8596C25.8814 20.0708 25.0915 20.282 24.2799 20.477L24.3016 20.4553ZM24.3016 24.2465V21.9393C25.2051 21.7443 25.968 21.5548 26.6064 21.3652V23.0441C26.0148 23.4148 25.4004 23.7477 24.7668 24.0407H24.7073L24.5342 24.1219L24.3178 24.214L24.3016 24.2465ZM10.1157 22.6217C11.7588 22.8143 13.4117 22.912 15.0661 22.9142H15.131C16.7854 22.9127 18.4384 22.815 20.0815 22.6217V25.6438C18.4619 26.0474 16.8 26.2564 15.131 26.2666H15.0553C13.3903 26.2553 11.7323 26.0481 10.1157 25.6492V22.6434V22.6217ZM20.0707 21.1648C18.4282 21.3672 16.7751 21.4703 15.1202 21.4735H15.0499C13.395 21.4699 11.7419 21.3668 10.0994 21.1648V17.9152H20.0545V21.1648H20.0707ZM20.0707 13.2196V16.4692H10.1102V13.2196C11.7512 13.0206 13.4024 12.9175 15.0553 12.9109H15.0878C16.7462 12.9198 18.4027 13.0247 20.049 13.225L20.0707 13.2196ZM20.0707 11.7681C18.4276 11.5739 16.7747 11.4744 15.1202 11.4703H15.0499C13.3973 11.4773 11.7463 11.5767 10.1048 11.7681V8.73522C11.3729 8.42827 12.6656 8.23434 13.9678 8.15571C14.3303 8.15571 14.6982 8.12863 15.0499 8.12863C16.0148 8.12757 16.9785 8.19634 17.9336 8.33442C18.6694 8.44274 19.3782 8.57274 20.049 8.73522V11.7681H20.0707ZM21.5153 25.2538V9.1035C21.9535 9.23348 22.3971 9.37971 22.8516 9.54219V24.8097C22.3647 24.983 21.9048 25.1293 21.499 25.2592L21.5153 25.2538ZM26.0004 29.3158H20.1735C20.1333 28.5963 20.0025 27.8848 19.7839 27.1982C20.325 27.0898 20.8119 26.9653 21.3205 26.819C21.829 26.6728 22.2024 26.5591 22.5973 26.4345H22.6514C23.0518 26.2991 23.463 26.1691 23.8579 26.0012C24.2529 25.8333 24.5613 25.7142 24.8642 25.5842C25.8868 26.6674 25.995 27.4256 26.0004 29.332V29.3158ZM16.4944 6.73131C16.0183 6.69881 15.5368 6.67715 15.0553 6.67715C14.5738 6.67715 14.0976 6.67715 13.6107 6.73131V6.1139C13.6121 5.73132 13.765 5.36489 14.0357 5.09488C14.3065 4.82486 14.6731 4.67326 15.0553 4.67326C15.4365 4.67469 15.8018 4.82693 16.0714 5.09679C16.3409 5.36666 16.493 5.73226 16.4944 6.1139V6.73131ZM10.3537 27.2036C10.1321 27.8894 10.0011 28.6013 9.96414 29.3212H4.15885C4.15885 27.4148 4.27246 26.6728 5.30043 25.5734C6.11257 25.9318 6.94334 26.2464 7.78917 26.5157C8.637 26.7894 9.49841 27.019 10.3699 27.2036H10.3537ZM7.29685 24.8097V9.5801C7.83788 9.39596 8.25449 9.24431 8.66568 9.12516V25.2701C8.22203 25.1347 7.78377 24.9884 7.32389 24.8206L7.29685 24.8097ZM5.85229 24.2302C5.72245 24.1706 5.59801 24.1165 5.47898 24.0515L5.38698 24.0136C4.75468 23.7221 4.14042 23.393 3.54748 23.0279V21.3489C4.26706 21.5493 5.05697 21.7443 5.85229 21.9176V24.2681V24.2302ZM3.54748 19.8487V17.9098H5.85229V20.477C4.98123 20.2658 4.20755 20.0654 3.5529 19.8596L3.54748 19.8487ZM3.54748 16.4638V14.5194C4.20754 14.3082 4.98123 14.1078 5.85229 13.9183V16.4529L3.54748 16.4638ZM3.54748 13.0192V11.3403C4.28715 10.8868 5.05726 10.4851 5.85229 10.1379V12.4451C5.04074 12.6293 4.25083 12.8297 3.5529 13.0301L3.54748 13.0192Z" fill="#1D1D1D"/>
|
|
22
|
+
</g>
|
|
23
|
+
<defs>
|
|
24
|
+
<linearGradient id="paint0_linear_4088_33996" x1="3.46094" y1="22.8221" x2="5.95512" y2="22.8221" gradientUnits="userSpaceOnUse">
|
|
25
|
+
<stop stop-color="#F37C1C"/>
|
|
26
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
27
|
+
</linearGradient>
|
|
28
|
+
<linearGradient id="paint1_linear_4088_33996" x1="7.21045" y1="17.1949" x2="8.7686" y2="17.1949" gradientUnits="userSpaceOnUse">
|
|
29
|
+
<stop stop-color="#EFC530"/>
|
|
30
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
31
|
+
</linearGradient>
|
|
32
|
+
<linearGradient id="paint2_linear_4088_33996" x1="4.06119" y1="27.4364" x2="10.4941" y2="27.4364" gradientUnits="userSpaceOnUse">
|
|
33
|
+
<stop stop-color="#EFC530"/>
|
|
34
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
35
|
+
</linearGradient>
|
|
36
|
+
<linearGradient id="paint3_linear_4088_33996" x1="13.5352" y1="5.70769" x2="16.6082" y2="5.70769" gradientUnits="userSpaceOnUse">
|
|
37
|
+
<stop stop-color="#EFC530"/>
|
|
38
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
39
|
+
</linearGradient>
|
|
40
|
+
<linearGradient id="paint4_linear_4088_33996" x1="9.99162" y1="9.95385" x2="20.1469" y2="9.95385" gradientUnits="userSpaceOnUse">
|
|
41
|
+
<stop stop-color="#F37C1C"/>
|
|
42
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
43
|
+
</linearGradient>
|
|
44
|
+
<linearGradient id="paint5_linear_4088_33996" x1="19.649" y1="27.4364" x2="26.0766" y2="27.4364" gradientUnits="userSpaceOnUse">
|
|
45
|
+
<stop stop-color="#EFC530"/>
|
|
46
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
47
|
+
</linearGradient>
|
|
48
|
+
<linearGradient id="paint6_linear_4088_33996" x1="3.46094" y1="19.1988" x2="5.95513" y2="19.1988" gradientUnits="userSpaceOnUse">
|
|
49
|
+
<stop stop-color="#F37C1C"/>
|
|
50
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
51
|
+
</linearGradient>
|
|
52
|
+
<linearGradient id="paint7_linear_4088_33996" x1="3.46094" y1="15.1965" x2="5.95513" y2="15.1965" gradientUnits="userSpaceOnUse">
|
|
53
|
+
<stop stop-color="#F37C1C"/>
|
|
54
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
55
|
+
</linearGradient>
|
|
56
|
+
<linearGradient id="paint8_linear_4088_33996" x1="3.46094" y1="11.5787" x2="5.95513" y2="11.5787" gradientUnits="userSpaceOnUse">
|
|
57
|
+
<stop stop-color="#F37C1C"/>
|
|
58
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
59
|
+
</linearGradient>
|
|
60
|
+
<linearGradient id="paint9_linear_4088_33996" x1="9.99162" y1="14.6983" x2="20.1469" y2="14.6983" gradientUnits="userSpaceOnUse">
|
|
61
|
+
<stop stop-color="#F37C1C"/>
|
|
62
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
63
|
+
</linearGradient>
|
|
64
|
+
<linearGradient id="paint10_linear_4088_33996" x1="9.99162" y1="19.7025" x2="20.1469" y2="19.7025" gradientUnits="userSpaceOnUse">
|
|
65
|
+
<stop stop-color="#F37C1C"/>
|
|
66
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
67
|
+
</linearGradient>
|
|
68
|
+
<linearGradient id="paint11_linear_4088_33996" x1="9.98625" y1="24.447" x2="20.1415" y2="24.447" gradientUnits="userSpaceOnUse">
|
|
69
|
+
<stop stop-color="#F37C1C"/>
|
|
70
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
71
|
+
</linearGradient>
|
|
72
|
+
<linearGradient id="paint12_linear_4088_33996" x1="27.9375" y1="18.3972" x2="33.1044" y2="18.3972" gradientUnits="userSpaceOnUse">
|
|
73
|
+
<stop stop-color="#EFC530"/>
|
|
74
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
75
|
+
</linearGradient>
|
|
76
|
+
<linearGradient id="paint13_linear_4088_33996" x1="24.188" y1="15.1965" x2="26.6822" y2="15.1965" gradientUnits="userSpaceOnUse">
|
|
77
|
+
<stop stop-color="#F37C1C"/>
|
|
78
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
79
|
+
</linearGradient>
|
|
80
|
+
<linearGradient id="paint14_linear_4088_33996" x1="21.4072" y1="17.2003" x2="22.9329" y2="17.2003" gradientUnits="userSpaceOnUse">
|
|
81
|
+
<stop stop-color="#EFC530"/>
|
|
82
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
83
|
+
</linearGradient>
|
|
84
|
+
<linearGradient id="paint15_linear_4088_33996" x1="24.188" y1="11.5787" x2="26.6822" y2="11.5787" gradientUnits="userSpaceOnUse">
|
|
85
|
+
<stop stop-color="#F37C1C"/>
|
|
86
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
87
|
+
</linearGradient>
|
|
88
|
+
<linearGradient id="paint16_linear_4088_33996" x1="24.188" y1="19.1988" x2="26.6822" y2="19.1988" gradientUnits="userSpaceOnUse">
|
|
89
|
+
<stop stop-color="#F37C1C"/>
|
|
90
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
91
|
+
</linearGradient>
|
|
92
|
+
<linearGradient id="paint17_linear_4088_33996" x1="24.188" y1="22.8166" x2="26.6822" y2="22.8166" gradientUnits="userSpaceOnUse">
|
|
93
|
+
<stop stop-color="#F37C1C"/>
|
|
94
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
95
|
+
</linearGradient>
|
|
96
|
+
<clipPath id="clip0_4088_33996">
|
|
97
|
+
<rect width="34" height="34" fill="white" transform="translate(0.5)"/>
|
|
98
|
+
</clipPath>
|
|
99
|
+
</defs>
|
|
100
|
+
</svg>
|
|
@@ -1,11 +1,17 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path d="
|
|
3
|
-
<
|
|
4
|
-
<path d="
|
|
5
|
-
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M25.8928 13.0919H25.3231C24.2568 13.0917 23.227 13.4804 22.4268 14.1852C21.6266 14.89 21.1109 15.8624 20.9764 16.9202C21.2089 16.6397 21.5006 16.4141 21.8305 16.2595C22.1605 16.1048 22.5205 16.025 22.8849 16.0258H24.423C25.0818 16.0258 25.7135 16.2875 26.1793 16.7533C26.6451 17.2191 26.9068 17.8509 26.9068 18.5096V22.6512C26.9053 23.309 26.643 23.9393 26.1773 24.4039C25.7117 24.8685 25.0808 25.1294 24.423 25.1294H22.8849C22.515 25.1295 22.1498 25.0473 21.8158 24.8887C21.4817 24.73 21.1872 24.4989 20.9536 24.2122C21.0531 25.3022 21.5565 26.3156 22.365 27.0535C23.1735 27.7913 24.2286 28.2003 25.3231 28.2H25.8928C26.4681 28.2 27.0378 28.0867 27.5693 27.8665C28.1008 27.6464 28.5838 27.3237 28.9906 26.9169C29.3974 26.5101 29.7201 26.0271 29.9402 25.4956C30.1604 24.9641 30.2737 24.3944 30.2737 23.8191V17.4728C30.2737 16.8975 30.1604 16.3278 29.9402 15.7963C29.7201 15.2648 29.3974 14.7819 28.9906 14.3751C28.5838 13.9682 28.1008 13.6455 27.5693 13.4254C27.0378 13.2052 26.4681 13.0919 25.8928 13.0919Z" fill="white"/>
|
|
3
|
+
<path d="M9.83877 13.5933L10.0268 14.6757C10.1143 14.7943 10.2285 14.8906 10.3601 14.9569C10.4917 15.0232 10.6371 15.0576 10.7845 15.0574C10.9091 15.0574 11.0326 15.0328 11.1477 14.9849C11.2628 14.937 11.3673 14.8668 11.4552 14.7784C11.543 14.69 11.6126 14.5851 11.6598 14.4697C11.707 14.3543 11.7309 14.2307 11.7301 14.106V8.14142H22.2351C22.626 7.65967 22.8285 7.05228 22.8048 6.43236C22.7713 5.81198 22.5117 5.22536 22.075 4.78342C21.6383 4.34149 21.0549 4.07488 20.4349 4.03399C19.9395 4.00639 19.4467 4.12315 19.0164 4.3701C18.5723 4.62651 18.0518 4.71742 17.5471 4.6267C17.0424 4.53597 16.5861 4.26949 16.2591 3.87448C15.962 3.51926 15.5909 3.23324 15.1717 3.03643C14.7525 2.83963 14.2954 2.73679 13.8323 2.73511C13.3698 2.73567 12.9131 2.83804 12.4947 3.03495C12.0763 3.23187 11.7063 3.5185 11.4111 3.87448C11.0834 4.26853 10.6272 4.53429 10.1228 4.62496C9.61841 4.71562 9.09819 4.62538 8.65381 4.3701C8.39202 4.21773 8.10419 4.11534 7.80498 4.06817C7.59716 4.04238 7.38765 4.03284 7.17834 4.03968C6.57579 4.09269 6.01206 4.35941 5.58893 4.79167L5.15026 5.38985C4.97662 5.71328 4.87736 6.07139 4.85972 6.43807C4.84513 6.6832 4.86818 6.92912 4.92807 7.16726L5.418 8.15281H9.81029V13.5933H9.83877Z" fill="url(#paint0_linear_4088_33988)"/>
|
|
4
|
+
<path d="M6.99027 31.2591H20.6627C20.7874 31.2599 20.911 31.236 21.0264 31.1888C21.1418 31.1416 21.2467 31.0721 21.3351 30.9842C21.4236 30.8963 21.4937 30.7918 21.5416 30.6767C21.5895 30.5616 21.6141 30.4381 21.6141 30.3135V10.0383H13.6385V14.1059C13.6385 14.8613 13.3384 15.5858 12.8042 16.12C12.2701 16.6542 11.5455 16.9543 10.7901 16.9543C10.3977 16.9557 10.0094 16.8742 9.6507 16.7151C9.14207 16.4931 8.70938 16.1274 8.40576 15.6628C8.10214 15.1983 7.94081 14.6552 7.94164 14.1002V10.0383H6.0332V30.3135C6.0332 30.5658 6.13344 30.8078 6.31186 30.9862C6.49027 31.1646 6.73225 31.2648 6.98457 31.2648L6.99027 31.2591Z" fill="url(#paint1_linear_4088_33988)"/>
|
|
5
|
+
<path d="M25.2945 11.8955H23.517V9.5484C23.9183 9.1176 24.2293 8.61092 24.4318 8.05815C24.6343 7.50538 24.7242 6.91771 24.6963 6.32967C24.6481 5.23763 24.1929 4.20319 23.4202 3.42997C22.6636 2.65778 21.6502 2.18961 20.5718 2.114C19.7059 2.05699 18.8424 2.25505 18.0879 2.68369C18.0296 2.71403 17.9625 2.72323 17.8981 2.70973C17.8337 2.69623 17.776 2.66086 17.7347 2.60962C17.2602 2.04384 16.6674 1.58893 15.9981 1.27693C15.3288 0.964919 14.5993 0.803386 13.8608 0.803711C13.1211 0.80364 12.3903 0.965831 11.72 1.27884C11.0497 1.59184 10.4561 2.04804 9.98129 2.61531C9.94002 2.66654 9.88232 2.70191 9.81793 2.71541C9.75355 2.72891 9.68645 2.71971 9.62808 2.68937C8.87261 2.25805 8.00643 2.05984 7.13856 2.11968C6.06035 2.19168 5.04639 2.65811 4.29013 3.42997C3.52269 4.2039 3.06998 5.23521 3.01974 6.32397C2.99287 6.91236 3.08385 7.50019 3.28734 8.05293C3.49082 8.60568 3.80269 9.11218 4.20466 9.54269V30.2964C4.20466 31.0518 4.50477 31.7763 5.03895 32.3105C5.57314 32.8447 6.29764 33.1448 7.05309 33.1448H20.7256C21.481 33.1448 22.2055 32.8447 22.7397 32.3105C23.2739 31.7763 23.574 31.0518 23.574 30.2964V29.3849H25.3571C26.9512 29.3818 28.479 28.7469 29.6057 27.6192C30.7323 26.4915 31.3658 24.963 31.3673 23.369V17.8829C31.3643 16.2904 30.7299 14.764 29.6033 13.6384C28.4767 12.5128 26.9497 11.8799 25.3571 11.8784L25.2945 11.8955ZM23.5227 17.5924H24.6621C24.9129 17.5924 25.1534 17.692 25.3308 17.8693C25.5081 18.0467 25.6078 18.2872 25.6078 18.538V22.7537C25.6085 22.8784 25.5846 23.002 25.5374 23.1174C25.4902 23.2328 25.4207 23.3377 25.3328 23.4261C25.2449 23.5145 25.1404 23.5847 25.0253 23.6326C24.9102 23.6804 24.7868 23.7051 24.6621 23.7051H23.5227V17.5924ZM4.85982 6.43221C4.89315 5.81274 5.15196 5.22687 5.58747 4.78506C6.02297 4.34326 6.6051 4.07606 7.22403 4.03384C7.72172 4.00067 8.21789 4.11777 8.64824 4.36995C9.09262 4.62523 9.61284 4.71547 10.1172 4.6248C10.6216 4.53414 11.0778 4.26838 11.4055 3.87433C11.701 3.51865 12.071 3.23223 12.4894 3.03534C12.9078 2.83845 13.3643 2.73591 13.8267 2.73496C14.2899 2.73586 14.7473 2.83834 15.1666 3.0352C15.5859 3.23206 15.9569 3.51851 16.2535 3.87433C16.5805 4.26934 17.0368 4.53582 17.5415 4.62654C18.0462 4.71726 18.5667 4.62636 19.0108 4.36995C19.4391 4.11789 19.9335 4.00077 20.4293 4.03384C21.0493 4.07473 21.6328 4.34134 22.0695 4.78327C22.5061 5.22521 22.7657 5.81183 22.7992 6.43221C22.8282 7.05289 22.6251 7.66213 22.2295 8.14127H11.7302V14.1059C11.731 14.2305 11.7071 14.3541 11.6599 14.4695C11.6127 14.5849 11.5431 14.6898 11.4553 14.7783C11.3674 14.8667 11.2629 14.9369 11.1478 14.9847C11.0327 15.0326 10.9092 15.0573 10.7846 15.0573C10.6599 15.0573 10.5365 15.0326 10.4213 14.9847C10.3062 14.9369 10.2017 14.8667 10.1138 14.7783C10.0259 14.6898 9.9564 14.5849 9.90921 14.4695C9.86202 14.3541 9.83811 14.2305 9.83887 14.1059V8.13557H5.4181C5.02898 7.65348 4.83033 7.04534 4.85982 6.42651V6.43221ZM21.6257 30.3191C21.6257 30.4438 21.601 30.5672 21.5531 30.6824C21.5053 30.7975 21.4351 30.902 21.3467 30.9899C21.2583 31.0778 21.1533 31.1473 21.0379 31.1945C20.9225 31.2417 20.799 31.2656 20.6743 31.2648H7.00184C6.87765 31.2648 6.75468 31.2404 6.63994 31.1928C6.52521 31.1453 6.42094 31.0757 6.33313 30.9878C6.24531 30.9 6.17568 30.7958 6.12815 30.681C6.08063 30.5663 6.05614 30.4433 6.05614 30.3191V10.0383H7.95891V14.1059C7.95891 14.8613 8.25902 15.5858 8.7932 16.12C9.32738 16.6542 10.0519 16.9543 10.8073 16.9543C11.5628 16.9543 12.2873 16.6542 12.8215 16.12C13.3557 15.5858 13.6558 14.8613 13.6558 14.1059V10.044H21.6314V30.3191H21.6257ZM29.4133 23.3918C29.4118 24.4837 28.9774 25.5304 28.2053 26.3025C27.4332 27.0747 26.3864 27.5091 25.2945 27.5106H23.517V25.6078H24.6564C25.4119 25.6078 26.1364 25.3077 26.6705 24.7736C27.2047 24.2394 27.5048 23.5149 27.5048 22.7594V18.5437C27.5048 17.7883 27.2047 17.0638 26.6705 16.5296C26.1364 15.9954 25.4119 15.6953 24.6564 15.6953H23.517V13.7926H25.2945C26.3864 13.7941 27.4332 14.2285 28.2053 15.0006C28.9774 15.7727 29.4118 16.8195 29.4133 17.9114V23.3918Z" fill="black"/>
|
|
6
|
+
<path d="M20.6687 33.1905H6.99624C6.23865 33.1815 5.51506 32.8746 4.982 32.3362C4.44894 31.7978 4.14926 31.0712 4.14781 30.3136V9.5485C3.74474 9.11548 3.4327 8.60597 3.23014 8.05015C3.02758 7.49433 2.93861 6.90351 2.96856 6.31269C3.01722 5.21742 3.47217 4.17956 4.24465 3.40158C5.01393 2.61676 6.04737 2.14575 7.14437 2.07992C8.01768 2.02008 8.8893 2.21818 9.65096 2.64961C9.70257 2.67618 9.76168 2.68445 9.81859 2.67306C9.87551 2.66168 9.9269 2.63131 9.96432 2.58693C10.4416 2.01584 11.0385 1.55656 11.7128 1.24154C12.3871 0.926535 13.1224 0.763478 13.8667 0.763932C14.6098 0.762051 15.3442 0.923923 16.0177 1.23802C16.6911 1.55211 17.2872 2.01071 17.7633 2.58123C17.8007 2.62561 17.8521 2.65598 17.909 2.66736C17.9659 2.67874 18.025 2.67048 18.0766 2.64391C18.836 2.21199 19.706 2.01381 20.5776 2.07422C21.6746 2.14005 22.708 2.61108 23.4773 3.3959C24.2543 4.17417 24.7133 5.21412 24.7647 6.31269C24.7934 6.90338 24.7039 7.49385 24.5014 8.04949C24.2989 8.60513 23.9875 9.11475 23.5855 9.5485V11.8272H25.3287C26.9313 11.8272 28.4685 12.4631 29.6028 13.5952C30.7371 14.7274 31.3758 16.2633 31.3788 17.8659V23.352C31.3773 24.9561 30.7394 26.4941 29.6051 27.6284C28.4708 28.7626 26.9328 29.4005 25.3287 29.4021H23.5855V30.2794C23.5893 30.6632 23.5164 31.0439 23.3711 31.3992C23.2258 31.7545 23.011 32.0772 22.7393 32.3484C22.4677 32.6195 22.1446 32.8337 21.789 32.9783C21.4334 33.1229 21.0525 33.195 20.6687 33.1905ZM7.37222 2.14258H7.11589C6.03739 2.20879 5.02208 2.67381 4.26746 3.44717C3.51129 4.20917 3.06296 5.22346 3.00844 6.2956C2.9699 6.88841 3.05311 7.48284 3.25298 8.04228C3.45285 8.60171 3.76513 9.11431 4.17059 9.5485V30.3192C4.17946 31.0629 4.47881 31.7735 5.00467 32.2994C5.53053 32.8253 6.24121 33.1246 6.98484 33.1335H20.6573C21.4069 33.1336 22.1263 32.8382 22.6595 32.3113C23.1927 31.7845 23.4967 31.0688 23.5057 30.3192V29.3736H25.3117C26.8992 29.3721 28.4212 28.7408 29.5437 27.6182C30.6663 26.4957 31.2975 24.9737 31.299 23.3862V17.9001C31.296 16.3141 30.6639 14.7941 29.5414 13.6737C28.4188 12.5533 26.8976 11.9241 25.3117 11.9241H23.483V9.5485C23.8833 9.12199 24.1936 8.61916 24.3952 8.07004C24.5968 7.52093 24.6857 6.9368 24.6565 6.35257C24.6059 5.2689 24.1529 4.24307 23.3861 3.47564C22.6321 2.70137 21.6165 2.23619 20.5377 2.17106C19.6757 2.11663 18.8165 2.31459 18.0652 2.74074C18.0011 2.77507 17.9271 2.78645 17.8556 2.77298C17.7841 2.75951 17.7194 2.72201 17.6722 2.6667C17.2022 2.10368 16.614 1.65102 15.9495 1.34089C15.2849 1.03075 14.5602 0.870724 13.8268 0.872174C13.0912 0.870923 12.3644 1.03156 11.6979 1.34268C11.0313 1.65379 10.4414 2.10775 9.97002 2.67238C9.9234 2.72861 9.85859 2.76679 9.78681 2.78031C9.71504 2.79384 9.64082 2.78185 9.57694 2.74645C8.90822 2.3541 8.14753 2.14576 7.37222 2.14258ZM20.6744 31.2706H7.00194C6.74404 31.2691 6.49713 31.166 6.31477 30.9836C6.1324 30.8013 6.02926 30.5544 6.02777 30.2965V10.0042H7.98749V14.106C7.99488 14.8506 8.29357 15.5627 8.81959 16.0898C9.34561 16.6169 10.0571 16.917 10.8017 16.9259C11.5463 16.917 12.2579 16.6169 12.7839 16.0898C13.3099 15.5627 13.6086 14.8506 13.616 14.106V10.0042H21.6657V30.3136C21.6649 30.4427 21.6387 30.5705 21.5884 30.6894C21.5381 30.8084 21.4648 30.9163 21.3726 31.0068C21.2805 31.0973 21.1714 31.1687 21.0516 31.217C20.9317 31.2652 20.8036 31.2892 20.6744 31.2877V31.2706ZM6.07906 10.0498V30.2965C6.07906 30.4162 6.10262 30.5347 6.14842 30.6453C6.19423 30.7559 6.26139 30.8563 6.34603 30.941C6.43067 31.0256 6.53113 31.0928 6.64172 31.1386C6.75231 31.1844 6.87084 31.208 6.99054 31.208H20.663C20.9053 31.208 21.1377 31.1121 21.3096 30.9413C21.4814 30.7706 21.5787 30.5387 21.5802 30.2965V10.0669H13.6616V14.106C13.6601 14.87 13.3559 15.6024 12.8156 16.1426C12.2753 16.6829 11.543 16.9871 10.779 16.9886C10.0154 16.9871 9.28368 16.6827 8.74431 16.1423C8.20495 15.6019 7.90206 14.8695 7.90206 14.106V10.0726L6.07906 10.0498ZM25.2946 27.5164H23.483V25.5567H24.6565C25.4011 25.5478 26.1126 25.2476 26.6387 24.7206C27.1647 24.1935 27.4634 23.4813 27.4708 22.7367V18.5211C27.4619 17.7774 27.1625 17.0667 26.6367 16.5409C26.1108 16.015 25.4001 15.7157 24.6565 15.7068H23.483V13.7642H25.2889C26.3878 13.7642 27.4418 14.2003 28.2194 14.9769C28.9971 15.7534 29.4347 16.8069 29.4362 17.9058V23.3862C29.4362 24.4851 29 25.5391 28.2235 26.3168C27.4469 27.0944 26.3935 27.532 25.2946 27.5335V27.5164ZM23.5513 27.4537H25.2946C26.3779 27.4537 27.4168 27.0234 28.1828 26.2574C28.9489 25.4913 29.3792 24.4524 29.3792 23.3691V17.8887C29.3777 16.8064 28.9467 15.7689 28.1808 15.0041C27.415 14.2393 26.3769 13.8098 25.2946 13.8098H23.5513V15.6441H24.6907C25.4434 15.653 26.1627 15.956 26.695 16.4882C27.2273 17.0205 27.5302 17.7399 27.5391 18.4926V22.7082C27.5392 23.4669 27.2402 24.195 26.7069 24.7346C26.1737 25.2742 25.4493 25.5819 24.6907 25.5909H23.5513V27.4537ZM24.6907 23.7109H23.483V17.5526H24.6565C24.9154 17.5541 25.1632 17.658 25.3457 17.8416C25.5282 18.0252 25.6307 18.2735 25.6307 18.5324V22.7481C25.6307 23.0051 25.5298 23.2517 25.3497 23.435C25.1697 23.6183 24.9248 23.7235 24.6679 23.728L24.6907 23.7109ZM23.5513 23.6482H24.6907C24.933 23.6467 25.1648 23.5494 25.3355 23.3776C25.5063 23.2057 25.6022 22.9733 25.6022 22.731V18.5154C25.6022 18.2736 25.5061 18.0418 25.3352 17.8708C25.1643 17.6999 24.9324 17.6039 24.6907 17.6039H23.5513V23.6482ZM10.7847 15.0631C10.5297 15.0616 10.2853 14.9609 10.1034 14.7822C9.92147 14.6035 9.81642 14.3609 9.81049 14.106V8.16985H5.40683C5.01916 7.68635 4.8171 7.08019 4.83714 6.46079C4.86932 5.83185 5.13134 5.23664 5.57349 4.78819C6.01563 4.33974 6.60708 4.06931 7.2355 4.02824C7.73728 3.99798 8.23681 4.11692 8.67112 4.37005C9.10933 4.62306 9.62281 4.7132 10.121 4.62461C10.6192 4.53602 11.0701 4.27438 11.3942 3.88582C11.6929 3.52808 12.0667 3.24054 12.4891 3.04362C12.9115 2.84669 13.3721 2.74523 13.8382 2.74645C14.3052 2.744 14.7671 2.84488 15.1906 3.04186C15.6141 3.23884 15.9888 3.52704 16.2878 3.88582C16.6103 4.2749 17.0603 4.53707 17.5578 4.62572C18.0553 4.71438 18.5682 4.62379 19.0052 4.37005C19.4418 4.11741 19.943 3.99855 20.4465 4.02824C21.0731 4.07305 21.6618 4.34485 22.1022 4.79268C22.5427 5.2405 22.8048 5.83359 22.8392 6.46079C22.866 7.08116 22.6632 7.68965 22.2695 8.16985H11.7873V14.106C11.7866 14.2356 11.7601 14.3638 11.7095 14.4832C11.6588 14.6025 11.585 14.7107 11.4923 14.8013C11.3995 14.8919 11.2898 14.9632 11.1693 15.0111C11.0488 15.0589 10.92 15.0824 10.7903 15.0801L10.7847 15.0631ZM5.43531 8.0901H9.87315V14.106C9.87314 14.3483 9.96899 14.5807 10.1398 14.7525C10.3105 14.9244 10.5424 15.0217 10.7847 15.0232C10.9051 15.0232 11.0244 14.9995 11.1356 14.9534C11.2469 14.9073 11.348 14.8397 11.4332 14.7545C11.5184 14.6694 11.5859 14.5683 11.632 14.457C11.6781 14.3457 11.7019 14.2264 11.7019 14.106V8.10719H22.2126C22.6132 7.63083 22.8169 7.01958 22.7823 6.39814C22.7488 5.7868 22.4928 5.20885 22.0625 4.77331C21.6322 4.33777 21.0574 4.07477 20.4465 4.03394C19.9567 3.99978 19.4681 4.11498 19.0451 4.36435C18.5935 4.62335 18.065 4.71506 17.5525 4.62339C17.04 4.53173 16.5761 4.26253 16.2422 3.86303C15.9516 3.50759 15.5857 3.22104 15.171 3.02402C14.7563 2.827 14.303 2.72441 13.8439 2.72365C13.3851 2.72638 12.9325 2.82986 12.518 3.02673C12.1036 3.22361 11.7375 3.50909 11.4455 3.86303C11.1132 4.26307 10.6498 4.53239 10.1377 4.62313C9.62558 4.71387 9.0979 4.62017 8.64834 4.35867C8.22346 4.11456 7.73585 4.00157 7.2469 4.03394C6.63458 4.07222 6.05771 4.33423 5.62599 4.77015C5.19427 5.20606 4.93785 5.78547 4.9055 6.39814C4.86906 7.01413 5.05957 7.62213 5.44101 8.10719L5.43531 8.0901Z" fill="#1D1D1D"/>
|
|
6
7
|
<defs>
|
|
7
|
-
<
|
|
8
|
-
<
|
|
9
|
-
|
|
8
|
+
<linearGradient id="paint0_linear_4088_33988" x1="13.8266" y1="15.0574" x2="13.8266" y2="2.7465" gradientUnits="userSpaceOnUse">
|
|
9
|
+
<stop stop-color="#EFC530"/>
|
|
10
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
11
|
+
</linearGradient>
|
|
12
|
+
<linearGradient id="paint1_linear_4088_33988" x1="13.8265" y1="31.2591" x2="13.8265" y2="10.0326" gradientUnits="userSpaceOnUse">
|
|
13
|
+
<stop stop-color="#F37C1C"/>
|
|
14
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
15
|
+
</linearGradient>
|
|
10
16
|
</defs>
|
|
11
17
|
</svg>
|
|
@@ -1,13 +1,18 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path d="
|
|
3
|
-
<
|
|
4
|
-
<path d="
|
|
5
|
-
<path d="
|
|
6
|
-
<path d="M24.
|
|
7
|
-
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.0847 6.47095C16.1097 6.47095 15.1443 6.66397 14.2436 7.03897C13.3429 7.41398 12.5245 7.96363 11.8353 8.65652C11.146 9.34941 10.5994 10.172 10.2266 11.0772C9.85379 11.9824 9.66215 12.9526 9.6626 13.9322H24.5103C24.5103 11.9534 23.728 10.0556 22.3354 8.65631C20.9428 7.25705 19.0541 6.47095 17.0847 6.47095Z" fill="white"/>
|
|
3
|
+
<path d="M10.8853 17.6525H23.2842L21.8342 29.8238H12.3421L10.8853 17.6525Z" fill="url(#paint0_linear_4088_33992)"/>
|
|
4
|
+
<path d="M21.8652 29.8514H12.3249L10.8853 17.6248H23.3393L21.8652 29.8514ZM12.3766 29.7926H21.8135L23.2566 17.6801H10.9335L12.3766 29.7926Z" fill="black"/>
|
|
5
|
+
<path d="M9.53174 14.9149H24.6619V15.8978H9.53519L9.53174 14.9149Z" fill="url(#paint1_linear_4088_33992)"/>
|
|
6
|
+
<path d="M24.6896 15.9255H9.50781V14.8873H24.693L24.6896 15.9255ZM9.56291 15.8702H24.6311V14.9427H9.56291V15.8702Z" fill="black"/>
|
|
7
|
+
<path d="M25.0856 13.1604C24.9319 11.2497 24.1109 9.45516 22.7677 8.09392C22.0827 7.41784 21.2794 6.87463 20.3981 6.49161L20.6943 3.6227L22.5645 4.13834C22.6748 4.1688 22.7901 4.17712 22.9036 4.16282C23.0172 4.14852 23.1268 4.11189 23.2263 4.05501C23.3258 3.99813 23.4131 3.92212 23.4833 3.83131C23.5536 3.74051 23.6053 3.63668 23.6356 3.52579C23.6968 3.30092 23.6666 3.06084 23.5516 2.85835C23.4366 2.65586 23.2463 2.50755 23.0225 2.44605L20.1639 1.65356C20.042 1.61852 19.9138 1.61121 19.7887 1.63216C19.6636 1.65311 19.5447 1.70179 19.4406 1.77467C19.3366 1.84713 19.2493 1.94117 19.1846 2.05041C19.1198 2.15966 19.0791 2.28159 19.0652 2.40799L18.6967 5.96559C18.1689 5.86374 17.6326 5.81275 17.0952 5.81332C16.0488 5.7974 15.0096 5.98877 14.0369 6.37653C13.0642 6.76428 12.177 7.3408 11.4261 8.07315C10.0814 9.43335 9.26016 11.2285 9.10821 13.1396C8.7565 13.1424 8.42011 13.2847 8.17238 13.5355C7.92464 13.7864 7.78563 14.1255 7.78564 14.4789V16.2923C7.78655 16.6476 7.92716 16.9881 8.17683 17.2396C8.4265 17.4911 8.76499 17.6333 9.11853 17.6351H9.14264L10.6856 30.5989C10.7169 30.8637 10.844 31.1078 11.0428 31.2846C11.2416 31.4614 11.4982 31.5585 11.7636 31.5575H22.4405C22.7051 31.5569 22.9604 31.4591 23.1584 31.2826C23.3563 31.106 23.4831 30.8629 23.5151 30.5989L25.058 17.6385H25.0821C25.4354 17.6376 25.7739 17.4962 26.0236 17.2453C26.2734 16.9943 26.4141 16.6542 26.415 16.2992V14.4858C26.4159 14.1327 26.2777 13.7936 26.0305 13.5427C25.7833 13.2917 25.4473 13.1493 25.0959 13.1465L25.0856 13.1604ZM9.53183 15.8978V14.915H24.662V15.8978H9.53183ZM23.3325 13.1604H19.7162L20.2121 8.34655C21.0831 8.83287 21.8227 9.52563 22.3665 10.3646C22.9103 11.2036 23.242 12.1633 23.3325 13.1604ZM17.0848 7.57135C17.5628 7.57245 18.0394 7.62232 18.5073 7.72017L17.9459 13.1604H10.8544C10.989 11.6066 11.7086 10.163 12.8665 9.12437C14.0244 8.08568 15.5332 7.53021 17.0848 7.57135ZM21.8309 29.8237H12.3388L10.8854 17.6524H23.2843L21.8412 29.8237H21.8309Z" fill="#1D1D1D"/>
|
|
8
8
|
<defs>
|
|
9
|
-
<
|
|
10
|
-
<
|
|
11
|
-
|
|
9
|
+
<linearGradient id="paint0_linear_4088_33992" x1="17.095" y1="29.8238" x2="17.095" y2="17.6525" gradientUnits="userSpaceOnUse">
|
|
10
|
+
<stop stop-color="#F37C1C"/>
|
|
11
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
12
|
+
</linearGradient>
|
|
13
|
+
<linearGradient id="paint1_linear_4088_33992" x1="17.0951" y1="15.8978" x2="17.0951" y2="14.9115" gradientUnits="userSpaceOnUse">
|
|
14
|
+
<stop stop-color="#EFC530"/>
|
|
15
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
16
|
+
</linearGradient>
|
|
12
17
|
</defs>
|
|
13
18
|
</svg>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M22.5987 12.0826L22.4525 11.9657C21.1965 10.8304 20.4172 9.26136 20.2716 7.57453L20.2424 7.20618H10.4193C9.88076 7.20661 9.35407 7.36461 8.9042 7.66071C8.45433 7.95682 8.10092 8.37808 7.88755 8.87258L5.73584 13.8893H22.5929V12.0826H22.5987Z" fill="white"/>
|
|
3
|
+
<path d="M2.99902 18.1752V20.514C2.99902 21.2444 3.28917 21.9449 3.80563 22.4614C4.3221 22.9779 5.02258 23.268 5.75298 23.268H22.61V15.4213H5.75298C5.02258 15.4213 4.3221 15.7114 3.80563 16.2279C3.28917 16.7444 2.99902 17.4448 2.99902 18.1752ZM13.9739 18.5787H18.6516C18.8558 18.5802 19.0512 18.662 19.1956 18.8064C19.34 18.9508 19.4219 19.1463 19.4234 19.3505C19.4219 19.5547 19.34 19.7501 19.1956 19.8945C19.0512 20.039 18.8558 20.1208 18.6516 20.1223H13.9739C13.7692 20.1223 13.5729 20.041 13.4282 19.8962C13.2834 19.7515 13.2021 19.5552 13.2021 19.3505C13.2021 19.1458 13.2834 18.9495 13.4282 18.8047C13.5729 18.66 13.7692 18.5787 13.9739 18.5787Z" fill="url(#paint0_linear_4088_34003)"/>
|
|
4
|
+
<path d="M5.3501 24.8235V29.1562H10.8522V24.8293L5.3501 24.8235Z" fill="url(#paint1_linear_4088_34003)"/>
|
|
5
|
+
<path d="M30.7199 3.72143L30.0241 2.96716V7.60387C30.0247 7.7473 29.9849 7.88802 29.9095 8.01C29.834 8.13198 29.7258 8.23032 29.5972 8.29382L27.2584 9.46323C27.1517 9.51812 27.0334 9.54674 26.9134 9.54674C26.7934 9.54674 26.6752 9.51812 26.5685 9.46323L24.2296 8.29382C24.1017 8.23005 23.9943 8.13148 23.9198 8.00944C23.8454 7.8874 23.8068 7.74682 23.8086 7.60387V2.96716L23.1012 3.72143C22.3868 4.48402 21.9484 5.46383 21.8557 6.50462C21.7619 7.35516 21.8886 8.21552 22.2234 9.00298C22.5583 9.79044 23.0901 10.4785 23.7677 11.001H23.797H23.8379C23.9414 11.0731 24.0259 11.1694 24.084 11.2814C24.142 11.3935 24.172 11.518 24.1712 11.6442V28.7468C24.1712 29.4772 24.4613 30.1777 24.9778 30.6941C25.4942 31.2106 26.1947 31.5008 26.9251 31.5008C27.6555 31.5008 28.356 31.2106 28.8725 30.6941C29.3889 30.1777 29.6791 29.4772 29.6791 28.7468V11.691C29.6846 11.5767 29.7152 11.4651 29.7687 11.364C29.8223 11.2629 29.8975 11.1749 29.989 11.1063C30.7435 10.5491 31.328 9.79291 31.677 8.92235C32.0261 8.0518 32.1259 7.10126 31.9653 6.17719C31.8012 5.25377 31.3679 4.39943 30.7199 3.72143ZM26.9017 29.4075C26.8148 29.4083 26.7285 29.3917 26.648 29.3588C26.5675 29.3259 26.4943 29.2772 26.4328 29.2157C26.3713 29.1542 26.3226 29.0811 26.2897 29.0006C26.2568 28.92 26.2402 28.8338 26.241 28.7468C26.241 28.5716 26.3106 28.4035 26.4345 28.2796C26.5584 28.1557 26.7265 28.0861 26.9017 28.0861C27.077 28.0861 27.245 28.1557 27.3689 28.2796C27.4928 28.4035 27.5624 28.5716 27.5624 28.7468C27.5632 28.8338 27.5467 28.92 27.5137 29.0006C27.4808 29.0811 27.4322 29.1542 27.3707 29.2157C27.3092 29.2772 27.236 29.3259 27.1555 29.3588C27.075 29.3917 26.9887 29.4083 26.9017 29.4075Z" fill="url(#paint2_linear_4088_34003)"/>
|
|
6
|
+
<path d="M13.9745 20.1224H18.6521C18.8563 20.1208 19.0517 20.039 19.1961 19.8946C19.3406 19.7502 19.4224 19.5548 19.4239 19.3505C19.4224 19.1463 19.3406 18.9509 19.1961 18.8065C19.0517 18.6621 18.8563 18.5803 18.6521 18.5787H13.9745C13.7698 18.5787 13.5734 18.66 13.4287 18.8048C13.284 18.9495 13.2026 19.1458 13.2026 19.3505C13.2026 19.5552 13.284 19.7516 13.4287 19.8963C13.5734 20.041 13.7698 20.1224 13.9745 20.1224Z" fill="#1D1D1D"/>
|
|
7
|
+
<path d="M18.6753 20.2335H13.9977C13.764 20.2319 13.5403 20.1384 13.375 19.9732C13.2098 19.8079 13.1163 19.5842 13.1147 19.3506C13.1163 19.1169 13.2098 18.8932 13.375 18.7279C13.5403 18.5627 13.764 18.4692 13.9977 18.4677H18.6753C18.9084 18.4692 19.1315 18.5629 19.2958 18.7283C19.4601 18.8937 19.5524 19.1174 19.5524 19.3506C19.5524 19.5837 19.4601 19.8074 19.2958 19.9728C19.1315 20.1382 18.9084 20.2319 18.6753 20.2335ZM13.9977 18.6898C13.8229 18.6914 13.6557 18.7615 13.5321 18.885C13.4086 19.0086 13.3385 19.1758 13.3369 19.3506C13.3385 19.5253 13.4086 19.6925 13.5321 19.8161C13.6557 19.9396 13.8229 20.0097 13.9977 20.0113H18.6753C18.8501 20.0097 19.0172 19.9396 19.1408 19.8161C19.2644 19.6925 19.3345 19.5253 19.336 19.3506C19.3345 19.1758 19.2644 19.0086 19.1408 18.885C19.0172 18.7615 18.8501 18.6914 18.6753 18.6898H13.9977Z" fill="#1D1D1D"/>
|
|
8
|
+
<path d="M33.5615 5.86727C33.3633 4.7832 32.8997 3.76511 32.212 2.90396C31.5243 2.04282 30.634 1.36545 29.6206 0.932361C29.4868 0.866939 29.3384 0.837397 29.1897 0.846622C29.0411 0.855847 28.8974 0.903529 28.7728 0.984992C28.6474 1.06273 28.544 1.17122 28.4724 1.30016C28.4008 1.4291 28.3633 1.57421 28.3635 1.72172V7.05422L26.8959 7.7851L25.4283 7.05422V1.73341C25.4284 1.58513 25.3909 1.43924 25.3193 1.30937C25.2478 1.17951 25.1444 1.06992 25.019 0.990835C24.8941 0.909913 24.7505 0.862558 24.602 0.85334C24.4535 0.844122 24.3051 0.873354 24.1712 0.938214C23.2524 1.3451 22.4351 1.95039 21.7779 2.71063C21.1208 3.47086 20.6402 4.36717 20.3706 5.33519L20.3121 5.55738H10.4189C9.55679 5.55706 8.7136 5.81019 7.99421 6.28528C7.27481 6.76037 6.71094 7.43647 6.37274 8.22948L3.79419 14.2695L3.70064 14.3221C2.99606 14.6895 2.40557 15.2429 1.99326 15.9222C1.58095 16.6014 1.36256 17.3807 1.36182 18.1753V20.5141C1.36097 21.2843 1.56461 22.0408 1.95189 22.7065C2.33918 23.3722 2.89624 23.9231 3.56617 24.303L3.71234 24.3907V28.7351C3.71389 29.2805 3.93123 29.8031 4.31687 30.1887C4.70252 30.5744 5.22511 30.7917 5.7705 30.7932H10.4481C10.9935 30.7917 11.5161 30.5744 11.9018 30.1887C12.2874 29.8031 12.5047 29.2805 12.5063 28.7351V24.917H22.4989V28.7351C22.4989 29.9033 22.9626 31.0238 23.7881 31.8504C24.6136 32.677 25.7335 33.1422 26.9017 33.1438C28.0705 33.1422 29.191 32.6772 30.0174 31.8508C30.8439 31.0243 31.3089 29.9039 31.3104 28.7351V12.1353L31.4098 12.0476C32.2647 11.2856 32.9109 10.3181 33.2875 9.23659C33.664 8.15509 33.7583 6.9954 33.5615 5.86727ZM22.4989 15.5324V23.1687H5.75296C5.05203 23.1687 4.37981 22.8902 3.88418 22.3946C3.38855 21.899 3.1101 21.2268 3.1101 20.5258V18.187C3.1101 17.4861 3.38855 16.8139 3.88418 16.3182C4.37981 15.8226 5.05203 15.5441 5.75296 15.5441L22.4989 15.5324ZM10.4189 7.31149H20.1426V7.58046C20.287 9.29821 21.0817 10.896 22.3644 12.0476L22.4697 12.1353V13.7725H5.88745L7.97483 8.91359C8.17952 8.43579 8.52057 8.02896 8.95529 7.744C9.39001 7.45904 9.89912 7.30859 10.4189 7.31149ZM10.7463 29.045H5.484V24.952H10.7463V29.045ZM29.5446 11.6909V28.7468C29.5446 29.4477 29.2662 30.1199 28.7705 30.6156C28.2749 31.1112 27.6027 31.3896 26.9017 31.3896C26.2008 31.3896 25.5286 31.1112 25.0329 30.6156C24.5373 30.1199 24.2589 29.4477 24.2589 28.7468V11.6909C24.2592 11.5447 24.2231 11.4007 24.1536 11.2721C24.0842 11.1434 23.9837 11.0341 23.8613 10.9542C23.1979 10.4438 22.6772 9.77111 22.3495 9.00094C22.0217 8.23077 21.898 7.38914 21.9902 6.55723C22.0859 5.53908 22.5156 4.58113 23.2123 3.8325L23.7209 3.28288V7.63308C23.7184 7.79643 23.7628 7.95707 23.8488 8.09595C23.9348 8.23483 24.0589 8.34611 24.2062 8.41658L26.5451 9.58599C26.6659 9.6495 26.8003 9.68268 26.9368 9.68268C27.0733 9.68268 27.2077 9.6495 27.3286 9.58599L29.6674 8.41658C29.813 8.34388 29.9355 8.23209 30.0212 8.09372C30.1069 7.95535 30.1525 7.79585 30.1527 7.63308V3.27118L30.6555 3.8208C31.2667 4.48466 31.6728 5.31112 31.8249 6.20056C31.9816 7.10443 31.8842 8.03406 31.5435 8.8858C31.2028 9.73754 30.6323 10.4779 29.8954 11.0244C29.7852 11.1039 29.6954 11.2084 29.6334 11.3294C29.5714 11.4503 29.5389 11.5842 29.5387 11.7202L29.5446 11.6909Z" fill="#1D1D1D"/>
|
|
9
|
+
<path d="M26.9021 33.1905C25.7246 33.1889 24.5958 32.7201 23.7637 31.8869C22.9316 31.0537 22.4642 29.9243 22.4642 28.7467V24.9695H12.5242V28.7467C12.5242 29.3019 12.3037 29.8343 11.9111 30.2269C11.5186 30.6194 10.9862 30.84 10.431 30.84H5.75335C5.20022 30.8369 4.67079 30.615 4.28076 30.2228C3.89072 29.8305 3.67179 29.2999 3.6718 28.7467V24.4258L3.54317 24.3439C2.86767 23.9615 2.30596 23.4064 1.91555 22.7355C1.52513 22.0646 1.32005 21.302 1.32129 20.5258V18.187C1.32341 17.383 1.5465 16.595 1.9662 15.9093C2.3859 15.2235 2.98604 14.6664 3.70103 14.2987L3.77704 14.2577L6.35559 8.22359C6.6965 7.42113 7.26681 6.73723 7.99496 6.25769C8.7231 5.77815 9.57667 5.52434 10.4485 5.5281H20.3125L20.3651 5.33515C20.6351 4.36185 21.1175 3.46055 21.7778 2.69618C22.438 1.9318 23.2595 1.32339 24.1832 0.914781C24.3229 0.848486 24.4771 0.818548 24.6315 0.827748C24.7858 0.836947 24.9353 0.884984 25.0662 0.967402C25.1976 1.04999 25.3058 1.16476 25.3805 1.30085C25.4552 1.43693 25.4939 1.58983 25.493 1.74506V7.04248L26.9255 7.75582L28.358 7.04248V1.73337C28.3576 1.57902 28.3965 1.42711 28.4712 1.29204C28.5459 1.15697 28.6539 1.04321 28.7849 0.961558C28.9155 0.878623 29.0651 0.83028 29.2195 0.821074C29.374 0.811868 29.5282 0.842104 29.6678 0.908937C30.6847 1.34579 31.578 2.02691 32.2686 2.89185C32.9591 3.7568 33.4255 4.77882 33.6262 5.86723C33.8261 7.00264 33.7323 8.17031 33.3536 9.25922C32.9749 10.3481 32.3241 11.3221 31.4628 12.0885L31.3751 12.1645V28.7467C31.3744 29.3325 31.2579 29.9124 31.0325 30.4531C30.8071 30.9938 30.4771 31.4847 30.0615 31.8976C29.6459 32.3105 29.1529 32.6372 28.6107 32.8591C28.0686 33.0809 27.4879 33.1936 26.9021 33.1905ZM12.4716 24.8935H22.5344V28.7467C22.5359 29.9046 22.9966 31.0147 23.8154 31.8335C24.6341 32.6523 25.7442 33.1129 26.9021 33.1145C28.0601 33.1129 29.1701 32.6523 29.9889 31.8335C30.8076 31.0147 31.2683 29.9046 31.2699 28.7467V12.1177L31.3868 12.0183C32.2376 11.2612 32.8807 10.2993 33.2552 9.22375C33.6298 8.14824 33.7233 6.99486 33.5268 5.87307C33.3278 4.79467 32.8655 3.78211 32.1811 2.92529C31.4967 2.06848 30.6112 1.39393 29.6035 0.961558C29.4756 0.900835 29.3344 0.8738 29.1932 0.88301C29.052 0.89222 28.9154 0.937367 28.7966 1.01418C28.6757 1.08865 28.5757 1.19267 28.5062 1.31645C28.4366 1.44023 28.3997 1.57969 28.399 1.72168V7.07757L26.8963 7.83184L25.3936 7.07757V1.73337C25.3927 1.59061 25.3558 1.45037 25.2863 1.32567C25.2168 1.20097 25.117 1.09584 24.996 1.02003C24.8773 0.942529 24.7403 0.897434 24.5988 0.889228C24.4572 0.881023 24.316 0.909991 24.1891 0.973255C23.2736 1.37599 22.4591 1.97738 21.8048 2.73384C21.1505 3.4903 20.6727 4.38286 20.4061 5.34684L20.3359 5.59242H10.3959C9.54121 5.59172 8.70518 5.84247 7.99196 6.31345C7.27873 6.78443 6.71984 7.45482 6.38484 8.24113L3.79458 14.2987L3.70103 14.3513C2.99791 14.7128 2.4078 15.2608 1.99529 15.9352C1.58278 16.6097 1.36375 17.3847 1.36221 18.1753V20.5141C1.35919 21.2772 1.55969 22.0273 1.94304 22.6871C2.3264 23.3469 2.87874 23.8926 3.54317 24.2679L3.70688 24.3673V28.735C3.70688 29.2716 3.92004 29.7862 4.29944 30.1656C4.67884 30.545 5.1934 30.7581 5.72996 30.7581H10.4076C10.9441 30.7581 11.4587 30.545 11.8381 30.1656C12.2175 29.7862 12.4307 29.2716 12.4307 28.735L12.4716 24.8935ZM26.9021 31.4305C26.1914 31.429 25.5102 31.1455 25.0082 30.6424C24.5061 30.1392 24.2242 29.4575 24.2242 28.7467V11.6909C24.2244 11.5514 24.1904 11.4139 24.1251 11.2906C24.0599 11.1672 23.9654 11.0618 23.85 10.9834H23.7973C23.1296 10.468 22.6053 9.78983 22.2747 9.01383C21.944 8.23783 21.818 7.38995 21.9087 6.55133C22.0073 5.5236 22.4432 4.55736 23.1483 3.80322L23.733 3.18344V7.63304C23.7316 7.79014 23.7749 7.94441 23.8577 8.07792C23.9405 8.21144 24.0594 8.31872 24.2008 8.38731L26.5396 9.55672C26.6569 9.61449 26.786 9.64454 26.9167 9.64454C27.0475 9.64454 27.1765 9.61449 27.2939 9.55672L29.6327 8.38731C29.7716 8.31627 29.8883 8.20827 29.9698 8.07518C30.0513 7.9421 30.0945 7.7891 30.0946 7.63304V3.17759L30.6793 3.79738C31.3042 4.46245 31.7208 5.29575 31.878 6.19466C32.0355 7.10544 31.9369 8.04209 31.5931 8.90007C31.2493 9.75806 30.6738 10.5036 29.9309 11.0536C29.8269 11.1307 29.7425 11.2312 29.6846 11.347C29.6267 11.4628 29.5969 11.5907 29.5976 11.7201V28.7467C29.5968 29.0999 29.5265 29.4495 29.3906 29.7756C29.2548 30.1016 29.056 30.3977 28.8057 30.6469C28.5554 30.8961 28.2585 31.0936 27.9319 31.228C27.6052 31.3625 27.2553 31.4313 26.9021 31.4305ZM23.6453 3.36469L23.2009 3.84416C22.5092 4.58617 22.0817 5.53571 21.9848 6.54549C21.893 7.37196 22.0159 8.20813 22.3416 8.97323C22.6673 9.73834 23.1848 10.4065 23.8441 10.9132H23.8851C24.0106 10.9992 24.1134 11.1144 24.1846 11.2488C24.2559 11.3832 24.2936 11.5329 24.2943 11.685V28.7467C24.2943 29.4384 24.5691 30.1017 25.0581 30.5907C25.5472 31.0798 26.2105 31.3545 26.9021 31.3545C27.5938 31.3545 28.2571 31.0798 28.7461 30.5907C29.2352 30.1017 29.5099 29.4384 29.5099 28.7467V11.6909C29.5087 11.5494 29.5415 11.4096 29.6056 11.2834C29.6698 11.1573 29.7633 11.0483 29.8783 10.9659C30.6096 10.4231 31.176 9.68819 31.5146 8.84278C31.8532 7.99736 31.9506 7.07461 31.7961 6.17712C31.6413 5.30062 31.235 4.48804 30.6267 3.8383L30.1823 3.353V7.62135C30.1823 7.79092 30.1353 7.95718 30.0465 8.10167C29.9578 8.24616 29.8307 8.36325 29.6795 8.43994L27.3407 9.60935C27.2135 9.67268 27.0734 9.70564 26.9314 9.70564C26.7893 9.70564 26.6492 9.67268 26.5221 9.60935L24.1832 8.43994C24.0311 8.36433 23.9034 8.24749 23.8144 8.10275C23.7255 7.95802 23.6791 7.7912 23.6804 7.62135L23.6453 3.36469ZM10.7818 29.0917H5.42592V24.9052H10.7877L10.7818 29.0917ZM5.51947 29.0157H10.6883V24.9812H5.47854L5.51947 29.0157ZM22.5578 23.2154H5.77674C5.06597 23.2154 4.38421 22.9335 3.88107 22.4314C3.37793 21.9294 3.0945 21.2482 3.09295 20.5375V18.1987C3.0945 17.4879 3.37793 16.8068 3.88107 16.3047C4.38421 15.8027 5.06597 15.5207 5.77674 15.5207H22.5578V23.2154ZM5.77674 15.5792C5.08512 15.5792 4.4218 15.8539 3.93275 16.343C3.44369 16.832 3.16896 17.4953 3.16896 18.187V20.5258C3.16896 21.2174 3.44369 21.8807 3.93275 22.3698C4.4218 22.8588 5.08512 23.1336 5.77674 23.1336H22.4876V15.5675L5.77674 15.5792ZM22.5519 13.8251H5.88199L7.98693 8.91355C8.19413 8.43381 8.53688 8.025 8.97312 7.73728C9.40936 7.44957 9.9201 7.29548 10.4427 7.29391H20.2014V7.59796C20.346 9.30478 21.1365 10.8921 22.4116 12.0359L22.5285 12.1353L22.5519 13.8251ZM5.99308 13.7549H22.4759V12.1703L22.3882 12.0943C21.0989 10.9359 20.2984 9.33059 20.1488 7.6038V7.36407H10.4602C9.95183 7.36538 9.45496 7.5156 9.031 7.79617C8.60704 8.07673 8.27456 8.47534 8.07463 8.94277L5.99308 13.7549Z" fill="black"/>
|
|
10
|
+
<path d="M26.9022 29.5245C27.3284 29.5245 27.674 29.1789 27.674 28.7526C27.674 28.3264 27.3284 27.9808 26.9022 27.9808C26.4759 27.9808 26.1304 28.3264 26.1304 28.7526C26.1304 29.1789 26.4759 29.5245 26.9022 29.5245Z" fill="#1D1D1D"/>
|
|
11
|
+
<path d="M8.09795 21.2977C9.17328 21.2977 10.045 20.426 10.045 19.3506C10.045 18.2753 9.17328 17.4036 8.09795 17.4036C7.02261 17.4036 6.15088 18.2753 6.15088 19.3506C6.15088 20.426 7.02261 21.2977 8.09795 21.2977Z" fill="#1D1D1D"/>
|
|
12
|
+
<path d="M8.10372 21.3327C7.57802 21.3327 7.07387 21.1239 6.70215 20.7522C6.33042 20.3804 6.12158 19.8763 6.12158 19.3506C6.12158 18.8249 6.33042 18.3207 6.70215 17.949C7.07387 17.5772 7.57802 17.3684 8.10372 17.3684C8.62895 17.37 9.13223 17.5793 9.50362 17.9507C9.87501 18.3221 10.0843 18.8253 10.0859 19.3506C10.0843 19.8758 9.87501 20.3791 9.50362 20.7504C9.13223 21.1218 8.62895 21.3312 8.10372 21.3327ZM8.10372 17.4444C7.59764 17.4444 7.11222 17.6451 6.75382 18.0024C6.39542 18.3597 6.19329 18.8445 6.19174 19.3506C6.19329 19.8572 6.39522 20.3426 6.75345 20.7008C7.11168 21.0591 7.59711 21.261 8.10372 21.2625C8.6098 21.261 9.09462 21.0589 9.45193 20.7005C9.80923 20.3421 10.0099 19.8566 10.0099 19.3506C10.0052 18.8481 9.80238 18.3677 9.44541 18.014C9.08844 17.6604 8.60624 17.4619 8.10372 17.462V17.4444Z" fill="#1D1D1D"/>
|
|
13
|
+
<defs>
|
|
14
|
+
<linearGradient id="paint0_linear_4088_34003" x1="2.99902" y1="19.3505" x2="22.61" y2="19.3505" gradientUnits="userSpaceOnUse">
|
|
15
|
+
<stop stop-color="#F37C1C"/>
|
|
16
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
17
|
+
</linearGradient>
|
|
18
|
+
<linearGradient id="paint1_linear_4088_34003" x1="5.3501" y1="26.9869" x2="10.8522" y2="26.9869" gradientUnits="userSpaceOnUse">
|
|
19
|
+
<stop stop-color="#EFC530"/>
|
|
20
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
21
|
+
</linearGradient>
|
|
22
|
+
<linearGradient id="paint2_linear_4088_34003" x1="21.8031" y1="17.234" x2="32.0179" y2="17.234" gradientUnits="userSpaceOnUse">
|
|
23
|
+
<stop stop-color="#EFC530"/>
|
|
24
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
25
|
+
</linearGradient>
|
|
26
|
+
</defs>
|
|
27
|
+
</svg>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M23.5519 11.6532H11.4118C9.42867 11.6532 7.82304 12.8495 7.82304 14.3232L6.05371 18.3168H28.255L27.1361 14.3232C27.1361 12.8495 25.5305 11.6532 23.5519 11.6532Z" fill="white"/>
|
|
3
|
+
<path d="M4.0752 23.6387H8.6783C8.49782 23.1368 8.16382 22.7045 7.72373 22.4032C7.28364 22.102 6.75987 21.947 6.22669 21.9603H4.0752V23.6387Z" fill="url(#paint0_linear_4088_33987)"/>
|
|
4
|
+
<path d="M30.9341 21.9602H28.7736C28.2752 21.9461 27.7838 22.0803 27.3619 22.3459C26.9399 22.6116 26.6065 22.9966 26.4038 23.4522V23.6387H30.925L30.9341 21.9602Z" fill="url(#paint1_linear_4088_33987)"/>
|
|
5
|
+
<path d="M28.3188 27.4185C28.8855 27.418 29.437 27.2351 29.8917 26.8968C30.3464 26.5584 30.68 26.0827 30.8432 25.5399H25.2212C24.9673 25.537 24.7245 25.4359 24.5435 25.2579C24.4553 25.1697 24.3857 25.0646 24.3388 24.949C24.2919 24.8333 24.2687 24.7095 24.2706 24.5847C24.2856 23.4345 24.7208 22.3296 25.4942 21.4781C25.9161 21.0243 26.4282 20.6636 26.9976 20.4192C27.5671 20.1748 28.1813 20.0521 28.8009 20.0589H30.3201C30.0138 19.7151 29.6236 19.4566 29.1876 19.3084C25.7989 18.1304 19.3627 17.7483 17.5251 17.7483C12.7765 17.7483 8.37349 18.3714 5.74899 19.4176C5.38909 19.5619 5.06364 19.7805 4.79381 20.0589H6.24931C6.86919 20.0504 7.48393 20.1724 8.05362 20.4169C8.62331 20.6614 9.13522 21.0229 9.5561 21.4781C10.3282 22.33 10.7618 23.4351 10.7751 24.5847C10.7764 24.8363 10.6782 25.0782 10.5022 25.2579C10.324 25.4373 10.0819 25.5387 9.829 25.5399H4.20703C4.33303 25.9578 4.56127 26.3377 4.8711 26.6452C5.11337 26.8912 5.40233 27.0862 5.721 27.219C6.03968 27.3518 6.3817 27.4196 6.72693 27.4185H12.4626V22.9973C12.4626 22.2735 12.7501 21.5793 13.2619 21.0675C13.7737 20.5557 14.4679 20.2682 15.1917 20.2682H19.8449C20.5687 20.2682 21.2628 20.5557 21.7747 21.0675C22.2865 21.5793 22.574 22.2735 22.574 22.9973V27.4185H28.3188Z" fill="url(#paint2_linear_4088_33987)"/>
|
|
6
|
+
<path d="M26.4995 31.2938H30.0883C30.3107 31.2914 30.5234 31.202 30.6807 31.0447C30.838 30.8874 30.9274 30.6747 30.9298 30.4523V28.4646C30.1628 29.0173 29.2415 29.3148 28.2962 29.3152H25.6626V30.4614C25.6661 30.6818 25.7556 30.8922 25.9119 31.0477C26.0682 31.2031 26.2791 31.2914 26.4995 31.2938Z" fill="url(#paint3_linear_4088_33987)"/>
|
|
7
|
+
<path d="M4.0708 30.4615C4.07198 30.6835 4.16042 30.8961 4.31699 31.0536C4.47356 31.211 4.68575 31.3006 4.90777 31.3029H8.49656C8.719 31.3006 8.93165 31.2112 9.08895 31.0539C9.24624 30.8966 9.33566 30.6839 9.33803 30.4615V29.3243H6.69986C5.75578 29.3249 4.83565 29.0272 4.0708 28.4738V30.4615Z" fill="url(#paint4_linear_4088_33987)"/>
|
|
8
|
+
<path d="M30.1382 17.6437L27.5864 12.7995C27.2112 12.0614 26.6382 11.442 25.9314 11.0107C25.2246 10.5794 24.4117 10.3531 23.5837 10.3569H11.4528C10.6249 10.3536 9.81228 10.5801 9.10555 11.0114C8.39883 11.4427 7.82574 12.0617 7.45011 12.7995C6.99525 13.7092 5.01211 17.4435 4.85292 17.7392C4.05411 18.0912 3.37596 18.6695 2.90225 19.4027C2.42854 20.1359 2.18005 20.9918 2.18749 21.8647V30.4614C2.18749 31.1852 2.475 31.8794 2.98681 32.3912C3.49862 32.903 4.1928 33.1905 4.9166 33.1905H8.50534C9.22915 33.1905 9.92332 32.903 10.4351 32.3912C10.9469 31.8794 11.2345 31.1852 11.2345 30.4614V29.3243H23.7702V30.4614C23.7702 31.1852 24.0577 31.8794 24.5695 32.3912C25.0813 32.903 25.7755 33.1905 26.4993 33.1905H30.0881C30.8119 33.1905 31.5061 32.903 32.0179 32.3912C32.5297 31.8794 32.8172 31.1852 32.8172 30.4614V24.9304C32.8172 24.8849 32.8172 21.801 32.8172 21.801C32.8274 20.9217 32.5789 20.0588 32.1025 19.3197C31.6262 18.5805 30.9431 17.9977 30.1382 17.6437ZM9.12854 13.6865C9.34327 13.2546 9.675 12.8917 10.0859 12.6392C10.4969 12.3867 10.9705 12.2547 11.4528 12.2582H23.5792C24.0622 12.2538 24.5368 12.3854 24.9487 12.638C25.3605 12.8905 25.6929 13.2539 25.908 13.6865C25.908 13.6865 26.8495 15.4831 27.6091 16.9159C24.2829 16.2726 20.9077 15.915 17.5205 15.847C14.1264 15.8112 10.7394 16.1684 7.42734 16.9114C8.07323 15.6969 8.85563 14.1822 9.12854 13.6865ZM4.09329 21.9602H6.24929C6.78308 21.9466 7.30762 22.1015 7.74849 22.4027C8.18936 22.704 8.52418 23.1364 8.7055 23.6386H4.09329V21.9602ZM9.35597 30.4523C9.3536 30.6748 9.26418 30.8874 9.10689 31.0447C8.94959 31.202 8.73689 31.2914 8.51445 31.2938H4.92565C4.70364 31.2914 4.4915 31.2018 4.33493 31.0444C4.17836 30.887 4.08992 30.6743 4.08874 30.4523V28.4646C4.85359 29.0181 5.77372 29.3157 6.7178 29.3152H9.35597V30.4523ZM20.6863 27.4185H14.3502V22.9973C14.3514 22.7745 14.4404 22.5611 14.598 22.4036C14.7555 22.246 14.9689 22.157 15.1917 22.1558H19.8494C20.0718 22.157 20.2846 22.2462 20.4414 22.4039C20.5983 22.5616 20.6863 22.7749 20.6863 22.9973V27.4185ZM22.5876 27.4185V22.9973C22.5876 22.2735 22.3001 21.5793 21.7883 21.0675C21.2765 20.5557 20.5823 20.2682 19.8585 20.2682H15.2008C14.477 20.2682 13.7828 20.5557 13.271 21.0675C12.7592 21.5793 12.4717 22.2735 12.4717 22.9973V27.4185H6.73601C6.39016 27.4192 6.04761 27.3512 5.72825 27.2185C5.40889 27.0858 5.11904 26.8909 4.87563 26.6452C4.56787 26.3361 4.33997 25.9568 4.21156 25.5399H9.83353C10.0876 25.538 10.3308 25.4368 10.5113 25.2579C10.6005 25.1705 10.6708 25.0656 10.7178 24.9497C10.7648 24.8339 10.7873 24.7097 10.7842 24.5847C10.7713 23.4341 10.3358 22.3284 9.56063 21.4781C9.13904 21.0238 8.62701 20.6629 8.05748 20.4184C7.48796 20.174 6.87355 20.0516 6.25384 20.0589H4.79834C5.06816 19.7805 5.39361 19.5619 5.75352 19.4176C8.37801 18.3669 12.781 17.7483 17.5297 17.7483C19.3491 17.7483 25.8034 18.1304 29.1921 19.3084C29.6287 19.4554 30.0191 19.7142 30.3247 20.0589H28.7736C28.153 20.0501 27.5375 20.1718 26.967 20.4163C26.3965 20.6608 25.8838 21.0226 25.4623 21.4781C24.6902 22.33 24.2566 23.4351 24.2433 24.5847C24.242 24.8363 24.3401 25.0782 24.5162 25.2579C24.6961 25.4376 24.9397 25.5389 25.1939 25.5399H30.8159C30.6514 26.0819 30.3175 26.5568 29.8631 26.895C29.4087 27.2331 28.8578 27.4166 28.2914 27.4185H22.5876ZM30.9478 30.4523C30.9454 30.6748 30.856 30.8874 30.6987 31.0447C30.5414 31.202 30.3288 31.2914 30.1063 31.2938H26.4993C26.2773 31.2914 26.0651 31.2018 25.9086 31.0444C25.752 30.887 25.6636 30.6743 25.6624 30.4523V29.3152H28.296C29.2413 29.3148 30.1626 29.0173 30.9296 28.4646V30.4614L30.9478 30.4523ZM30.9478 23.6295H26.3447C26.5252 23.1277 26.8592 22.6954 27.2993 22.3941C27.7394 22.0928 28.2632 21.9378 28.7964 21.9511H30.9524L30.9478 23.6295ZM2.29209 2.70632H32.7672C32.8918 2.70632 33.0152 2.6817 33.1303 2.63387C33.2454 2.58604 33.3499 2.51594 33.4378 2.42761C33.5257 2.33927 33.5953 2.23444 33.6426 2.11913C33.6899 2.00382 33.7139 1.8803 33.7133 1.75568C33.7133 1.50476 33.6136 1.26411 33.4362 1.08669C33.2587 0.909261 33.0181 0.809581 32.7672 0.809581H2.29209C2.16747 0.808982 2.04395 0.833014 1.92863 0.880291C1.81332 0.927568 1.70848 0.997158 1.62014 1.08507C1.53181 1.17298 1.4617 1.27749 1.41387 1.39257C1.36604 1.50765 1.34141 1.63105 1.34141 1.75568C1.33772 2.00429 1.4321 2.24436 1.60404 2.42397C1.77599 2.60357 2.01169 2.70827 2.26022 2.71541L2.29209 2.70632ZM5.13948 7.06836V7.52321C5.13948 7.77413 5.23911 8.01477 5.41654 8.1922C5.59397 8.36962 5.83463 8.4693 6.08555 8.4693C6.21017 8.4699 6.3337 8.44587 6.44901 8.39859C6.56432 8.35132 6.66916 8.28172 6.7575 8.19381C6.84584 8.10589 6.91589 8.0014 6.96372 7.88631C7.01155 7.77123 7.03618 7.64784 7.03617 7.52321V7.06836C7.03618 6.94373 7.01155 6.82033 6.96372 6.70524C6.91589 6.59016 6.84584 6.48566 6.7575 6.39775C6.66916 6.30984 6.56432 6.24024 6.44901 6.19297C6.3337 6.14569 6.21017 6.12166 6.08555 6.12226C5.95978 6.11984 5.83482 6.14253 5.71792 6.18899C5.60103 6.23545 5.49456 6.30476 5.40477 6.39285C5.31498 6.48095 5.24368 6.58606 5.195 6.70204C5.14632 6.81803 5.12124 6.94257 5.12126 7.06836H5.13948ZM12.7264 7.06836V7.52321C12.7264 7.64784 12.751 7.77123 12.7988 7.88631C12.8467 8.0014 12.9168 8.10589 13.0051 8.19381C13.0934 8.28172 13.1983 8.35132 13.3136 8.39859C13.4289 8.44587 13.5524 8.4699 13.6771 8.4693C13.928 8.4693 14.1686 8.36962 14.346 8.1922C14.5234 8.01477 14.6231 7.77413 14.6231 7.52321V7.06836C14.6231 6.81744 14.5234 6.57679 14.346 6.39936C14.1686 6.22193 13.928 6.12226 13.6771 6.12226C13.5498 6.11736 13.4228 6.13821 13.3038 6.18356C13.1848 6.22891 13.0761 6.29782 12.9844 6.38616C12.8927 6.47451 12.8197 6.58047 12.7699 6.69769C12.7201 6.81492 12.6945 6.94099 12.6946 7.06836H12.7264ZM20.3179 7.06836V7.52321C20.3179 7.77413 20.4175 8.01477 20.595 8.1922C20.7724 8.36962 21.0131 8.4693 21.264 8.4693C21.3886 8.4699 21.5121 8.44587 21.6274 8.39859C21.7427 8.35132 21.8476 8.28172 21.9359 8.19381C22.0243 8.10589 22.0944 8.0014 22.1422 7.88631C22.19 7.77123 22.2146 7.64784 22.2146 7.52321V7.06836C22.2146 6.94373 22.19 6.82033 22.1422 6.70524C22.0944 6.59016 22.0243 6.48566 21.9359 6.39775C21.8476 6.30984 21.7427 6.24024 21.6274 6.19297C21.5121 6.14569 21.3886 6.12166 21.264 6.12226C21.1371 6.11799 21.0106 6.1393 20.8921 6.18493C20.7736 6.23056 20.6656 6.29957 20.5743 6.38785C20.4831 6.47613 20.4105 6.58188 20.361 6.69879C20.3115 6.8157 20.286 6.94139 20.286 7.06836H20.3179ZM29.8016 7.06836C29.8016 6.81744 29.7019 6.57679 29.5244 6.39936C29.347 6.22193 29.1064 6.12226 28.8555 6.12226C28.7309 6.12166 28.6073 6.14569 28.492 6.19297C28.3767 6.24024 28.2719 6.30984 28.1835 6.39775C28.0952 6.48566 28.0251 6.59016 27.9773 6.70524C27.9294 6.82033 27.9048 6.94373 27.9048 7.06836V7.52321C27.9048 7.64784 27.9294 7.77123 27.9773 7.88631C28.0251 8.0014 28.0952 8.10589 28.1835 8.19381C28.2719 8.28172 28.3767 8.35132 28.492 8.39859C28.6073 8.44587 28.7309 8.4699 28.8555 8.4693C29.1064 8.4693 29.347 8.36962 29.5244 8.1922C29.7019 8.01477 29.8016 7.77413 29.8016 7.52321V7.06836ZM3.23817 5.9949V5.54005C3.23877 5.41543 3.21476 5.29191 3.16749 5.1766C3.12021 5.06129 3.05057 4.95645 2.96266 4.86811C2.87475 4.77978 2.77025 4.70969 2.65517 4.66186C2.54008 4.61403 2.41672 4.5894 2.29209 4.5894C2.16709 4.5888 2.04319 4.61298 1.92758 4.66054C1.81197 4.70811 1.70693 4.7781 1.61853 4.8665C1.53014 4.95489 1.46016 5.05993 1.41259 5.17554C1.36503 5.29115 1.34081 5.41504 1.34141 5.54005V5.9949C1.34141 6.11974 1.36604 6.24336 1.41382 6.3587C1.46159 6.47403 1.53159 6.57883 1.61987 6.66711C1.70814 6.75538 1.81296 6.82541 1.9283 6.87318C2.04364 6.92096 2.16725 6.94554 2.29209 6.94554C2.53786 6.93613 2.77041 6.83183 2.94089 6.65456C3.11138 6.47729 3.20653 6.24085 3.20635 5.9949H3.23817ZM8.93293 5.54005V5.9949C8.93293 6.24624 9.03247 6.48735 9.20977 6.6655C9.38707 6.84365 9.62767 6.94434 9.879 6.94554C10.1311 6.94554 10.373 6.84539 10.5512 6.66711C10.7295 6.48883 10.8297 6.24703 10.8297 5.9949V5.54005C10.8303 5.41504 10.8061 5.29115 10.7585 5.17554C10.7109 5.05993 10.641 4.95489 10.5526 4.8665C10.4642 4.7781 10.3591 4.70811 10.2435 4.66054C10.1279 4.61298 10.004 4.5888 9.879 4.5894C9.75056 4.58505 9.6226 4.60692 9.50288 4.65367C9.38317 4.70041 9.27424 4.77105 9.18273 4.86128C9.09122 4.95152 9.01905 5.05945 8.97063 5.17849C8.92221 5.29754 8.89857 5.42521 8.90111 5.5537L8.93293 5.54005ZM16.5199 5.54005V5.9949C16.5211 6.24666 16.6216 6.48777 16.7996 6.66579C16.9776 6.84381 17.2188 6.94435 17.4705 6.94554C17.7223 6.94435 17.9634 6.84381 18.1414 6.66579C18.3194 6.48777 18.42 6.24666 18.4211 5.9949V5.54005C18.4211 5.28793 18.321 5.04612 18.1427 4.86784C17.9644 4.68956 17.7226 4.5894 17.4705 4.5894C17.3422 4.58571 17.2145 4.60802 17.0951 4.655C16.9757 4.70198 16.867 4.77264 16.7756 4.86274C16.6843 4.95284 16.6121 5.06051 16.5634 5.17926C16.5148 5.29801 16.4907 5.42538 16.4926 5.5537L16.5199 5.54005ZM24.1114 5.54005V5.9949C24.1114 6.24624 24.2109 6.48735 24.3882 6.6655C24.5655 6.84365 24.8061 6.94434 25.0574 6.94554C25.1823 6.94554 25.3059 6.92096 25.4212 6.87318C25.5366 6.82541 25.6414 6.75538 25.7297 6.66711C25.8179 6.57883 25.8879 6.47403 25.9357 6.3587C25.9835 6.24336 26.0081 6.11974 26.0081 5.9949V5.54005C26.0087 5.41504 25.9845 5.29115 25.9369 5.17554C25.8894 5.05993 25.8194 4.95489 25.731 4.8665C25.6426 4.7781 25.5376 4.70811 25.4219 4.66054C25.3063 4.61298 25.1824 4.5888 25.0574 4.5894C24.929 4.58505 24.801 4.60692 24.6813 4.65367C24.5616 4.70041 24.4527 4.77105 24.3612 4.86128C24.2696 4.95152 24.1975 5.05945 24.1491 5.17849C24.1006 5.29754 24.077 5.42521 24.0795 5.5537L24.1114 5.54005ZM32.7536 4.5894C32.6285 4.5888 32.5046 4.61298 32.389 4.66054C32.2734 4.70811 32.1684 4.7781 32.08 4.8665C31.9916 4.95489 31.9216 5.05993 31.8741 5.17554C31.8265 5.29115 31.8023 5.41504 31.8029 5.54005V5.9949C31.8029 6.11974 31.8275 6.24336 31.8753 6.3587C31.923 6.47403 31.993 6.57883 32.0813 6.66711C32.1696 6.75538 32.2744 6.82541 32.3898 6.87318C32.5051 6.92096 32.6287 6.94554 32.7536 6.94554C33.0049 6.94434 33.2455 6.84365 33.4228 6.6655C33.6001 6.48735 33.6996 6.24624 33.6996 5.9949V5.54005C33.6984 5.41581 33.6728 5.29301 33.6242 5.17868C33.5755 5.06435 33.5048 4.96072 33.4161 4.87371C33.3274 4.7867 33.2224 4.71801 33.1072 4.67157C32.9919 4.62513 32.8687 4.60185 32.7444 4.60305L32.7536 4.5894ZM2.73329 10.8527V11.3076C2.73329 11.5597 2.83346 11.8015 3.01174 11.9798C3.19002 12.1581 3.43179 12.2582 3.68391 12.2582C3.93525 12.257 4.1759 12.1563 4.3532 11.9782C4.5305 11.8 4.63005 11.5589 4.63004 11.3076V10.8527C4.63064 10.7281 4.60658 10.6046 4.55931 10.4893C4.51203 10.374 4.44245 10.2691 4.35453 10.1808C4.26662 10.0925 4.16212 10.0224 4.04704 9.97453C3.93196 9.9267 3.80854 9.90208 3.68391 9.90209C3.5551 9.8971 3.42666 9.91849 3.30641 9.96495C3.18616 10.0114 3.07665 10.082 2.98465 10.1723C2.89264 10.2626 2.82008 10.3707 2.77138 10.4901C2.72268 10.6094 2.6989 10.7375 2.70147 10.8664L2.73329 10.8527ZM30.4793 12.2446C30.7314 12.2446 30.9732 12.1444 31.1515 11.9661C31.3298 11.7879 31.4299 11.5461 31.4299 11.2939V10.8391C31.4305 10.7141 31.4064 10.5902 31.3588 10.4746C31.3112 10.359 31.2412 10.2539 31.1529 10.1655C31.0645 10.0771 30.9594 10.0071 30.8438 9.95957C30.7282 9.91201 30.6043 9.88784 30.4793 9.88844C30.3547 9.88844 30.2312 9.91306 30.1162 9.96089C30.0011 10.0087 29.8966 10.0788 29.8087 10.1672C29.7208 10.2555 29.6512 10.3603 29.6039 10.4756C29.5566 10.5909 29.5326 10.7145 29.5332 10.8391V11.2939C29.5302 11.4192 29.552 11.5437 29.5972 11.6605C29.6425 11.7773 29.7104 11.884 29.7971 11.9745C29.8837 12.0649 29.9874 12.1374 30.1021 12.1876C30.2169 12.2379 30.3404 12.265 30.4656 12.2673L30.4793 12.2446Z" fill="#1D1D1D"/>
|
|
9
|
+
<path d="M15.1735 22.1558C14.9507 22.157 14.7374 22.246 14.5798 22.4035C14.4223 22.5611 14.3332 22.7744 14.332 22.9972V27.4184H20.6682V22.9972C20.6682 22.7748 20.5801 22.5615 20.4233 22.4038C20.2665 22.2461 20.0536 22.157 19.8312 22.1558H15.1735Z" fill="url(#paint5_linear_4088_33987)"/>
|
|
10
|
+
<defs>
|
|
11
|
+
<linearGradient id="paint0_linear_4088_33987" x1="6.37675" y1="23.6387" x2="6.37675" y2="21.9603" gradientUnits="userSpaceOnUse">
|
|
12
|
+
<stop stop-color="#EFC530"/>
|
|
13
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
14
|
+
</linearGradient>
|
|
15
|
+
<linearGradient id="paint1_linear_4088_33987" x1="28.669" y1="23.6387" x2="28.669" y2="21.9602" gradientUnits="userSpaceOnUse">
|
|
16
|
+
<stop stop-color="#EFC530"/>
|
|
17
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
18
|
+
</linearGradient>
|
|
19
|
+
<linearGradient id="paint2_linear_4088_33987" x1="4.18429" y1="22.5834" x2="30.8205" y2="22.5834" gradientUnits="userSpaceOnUse">
|
|
20
|
+
<stop stop-color="#F37C1C"/>
|
|
21
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
22
|
+
</linearGradient>
|
|
23
|
+
<linearGradient id="paint3_linear_4088_33987" x1="28.2962" y1="31.2938" x2="28.2962" y2="28.4646" gradientUnits="userSpaceOnUse">
|
|
24
|
+
<stop stop-color="#EFC530"/>
|
|
25
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
26
|
+
</linearGradient>
|
|
27
|
+
<linearGradient id="paint4_linear_4088_33987" x1="6.70441" y1="31.2938" x2="6.70441" y2="28.4647" gradientUnits="userSpaceOnUse">
|
|
28
|
+
<stop stop-color="#EFC530"/>
|
|
29
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
30
|
+
</linearGradient>
|
|
31
|
+
<linearGradient id="paint5_linear_4088_33987" x1="17.5024" y1="27.4184" x2="17.5024" y2="22.1558" gradientUnits="userSpaceOnUse">
|
|
32
|
+
<stop stop-color="#EFC530"/>
|
|
33
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
34
|
+
</linearGradient>
|
|
35
|
+
</defs>
|
|
36
|
+
</svg>
|
|
@@ -1,4 +1,18 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path d="
|
|
3
|
-
<path d="
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M31.1381 4.56567H24.4756V17.9667H31.1381V4.56567Z" fill="white"/>
|
|
3
|
+
<path d="M16.0859 21.6867L8.93177 23.2683L6.46436 22.0521L8.80998 19.7354V7.91593L7.34396 7.12292V4.56567H16.0859V7.12292L14.7462 7.61298V20.2834L16.0859 21.6867Z" fill="white"/>
|
|
4
|
+
<path d="M27.4259 19.0538C26.7398 19.3213 26.0151 19.4792 25.2787 19.5216H25.2065V26.4849C25.2077 27.1325 25.4684 27.7533 25.9316 28.2116C26.3948 28.6699 27.0229 28.9285 27.6785 28.9308H27.7687C28.4251 28.9296 29.0543 28.6716 29.5185 28.2131C29.9826 27.7547 30.2439 27.1333 30.2451 26.4849V18.7865C29.4873 18.4167 28.6393 18.6484 27.4259 19.0493V19.0538Z" fill="url(#paint0_linear_4088_34001)"/>
|
|
5
|
+
<path d="M32.3879 3.23804H23.1227C22.8813 3.23797 22.6495 3.33113 22.4767 3.49761C22.3039 3.6641 22.2039 3.89072 22.198 4.12906C22.1949 4.24983 22.2167 4.36997 22.2621 4.48216C22.3075 4.59435 22.3755 4.69625 22.462 4.78168C22.5485 4.8671 22.6517 4.93426 22.7653 4.97908C22.8788 5.02389 23.0004 5.04543 23.1227 5.04237H23.3844V26.4938C23.3856 27.6254 23.8412 28.7103 24.6514 29.5105C25.4616 30.3106 26.56 30.7607 27.7057 30.7618H27.8004C28.9462 30.7607 30.0447 30.3106 30.8548 29.5105C31.665 28.7103 32.1206 27.6254 32.1218 26.4938V5.06464H32.3834C32.5038 5.06468 32.623 5.04091 32.734 4.99475C32.8449 4.94859 32.9454 4.88095 33.0295 4.79584C33.1136 4.71073 33.1795 4.60985 33.2235 4.49916C33.2675 4.38848 33.2886 4.27021 33.2856 4.15134C33.2856 3.91502 33.1905 3.68839 33.0213 3.52129C32.8522 3.35419 32.6227 3.26031 32.3834 3.26031L32.3879 3.23804ZM27.8004 28.9352H27.7057C27.0505 28.9341 26.4224 28.6765 25.9591 28.2189C25.4958 27.7613 25.235 27.141 25.2338 26.4938V19.5215H25.306C26.0331 19.4759 26.7484 19.318 27.4261 19.0538C28.644 18.6528 29.4875 18.4211 30.2589 18.7909V26.4938C30.2553 27.141 29.9931 27.7606 29.5293 28.2179C29.0655 28.6751 28.4377 28.9329 27.7824 28.9352H27.8004ZM30.2814 16.8663C29.0409 16.599 27.8185 16.9999 26.8577 17.3118C26.3402 17.5266 25.7896 17.6532 25.2293 17.686V16.1891H26.4607C26.5811 16.1891 26.7003 16.1654 26.8113 16.1192C26.9222 16.0731 27.0227 16.0054 27.1068 15.9203C27.1909 15.8352 27.2569 15.7343 27.3008 15.6236C27.3448 15.5129 27.3659 15.3947 27.3629 15.2758C27.3629 15.0395 27.2678 14.8129 27.0986 14.6458C26.9295 14.4787 26.7 14.3848 26.4607 14.3848H25.2293V12.478H26.4607C26.5811 12.478 26.7003 12.4543 26.8113 12.4081C26.9222 12.3619 27.0227 12.2943 27.1068 12.2092C27.1909 12.1241 27.2569 12.0232 27.3008 11.9125C27.3448 11.8018 27.3659 11.6836 27.3629 11.5647C27.3629 11.3284 27.2678 11.1017 27.0986 10.9346C26.9295 10.7675 26.7 10.6737 26.4607 10.6737H25.2293V8.77577H26.4607C26.5811 8.7758 26.7003 8.75204 26.8113 8.70587C26.9222 8.65971 27.0227 8.59208 27.1068 8.50697C27.1909 8.42185 27.2569 8.32098 27.3008 8.21029C27.3448 8.0996 27.3659 7.98134 27.3629 7.86246C27.3629 7.62615 27.2678 7.39951 27.0986 7.23241C26.9295 7.06531 26.7 6.97144 26.4607 6.97144H25.2293V5.06464H30.2724V16.8663H30.2814Z" fill="#1D1D1D"/>
|
|
6
|
+
<path d="M18.8555 24.8098L16.9745 23.0277C15.9912 22.5822 14.7687 23.0277 13.3659 23.5713C12.1756 24.1047 10.8986 24.4245 9.59484 24.5158H9.52717C8.23442 24.5136 6.98855 24.0373 6.03129 23.1792L4.31721 24.8098C4.08672 25.0273 3.90317 25.2886 3.77759 25.578C3.65201 25.8675 3.58699 26.179 3.58647 26.4938C3.58468 26.7981 3.64357 27.0997 3.75981 27.3814C3.87604 27.6632 4.04736 27.9195 4.26391 28.1359C4.48047 28.3523 4.73801 28.5244 5.02192 28.6424C5.30582 28.7605 5.61049 28.8221 5.91852 28.8239H17.2632C17.8849 28.8192 18.4795 28.5713 18.9166 28.1346C19.3537 27.6979 19.5977 27.1079 19.5953 26.4938C19.5924 26.1785 19.5253 25.867 19.3983 25.5777C19.2712 25.2885 19.0866 25.0273 18.8555 24.8098Z" fill="url(#paint1_linear_4088_34001)"/>
|
|
7
|
+
<path d="M15.4137 19.0359V8.34362C15.9629 8.26736 16.4658 7.9977 16.8297 7.58429C17.1935 7.17088 17.3939 6.64155 17.3939 6.09378V5.51015C17.3951 5.21257 17.3369 4.91768 17.2225 4.64236C17.1082 4.36703 16.94 4.11668 16.7276 3.90564C16.5151 3.69459 16.2627 3.527 15.9846 3.41244C15.7065 3.29789 15.4082 3.23862 15.1069 3.23804H8.0295C7.7282 3.23862 7.42998 3.29789 7.1519 3.41244C6.87381 3.527 6.62129 3.69459 6.40887 3.90564C6.19644 4.11668 6.02825 4.36703 5.9139 4.64236C5.79956 4.91768 5.74136 5.21257 5.74254 5.51015V6.09378C5.74163 6.64181 5.94169 7.17164 6.30573 7.58524C6.66978 7.99885 7.17312 8.26825 7.72274 8.34362V19.0359L3.00897 23.4911C2.60087 23.8807 2.27603 24.3472 2.05367 24.8629C1.8313 25.3787 1.71593 25.9333 1.71437 26.4938C1.71197 27.5923 2.15086 28.6469 2.93479 29.4262C3.71873 30.2055 4.78367 30.6458 5.8959 30.6505H17.2406C18.3528 30.6458 19.4177 30.2055 20.2016 29.4262C20.9856 28.6469 21.4245 27.5923 21.4221 26.4938C21.421 25.9332 21.3059 25.3785 21.0835 24.8626C20.8611 24.3468 20.536 23.8804 20.1275 23.4911L15.4137 19.0359ZM9.09856 20.2611C9.24869 20.1176 9.36831 19.946 9.45042 19.7563C9.53252 19.5666 9.57548 19.3626 9.57673 19.1562V17.9756H10.727C10.9691 17.9769 11.2021 17.8842 11.3759 17.7176C11.5496 17.551 11.6503 17.3237 11.6562 17.0846C11.6593 16.9634 11.6374 16.8429 11.5917 16.7304C11.5461 16.6179 11.4777 16.5158 11.3907 16.4303C11.3037 16.3448 11.2 16.2778 11.0859 16.2332C10.9717 16.1887 10.8496 16.1676 10.727 16.1713H9.57673V14.2645H10.727C10.9699 14.261 11.2016 14.1632 11.3721 13.9923C11.5426 13.8214 11.6382 13.5911 11.6381 13.3512C11.6382 13.2319 11.614 13.1138 11.567 13.0039C11.52 12.894 11.4511 12.7946 11.3644 12.7115C11.2778 12.6284 11.1751 12.5633 11.0625 12.5202C10.9499 12.477 10.8296 12.4566 10.7089 12.4602H9.55867V10.5534H10.7089C10.8315 10.557 10.9537 10.536 11.0678 10.4914C11.1819 10.4469 11.2857 10.3798 11.3726 10.2943C11.4596 10.2088 11.528 10.1067 11.5737 9.99423C11.6193 9.88173 11.6413 9.76122 11.6381 9.64006C11.6322 9.40095 11.5316 9.17366 11.3578 9.00705C11.1841 8.84044 10.9511 8.7478 10.7089 8.74904H9.55867V8.06295C9.55867 7.65885 9.39613 7.2713 9.10682 6.98556C8.81751 6.69982 8.4251 6.53929 8.01595 6.53929C7.89632 6.53929 7.78162 6.49235 7.69703 6.4088C7.61243 6.32525 7.56487 6.21193 7.56487 6.09378V5.51015C7.56487 5.392 7.61243 5.27868 7.69703 5.19513C7.78162 5.11158 7.89632 5.06464 8.01595 5.06464H15.0889C15.2086 5.06464 15.3233 5.11158 15.4079 5.19513C15.4925 5.27868 15.54 5.392 15.54 5.51015V6.09378C15.54 6.21193 15.4925 6.32525 15.4079 6.4088C15.3233 6.49235 15.2086 6.53929 15.0889 6.53929C14.6806 6.54047 14.2893 6.70152 14.001 6.98713C13.7126 7.27274 13.5507 7.65962 13.5507 8.06295V19.1651C13.5478 19.369 13.5862 19.5714 13.6637 19.7604C13.7411 19.9494 13.8561 20.1211 14.0018 20.2656L14.904 21.1299C14.1245 21.3163 13.3613 21.5636 12.6215 21.8694C11.5795 22.2659 10.5059 22.6802 9.50003 22.6891C8.69831 22.6982 7.91955 22.4249 7.30327 21.9184L9.09856 20.2611ZM17.2496 28.8239H5.90493C5.5971 28.8227 5.29253 28.7616 5.00866 28.644C4.72478 28.5265 4.46715 28.3548 4.25054 28.1388C4.03393 27.9228 3.86256 27.6667 3.74627 27.3852C3.62998 27.1037 3.57104 26.8023 3.57282 26.4983C3.57376 26.1828 3.63895 25.8708 3.76449 25.5807C3.89003 25.2906 4.07335 25.0285 4.30357 24.8098L6.0177 23.1837C6.97473 24.0421 8.22074 24.5185 9.51357 24.5202H9.58119C10.8854 24.4316 12.1629 24.1117 13.3523 23.5757C14.7642 23.0322 15.9911 22.5644 16.9609 23.0322L18.8419 24.8142C19.0721 25.0329 19.2554 25.2951 19.381 25.5852C19.5065 25.8752 19.5717 26.1873 19.5726 26.5027C19.5739 27.116 19.3293 27.7049 18.8923 28.1406C18.4553 28.5764 17.8615 28.8236 17.2406 28.8283L17.2496 28.8239Z" fill="#1D1D1D"/>
|
|
8
|
+
<defs>
|
|
9
|
+
<linearGradient id="paint0_linear_4088_34001" x1="27.7281" y1="28.9308" x2="27.7281" y2="18.6038" gradientUnits="userSpaceOnUse">
|
|
10
|
+
<stop stop-color="#EFC530"/>
|
|
11
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
12
|
+
</linearGradient>
|
|
13
|
+
<linearGradient id="paint1_linear_4088_34001" x1="11.5706" y1="28.8328" x2="11.5706" y2="22.8406" gradientUnits="userSpaceOnUse">
|
|
14
|
+
<stop stop-color="#F37C1C"/>
|
|
15
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
16
|
+
</linearGradient>
|
|
17
|
+
</defs>
|
|
4
18
|
</svg>
|
|
@@ -1,4 +1,21 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path
|
|
3
|
-
<path d="
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_4088_33981)">
|
|
3
|
+
<path d="M7.875 7.37476H27.1255V26.6253H7.875V7.37476Z" fill="url(#paint0_linear_4088_33981)" stroke="black" stroke-miterlimit="10"/>
|
|
4
|
+
<path d="M33.5044 15.381C33.7684 15.381 34.0217 15.2761 34.2084 15.0894C34.3952 14.9026 34.5001 14.6494 34.5001 14.3853C34.5001 14.2545 34.4743 14.1251 34.4243 14.0042C34.3742 13.8834 34.3009 13.7737 34.2084 13.6812C34.116 13.5888 34.0062 13.5154 33.8854 13.4654C33.7646 13.4153 33.6351 13.3896 33.5044 13.3896H29.1248V10.0705H33.5044C33.7684 10.0705 34.0217 9.96563 34.2084 9.7789C34.3952 9.59217 34.5001 9.3389 34.5001 9.07482C34.5001 8.81074 34.3952 8.55749 34.2084 8.37076C34.0217 8.18402 33.7684 8.07912 33.5044 8.07912H29.1248V7.4153C29.1227 6.88565 28.9114 6.3783 28.5368 6.00377C28.1623 5.62925 27.655 5.41791 27.1253 5.41578H26.4615V1.03625C26.4615 0.772171 26.3566 0.518899 26.1698 0.332166C25.9831 0.145434 25.7299 0.0405273 25.4658 0.0405273C25.2017 0.0405273 24.9484 0.145434 24.7617 0.332166C24.575 0.518899 24.47 0.772171 24.47 1.03625V5.41578H21.151V1.03625C21.151 0.772171 21.0461 0.518899 20.8594 0.332166C20.6726 0.145434 20.4194 0.0405273 20.1553 0.0405273C19.8912 0.0405273 19.638 0.145434 19.4512 0.332166C19.2645 0.518899 19.1596 0.772171 19.1596 1.03625V5.41578H15.881V1.03625C15.881 0.772171 15.7761 0.518899 15.5894 0.332166C15.4027 0.145434 15.1494 0.0405273 14.8853 0.0405273C14.6212 0.0405273 14.368 0.145434 14.1812 0.332166C13.9945 0.518899 13.8896 0.772171 13.8896 1.03625V5.41578H10.5705V1.03625C10.5705 0.772171 10.4656 0.518899 10.2789 0.332166C10.0921 0.145434 9.83892 0.0405273 9.57484 0.0405273C9.31076 0.0405273 9.05749 0.145434 8.87076 0.332166C8.68402 0.518899 8.57909 0.772171 8.57909 1.03625V5.41578H7.91528C7.38563 5.41791 6.87832 5.62925 6.5038 6.00377C6.12928 6.3783 5.91791 6.88565 5.91578 7.4153V8.07912H1.53628C1.2722 8.07912 1.01892 8.18402 0.832191 8.37076C0.645458 8.55749 0.540527 8.81074 0.540527 9.07482C0.540527 9.3389 0.645458 9.59217 0.832191 9.7789C1.01892 9.96563 1.2722 10.0705 1.53628 10.0705H5.91578V13.3896H1.53628C1.40552 13.3896 1.27604 13.4153 1.15523 13.4654C1.03442 13.5154 0.924652 13.5888 0.832191 13.6812C0.73973 13.7737 0.666361 13.8834 0.616321 14.0042C0.566282 14.1251 0.540527 14.2545 0.540527 14.3853C0.540527 14.6494 0.645458 14.9026 0.832191 15.0894C1.01892 15.2761 1.2722 15.381 1.53628 15.381H5.91578V18.7001H1.53628C1.40552 18.7001 1.27604 18.7258 1.15523 18.7759C1.03442 18.8259 0.924652 18.8992 0.832191 18.9917C0.73973 19.0842 0.666361 19.1939 0.616321 19.3147C0.566282 19.4355 0.540527 19.565 0.540527 19.6958C0.540527 19.9598 0.645458 20.2131 0.832191 20.3998C1.01892 20.5866 1.2722 20.6915 1.53628 20.6915H5.91578V24.0105H1.53628C1.2722 24.0105 1.01892 24.1154 0.832191 24.3022C0.645458 24.4889 0.540527 24.7422 0.540527 25.0063C0.540527 25.2703 0.645458 25.5236 0.832191 25.7103C1.01892 25.8971 1.2722 26.002 1.53628 26.002H5.91578V26.6658C5.91791 27.1954 6.12928 27.7028 6.5038 28.0773C6.87832 28.4518 7.38563 28.6632 7.91528 28.6653H8.57909V33.0448C8.57909 33.3089 8.68402 33.5622 8.87076 33.7489C9.05749 33.9356 9.31076 34.0405 9.57484 34.0405C9.83892 34.0405 10.0921 33.9356 10.2789 33.7489C10.4656 33.5622 10.5705 33.3089 10.5705 33.0448V28.6653H13.8896V33.0448C13.8896 33.3089 13.9945 33.5622 14.1812 33.7489C14.368 33.9356 14.6212 34.0405 14.8853 34.0405C15.1494 34.0405 15.4027 33.9356 15.5894 33.7489C15.7761 33.5622 15.881 33.3089 15.881 33.0448V28.6653H19.2V33.0448C19.2 33.3089 19.305 33.5622 19.4917 33.7489C19.6784 33.9356 19.9317 34.0405 20.1958 34.0405C20.4599 34.0405 20.7131 33.9356 20.8999 33.7489C21.0866 33.5622 21.1915 33.3089 21.1915 33.0448V28.6653H24.5105V33.0448C24.5105 33.3089 24.6154 33.5622 24.8022 33.7489C24.9889 33.9356 25.2422 34.0405 25.5063 34.0405C25.7703 34.0405 26.0236 33.9356 26.2103 33.7489C26.3971 33.5622 26.502 33.3089 26.502 33.0448V28.6653H27.1658C27.6954 28.6632 28.2028 28.4518 28.5773 28.0773C28.9518 27.7028 29.1631 27.1954 29.1653 26.6658V26.002H33.5448C33.6756 26.002 33.8051 25.9762 33.9259 25.9262C34.0467 25.8761 34.1565 25.8028 34.2489 25.7103C34.3414 25.6179 34.4147 25.5081 34.4647 25.3873C34.5148 25.2665 34.5405 25.137 34.5405 25.0063C34.5405 24.8755 34.5148 24.746 34.4647 24.6252C34.4147 24.5044 34.3414 24.3946 34.2489 24.3022C34.1565 24.2097 34.0467 24.1364 33.9259 24.0863C33.8051 24.0363 33.6756 24.0105 33.5448 24.0105H29.1653V20.6915H33.5448C33.6756 20.6915 33.8051 20.6657 33.9259 20.6157C34.0467 20.5657 34.1565 20.4923 34.2489 20.3998C34.3414 20.3074 34.4147 20.1976 34.4647 20.0768C34.5148 19.956 34.5405 19.8265 34.5405 19.6958C34.5405 19.565 34.5148 19.4355 34.4647 19.3147C34.4147 19.1939 34.3414 19.0842 34.2489 18.9917C34.1565 18.8992 34.0467 18.8259 33.9259 18.7759C33.8051 18.7258 33.6756 18.7001 33.5448 18.7001H29.1653V15.381H33.5044ZM27.1253 26.6658H7.87481V7.37481H27.1253C27.1253 27.1677 27.1334 26.6253 27.1253 26.6253V26.6658Z" fill="#1D1D1D"/>
|
|
5
|
+
<path d="M14.5941 12.6853H20.4065L21.8151 14.0939V19.9062L20.4065 21.3148H14.5941L13.1855 19.9062V14.0939L14.5941 12.6853Z" fill="url(#paint1_linear_4088_33981)" stroke="black" stroke-miterlimit="10"/>
|
|
6
|
+
<path d="M21.5478 10.9853C21.4553 10.8928 21.3455 10.8195 21.2247 10.7695C21.1038 10.7195 20.9743 10.6938 20.8435 10.6938H14.2054C14.0746 10.6938 13.9451 10.7195 13.8243 10.7695C13.7034 10.8195 13.5936 10.8928 13.5011 10.9853L11.5097 12.9767C11.4172 13.0692 11.3439 13.179 11.2939 13.2999C11.2439 13.4207 11.2182 13.5502 11.2183 13.681V20.3191C11.2182 20.4499 11.2439 20.5794 11.2939 20.7002C11.3439 20.8211 11.4172 20.9309 11.5097 21.0234L13.5011 23.0148C13.5936 23.1072 13.7034 23.1806 13.8243 23.2306C13.9451 23.2806 14.0746 23.3063 14.2054 23.3062H20.8435C20.9743 23.3063 21.1038 23.2806 21.2247 23.2306C21.3455 23.1806 21.4553 23.1072 21.5478 23.0148L23.5392 21.0234C23.6317 20.9309 23.705 20.8211 23.755 20.7002C23.805 20.5794 23.8307 20.4499 23.8307 20.3191V13.681C23.8307 13.5502 23.805 13.4207 23.755 13.2999C23.705 13.179 23.6317 13.0692 23.5392 12.9767L21.5478 10.9853ZM21.8392 19.8901L20.4306 21.2986H14.6183L13.2097 19.8901V14.0777L14.6183 12.6691H20.4306L21.8392 14.0777V19.8901Z" fill="#1D1D1D"/>
|
|
7
|
+
</g>
|
|
8
|
+
<defs>
|
|
9
|
+
<linearGradient id="paint0_linear_4088_33981" x1="17.5002" y1="26.6253" x2="17.5002" y2="7.37476" gradientUnits="userSpaceOnUse">
|
|
10
|
+
<stop stop-color="#F37C1C"/>
|
|
11
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
12
|
+
</linearGradient>
|
|
13
|
+
<linearGradient id="paint1_linear_4088_33981" x1="17.5003" y1="21.3148" x2="17.5003" y2="12.6853" gradientUnits="userSpaceOnUse">
|
|
14
|
+
<stop stop-color="#EFC530"/>
|
|
15
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
16
|
+
</linearGradient>
|
|
17
|
+
<clipPath id="clip0_4088_33981">
|
|
18
|
+
<rect width="34" height="34" fill="white" transform="translate(0.5)"/>
|
|
19
|
+
</clipPath>
|
|
20
|
+
</defs>
|
|
4
21
|
</svg>
|
|
@@ -1,7 +1,26 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path d="
|
|
3
|
-
<path d="
|
|
4
|
-
<path d="
|
|
5
|
-
<path d="
|
|
6
|
-
<path d="
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M4.8335 13.4323H14.5399V31.2956H4.8335V13.4323Z" fill="url(#paint0_linear_4088_33995)"/>
|
|
3
|
+
<path d="M14.5743 31.3252H4.79883V13.4027H14.5743V31.3252ZM4.86298 31.2611H14.5101V13.4669H4.86298V31.2611Z" fill="black"/>
|
|
4
|
+
<path d="M9.57552 2.7093H9.39294C9.31623 3.28191 9.12024 3.83207 8.81765 4.32421C8.51505 4.81636 8.11258 5.23955 7.63622 5.56644C7.49464 5.66077 7.37832 5.78836 7.29746 5.93804C7.2166 6.08772 7.17365 6.25494 7.17236 6.42506V11.5817H11.8109V4.93974C11.8109 4.64642 11.753 4.35598 11.6406 4.08505C11.5282 3.81411 11.3635 3.56801 11.1559 3.36083C10.9482 3.15365 10.7018 2.98946 10.4306 2.87766C10.1594 2.76586 9.86884 2.70865 9.57552 2.7093Z" fill="url(#paint1_linear_4088_33995)"/>
|
|
5
|
+
<path d="M11.8408 11.6114H7.14307V6.42511C7.14526 6.24844 7.19154 6.0751 7.27771 5.92085C7.36389 5.7666 7.48723 5.63631 7.63653 5.54182C8.10148 5.21225 8.49319 4.79003 8.78702 4.30172C9.08086 3.8134 9.27046 3.26956 9.3439 2.70441V2.6748H9.55609C10.1564 2.67611 10.7318 2.91516 11.1562 3.33964C11.5807 3.76413 11.8198 4.33948 11.8211 4.93979L11.8408 11.6114ZM7.20228 11.5472H11.7767V4.93979C11.7767 4.35609 11.5448 3.7963 11.1321 3.38357C10.7193 2.97083 10.1595 2.73895 9.57583 2.73895H9.42286C9.34138 3.31119 9.14182 3.86024 8.83686 4.35125C8.53189 4.84225 8.12818 5.26449 7.65133 5.59116C7.51256 5.68136 7.39869 5.80502 7.32022 5.95075C7.24175 6.09648 7.2012 6.2596 7.20228 6.42511V11.5472Z" fill="black"/>
|
|
6
|
+
<path d="M15.004 20.6516V14.3748C15.0023 13.9027 14.8811 13.4388 14.6515 13.0263C14.422 12.6138 14.0917 12.2662 13.6914 12.016C13.6962 11.98 13.6962 11.9435 13.6914 11.9075V4.93978C13.6888 3.84687 13.2541 2.79932 12.4823 2.02559C11.7104 1.25185 10.6639 0.814717 9.57095 0.809509L9.39824 0.809509C9.11301 0.809767 8.8286 0.839533 8.5495 0.898332C8.26172 0.961039 8.00382 1.11977 7.81819 1.34844C7.63256 1.57712 7.53024 1.86213 7.52803 2.15666C7.5258 2.52062 7.43473 2.87854 7.26273 3.19931C7.09074 3.52008 6.84303 3.794 6.54111 3.99727C6.14708 4.26825 5.82456 4.63065 5.60112 5.05345C5.37769 5.47626 5.25999 5.94689 5.2581 6.4251V11.8976C5.25553 11.9337 5.25553 11.97 5.2581 12.0062C4.85717 12.2557 4.52632 12.6031 4.29669 13.0157C4.06706 13.4284 3.9462 13.8927 3.94549 14.3649V20.6368C3.62125 20.8984 3.3595 21.229 3.17937 21.6047C2.99923 21.9803 2.90526 22.3914 2.9043 22.808V30.4172C2.9056 31.1562 3.19975 31.8646 3.72233 32.3872C4.24491 32.9098 4.95331 33.204 5.69235 33.2053H13.2324C13.6005 33.2079 13.9654 33.1377 14.3062 32.9988C14.647 32.8599 14.957 32.6551 15.2184 32.396C15.4798 32.1369 15.6874 31.8287 15.8293 31.4891C15.9712 31.1495 16.0445 30.7852 16.0452 30.4172V22.8179C16.0467 22.4016 15.9538 21.9904 15.7734 21.6151C15.5931 21.2399 15.33 20.9105 15.004 20.6516ZM6.76315 13.4865H12.2208C12.3379 13.4859 12.4539 13.5084 12.5623 13.5527C12.6706 13.5971 12.7691 13.6624 12.8521 13.7449C12.9351 13.8275 13.001 13.9256 13.0459 14.0337C13.0909 14.1418 13.114 14.2577 13.114 14.3748V20.0545H5.88973V14.3748C5.89096 14.1421 5.98292 13.9191 6.14604 13.7533C6.30916 13.5874 6.53056 13.4917 6.76315 13.4865ZM7.63659 5.59115C8.11273 5.26404 8.51506 4.84079 8.81763 4.34868C9.1202 3.85658 9.31631 3.30654 9.39331 2.73401H9.57589C10.164 2.73267 10.7289 2.9637 11.1476 3.37681C11.5662 3.78992 11.8048 4.35166 11.8113 4.93978V11.5867H7.17274V6.4251C7.17402 6.25498 7.21697 6.08776 7.29783 5.93808C7.3787 5.7884 7.49501 5.66081 7.63659 5.56648V5.59115ZM14.1503 30.4172C14.1503 30.6541 14.0562 30.8813 13.8887 31.0488C13.7212 31.2163 13.494 31.3104 13.2571 31.3104H5.7269C5.49002 31.3104 5.26283 31.2163 5.09533 31.0488C4.92783 30.8813 4.83372 30.6541 4.83372 30.4172V22.8179C4.83372 22.7008 4.85686 22.5849 4.9018 22.4768C4.94675 22.3688 5.01263 22.2706 5.09563 22.1881C5.17863 22.1055 5.27712 22.0402 5.38546 21.9959C5.49379 21.9515 5.60984 21.929 5.7269 21.9297H13.2621C13.3791 21.929 13.4951 21.9515 13.6035 21.9959C13.7118 22.0402 13.8103 22.1055 13.8933 22.1881C13.9763 22.2706 14.0422 22.3688 14.0871 22.4768C14.1321 22.5849 14.1552 22.7008 14.1552 22.8179V30.4172H14.1503Z" fill="#1D1D1D"/>
|
|
7
|
+
<path d="M20.9303 13.4323L30.4147 13.4865V31.6114H20.1704V13.4865L20.9303 13.4323Z" fill="url(#paint2_linear_4088_33995)"/>
|
|
8
|
+
<path d="M30.449 31.6411H20.1406V13.457L20.9302 13.4027L30.449 13.4521V31.6411ZM20.1998 31.5818H30.3849V13.5162L20.9302 13.4669L20.1998 13.5162V31.5818Z" fill="black"/>
|
|
9
|
+
<path d="M29.9408 19.4031V23.4545L20.2344 26.2326V21.9297L29.9408 19.4031Z" fill="white"/>
|
|
10
|
+
<path d="M20.2002 26.2771V21.905H20.2249L29.9757 19.3735V23.4841H29.951L20.2002 26.2771ZM20.2643 21.9543V26.1932L29.9115 23.4298V19.4476L20.2643 21.9543Z" fill="black"/>
|
|
11
|
+
<path d="M29.0479 11.5374H21.5177C21.1509 11.5367 20.7875 11.6083 20.4484 11.7481C20.1093 11.8878 19.8011 12.093 19.5413 12.3519C19.2815 12.6108 19.0752 12.9183 18.9342 13.257C18.7933 13.5956 18.7204 13.9586 18.7197 14.3254V30.4172C18.721 31.1562 19.0152 31.8646 19.5378 32.3872C20.0604 32.9098 20.7687 33.204 21.5078 33.2053H29.0824C29.8172 33.1975 30.5193 32.9005 31.0365 32.3786C31.5538 31.8567 31.8446 31.152 31.8458 30.4172V14.3254C31.8432 13.5851 31.5473 12.8759 31.0228 12.3534C30.4984 11.8308 29.7882 11.5374 29.0479 11.5374ZM20.6245 22.9413L29.941 20.02V22.7636L20.6245 25.6849V22.9413ZM21.5177 13.4323H29.0824C29.1995 13.4322 29.3154 13.4554 29.4235 13.5003C29.5316 13.5453 29.6297 13.6111 29.7122 13.6941C29.7948 13.7772 29.8601 13.8757 29.9045 13.984C29.9488 14.0923 29.9713 14.2084 29.9706 14.3254V18.0313L20.659 20.9526V14.3254C20.6571 14.2084 20.6785 14.0922 20.722 13.9836C20.7656 13.875 20.8304 13.7762 20.9127 13.693C20.995 13.6098 21.0931 13.5438 21.2012 13.4991C21.3093 13.4543 21.4253 13.4316 21.5423 13.4323H21.5177ZM29.0479 31.2956H21.5177C21.2833 31.2956 21.0584 31.2035 20.8913 31.0392C20.7242 30.8749 20.6284 30.6515 20.6245 30.4172V27.6785L29.941 24.7572V30.4172C29.9372 30.6515 29.8413 30.8749 29.6743 31.0392C29.5072 31.2035 29.2822 31.2956 29.0479 31.2956Z" fill="#1D1D1D"/>
|
|
12
|
+
<defs>
|
|
13
|
+
<linearGradient id="paint0_linear_4088_33995" x1="9.68916" y1="31.2956" x2="9.68916" y2="13.4323" gradientUnits="userSpaceOnUse">
|
|
14
|
+
<stop stop-color="#F37C1C"/>
|
|
15
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
16
|
+
</linearGradient>
|
|
17
|
+
<linearGradient id="paint1_linear_4088_33995" x1="9.49163" y1="11.5817" x2="9.49163" y2="2.70436" gradientUnits="userSpaceOnUse">
|
|
18
|
+
<stop stop-color="#EFC530"/>
|
|
19
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
20
|
+
</linearGradient>
|
|
21
|
+
<linearGradient id="paint2_linear_4088_33995" x1="25.2925" y1="31.6114" x2="25.2925" y2="13.4323" gradientUnits="userSpaceOnUse">
|
|
22
|
+
<stop stop-color="#EFC530"/>
|
|
23
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
24
|
+
</linearGradient>
|
|
25
|
+
</defs>
|
|
7
26
|
</svg>
|