@kando-env/kando-ui 1.2.278-alpha.3 → 1.2.278-alpha.31
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 +18 -2
- package/lib/Widgets/Map/Map.scss +17 -5
- package/lib/Widgets/Map/MapUtils.js +13 -11
- package/lib/Widgets/Map/areas/AreaPolygon.js +24 -6
- package/lib/Widgets/Map/areas/AreaPolygons.js +9 -3
- package/lib/Widgets/Map/areas/AreaUtils.js +24 -48
- package/lib/Widgets/Map/events/EventUtils.js +9 -6
- package/lib/Widgets/Map/events/PointOfEvent.js +2 -3
- package/lib/Widgets/Map/points/PointMarker.js +27 -16
- package/lib/Widgets/Map/points/PointMarkers.js +2 -12
- package/lib/Widgets/Map/points/PointUtils.js +18 -33
- package/lib/_style-colors.scss +23 -0
- package/lib/assets/icons/index.js +22 -8
- package/lib/assets/icons/no-result.svg +20 -0
- package/lib/assets/icons/noSamplings.svg +15 -0
- package/lib/assets/icons/upgrade.svg +18 -0
- package/lib/components/CustomInputs/DoubleTabs/styles.js +15 -3
- package/lib/components/Header/DoubleTabs/styles.js +2 -2
- package/lib/components/Sector/Sector.test.js +35 -1
- package/lib/components/Sector/sectorIcons.js +39 -18
- package/lib/components/Sector/svgs/Cowshed.svg +13 -23
- package/lib/components/Sector/svgs/Garage.svg +4 -26
- package/lib/components/Sector/svgs/Missing.svg +8 -32
- package/lib/components/Sector/svgs/Motor Vehicle.svg +4 -20
- package/lib/components/Sector/svgs/Polymer.svg +3 -41
- package/lib/components/Sector/svgs/Seafood.svg +9 -21
- package/lib/components/Sector/svgs/bakery.svg +4 -0
- package/lib/components/Sector/svgs/beer.svg +8 -14
- package/lib/components/Sector/svgs/beverage.svg +10 -15
- package/lib/components/Sector/svgs/carwash.svg +4 -0
- package/lib/components/Sector/svgs/chemistry.svg +3 -17
- package/lib/components/Sector/svgs/conductor-manufacturer.svg +3 -20
- package/lib/components/Sector/svgs/cosmetic-manufacturer.svg +6 -25
- package/lib/components/Sector/svgs/dairy.svg +4 -16
- package/lib/components/Sector/svgs/dippel-oil.svg +5 -21
- package/lib/components/Sector/svgs/food-factory.svg +5 -20
- package/lib/components/Sector/svgs/garbage-truck-1.svg +3 -31
- package/lib/components/Sector/svgs/gas-station.svg +3 -22
- package/lib/components/Sector/svgs/glass-manufacturer.svg +8 -20
- package/lib/components/Sector/svgs/hand-washing.svg +9 -17
- package/lib/components/Sector/svgs/hospital.svg +6 -27
- package/lib/components/Sector/svgs/hotel.svg +8 -22
- package/lib/components/Sector/svgs/laundromat.svg +3 -26
- package/lib/components/Sector/svgs/meat.svg +6 -23
- package/lib/components/Sector/svgs/metal-coating-plant.svg +8 -21
- package/lib/components/Sector/svgs/metal-fabrication.svg +7 -0
- package/lib/components/Sector/svgs/motor-vehicle.svg +4 -0
- package/lib/components/Sector/svgs/oil-rig.svg +3 -15
- package/lib/components/Sector/svgs/petrochemical.svg +3 -21
- package/lib/components/Sector/svgs/pharmaceutical.svg +11 -0
- package/lib/components/Sector/svgs/plastic-manufacturer.svg +11 -0
- package/lib/components/Sector/svgs/plastic-recycling-factory.svg +4 -0
- package/lib/components/Sector/svgs/printer.svg +4 -16
- package/lib/components/Sector/svgs/pulp-and-paper.svg +8 -0
- package/lib/components/Sector/svgs/refinement.svg +6 -0
- package/lib/components/Sector/svgs/shopping-malls-restaurants.svg +11 -0
- package/lib/components/Sector/svgs/textile.svg +8 -0
- package/lib/components/Sector/svgs/wine-glass.svg +4 -10
- package/lib/hooks/useUserTimeZone.js +6 -2
- package/lib/i18n/en.json +12 -1
- package/lib/i18n/he.json +25 -0
- package/lib/macros/getVersion.js +2 -2
- package/lib/pages/DashboardMap/AreaCard.js +44 -7
- package/lib/pages/DashboardMap/FactoryCard.js +49 -10
- package/lib/pages/DashboardMap/List.js +34 -5
- package/lib/pages/DashboardMap/ListContext.js +39 -0
- package/lib/pages/DashboardMap/WWTPMap.js +18 -6
- package/lib/pages/DashboardMap/Widget.js +149 -91
- package/lib/pages/DashboardMap/utils.js +21 -6
- package/lib/pages/EventsPage/events/event_info/EventInfo.js +2 -2
- package/lib/pages/SamplingsPage/SamplingsPageContainer.js +2 -7
- package/lib/pages/SitePage/SamplingParameters/NoResults/index.js +25 -12
- package/lib/pages/SitePage/SamplingParameters/ParametersContainer/ParametersContainer.js +7 -3
- package/lib/pages/SitePage/SamplingParameters/SamplingContainer/ExpandableSamplingTable/ExpandableSamplingTable.js +8 -1
- package/lib/pages/SitePage/SamplingParameters/SamplingContainer/ExpandableSamplingTable/ExpandableSamplingTable.scss +22 -12
- package/lib/pages/SitePage/SamplingParameters/SamplingContainer/SamplingContainer.js +6 -7
- package/lib/pages/SitePage/SamplingParameters/SamplingParameters.js +44 -83
- package/lib/pages/SitePage/SamplingParameters/body/Body.js +38 -0
- package/lib/pages/SitePage/SamplingParameters/body/BodyContainer.js +71 -0
- package/lib/pages/SitePage/SamplingParameters/body/index.js +11 -0
- package/lib/pages/SitePage/SamplingParameters/dataParser.js +5 -4
- package/lib/pages/WbeDashboard/WbeDashboardPage.js +6 -3
- package/lib/pages/WwtpPage/ContaminateCard.js +18 -0
- package/lib/pages/WwtpPage/PredictionCard.js +18 -0
- package/lib/pages/WwtpPage/TrendChart.js +25 -9
- package/lib/pages/WwtpPage/UpgradeBox.js +30 -0
- package/lib/pages/WwtpPage/WwtpPage.js +31 -8
- package/lib/pages/WwtpPage/WwtpPageContainer.js +8 -17
- package/lib/scss/custom.scss +39 -1
- package/lib/store/areas/models/IArea.js +1 -1
- package/lib/store/points/models/IPoint.js +1 -1
- package/lib/styles/theme/theme.js +14 -5
- package/lib/utilities/scoreToData.js +2 -2
- package/package.json +1 -1
- package/lib/components/Sector/svgs/Brewing.svg +0 -100
- package/lib/components/Sector/svgs/Pulp and Paper.svg +0 -26
- package/lib/components/Sector/svgs/barrel.svg +0 -100
- package/lib/components/Sector/svgs/car-repair.svg +0 -27
- package/lib/components/Sector/svgs/car-wash.svg +0 -36
- package/lib/components/Sector/svgs/cow.svg +0 -28
- package/lib/components/Sector/svgs/cpu.svg +0 -21
- package/lib/components/Sector/svgs/food-donation.svg +0 -34
- package/lib/components/Sector/svgs/glass.svg +0 -23
- package/lib/components/Sector/svgs/leather-factory.svg +0 -16
- package/lib/components/Sector/svgs/leather.svg +0 -16
- package/lib/components/Sector/svgs/lipstick.svg +0 -26
- package/lib/components/Sector/svgs/metal-facbrication.svg +0 -31
- package/lib/components/Sector/svgs/milk.svg +0 -17
- package/lib/components/Sector/svgs/pie.svg +0 -21
- package/lib/components/Sector/svgs/pills.svg +0 -22
- package/lib/components/Sector/svgs/plant-unkown-3.svg +0 -37
- package/lib/components/Sector/svgs/plastic-rubber.svg +0 -35
- package/lib/components/Sector/svgs/recycling.svg +0 -16
- package/lib/components/Sector/svgs/refinery.svg +0 -17
- package/lib/components/Sector/svgs/repair.svg +0 -15
- package/lib/components/Sector/svgs/sewing-machine.svg +0 -23
- package/lib/components/Sector/svgs/shop.svg +0 -27
- package/lib/components/Sector/svgs/soda.svg +0 -16
- package/lib/components/Sector/svgs/spray-gun.svg +0 -22
- package/lib/components/Sector/svgs/washing-machine.svg +0 -27
- package/lib/components/Sector/svgs/waste.svg +0 -35
- package/lib/components/Sector/svgs/welder-a.svg +0 -31
|
@@ -1,28 +1,11 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<
|
|
3
|
-
<path
|
|
4
|
-
<path d="
|
|
5
|
-
<path d="M30.6317 6.27445C27.4983 3.82844 22.8503 2.42859 17.9035 2.42859C12.8521 2.42859 6.94382 3.99782 3.55129 7.73408C2.79952 8.50765 2.21411 9.42696 1.83114 10.4354C1.44816 11.4438 1.27573 12.5199 1.32448 13.5975C1.32448 13.6473 1.32448 18.9927 1.32448 18.9927C1.35644 19.471 1.418 19.9468 1.5088 20.4175C1.86121 21.9763 2.75027 23.3617 4.02058 24.3315C5.29089 25.3013 6.86163 25.7938 8.45825 25.7229C9.56945 25.684 10.6767 25.876 11.7099 26.2867C12.7431 26.6974 13.68 27.318 14.4612 28.1092C16.5866 30.265 19.4699 31.5055 22.4966 31.5665C25.5166 31.5984 28.435 30.4771 30.6566 28.4313C32.8783 26.3855 34.2359 23.5693 34.4527 20.5569C34.4576 20.4956 34.4576 20.434 34.4527 20.3726V14.275C34.4651 12.7358 34.1244 11.2143 33.4569 9.82731C32.7893 8.44034 31.8126 7.22492 30.6018 6.27445H30.6317ZM22.5365 29.6236C20.0148 29.5728 17.6125 28.5397 15.8411 26.7442C14.8654 25.7651 13.6982 24.9978 12.4124 24.4903C11.1266 23.9829 9.75 23.7462 8.36858 23.795C7.13896 23.8513 5.93368 23.4396 4.99546 22.6428C4.05724 21.846 3.45576 20.7233 3.31216 19.5008C3.31216 19.3364 3.26235 19.0325 3.23246 18.8781V17.822C3.89837 18.5253 4.70813 19.0768 5.60652 19.4387C6.50492 19.8007 7.47082 19.9646 8.43832 19.9193C9.55103 19.8743 10.6609 20.061 11.6977 20.4675C12.7345 20.874 13.6755 21.4914 14.4612 22.2806C16.5866 24.4364 19.4699 25.6769 22.4966 25.7379C24.4756 25.7593 26.4286 25.2868 28.1787 24.363C29.9289 23.4392 31.421 22.0933 32.5198 20.4473C32.3294 22.9541 31.1951 25.2953 29.3459 26.9984C27.4967 28.7015 25.0703 29.6397 22.5564 29.6236H22.5365ZM32.5298 14.2601C32.4401 19.5855 27.7722 23.9096 22.5365 23.795C20.0149 23.7437 17.6128 22.7106 15.8411 20.9156C14.8638 19.9387 13.6963 19.1728 12.4109 18.6655C11.1255 18.1582 9.74967 17.9203 8.36858 17.9665C7.13896 18.0227 5.93368 17.611 4.99546 16.8142C4.05724 16.0174 3.45576 14.8948 3.31216 13.6723C3.24917 12.8224 3.3686 11.9689 3.66245 11.169C3.95629 10.3691 4.41775 9.64127 5.0159 9.0343C7.60139 6.15987 12.5532 4.37144 17.9234 4.37144C22.4518 4.37144 26.6613 5.62683 29.461 7.80881C30.4322 8.58432 31.2148 9.57009 31.7498 10.6919C32.2848 11.8137 32.5583 13.0422 32.5497 14.285L32.5298 14.2601Z" fill="#1D1D1D"/>
|
|
6
|
-
<path d="M28.2407 9.3432C25.8146 7.44517 21.9439 6.31433 17.8987 6.31433C13.1213 6.31433 8.62783 7.88356 6.44087 10.2997C6.02275 10.7075 5.69767 11.2009 5.48788 11.746C5.27809 12.2911 5.18854 12.8751 5.22535 13.4581C5.315 14.1888 5.67741 14.8586 6.24 15.3335C6.80259 15.8083 7.52381 16.053 8.25919 16.0187C9.91639 15.9517 11.5694 16.2302 13.1132 16.8365C14.6569 17.4429 16.0576 18.3638 17.2262 19.5407C17.9427 20.2678 18.7955 20.8466 19.7357 21.2441C20.676 21.6416 21.6853 21.8499 22.7061 21.8572C24.7264 21.8112 26.6539 20.9995 28.0985 19.5864C29.5432 18.1732 30.397 16.264 30.4875 14.2452V14.2153C30.504 13.2808 30.3071 12.3548 29.9117 11.508C29.5163 10.6611 28.9329 9.91557 28.2059 9.32825L28.2407 9.3432ZM22.7609 19.9143C21.2069 19.907 19.7189 19.2856 18.6211 18.1857C13.9881 13.4929 8.35883 14.1555 7.88557 14.0658C7.70336 14.0144 7.53959 13.9121 7.41342 13.7709C7.28726 13.6298 7.20392 13.4556 7.17318 13.2688C7.17297 12.9565 7.23801 12.6476 7.36411 12.362C7.49022 12.0763 7.67462 11.8201 7.90549 11.6099C9.70388 9.61719 13.7291 8.25719 17.9137 8.25719C21.5404 8.25719 24.9628 9.25353 27.0601 10.8776C27.5496 11.2757 27.9421 11.7799 28.2079 12.3521C28.4737 12.9244 28.6059 13.5496 28.5944 14.1804C28.5155 15.6948 27.8714 17.1245 26.7895 18.1871C25.7076 19.2496 24.2665 19.8677 22.7509 19.9193L22.7609 19.9143Z" fill="#1D1D1D"/>
|
|
7
|
-
<path d="M22.7558 12.1379C20.5788 12.1379 18.8701 13.4232 18.8701 15.0572C18.8701 16.6912 20.5738 17.9715 22.7558 17.9715C24.9378 17.9715 26.6415 16.6862 26.6415 15.0572C26.6415 13.4282 24.9229 12.1379 22.7558 12.1379ZM22.7558 16.0286C21.5702 16.0286 20.813 15.4508 20.813 15.0572C20.813 14.6637 21.5702 14.0609 22.7558 14.0609C23.9415 14.0609 24.6987 14.6387 24.6987 15.0572C24.6987 15.4757 23.9265 16.0286 22.7558 16.0286Z" fill="#1D1D1D"/>
|
|
8
|
-
<path d="M22.7558 16.0286C23.8289 16.0286 24.6987 15.5936 24.6987 15.0571C24.6987 14.5206 23.8289 14.0857 22.7558 14.0857C21.6828 14.0857 20.813 14.5206 20.813 15.0571C20.813 15.5936 21.6828 16.0286 22.7558 16.0286Z" fill="white"/>
|
|
9
|
-
<path d="M27.045 10.8775C24.9477 9.23848 21.5253 8.25708 17.8986 8.25708C13.7788 8.25708 9.81835 9.56229 7.98011 11.5151L7.28765 12.5114C7.18018 12.7449 7.13717 13.003 7.16311 13.2587C7.19385 13.4455 7.27718 13.6197 7.40335 13.7609C7.52951 13.902 7.69329 14.0043 7.87549 14.0558C8.34875 14.1454 13.9781 13.4829 18.611 18.1756C19.7072 19.2778 21.1963 19.8996 22.7508 19.9043C24.2638 19.8503 25.7018 19.2318 26.7815 18.1706C27.8612 17.1093 28.5044 15.6822 28.5844 14.1703C28.5941 13.5407 28.4606 12.9171 28.1939 12.3466C27.9272 11.7762 27.5344 11.2738 27.045 10.8775ZM22.7558 17.9714C20.5788 17.9714 18.8701 16.6861 18.8701 15.0571C18.8701 13.4281 20.5738 12.1378 22.7558 12.1378C24.9378 12.1378 26.6415 13.4231 26.6415 15.0571C26.6415 16.6911 24.9228 17.9714 22.7558 17.9714Z" fill="url(#paint2_linear_4088_33979)"/>
|
|
1
|
+
<svg width="37" height="36" viewBox="0 0 37 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.5 18C0.5 8.05888 8.55888 0 18.5 0C28.4411 0 36.5 8.05888 36.5 18C36.5 27.9411 28.4411 36 18.5 36C8.55888 36 0.5 27.9411 0.5 18Z" fill="#E7F1FF"/>
|
|
3
|
+
<g clip-path="url(#clip0_6415_4771)">
|
|
4
|
+
<path d="M26.2683 10.2358C23.9675 7.93495 20.865 7.30745 19.3383 8.83412C17.8117 10.3608 18.4392 13.4633 20.74 15.7641C23.0408 18.065 26.1433 18.6925 27.67 17.1658C29.1967 15.6391 28.5692 12.5366 26.2683 10.2358ZM24.5983 14.0933C24.2642 14.4275 23.5042 14.2083 22.9 13.6041C22.2958 13 22.0767 12.24 22.4108 11.9058C22.745 11.5716 23.505 11.7908 24.1092 12.395C24.7133 12.9991 24.9325 13.7591 24.5983 14.0933ZM26.2567 19.6066C26.2875 19.5925 26.3183 19.5783 26.3492 19.5641C23.9233 21.5408 20.8717 22.6916 17.2533 22.9883C17.1575 22.9958 17.0617 23 16.9658 23C16.33 23 15.7117 22.8266 15.175 22.5033L12.0225 25.6566C12.4067 25.87 12.6675 26.28 12.6675 26.75C12.6675 27.44 12.1075 28 11.4175 28C10.7275 28 10.1675 27.44 10.1675 26.75C10.1675 26.5575 10.2108 26.375 10.2892 26.2116C10.1258 26.2891 9.94332 26.3333 9.75082 26.3333C9.06082 26.3333 8.50082 25.7733 8.50082 25.0833C8.50082 24.3933 9.06082 23.8333 9.75082 23.8333C10.2217 23.8333 10.6317 24.0933 10.8442 24.4775L13.9967 21.3241C13.625 20.7066 13.4517 19.9825 13.5125 19.2458C13.8058 15.6641 14.945 12.6325 16.9008 10.2116C16.8992 10.2241 16.8975 10.2358 16.8958 10.2483C16.5883 12.3608 17.5225 14.9016 19.5625 16.9416C21.3492 18.7283 23.52 19.6683 25.45 19.6683C25.725 19.6683 25.9925 19.645 26.2567 19.6066Z" fill="#3B82F6"/>
|
|
10
5
|
</g>
|
|
11
6
|
<defs>
|
|
12
|
-
<
|
|
13
|
-
<
|
|
14
|
-
<stop offset="1" stop-color="#FCC191"/>
|
|
15
|
-
</linearGradient>
|
|
16
|
-
<linearGradient id="paint1_linear_4088_33979" x1="17.8985" y1="23.7951" x2="17.8985" y2="4.37146" gradientUnits="userSpaceOnUse">
|
|
17
|
-
<stop stop-color="#EFC530"/>
|
|
18
|
-
<stop offset="1" stop-color="#FCEDB6"/>
|
|
19
|
-
</linearGradient>
|
|
20
|
-
<linearGradient id="paint2_linear_4088_33979" x1="17.8688" y1="19.9142" x2="17.8688" y2="8.25708" gradientUnits="userSpaceOnUse">
|
|
21
|
-
<stop stop-color="#F37C1C"/>
|
|
22
|
-
<stop offset="1" stop-color="#FCC191"/>
|
|
23
|
-
</linearGradient>
|
|
24
|
-
<clipPath id="clip0_4088_33979">
|
|
25
|
-
<rect width="34" height="34" fill="white" transform="translate(0.5)"/>
|
|
7
|
+
<clipPath id="clip0_6415_4771">
|
|
8
|
+
<rect width="20" height="20" fill="white" transform="translate(8.5 8)"/>
|
|
26
9
|
</clipPath>
|
|
27
10
|
</defs>
|
|
28
11
|
</svg>
|
|
@@ -1,22 +1,9 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path d="
|
|
3
|
-
<path d="
|
|
4
|
-
<path d="
|
|
5
|
-
<path d="
|
|
6
|
-
<path d="
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="
|
|
9
|
-
<path d="M32.8281 22.5402C33.3044 22.5402 33.6904 22.1539 33.6904 21.6774C33.6904 21.2009 33.3044 20.8146 32.8281 20.8146C32.3519 20.8146 31.9658 21.2009 31.9658 21.6774C31.9658 22.1539 32.3519 22.5402 32.8281 22.5402Z" fill="#1D1D1D"/>
|
|
10
|
-
<path d="M32.8281 19.083C33.3044 19.083 33.6904 18.6967 33.6904 18.2202C33.6904 17.7438 33.3044 17.3575 32.8281 17.3575C32.3519 17.3575 31.9658 17.7438 31.9658 18.2202C31.9658 18.6967 32.3519 19.083 32.8281 19.083Z" fill="#1D1D1D"/>
|
|
11
|
-
<path d="M32.8281 15.6259C33.3044 15.6259 33.6904 15.2396 33.6904 14.7631C33.6904 14.2866 33.3044 13.9003 32.8281 13.9003C32.3519 13.9003 31.9658 14.2866 31.9658 14.7631C31.9658 15.2396 32.3519 15.6259 32.8281 15.6259Z" fill="#1D1D1D"/>
|
|
12
|
-
<defs>
|
|
13
|
-
<linearGradient id="paint0_linear_4088_33978" x1="11.5447" y1="29.9661" x2="11.5447" y2="16.2204" gradientUnits="userSpaceOnUse">
|
|
14
|
-
<stop stop-color="#F37C1C"/>
|
|
15
|
-
<stop offset="1" stop-color="#FCC191"/>
|
|
16
|
-
</linearGradient>
|
|
17
|
-
<linearGradient id="paint1_linear_4088_33978" x1="15.6467" y1="11.6478" x2="15.6467" y2="4.00313" gradientUnits="userSpaceOnUse">
|
|
18
|
-
<stop stop-color="#EFC530"/>
|
|
19
|
-
<stop offset="1" stop-color="#FCEDB6"/>
|
|
20
|
-
</linearGradient>
|
|
21
|
-
</defs>
|
|
1
|
+
<svg width="37" height="36" viewBox="0 0 37 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.5 18C0.5 8.05888 8.55888 0 18.5 0C28.4411 0 36.5 8.05888 36.5 18C36.5 27.9411 28.4411 36 18.5 36C8.55888 36 0.5 27.9411 0.5 18Z" fill="#E7F1FF"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.4668 13.9647H11.2037C8.78523 13.9647 6.81769 15.9322 6.81769 18.3507V23.6138C6.81769 26.0322 8.78523 27.9998 11.2037 27.9998H16.4668C18.8852 27.9998 20.8528 26.0322 20.8528 23.6138V18.3507C20.8528 15.9322 18.8852 13.9647 16.4668 13.9647ZM10.3265 20.9822C10.3265 22.9173 11.9001 24.491 13.8352 24.491C15.7703 24.491 17.344 22.9173 17.344 20.9822C17.344 19.0471 15.7703 17.4735 13.8352 17.4735C11.9001 17.4735 10.3265 19.0471 10.3265 20.9822ZM13.8352 19.2278C12.8677 19.2278 12.0808 20.0147 12.0808 20.9822C12.0808 21.9498 12.8677 22.7366 13.8352 22.7366C14.8028 22.7366 15.5896 21.9498 15.5896 20.9822C15.5896 20.0147 14.8028 19.2278 13.8352 19.2278Z" fill="#3B82F6"/>
|
|
4
|
+
<path d="M22.571 23.7956V17.4735H23.5238C23.8135 17.4735 24.0616 17.5767 24.2679 17.783C24.4743 17.9894 24.5775 18.2374 24.5775 18.5272V22.7419C24.5775 23.0317 24.4743 23.2798 24.2679 23.4861C24.0616 23.6925 23.8135 23.7956 23.5238 23.7956H22.571Z" fill="#3B82F6"/>
|
|
5
|
+
<path d="M14.7132 9.69824L14.7132 12.4096L12.9588 12.4096V9.69824L10.3273 9.69823C9.84304 9.69823 9.45006 9.30525 9.45006 8.82104C9.45006 8.33683 9.84304 7.94385 10.3273 7.94385L17.3448 7.94385C17.829 7.94385 18.222 8.33683 18.222 8.82104C18.222 9.30525 17.829 9.69824 17.3448 9.69824L14.7132 9.69824Z" fill="#3B82F6"/>
|
|
6
|
+
<path d="M27.5929 20.5242C27.5929 21.1055 27.1216 21.5768 26.5402 21.5768C25.9589 21.5768 25.4876 21.1055 25.4876 20.5242C25.4876 19.9428 25.9589 19.4715 26.5402 19.4715C27.1216 19.4715 27.5929 19.9428 27.5929 20.5242Z" fill="#3B82F6"/>
|
|
7
|
+
<path d="M30.1603 18.5262C30.1603 19.1076 29.689 19.5789 29.1076 19.5789C28.5263 19.5789 28.055 19.1076 28.055 18.5262C28.055 17.9449 28.5263 17.4736 29.1076 17.4736C29.689 17.4736 30.1603 17.9449 30.1603 18.5262Z" fill="#3B82F6"/>
|
|
8
|
+
<path d="M30.1603 22.6294C30.1603 23.2107 29.689 23.682 29.1076 23.682C28.5263 23.682 28.055 23.2107 28.055 22.6294C28.055 22.048 28.5263 21.5768 29.1076 21.5768C29.689 21.5768 30.1603 22.048 30.1603 22.6294Z" fill="#3B82F6"/>
|
|
22
9
|
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="37" height="36" viewBox="0 0 37 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.5 18C0.5 8.05888 8.55888 0 18.5 0C28.4411 0 36.5 8.05888 36.5 18C36.5 27.9411 28.4411 36 18.5 36C8.55888 36 0.5 27.9411 0.5 18Z" fill="#E7F1FF"/>
|
|
3
|
+
<path d="M14.6885 13.5792V16.1783H22.3115V13.5792H14.6885Z" fill="#3B82F6"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.4999 11C11.4999 9.34315 12.843 8 14.4999 8H22.4999C24.1567 8 25.4999 9.34315 25.4999 11V21C25.4999 24.866 22.3659 28 18.4999 28C14.6339 28 11.4999 24.866 11.4999 21V11ZM13.2885 13.5792C13.2885 12.806 13.9153 12.1792 14.6885 12.1792H22.3115C23.0847 12.1792 23.7115 12.806 23.7115 13.5792V16.1783C23.7115 16.9515 23.0847 17.5783 22.3115 17.5783H14.6885C13.9153 17.5783 13.2885 16.9515 13.2885 16.1783V13.5792Z" fill="#3B82F6"/>
|
|
5
|
+
<path d="M26.844 18V11.9429C27.8792 11.9429 28.7184 12.7821 28.7184 13.8173V16.1256C28.7184 17.1608 27.8792 18 26.844 18Z" fill="#3B82F6"/>
|
|
6
|
+
<path d="M10.156 11.9429L10.156 18C9.12082 18 8.28162 17.1608 8.28162 16.1256V13.8173C8.28162 12.7821 9.12082 11.9429 10.156 11.9429Z" fill="#3B82F6"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="37" height="36" viewBox="0 0 37 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.5 18C0.5 8.05888 8.55888 0 18.5 0C28.4411 0 36.5 8.05888 36.5 18C36.5 27.9411 28.4411 36 18.5 36C8.55888 36 0.5 27.9411 0.5 18Z" fill="#E7F1FF"/>
|
|
3
|
+
<path d="M25.0753 26.9258L20.3022 22.1528L22.5674 19.8876L27.3405 24.6607C27.6461 24.9663 27.7989 25.3438 27.7989 25.7932C27.7989 26.2427 27.6461 26.6202 27.3405 26.9258C27.0348 27.2315 26.6573 27.3843 26.2079 27.3843C25.7584 27.3843 25.3809 27.2315 25.0753 26.9258ZM10.1899 26.9258C9.88427 26.6202 9.73146 26.2427 9.73146 25.7932C9.73146 25.3438 9.88427 24.9663 10.1899 24.6607L16.5 18.3506L14.6663 16.5168C14.4685 16.7146 14.2169 16.8135 13.9112 16.8135C13.6056 16.8135 13.3539 16.7146 13.1562 16.5168L12.536 15.8966V18.3236C12.536 18.5753 12.4281 18.7461 12.2124 18.8359C11.9966 18.9258 11.7989 18.8809 11.6191 18.7011L8.67978 15.7618C8.5 15.582 8.45506 15.3843 8.54494 15.1685C8.63483 14.9528 8.80562 14.8449 9.0573 14.8449H11.4843L10.891 14.2517C10.6753 14.0359 10.5674 13.7843 10.5674 13.4966C10.5674 13.209 10.6753 12.9573 10.891 12.7416L13.9652 9.66741C14.3247 9.30786 14.7112 9.04718 15.1247 8.88539C15.5382 8.72359 15.9607 8.64269 16.3921 8.64269C16.7517 8.64269 17.0888 8.69662 17.4034 8.80449C17.718 8.91235 18.0281 9.07415 18.3337 9.28988C18.4775 9.37977 18.5539 9.50561 18.5629 9.66741C18.5719 9.82921 18.5135 9.97303 18.3876 10.0989L16.3382 12.1483L16.9315 12.7416C17.1292 12.9393 17.2281 13.191 17.2281 13.4966C17.2281 13.8022 17.1292 14.0539 16.9315 14.2517L18.7652 16.0854L21.1921 13.6584C21.1202 13.4607 21.0618 13.2539 21.0169 13.0382C20.9719 12.8225 20.9494 12.6067 20.9494 12.391C20.9494 11.3303 21.3135 10.4359 22.0416 9.70786C22.7697 8.97977 23.664 8.61572 24.7247 8.61572C24.8685 8.61572 25.0034 8.62022 25.1292 8.62921C25.2551 8.63819 25.3809 8.66067 25.5067 8.69662C25.6685 8.75055 25.7719 8.86291 25.8169 9.0337C25.8618 9.20449 25.8213 9.3528 25.6955 9.47864L23.9427 11.2315C23.8348 11.3393 23.7809 11.4652 23.7809 11.609C23.7809 11.7528 23.8348 11.8786 23.9427 11.9865L25.1292 13.173C25.2371 13.2809 25.3629 13.3348 25.5067 13.3348C25.6506 13.3348 25.7764 13.2809 25.8843 13.173L27.6371 11.4202C27.7629 11.2944 27.9112 11.2494 28.082 11.2854C28.2528 11.3213 28.3652 11.4292 28.4191 11.609C28.4551 11.7348 28.4775 11.8607 28.4865 11.9865C28.4955 12.1124 28.5 12.2472 28.5 12.391C28.5 13.4517 28.136 14.3461 27.4079 15.0741C26.6798 15.8022 25.7854 16.1663 24.7247 16.1663C24.509 16.1663 24.2933 16.1483 24.0775 16.1124C23.8618 16.0764 23.6551 16.0135 23.4573 15.9236L12.4551 26.9258C12.1494 27.2315 11.7719 27.3843 11.3225 27.3843C10.873 27.3843 10.4955 27.2315 10.1899 26.9258Z" fill="#3B82F6"/>
|
|
4
|
+
</svg>
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path d="
|
|
3
|
-
<path d="
|
|
4
|
-
<path d="M4.89756 20.2209C4.96402 20.357 5.05685 20.4785 5.17065 20.5784C5.28444 20.6783 5.41694 20.7545 5.56046 20.8028C5.70349 20.8529 5.85511 20.8737 6.00634 20.8642C6.15758 20.8546 6.30536 20.8148 6.44095 20.7472L24.8048 11.7904L23.7928 9.70557L5.42889 18.7028C5.1568 18.8414 4.95076 19.0822 4.85591 19.3725C4.76105 19.6627 4.78513 19.9787 4.92286 20.2513L4.89756 20.2209Z" fill="url(#paint1_linear_4088_33974)"/>
|
|
5
|
-
<path d="M33.6956 30.8779H31.383V16.2839L33.0327 15.4793C33.2498 15.3715 33.4276 15.1982 33.5411 14.984C33.6545 14.7697 33.698 14.5253 33.6652 14.2851C33.0437 9.32154 30.7922 4.70467 27.2639 1.15865C27.0943 0.985554 26.8747 0.869999 26.6359 0.828243C26.3972 0.786488 26.1514 0.820629 25.9331 0.925873L21.7735 2.95C21.4989 3.08614 21.289 3.32511 21.1896 3.61502C21.0901 3.90494 21.109 4.22239 21.2421 4.49845L22.7602 7.64092L4.40648 16.5977C3.58507 17.0058 2.95822 17.7219 2.6625 18.5901C2.36677 19.4584 2.42614 20.4083 2.82766 21.2329C3.02633 21.6334 3.2974 21.9937 3.6272 22.2956V27.4065C3.62853 27.7134 3.75104 28.0074 3.96807 28.2244C4.1851 28.4415 4.47908 28.564 4.786 28.5653C5.09246 28.564 5.38592 28.4413 5.60214 28.2241C5.81837 28.0069 5.93976 27.713 5.93975 27.4065V23.1913C6.46635 23.192 6.98595 23.0707 7.45785 22.837L13.3734 19.9527L9.73499 30.8779H1.30957V33.1904H33.6956V30.8779ZM6.44073 20.7572C6.16619 20.8917 5.84951 20.9117 5.56023 20.8129C5.41658 20.7649 5.28396 20.6887 5.17014 20.5887C5.05631 20.4888 4.96356 20.3672 4.89733 20.231C4.7596 19.9584 4.73553 19.6424 4.83038 19.3522C4.92523 19.0619 5.13127 18.8211 5.40336 18.6825L23.7672 9.72577L24.7793 11.8055L6.44073 20.7572ZM18.211 23.9351L18.9852 26.2528H13.7124L14.4866 23.9351H18.211ZM15.2558 21.6226L16.2679 18.5307L16.3741 18.4801L17.4267 21.6226H15.2558ZM12.169 30.8779L12.9432 28.5653H19.7595L20.5337 30.8779H12.169ZM29.0705 30.8779H22.9627L18.4843 17.4579L25.8167 13.8803L27.3348 16.9671C27.4293 17.1631 27.5773 17.3284 27.7617 17.444C27.9462 17.5595 28.1596 17.6204 28.3772 17.6198C28.625 17.6139 28.8664 17.5404 29.0755 17.4073L29.0705 30.8779ZM28.9035 14.9176L27.3854 11.8309L25.3612 7.67128L23.8431 4.52882L26.2013 3.38013C28.8626 6.27917 30.6211 9.89114 31.2616 13.774L28.9035 14.9176Z" fill="#1D1D1D"/>
|
|
6
|
-
<defs>
|
|
7
|
-
<linearGradient id="paint0_linear_4088_33974" x1="27.5424" y1="14.9076" x2="27.5424" y2="3.36501" gradientUnits="userSpaceOnUse">
|
|
8
|
-
<stop stop-color="#F37C1C"/>
|
|
9
|
-
<stop offset="1" stop-color="#FCC191"/>
|
|
10
|
-
</linearGradient>
|
|
11
|
-
<linearGradient id="paint1_linear_4088_33974" x1="14.7905" y1="20.8787" x2="14.7905" y2="9.71569" gradientUnits="userSpaceOnUse">
|
|
12
|
-
<stop stop-color="#EFC530"/>
|
|
13
|
-
<stop offset="1" stop-color="#FCEDB6"/>
|
|
14
|
-
</linearGradient>
|
|
15
|
-
</defs>
|
|
1
|
+
<svg width="37" height="36" viewBox="0 0 37 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.5 18C0.5 8.05888 8.55888 0 18.5 0C28.4411 0 36.5 8.05888 36.5 18C36.5 27.9411 28.4411 36 18.5 36C8.55888 36 0.5 27.9411 0.5 18Z" fill="#E7F1FF"/>
|
|
3
|
+
<path d="M27.946 25.605H23.9009L20.0776 17.5318C20.3635 17.1847 20.5674 16.7643 20.6614 16.3102L23.2829 15.3672L25.0712 18.306C25.2346 18.5751 25.5654 18.6912 25.8616 18.5855L27.1088 18.139C27.4059 18.0336 27.5869 17.7325 27.5432 17.4201L26.963 13.3286C26.8883 12.8047 26.7087 12.3019 26.4337 11.85L24.2862 8.31934C24.1228 8.04972 23.792 7.93269 23.4949 8.03892L22.2476 8.48543C21.951 8.5912 21.7696 8.89143 21.8142 9.2038L22.2971 12.6102L19.6811 13.5483C19.1873 13.1436 18.554 12.901 17.8631 12.901C16.4669 12.901 15.3056 13.8944 15.0571 15.2065L10.1437 16.9687C9.3839 17.241 8.98871 18.0782 9.26057 18.8384C9.3866 19.1895 9.64182 19.4789 9.9731 19.6482V25.605H9.05712C8.58901 25.605 8.20056 25.9628 8.20056 26.4309V27.1731C8.20056 27.6417 8.58901 28 9.05712 28H27.946C28.4142 28 28.7995 27.6417 28.7995 27.1731V26.4309C28.7995 25.9628 28.4142 25.605 27.946 25.605ZM17.864 14.6803C18.45 14.6803 18.9249 15.1511 18.9249 15.7318C18.9249 16.3124 18.45 16.7837 17.864 16.7837C17.278 16.7837 16.8031 16.3129 16.8031 15.7322C16.8031 15.1516 17.278 14.6803 17.864 14.6803ZM11.3144 25.605V19.6567L15.3384 18.224L11.8438 25.605H11.3144ZM14.5413 25.605L17.8703 18.5747L17.8744 18.5805L21.2029 25.605H14.5413Z" fill="#3B82F6"/>
|
|
16
4
|
</svg>
|
|
@@ -1,22 +1,4 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path d="
|
|
3
|
-
<path d="
|
|
4
|
-
<path d="M14.6011 13.0029H7.39209V14.7383H14.6011V13.0029Z" fill="white"/>
|
|
5
|
-
<path d="M14.6352 14.7667H7.35791V12.9858H14.6352V14.7667ZM7.42619 14.7041H14.5726V13.0313H7.42619V14.7041Z" fill="black"/>
|
|
6
|
-
<path d="M2.56689 31.9273V16.9971L4.49575 14.8065L7.34068 14.4196L7.8357 14.7496L13.6792 15.0284L14.2482 14.6131L18.5611 15.4495L18.305 16.9971L19.5909 17.5092V32.3825H2.60103L2.56689 31.9273Z" fill="url(#paint0_linear_4088_33972)"/>
|
|
7
|
-
<path d="M19.591 32.411H2.52148V16.9687L4.46172 14.7724L7.30664 14.3798L7.80735 14.7098L13.6281 14.9886L14.1971 14.5733L18.5555 15.4211L18.2938 16.9687L19.5797 17.4808L19.591 32.411ZM2.59545 32.3484H19.5285V17.5377L18.2369 17.0199L18.4929 15.4837L14.2255 14.6529L13.6565 15.0626L7.80167 14.7895L7.30664 14.4595L4.50155 14.8407L2.58407 17.0142L2.59545 32.3484Z" fill="black"/>
|
|
8
|
-
<path d="M23.0962 32.3826V8.56486L25.6111 7.14807H30.3735L32.3706 8.43398V32.6386L23.0962 32.3826Z" fill="url(#paint1_linear_4088_33972)"/>
|
|
9
|
-
<path d="M32.3987 32.6727H32.3646L23.0674 32.4109V8.54199L25.5994 7.11383H30.3902L32.3987 8.41112V32.6727ZM23.13 32.3483L32.3362 32.6044V8.43388L30.3618 7.16504H25.6164L23.13 8.56475V32.3483Z" fill="black"/>
|
|
10
|
-
<path d="M30.3733 6.72696V5.15656C30.3733 5.08883 30.3599 5.02177 30.3338 4.95927C30.3077 4.89676 30.2695 4.84006 30.2213 4.79243C30.1732 4.74481 30.1161 4.7072 30.0533 4.68181C29.9905 4.65641 29.9233 4.64372 29.8556 4.64447H28.3364V2.58475C28.3364 2.38151 28.2963 2.18027 28.2186 1.9925C28.1408 1.80473 28.0268 1.63411 27.8831 1.4904C27.7394 1.34669 27.5688 1.2327 27.381 1.15492C27.1932 1.07715 26.992 1.03711 26.7887 1.03711H19.0676C18.8644 1.03711 18.6631 1.07715 18.4753 1.15492C18.2876 1.2327 18.117 1.34669 17.9733 1.4904C17.8295 1.63411 17.7155 1.80473 17.6378 1.9925C17.56 2.18027 17.52 2.38151 17.52 2.58475V9.7938C17.52 9.92962 17.466 10.0599 17.37 10.1559C17.2739 10.2519 17.1437 10.3059 17.0079 10.3059H11.887C11.6838 10.3059 11.4825 10.3459 11.2948 10.4237C11.107 10.5015 10.9364 10.6155 10.7927 10.7592C10.649 10.9029 10.5349 11.0735 10.4572 11.2613C10.3794 11.449 10.3394 11.6503 10.3394 11.8535V12.3656H7.76756C7.49488 12.3671 7.2338 12.4761 7.04099 12.6689C6.84817 12.8617 6.73918 13.1228 6.73769 13.3955V14.4253H4.16019C3.88751 14.4268 3.62643 14.5358 3.43361 14.7286C3.2408 14.9214 3.13182 15.1825 3.13032 15.4552V16.4851C2.72085 16.4866 2.32866 16.6503 2.03965 16.9404C1.75064 17.2304 1.58838 17.6232 1.58838 18.0327V32.4451C1.58838 32.5809 1.64233 32.7112 1.73836 32.8072C1.8344 32.9032 1.96465 32.9572 2.10046 32.9572H32.4843C32.6201 32.9572 32.7503 32.9032 32.8464 32.8072C32.9424 32.7112 32.9964 32.5809 32.9964 32.4451V9.27033C32.9452 7.86493 31.9551 6.89766 30.3733 6.72696ZM31.9153 9.27602V11.3357H23.6764V9.7938C23.6779 9.24799 23.8954 8.72495 24.2813 8.33901C24.6673 7.95306 25.1903 7.73556 25.7361 7.73406H29.8556C30.4758 7.72837 31.9153 7.86493 31.9153 9.27033V9.27602ZM23.6764 17.5377H25.224V21.6571H23.6764V17.5377ZM26.2539 21.6571V17.5377H29.3435V21.6571H26.2539ZM23.6764 22.687H31.9153V26.8065H23.6764V22.687ZM30.3733 21.6571V17.5377H31.9153V21.6571H30.3733ZM23.6764 16.5078V12.3599H31.9153V16.4794L23.6764 16.5078ZM29.3662 6.72696H26.2766V5.6971H29.3662V6.72696ZM7.74479 13.4182H13.924V14.4481H7.74479V13.4182ZM4.13743 15.478H17.5257V16.5078H4.13743V15.478ZM3.10757 17.5377H18.5555C18.6235 17.5377 18.6908 17.5511 18.7537 17.5771C18.8165 17.6031 18.8736 17.6413 18.9216 17.6893C18.9697 17.7374 19.0079 17.7945 19.0339 17.8573C19.0599 17.9201 19.0733 17.9875 19.0733 18.0555V21.6571H2.57272V18.0555C2.57197 17.9882 2.58447 17.9215 2.60952 17.8591C2.63456 17.7966 2.67165 17.7398 2.71867 17.6917C2.7657 17.6436 2.82174 17.6053 2.88358 17.5788C2.94543 17.5524 3.01187 17.5384 3.07912 17.5377H3.10757ZM19.0733 22.687V26.8065H2.57272V22.6586L19.0733 22.687ZM2.57272 31.9558V27.8363H19.0733V31.9558H2.57272ZM22.6522 31.9558H20.0804V18.027C20.0804 17.8238 20.0404 17.6225 19.9626 17.4347C19.8848 17.247 19.7708 17.0764 19.6271 16.9327C19.4834 16.789 19.3128 16.675 19.125 16.5972C18.9372 16.5194 18.736 16.4794 18.5328 16.4794V15.4495C18.5313 15.1768 18.4223 14.9157 18.2295 14.7229C18.0367 14.5301 17.7756 14.4211 17.5029 14.4196H14.9311V13.3898C14.9296 13.1171 14.8206 12.856 14.6278 12.6632C14.435 12.4704 14.1739 12.3614 13.9012 12.3599H11.3237V11.8478C11.3237 11.7105 11.3783 11.5788 11.4754 11.4817C11.5725 11.3846 11.7042 11.3301 11.8415 11.3301H16.9624C17.3708 11.3286 17.7622 11.1656 18.051 10.8768C18.3399 10.5879 18.5028 10.1966 18.5043 9.78811V2.57905C18.5043 2.44173 18.5589 2.31004 18.656 2.21293C18.7531 2.11583 18.8848 2.06128 19.0221 2.06128H26.7432C26.8805 2.06128 27.0122 2.11583 27.1093 2.21293C27.2064 2.31004 27.261 2.44173 27.261 2.57905V4.63878H25.7133C25.5775 4.63878 25.4473 4.69273 25.3512 4.78877C25.2552 4.8848 25.2013 5.01507 25.2013 5.15088V6.72696C24.4817 6.84905 23.8284 7.22147 23.3568 7.77846C22.8852 8.33545 22.6255 9.0412 22.6238 9.77104L22.6522 31.9558ZM23.6821 31.9558V27.8363H31.921V31.9558H23.6821Z" fill="#1D1D1D"/>
|
|
11
|
-
<path d="M32.4331 33.1848H2.04925C1.95212 33.1848 1.85593 33.1656 1.76618 33.1285C1.67644 33.0913 1.59491 33.0368 1.52622 32.9681C1.45754 32.8994 1.40305 32.8179 1.36587 32.7281C1.3287 32.6384 1.30957 32.5422 1.30957 32.4451V18.027C1.31136 17.5963 1.46914 17.181 1.75369 16.8577C2.03824 16.5344 2.43027 16.3252 2.85721 16.2688V15.4495C2.85721 15.1175 2.98909 14.7991 3.22384 14.5644C3.4586 14.3296 3.77699 14.1977 4.10898 14.1977H6.45889V13.3898C6.46039 13.0573 6.59354 12.7389 6.82919 12.5043C7.06485 12.2697 7.38383 12.138 7.71634 12.138H10.0663V11.8478C10.0663 11.3785 10.2527 10.9284 10.5845 10.5966C10.9164 10.2647 11.3665 10.0783 11.8358 10.0783H16.9567C17.0336 10.0783 17.1074 10.0477 17.1619 9.99329C17.2163 9.93887 17.2468 9.86506 17.2468 9.7881V2.57905C17.2468 2.10973 17.4333 1.65965 17.7651 1.32779C18.097 0.995938 18.5471 0.809509 19.0164 0.809509H26.7375C27.2068 0.809509 27.6569 0.995938 27.9888 1.32779C28.3206 1.65965 28.5071 2.10973 28.5071 2.57905V4.41118H29.8271C30.0233 4.41118 30.2114 4.48911 30.3501 4.62783C30.4889 4.76655 30.5668 4.95469 30.5668 5.15087V6.52213C32.1656 6.77248 33.1443 7.80803 33.1443 9.27032V32.4451C33.1444 32.6364 33.0704 32.8204 32.9378 32.9583C32.8052 33.0962 32.6243 33.1774 32.4331 33.1848ZM3.07911 16.6842C2.72902 16.6842 2.39326 16.8233 2.1457 17.0708C1.89814 17.3184 1.75906 17.6541 1.75906 18.0042V32.4451C1.75906 32.5221 1.78964 32.5959 1.84406 32.6503C1.89848 32.7047 1.97229 32.7353 2.04925 32.7353H32.4331C32.51 32.7353 32.5838 32.7047 32.6383 32.6503C32.6927 32.5959 32.7232 32.5221 32.7232 32.4451V9.27032C32.7232 7.97872 31.8356 7.10818 30.3506 6.94887H30.1457V5.17362C30.1457 5.09666 30.1152 5.02285 30.0608 4.96843C30.0063 4.91401 29.9325 4.88345 29.8556 4.88345H28.086V2.6075C28.086 2.25741 27.9469 1.92164 27.6994 1.67408C27.4518 1.42653 27.1161 1.28745 26.766 1.28745H19.0448C18.6947 1.28745 18.359 1.42653 18.1114 1.67408C17.8639 1.92164 17.7248 2.25741 17.7248 2.6075V9.81654C17.7233 10.0123 17.6449 10.1995 17.5065 10.3379C17.3681 10.4763 17.1808 10.5547 16.9851 10.5562H11.8642C11.5142 10.5562 11.1784 10.6953 10.9308 10.9429C10.6833 11.1904 10.5442 11.5262 10.5442 11.8763V12.616H7.74479C7.53149 12.6159 7.32685 12.7003 7.17549 12.8506C7.02413 13.0009 6.93834 13.2049 6.93683 13.4182V14.6757H4.13743C3.92465 14.6757 3.72059 14.7602 3.57014 14.9106C3.41968 15.0611 3.33516 15.2652 3.33516 15.4779V16.7354L3.07911 16.6842ZM32.1429 32.1321H23.4545V27.5803H32.1429V32.1321ZM23.904 31.6826H31.6934V28.0127H23.904V31.6826ZM22.8741 32.1321H19.8471V18.027C19.8471 17.6769 19.708 17.3411 19.4605 17.0936C19.2129 16.846 18.8772 16.707 18.5271 16.707H18.3052V15.4495C18.3037 15.2362 18.2179 15.0322 18.0665 14.8819C17.9152 14.7316 17.7105 14.6472 17.4972 14.6472H14.6807V13.3898C14.6807 13.2844 14.66 13.1801 14.6197 13.0828C14.5793 12.9854 14.5202 12.897 14.4457 12.8225C14.3712 12.748 14.2828 12.6889 14.1855 12.6486C14.0881 12.6082 13.9838 12.5875 13.8785 12.5875H11.079V11.8478C11.079 11.6516 11.157 11.4635 11.2957 11.3248C11.4344 11.1861 11.6226 11.1081 11.8187 11.1081H16.9396C17.2897 11.1081 17.6255 10.9691 17.873 10.7215C18.1206 10.4739 18.2596 10.1382 18.2596 9.7881V2.57905C18.2596 2.38287 18.3376 2.19474 18.4763 2.05602C18.615 1.91731 18.8031 1.83937 18.9993 1.83937H26.7205C26.9166 1.83937 27.1048 1.91731 27.2435 2.05602C27.3822 2.19474 27.4601 2.38287 27.4601 2.57905V4.85499H25.6906C25.6136 4.85499 25.5398 4.88556 25.4854 4.93998C25.431 4.9944 25.4004 5.06821 25.4004 5.14517V6.9261L25.2126 6.96024C24.5405 7.07052 23.9302 7.4183 23.4928 7.94035C23.0553 8.46241 22.8196 9.1241 22.8286 9.80517L22.8741 32.1321ZM20.2966 31.6826H22.4246V9.7881C22.4216 9.03718 22.6748 8.30769 23.1424 7.72011C23.61 7.13252 24.264 6.72198 24.9964 6.55626V5.15087C24.9964 4.95469 25.0744 4.76655 25.2131 4.62783C25.3518 4.48911 25.5399 4.41118 25.7361 4.41118H27.0562V2.57905C27.0562 2.54094 27.0487 2.50321 27.0341 2.468C27.0195 2.4328 26.9981 2.4008 26.9712 2.37385C26.9442 2.34691 26.9122 2.32554 26.877 2.31096C26.8418 2.29638 26.8041 2.28887 26.766 2.28887H19.0448C18.9679 2.28887 18.8941 2.31943 18.8396 2.37385C18.7852 2.42827 18.7547 2.50208 18.7547 2.57905V9.7881C18.7532 10.2569 18.5662 10.7062 18.2347 11.0377C17.9032 11.3692 17.454 11.5561 16.9851 11.5576H11.8642C11.7873 11.5576 11.7135 11.5882 11.6591 11.6426C11.6046 11.697 11.5741 11.7709 11.5741 11.8478V12.138H13.924C14.2555 12.1395 14.573 12.2719 14.8075 12.5063C15.0419 12.7407 15.1742 13.0582 15.1757 13.3898V14.1977H17.5257C17.8582 14.1977 18.1771 14.3294 18.4128 14.564C18.6485 14.7986 18.7816 15.117 18.7831 15.4495V16.2688C19.2095 16.3254 19.6009 16.5348 19.8845 16.8581C20.1681 17.1815 20.3247 17.5969 20.3251 18.027L20.2966 31.6826ZM19.2667 32.1321H2.33943V27.5803H19.2667V32.1321ZM2.76617 31.6826H18.7945V28.0127H2.78894L2.76617 31.6826ZM32.1201 26.9828H23.4317V22.431H32.1201V26.9828ZM23.8812 26.5333H31.6934V22.8861H23.904L23.8812 26.5333ZM19.244 26.9828H2.31668V22.431H19.244V26.9828ZM2.74342 26.5333H18.7717V22.8861H2.78894L2.74342 26.5333ZM32.0974 21.8335H30.1002V17.2816H32.0974V21.8335ZM30.6123 21.4068H31.7105V17.7368H30.6123V21.4068ZM29.5825 21.8563H26.0434V17.3044H29.5825V21.8563ZM26.4929 21.4068H29.133V17.7368H26.4929V21.4068ZM25.463 21.8563H23.4715V17.3044H25.463V21.8563ZM23.921 21.4068H25.0135V17.7368H23.921V21.4068ZM19.2838 21.8563H2.3565V18.027C2.3565 17.9299 2.37563 17.8337 2.4128 17.7439C2.44998 17.6542 2.50447 17.5727 2.57315 17.504C2.64184 17.4353 2.72338 17.3808 2.81312 17.3436C2.90287 17.3065 2.99905 17.2873 3.09618 17.2873H18.5441C18.7403 17.2873 18.9284 17.3653 19.0672 17.504C19.2059 17.6427 19.2838 17.8308 19.2838 18.027V21.8563ZM2.78324 21.4068H18.8116V18.027C18.8116 17.95 18.781 17.8762 18.7266 17.8218C18.6721 17.7674 18.5983 17.7368 18.5214 17.7368H3.07343C2.99647 17.7368 2.92266 17.7674 2.86824 17.8218C2.81382 17.8762 2.78324 17.95 2.78324 18.027V21.4068ZM32.1372 16.707H23.4488V12.1551H32.1372V16.707ZM23.8983 16.2575H31.6934V12.5875H23.904L23.8983 16.2575ZM17.7191 16.707H3.87V15.2276H17.7077L17.7191 16.707ZM4.33088 16.2575H17.2696V15.6885H4.33088V16.2575ZM14.1117 14.6472H7.48306V13.1679H14.1117V14.6472ZM7.93256 14.1977H13.6622V13.6287H7.93256V14.1977ZM32.1372 11.5576H23.4488V9.7881C23.4488 9.18448 23.6886 8.60558 24.1154 8.17876C24.5422 7.75194 25.1211 7.51216 25.7247 7.51216H29.8442C31.278 7.51216 32.1201 8.17217 32.1201 9.28169L32.1372 11.5576ZM23.8983 11.1081H31.6934V9.27032C31.6934 8.78099 31.4544 7.95027 29.8556 7.95027H25.7361C25.2497 7.95177 24.7837 8.14607 24.4402 8.49057C24.0968 8.83506 23.904 9.30166 23.904 9.7881L23.8983 11.1081ZM29.5881 6.92041H26.0491V5.44104H29.5881V6.92041ZM26.4985 6.4709H29.1386V5.90192H26.4985V6.4709Z" fill="#1D1D1D"/>
|
|
12
|
-
<defs>
|
|
13
|
-
<linearGradient id="paint0_linear_4088_33972" x1="11.0618" y1="32.3825" x2="11.0618" y2="14.4196" gradientUnits="userSpaceOnUse">
|
|
14
|
-
<stop stop-color="#F37C1C"/>
|
|
15
|
-
<stop offset="1" stop-color="#FCC191"/>
|
|
16
|
-
</linearGradient>
|
|
17
|
-
<linearGradient id="paint1_linear_4088_33972" x1="27.7334" y1="32.6386" x2="27.7334" y2="7.14807" gradientUnits="userSpaceOnUse">
|
|
18
|
-
<stop stop-color="#EFC530"/>
|
|
19
|
-
<stop offset="1" stop-color="#FCEDB6"/>
|
|
20
|
-
</linearGradient>
|
|
21
|
-
</defs>
|
|
1
|
+
<svg width="37" height="36" viewBox="0 0 37 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.5 18C0.5 8.05888 8.55888 0 18.5 0C28.4411 0 36.5 8.05888 36.5 18C36.5 27.9411 28.4411 36 18.5 36C8.55888 36 0.5 27.9411 0.5 18Z" fill="#E7F1FF"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.81944 27.6806C9.03241 27.8935 9.2963 28 9.61111 28H27.3889C27.7037 28 27.9676 27.8935 28.1806 27.6806C28.3935 27.4676 28.5 27.2037 28.5 26.8889C28.5 26.5741 28.3935 26.3102 28.1806 26.0972C27.9676 25.8843 27.7037 25.7778 27.3889 25.7778H25.8391V19.1111H27.3889C27.7037 19.1111 27.9676 19.0046 28.1806 18.7917C28.3935 18.5787 28.5 18.3148 28.5 18C28.5 17.6852 28.3935 17.4213 28.1806 17.2083C27.9676 16.9954 27.7037 16.8889 27.3889 16.8889H25.8391V10.2222H27.3889C27.7037 10.2222 27.9676 10.1157 28.1806 9.90278C28.3935 9.68981 28.5 9.42593 28.5 9.11111C28.5 8.7963 28.3935 8.53241 28.1806 8.31944C27.9676 8.10648 27.7037 8 27.3889 8H9.61111C9.2963 8 9.03241 8.10648 8.81944 8.31944C8.60648 8.53241 8.5 8.7963 8.5 9.11111C8.5 9.42593 8.60648 9.68981 8.81944 9.90278C9.03241 10.1157 9.2963 10.2222 9.61111 10.2222H11.4508V16.8889H9.61111C9.2963 16.8889 9.03241 16.9954 8.81944 17.2083C8.60648 17.4213 8.5 17.6852 8.5 18C8.5 18.3148 8.60648 18.5787 8.81944 18.7917C9.03241 19.0046 9.2963 19.1111 9.61111 19.1111H11.4508V25.7778H9.61111C9.2963 25.7778 9.03241 25.8843 8.81944 26.0972C8.60648 26.3102 8.5 26.5741 8.5 26.8889C8.5 27.2037 8.60648 27.4676 8.81944 27.6806ZM16.5962 21.065C16.0913 20.5601 15.8077 19.8753 15.8077 19.1613C15.8077 18.2998 17.0865 16.0989 18.4999 14.147C19.9133 16.0854 21.1921 18.2863 21.1921 19.1613C21.1921 19.8753 20.9085 20.5601 20.4036 21.065C19.8987 21.5699 19.2139 21.8535 18.4999 21.8535C17.7859 21.8535 17.1011 21.5699 16.5962 21.065Z" fill="#3B82F6"/>
|
|
22
4
|
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="37" height="36" viewBox="0 0 37 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.5 18C0.5 8.05888 8.55888 0 18.5 0C28.4411 0 36.5 8.05888 36.5 18C36.5 27.9411 28.4411 36 18.5 36C8.55888 36 0.5 27.9411 0.5 18Z" fill="#E7F1FF"/>
|
|
3
|
+
<g clip-path="url(#clip0_6415_4768)">
|
|
4
|
+
<path d="M8.5 17.1667V13C8.5 10.2433 10.7433 8 13.5 8C16.2567 8 18.5 10.2433 18.5 13V17.1667H8.5ZM18.715 25.7733C18.0592 24.8775 17.6667 23.7767 17.6667 22.5833C17.6667 19.5967 20.0967 17.1667 23.0833 17.1667C24.2767 17.1667 25.3767 17.5592 26.2733 18.215L18.7158 25.7725L18.715 25.7733ZM19.8933 26.9517C20.7892 27.6075 21.89 28 23.0833 28C26.07 28 28.5 25.57 28.5 22.5833C28.5 21.39 28.1075 20.29 27.4517 19.3933L19.8942 26.9508L19.8933 26.9517ZM16 22.5833C16 21.2042 16.4 19.9217 17.0817 18.8333H8.5V23C8.5 25.7567 10.7433 28 13.5 28C14.9325 28 16.2233 27.3908 17.1358 26.4217C16.42 25.315 16 23.9992 16 22.5833Z" fill="#3B82F6"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_6415_4768">
|
|
8
|
+
<rect width="20" height="20" fill="white" transform="translate(8.5 8)"/>
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="37" height="36" viewBox="0 0 37 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.5 18C0.5 8.05888 8.55888 0 18.5 0C28.4411 0 36.5 8.05888 36.5 18C36.5 27.9411 28.4411 36 18.5 36C8.55888 36 0.5 27.9411 0.5 18Z" fill="#E7F1FF"/>
|
|
3
|
+
<g clip-path="url(#clip0_6415_4758)">
|
|
4
|
+
<path d="M25.1667 14.68C25.2933 12.5192 22.5608 12.0442 21 11.3333V9.66667C21.221 9.66667 21.433 9.57887 21.5893 9.42259C21.7455 9.26631 21.8333 9.05435 21.8333 8.83333C21.8333 8.61232 21.7455 8.40036 21.5893 8.24408C21.433 8.0878 21.221 8 21 8H16C15.779 8 15.567 8.0878 15.4107 8.24408C15.2545 8.40036 15.1667 8.61232 15.1667 8.83333C15.1667 9.05435 15.2545 9.26631 15.4107 9.42259C15.567 9.57887 15.779 9.66667 16 9.66667V11.3333L13.9283 12.1667C13.4963 12.2616 13.0944 12.462 12.7585 12.7499C12.4226 13.0378 12.1631 13.4043 12.0032 13.8167C11.8432 14.2292 11.7878 14.6748 11.8417 15.1139C11.8957 15.553 12.0574 15.9719 12.3125 16.3333H21C21.221 16.3333 21.433 16.4211 21.5893 16.5774C21.7455 16.7337 21.8333 16.9457 21.8333 17.1667C21.8333 17.3877 21.7455 17.5996 21.5893 17.7559C21.433 17.9122 21.221 18 21 18H12.3117C12.0043 18.5016 11.8416 19.0784 11.8416 19.6667C11.8416 20.2549 12.0043 20.8317 12.3117 21.3333H21C21.221 21.3333 21.433 21.4211 21.5893 21.5774C21.7455 21.7337 21.8333 21.9457 21.8333 22.1667C21.8333 22.3877 21.7455 22.5996 21.5893 22.7559C21.433 22.9122 21.221 23 21 23H12.3117C12.018 23.504 11.8621 24.0764 11.8596 24.6597C11.857 25.2431 12.008 25.8168 12.2972 26.3234C12.5864 26.8299 13.0038 27.2515 13.5075 27.5458C14.0111 27.8401 14.5833 27.9967 15.1667 28H21.8333C22.5072 27.9927 23.1631 27.7816 23.7147 27.3946C24.2664 27.0075 24.688 26.4625 24.924 25.8313C25.1601 25.2001 25.1996 24.5122 25.0374 23.8581C24.8751 23.204 24.5187 22.6144 24.015 22.1667C24.3705 21.8544 24.6554 21.4698 24.8505 21.0387C25.0456 20.6076 25.1465 20.1399 25.1465 19.6667C25.1465 19.1935 25.0456 18.7257 24.8505 18.2946C24.6554 17.8635 24.3705 17.479 24.015 17.1667C24.3719 16.8572 24.6592 16.4756 24.8577 16.0469C25.0562 15.6183 25.1615 15.1524 25.1667 14.68Z" fill="#3B82F6"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_6415_4758">
|
|
8
|
+
<rect width="20" height="20" fill="white" transform="translate(8.5 8)"/>
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="37" height="36" viewBox="0 0 37 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.5 18C0.5 8.05888 8.55888 0 18.5 0C28.4411 0 36.5 8.05888 36.5 18C36.5 27.9411 28.4411 36 18.5 36C8.55888 36 0.5 27.9411 0.5 18Z" fill="#E7F1FF"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.2289 13.7514C26.6822 17.6236 27.123 21.389 27.5239 24.726H27.5042C27.5575 25.137 27.5208 25.5547 27.3964 25.95C27.2721 26.3454 27.0632 26.7089 26.7842 27.0154C26.5122 27.3285 26.1753 27.5787 25.797 27.7487C25.4187 27.9186 25.008 28.0043 24.5932 27.9997H12.4066C11.9918 28.0049 11.5809 27.9195 11.2025 27.7495C10.8241 27.5794 10.4873 27.3289 10.2157 27.0154C9.93684 26.7088 9.72801 26.3453 9.60368 25.9499C9.47935 25.5546 9.44251 25.137 9.49569 24.726L9.85712 21.6542C10.3449 17.5088 10.8428 13.2772 11.3407 9.035C11.3744 8.74986 11.5116 8.487 11.7262 8.29624C11.9408 8.10548 12.2179 8.00008 12.5051 8H14.7551C15.0659 8.00074 15.3638 8.12454 15.5836 8.34433C15.8033 8.56411 15.9271 8.86199 15.9279 9.17281V12.2666C15.9279 12.4217 15.9895 12.5705 16.0992 12.6802C16.2089 12.7899 16.3577 12.8516 16.5129 12.8516H20.5038C20.5809 12.8519 20.6573 12.8371 20.7286 12.8079C20.7999 12.7786 20.8647 12.7356 20.9193 12.6812C20.9739 12.6269 21.0173 12.5623 21.0469 12.4911C21.0764 12.4199 21.0917 12.3436 21.0917 12.2666V9.17281C21.0917 8.86225 21.2148 8.56436 21.4342 8.3445C21.6535 8.12463 21.9511 8.00074 22.2616 8H24.5117C24.7988 8.00008 25.0759 8.10548 25.2905 8.29624C25.5051 8.487 25.6423 8.74986 25.676 9.035C25.8611 10.6104 26.046 12.1896 26.2289 13.7514ZM18.7327 16.8823C18.2171 16.8823 17.7358 17.1479 17.4624 17.587L17.1889 18.0245C17.0405 18.262 17.1171 18.5745 17.3561 18.7182C17.5905 18.8589 17.8936 18.7854 18.0374 18.5542L18.3108 18.1167C18.4014 17.9714 18.5608 17.8823 18.7327 17.8823C18.9046 17.8823 19.0639 17.9714 19.1546 18.1167L19.7405 19.0526L19.2968 19.3089C19.1655 19.3839 19.0921 19.5323 19.1124 19.6823C19.1327 19.8323 19.2405 19.9557 19.3874 19.9948L20.753 20.3604C20.953 20.4136 21.1593 20.2948 21.2124 20.0948L21.578 18.7292C21.6171 18.5823 21.5639 18.4261 21.4436 18.3339C21.3233 18.2417 21.1593 18.2307 21.028 18.3073L20.6061 18.5511L20.003 17.587C19.7296 17.1479 19.2483 16.8823 18.7327 16.8823ZM22.1249 20.9823C21.9811 20.7511 21.678 20.6776 21.4436 20.8182C21.203 20.962 21.128 21.2745 21.2764 21.512L21.6577 22.1229C21.7061 22.2011 21.7327 22.2917 21.7327 22.3839C21.7343 22.6589 21.5108 22.8839 21.2358 22.8839H19.7327V22.3839C19.7327 22.2323 19.6421 22.0948 19.5014 22.037C19.3608 21.9792 19.1999 22.0104 19.0921 22.1182L18.0921 23.1182C17.9452 23.2636 17.9452 23.5011 18.0921 23.6479L19.0921 24.6479C19.1999 24.7557 19.3608 24.787 19.5014 24.7292C19.6421 24.6714 19.7327 24.5339 19.7327 24.3823V23.8823L21.2374 23.8839C22.0671 23.8839 22.7389 23.2073 22.7343 22.3776C22.7311 22.0995 22.653 21.8292 22.5061 21.5932L22.1249 20.9823ZM15.2952 20.0729L15.7468 20.3339L14.9608 21.5917C14.8124 21.8276 14.7343 22.0979 14.7327 22.3761C14.728 23.2073 15.3999 23.8823 16.2296 23.8823H16.7327C17.0093 23.8823 17.2327 23.6589 17.2327 23.3823C17.2327 23.1057 17.0093 22.8823 16.7327 22.8823H16.2296C15.9546 22.8823 15.7311 22.6573 15.7327 22.3823C15.7327 22.2901 15.7593 22.1995 15.8077 22.1214L16.6124 20.8339L17.0264 21.0729C17.1577 21.1495 17.3218 21.1401 17.4421 21.0464C17.5624 20.9526 17.6155 20.7979 17.5764 20.6511L17.2108 19.287C17.1577 19.087 16.9514 18.9682 16.7514 19.0214L15.3858 19.387C15.2389 19.4261 15.1311 19.5495 15.1108 19.6995C15.0905 19.8495 15.1639 19.9964 15.2952 20.0729Z" fill="#3B82F6"/>
|
|
4
|
+
</svg>
|
|
@@ -1,17 +1,5 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path d="
|
|
3
|
-
<path d="
|
|
4
|
-
<path d="
|
|
5
|
-
<path d="M31.4962 9.41229H29.6358C29.6358 9.27354 29.6358 9.79258 29.6358 3.00393C29.6345 2.42678 29.4064 1.87327 29.0008 1.46276C28.5951 1.05226 28.0443 0.81766 27.4672 0.80957H7.56889C6.98733 0.810928 6.42998 1.04255 6.01875 1.45378C5.60752 1.86501 5.37589 2.42237 5.37454 3.00393C5.37454 9.77716 5.37454 9.26326 5.37454 9.41229H3.51421C2.93176 9.41092 2.37253 9.64064 1.95922 10.0511C1.54592 10.4615 1.31229 11.0191 1.30957 11.6015V23.4212C1.30957 24.0037 1.54059 24.5624 1.95196 24.9747C2.36334 25.3871 2.92147 25.6194 3.50393 25.6207H8.89989V31.0167C8.89989 31.5987 9.13109 32.1568 9.54262 32.5684C9.95414 32.9799 10.5123 33.2111 11.0943 33.2111H23.9007C24.4827 33.2111 25.0408 32.9799 25.4523 32.5684C25.8639 32.1568 26.095 31.5987 26.095 31.0167V25.6207H31.491C31.7796 25.6207 32.0654 25.5638 32.332 25.4532C32.5985 25.3426 32.8407 25.1805 33.0445 24.9762C33.2483 24.7719 33.4098 24.5294 33.5198 24.2626C33.6298 23.9957 33.6861 23.7098 33.6854 23.4212V11.6015C33.6854 11.0204 33.4549 10.463 33.0445 10.0517C32.6341 9.6403 32.0772 9.40851 31.4962 9.40714V9.41229ZM7.37875 9.2427V3.00393C7.38009 2.95849 7.39909 2.91536 7.43171 2.88369C7.46433 2.85203 7.50801 2.83432 7.55347 2.83434H27.4672C27.5126 2.83432 27.5563 2.85203 27.5889 2.88369C27.6216 2.91536 27.6406 2.95849 27.6419 3.00393V9.23242C27.6419 9.27876 27.6235 9.3232 27.5907 9.35597C27.558 9.38874 27.5135 9.40714 27.4672 9.40714H7.57916C7.55672 9.40855 7.53423 9.40534 7.51307 9.3977C7.49192 9.39007 7.47255 9.37818 7.45618 9.36277C7.4398 9.34736 7.42676 9.32875 7.41786 9.3081C7.40896 9.28745 7.40439 9.26519 7.40444 9.2427H7.37875ZM24.0806 30.9962C24.0806 31.0189 24.076 31.0413 24.0672 31.0623C24.0583 31.0832 24.0454 31.1021 24.0291 31.1179C24.0128 31.1338 23.9935 31.1461 23.9723 31.1543C23.9511 31.1626 23.9285 31.1664 23.9058 31.1658H11.0943C11.0718 31.1665 11.0494 31.1626 11.0285 31.1543C11.0076 31.146 10.9886 31.1336 10.9728 31.1177C10.9569 31.1018 10.9444 31.0828 10.9361 31.0619C10.9278 31.041 10.924 31.0186 10.9247 30.9962V20.7181C10.9247 20.6732 10.9425 20.63 10.9743 20.5982C11.0061 20.5664 11.0493 20.5485 11.0943 20.5485H23.9007C23.9457 20.5485 23.9888 20.5664 24.0206 20.5982C24.0524 20.63 24.0703 20.6732 24.0703 20.7181V30.9962H24.0806ZM31.6658 23.4212C31.6664 23.4439 31.6626 23.4666 31.6543 23.4877C31.6461 23.5089 31.6338 23.5282 31.6179 23.5445C31.6021 23.5608 31.5832 23.5738 31.5623 23.5826C31.5413 23.5914 31.5189 23.596 31.4962 23.596H26.1002V20.7284C26.1002 20.1464 25.869 19.5883 25.4575 19.1768C25.046 18.7652 24.4878 18.534 23.9058 18.534H11.0943C10.5123 18.534 9.95414 18.7652 9.54262 19.1768C9.13109 19.5883 8.89989 20.1464 8.89989 20.7284V23.596H3.50393C3.47972 23.5981 3.45533 23.5952 3.43232 23.5874C3.40931 23.5796 3.38819 23.567 3.37029 23.5506C3.3524 23.5341 3.33813 23.5141 3.3284 23.4919C3.31867 23.4696 3.31369 23.4456 3.31378 23.4212V11.6015C3.31378 11.5792 3.31817 11.5572 3.32669 11.5366C3.33521 11.516 3.3477 11.4973 3.36345 11.4816C3.3792 11.4658 3.39789 11.4533 3.41847 11.4448C3.43904 11.4363 3.46109 11.4319 3.48337 11.4319H31.4705C31.4927 11.4319 31.5148 11.4363 31.5354 11.4448C31.5559 11.4533 31.5746 11.4658 31.5904 11.4816C31.6061 11.4973 31.6186 11.516 31.6271 11.5366C31.6357 11.5572 31.6401 11.5792 31.6401 11.6015V23.4212H31.6658Z" fill="#1D1D1D"/>
|
|
6
|
-
<path d="M28.6341 14.9778H27.0923C26.8198 14.9778 26.5583 14.8696 26.3656 14.6768C26.1728 14.4841 26.0645 14.2226 26.0645 13.95C26.0645 13.6775 26.1728 13.416 26.3656 13.2233C26.5583 13.0305 26.8198 12.9222 27.0923 12.9222H28.6341C28.9066 12.9222 29.1681 13.0305 29.3608 13.2233C29.5536 13.416 29.6619 13.6775 29.6619 13.95C29.6619 14.2226 29.5536 14.4841 29.3608 14.6768C29.1681 14.8696 28.9066 14.9778 28.6341 14.9778ZM20.535 24.5878H14.4658C14.1932 24.5878 13.9318 24.4795 13.739 24.2868C13.5463 24.094 13.438 23.8326 13.438 23.56C13.438 23.2874 13.5463 23.026 13.739 22.8332C13.9318 22.6405 14.1932 22.5322 14.4658 22.5322H20.535C20.8076 22.5322 21.069 22.6405 21.2617 22.8332C21.4545 23.026 21.5628 23.2874 21.5628 23.56C21.5628 23.8326 21.4545 24.094 21.2617 24.2868C21.069 24.4795 20.8076 24.5878 20.535 24.5878ZM20.535 29.1461H14.4658C14.1932 29.1461 13.9318 29.0378 13.739 28.8451C13.5463 28.6523 13.438 28.3909 13.438 28.1183C13.438 27.8457 13.5463 27.5843 13.739 27.3915C13.9318 27.1988 14.1932 27.0905 14.4658 27.0905H20.535C20.8076 27.0905 21.069 27.1988 21.2617 27.3915C21.4545 27.5843 21.5628 27.8457 21.5628 28.1183C21.5628 28.3909 21.4545 28.6523 21.2617 28.8451C21.069 29.0378 20.8076 29.1461 20.535 29.1461Z" fill="#1D1D1D"/>
|
|
7
|
-
<defs>
|
|
8
|
-
<linearGradient id="paint0_linear_4088_33985" x1="17.4976" y1="31.1605" x2="17.4976" y2="20.5433" gradientUnits="userSpaceOnUse">
|
|
9
|
-
<stop stop-color="#EFC530"/>
|
|
10
|
-
<stop offset="1" stop-color="#FCEDB6"/>
|
|
11
|
-
</linearGradient>
|
|
12
|
-
<linearGradient id="paint1_linear_4088_33985" x1="17.5023" y1="23.5805" x2="17.5023" y2="11.4422" gradientUnits="userSpaceOnUse">
|
|
13
|
-
<stop stop-color="#F37C1C"/>
|
|
14
|
-
<stop offset="1" stop-color="#FCC191"/>
|
|
15
|
-
</linearGradient>
|
|
16
|
-
</defs>
|
|
1
|
+
<svg width="37" height="36" viewBox="0 0 37 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.5 18C0.5 8.05888 8.55888 0 18.5 0C28.4411 0 36.5 8.05888 36.5 18C36.5 27.9411 28.4411 36 18.5 36C8.55888 36 0.5 27.9411 0.5 18Z" fill="#E7F1FF"/>
|
|
3
|
+
<path d="M14.1 27.9781C13.495 27.9781 12.9771 27.7627 12.5463 27.3319C12.1154 26.901 11.9 26.3831 11.9 25.7781V23.5781H9.7C9.095 23.5781 8.57708 23.3627 8.14625 22.9319C7.71542 22.501 7.5 21.9831 7.5 21.3781V16.9781C7.5 16.0431 7.82083 15.2594 8.4625 14.6269C9.10417 13.9944 9.88333 13.6781 10.8 13.6781H26.2C27.135 13.6781 27.9188 13.9944 28.5513 14.6269C29.1838 15.2594 29.5 16.0431 29.5 16.9781V21.3781C29.5 21.9831 29.2846 22.501 28.8538 22.9319C28.4229 23.3627 27.905 23.5781 27.3 23.5781H25.1V25.7781C25.1 26.3831 24.8846 26.901 24.4538 27.3319C24.0229 27.7627 23.505 27.9781 22.9 27.9781H14.1ZM25.1 18.6281C25.4117 18.6281 25.6729 18.5227 25.8838 18.3119C26.0946 18.101 26.2 17.8398 26.2 17.5281C26.2 17.2164 26.0946 16.9552 25.8838 16.7444C25.6729 16.5335 25.4117 16.4281 25.1 16.4281C24.7883 16.4281 24.5271 16.5335 24.3162 16.7444C24.1054 16.9552 24 17.2164 24 17.5281C24 17.8398 24.1054 18.101 24.3162 18.3119C24.5271 18.5227 24.7883 18.6281 25.1 18.6281ZM14.1 25.7781H22.9V21.3781H14.1V25.7781Z" fill="#3B82F6"/>
|
|
4
|
+
<path d="M11.9004 12.2112H25.1004V10.2219C25.1004 9.61685 24.885 9.09893 24.4541 8.6681C24.0233 8.23727 23.5054 8.02185 22.9004 8.02185H14.1004C13.4954 8.02185 12.9775 8.23727 12.5466 8.6681C12.1158 9.09893 11.9004 9.61685 11.9004 10.2219V12.2112Z" fill="#3B82F6"/>
|
|
17
5
|
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="37" height="36" viewBox="0 0 37 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.5 18C0.5 8.05888 8.55888 0 18.5 0C28.4411 0 36.5 8.05888 36.5 18C36.5 27.9411 28.4411 36 18.5 36C8.55888 36 0.5 27.9411 0.5 18Z" fill="#E7F1FF"/>
|
|
3
|
+
<path d="M23.3007 8C21.5936 9.9375 21.1142 12.9414 21.1142 15.5C21.1142 21.7031 20.1226 25.1484 19.5633 26.5898C19.2001 27.5273 18.3575 28 17.5511 28H8.91049C8.4928 28 8.10417 27.7578 7.90078 27.3672C7.69738 26.9766 7.69738 26.4961 7.91531 26.1094C8.27125 25.418 8.47464 24.6172 8.65988 23.8555C9.06667 22.1719 9.49162 19.4648 9.49162 15.5C9.49162 11.3594 11.0534 8 12.9784 8H23.3007ZM25.7632 23C23.8382 23 22.2765 19.6406 22.2765 15.5C22.2765 11.3594 23.8382 8 25.7632 8C27.6882 8 29.25 11.3594 29.25 15.5C29.25 19.6406 27.6882 23 25.7632 23ZM25.7632 18C26.4061 18 26.9255 16.8789 26.9255 15.5C26.9255 14.1211 26.4061 13 25.7632 13C25.1204 13 24.601 14.1211 24.601 15.5C24.601 16.8789 25.1204 18 25.7632 18ZM12.3973 16.125C12.3973 15.9592 12.336 15.8003 12.2271 15.6831C12.1181 15.5658 11.9703 15.5 11.8161 15.5C11.662 15.5 11.5142 15.5658 11.4052 15.6831C11.2962 15.8003 11.235 15.9592 11.235 16.125C11.235 16.2908 11.2962 16.4497 11.4052 16.5669C11.5142 16.6842 11.662 16.75 11.8161 16.75C11.9703 16.75 12.1181 16.6842 12.2271 16.5669C12.336 16.4497 12.3973 16.2908 12.3973 16.125ZM14.7218 16.125C14.7218 15.9592 14.6606 15.8003 14.5516 15.6831C14.4426 15.5658 14.2948 15.5 14.1406 15.5C13.9865 15.5 13.8387 15.5658 13.7297 15.6831C13.6207 15.8003 13.5595 15.9592 13.5595 16.125C13.5595 16.2908 13.6207 16.4497 13.7297 16.5669C13.8387 16.6842 13.9865 16.75 14.1406 16.75C14.2948 16.75 14.4426 16.6842 14.5516 16.5669C14.6606 16.4497 14.7218 16.2908 14.7218 16.125ZM16.4652 16.75C16.6193 16.75 16.7671 16.6842 16.8761 16.5669C16.9851 16.4497 17.0463 16.2908 17.0463 16.125C17.0463 15.9592 16.9851 15.8003 16.8761 15.6831C16.7671 15.5658 16.6193 15.5 16.4652 15.5C16.311 15.5 16.1632 15.5658 16.0542 15.6831C15.9453 15.8003 15.884 15.9592 15.884 16.125C15.884 16.2908 15.9453 16.4497 16.0542 16.5669C16.1632 16.6842 16.311 16.75 16.4652 16.75ZM19.3708 16.125C19.3708 15.9592 19.3096 15.8003 19.2006 15.6831C19.0916 15.5658 18.9438 15.5 18.7897 15.5C18.6356 15.5 18.4877 15.5658 18.3788 15.6831C18.2698 15.8003 18.2086 15.9592 18.2086 16.125C18.2086 16.2908 18.2698 16.4497 18.3788 16.5669C18.4877 16.6842 18.6356 16.75 18.7897 16.75C18.9438 16.75 19.0916 16.6842 19.2006 16.5669C19.3096 16.4497 19.3708 16.2908 19.3708 16.125Z" fill="#3B82F6"/>
|
|
4
|
+
<path d="M12.3973 16.125C12.3973 15.9592 12.336 15.8003 12.2271 15.6831C12.1181 15.5658 11.9703 15.5 11.8161 15.5C11.662 15.5 11.5142 15.5658 11.4052 15.6831C11.2962 15.8003 11.235 15.9592 11.235 16.125C11.235 16.2908 11.2962 16.4497 11.4052 16.5669C11.5142 16.6842 11.662 16.75 11.8161 16.75C11.9703 16.75 12.1181 16.6842 12.2271 16.5669C12.336 16.4497 12.3973 16.2908 12.3973 16.125Z" fill="#3B82F6"/>
|
|
5
|
+
<path d="M14.7218 16.125C14.7218 15.9592 14.6606 15.8003 14.5516 15.6831C14.4426 15.5658 14.2948 15.5 14.1406 15.5C13.9865 15.5 13.8387 15.5658 13.7297 15.6831C13.6207 15.8003 13.5595 15.9592 13.5595 16.125C13.5595 16.2908 13.6207 16.4497 13.7297 16.5669C13.8387 16.6842 13.9865 16.75 14.1406 16.75C14.2948 16.75 14.4426 16.6842 14.5516 16.5669C14.6606 16.4497 14.7218 16.2908 14.7218 16.125Z" fill="#3B82F6"/>
|
|
6
|
+
<path d="M16.4652 16.75C16.6193 16.75 16.7671 16.6842 16.8761 16.5669C16.9851 16.4497 17.0463 16.2908 17.0463 16.125C17.0463 15.9592 16.9851 15.8003 16.8761 15.6831C16.7671 15.5658 16.6193 15.5 16.4652 15.5C16.311 15.5 16.1632 15.5658 16.0542 15.6831C15.9453 15.8003 15.884 15.9592 15.884 16.125C15.884 16.2908 15.9453 16.4497 16.0542 16.5669C16.1632 16.6842 16.311 16.75 16.4652 16.75Z" fill="#3B82F6"/>
|
|
7
|
+
<path d="M19.3708 16.125C19.3708 15.9592 19.3096 15.8003 19.2006 15.6831C19.0916 15.5658 18.9438 15.5 18.7897 15.5C18.6356 15.5 18.4877 15.5658 18.3788 15.6831C18.2698 15.8003 18.2086 15.9592 18.2086 16.125C18.2086 16.2908 18.2698 16.4497 18.3788 16.5669C18.4877 16.6842 18.6356 16.75 18.7897 16.75C18.9438 16.75 19.0916 16.6842 19.2006 16.5669C19.3096 16.4497 19.3708 16.2908 19.3708 16.125Z" fill="#3B82F6"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="37" height="36" viewBox="0 0 37 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.5 18C0.5 8.05888 8.55888 0 18.5 0C28.4411 0 36.5 8.05888 36.5 18C36.5 27.9411 28.4411 36 18.5 36C8.55888 36 0.5 27.9411 0.5 18Z" fill="#E7F1FF"/>
|
|
3
|
+
<path d="M16.4495 18.1882L17.1963 23.6642L17.821 28.0011H8.28273C7.91787 28.0011 7.62256 27.6749 7.62256 27.2719C7.62256 26.8689 7.91787 26.5427 8.28273 26.5427H9.83016L10.9701 18.1882V16.948C10.9701 16.545 11.2654 16.2188 11.6302 16.2188L15.7897 16.2189C16.1545 16.2189 16.4499 16.5451 16.4499 16.9481L16.4495 18.1882Z" fill="#3B82F6"/>
|
|
4
|
+
<path d="M16.2681 12.9924C16.2681 13.444 16.1714 13.8704 15.9985 14.2476C15.8921 14.2346 15.7827 14.2275 15.6694 14.2275H11.6694L11.5513 14.23L11.4927 14.233C11.4009 14.0282 11.3306 13.8091 11.2856 13.5795C11.2495 13.3904 11.23 13.1942 11.23 12.9929C11.23 11.7352 11.9858 10.6735 13.022 10.3288L13.0171 10.2756L13.0142 10.2565L13.0112 10.2097C13.0112 8.98846 13.9067 7.99866 15.0132 7.99866C15.4839 7.99866 15.9106 8.18585 16.2524 8.48627C16.5073 8.22327 16.8472 8.05896 17.2222 8.05896C18.0083 8.05896 18.646 8.76288 18.646 9.63165C18.646 10.4999 18.0093 11.2043 17.2222 11.2043C17.0835 11.2043 16.9526 11.1757 16.8247 11.1343C16.6685 11.5072 16.4253 11.8256 16.1177 12.0512C16.2134 12.3458 16.2681 12.6618 16.2681 12.9924Z" fill="#3B82F6"/>
|
|
5
|
+
<path d="M19.2056 23.3855L18.4624 17.9372L18.2583 16.1697L18.5151 14.288V12.4888C18.5151 12.0858 18.8101 11.7595 19.1753 11.7595H25.1284C25.4927 11.7595 25.7886 12.0858 25.7886 12.4888V14.288L27.4604 26.54H28.647C29.0503 26.54 29.3774 26.8671 29.3774 27.2706C29.3774 27.6741 29.0503 28.0012 28.647 28.0012H19.8726L19.6597 26.54L19.2056 23.3855Z" fill="#3B82F6"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="37" height="36" viewBox="0 0 37 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.5 18C0.5 8.05888 8.55888 0 18.5 0C28.4411 0 36.5 8.05888 36.5 18C36.5 27.9411 28.4411 36 18.5 36C8.55888 36 0.5 27.9411 0.5 18Z" fill="#E7F1FF"/>
|
|
3
|
+
<g clip-path="url(#clip0_6415_4775)">
|
|
4
|
+
<path d="M28.4683 14.4375L27.4917 11.0217C26.9833 9.2425 25.335 8 23.485 8H22.6667V11.3333C22.6617 12.4233 21.0042 12.4225 21 11.3333V8H16V11.3333C15.995 12.4233 14.3383 12.4225 14.3333 11.3333V8H13.5142C11.6642 8 10.0167 9.2425 9.5075 11.0217L8.5325 14.4375C8.39833 15.3258 8.79416 16.2192 9.33333 16.8483V24.6667C9.33333 26.505 10.8283 28 12.6667 28H17.6667C19.505 28 21 26.505 21 24.6667V17.5367C21.315 17.3525 21.595 17.1217 21.8333 16.8483C22.445 17.5483 23.3325 18 24.3333 18H25.1667C25.4558 18 25.7317 17.9517 26 17.8817V27.1667C26.005 28.2567 27.6625 28.2558 27.6667 27.1667V16.8483C28.2067 16.22 28.6017 15.3267 28.4683 14.4375ZM19.3333 22.1667H11V17.8817C11.2683 17.9517 11.5442 18 11.8333 18H12.6667C13.6667 18 14.555 17.5483 15.1667 16.8483C15.7783 17.5483 16.6667 18 17.6667 18H19.3333V22.1667Z" fill="#3B82F6"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_6415_4775">
|
|
8
|
+
<rect width="20" height="20" fill="white" transform="translate(8.5 8)"/>
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="37" height="36" viewBox="0 0 37 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.5 18C0.5 8.05888 8.55888 0 18.5 0C28.4411 0 36.5 8.05888 36.5 18C36.5 27.9411 28.4411 36 18.5 36C8.55888 36 0.5 27.9411 0.5 18Z" fill="#E7F1FF"/>
|
|
3
|
+
<path d="M8.5618 26.87C8.5618 26.4733 8.88342 26.1516 9.28016 26.1516H28.0891C28.4858 26.1516 28.8074 26.4733 28.8074 26.87C28.8074 27.2668 28.4858 27.5884 28.0891 27.5884H9.28016C8.88342 27.5884 8.5618 27.2668 8.5618 26.87Z" fill="#3B82F6"/>
|
|
4
|
+
<path d="M12.0849 20.8003C11.6881 20.8003 11.3665 20.4787 11.3665 20.082V18.3042H12.8033V20.082C12.8033 20.4787 12.4816 20.8003 12.0849 20.8003Z" fill="#3B82F6"/>
|
|
5
|
+
<path d="M13.266 8.41537H14.8293V11.5448H13.266V8.41537Z" fill="#3B82F6"/>
|
|
6
|
+
<path d="M26.332 12.1762C26.332 12.7054 25.903 13.1343 25.3739 13.1343C24.8447 13.1343 24.4157 12.7054 24.4157 12.1762C24.4157 11.647 24.8447 11.2181 25.3739 11.2181C25.903 11.2181 26.332 11.647 26.332 12.1762Z" fill="#3B82F6"/>
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.25 8.41162L11.995 8.41163V12.2218C11.995 12.5399 12.2529 12.7978 12.571 12.7978H15.5241C15.8422 12.7978 16.1001 12.5399 16.1001 12.2218V8.41166L27.5157 8.41176C28.576 8.41177 29.4357 9.27139 29.4357 10.3318V23.6686C29.4357 24.1988 29.0058 24.6286 28.4756 24.6286L24.3285 24.6285C24.3105 24.6298 24.2923 24.6305 24.2739 24.6305H8.29888C7.8932 24.6305 7.56434 24.3017 7.56434 23.896C7.56434 23.4903 7.8932 23.1614 8.29888 23.1614H22.425L22.5128 23.1616C22.9906 23.1631 23.5204 23.1647 23.8041 22.7897C23.9258 22.6288 23.998 22.4284 23.998 22.2111V16.5633C23.998 15.5029 23.1383 14.6433 22.0779 14.6433H16.7075C15.6976 14.6433 14.8788 15.462 14.8788 16.4719C14.8788 16.9769 14.4695 17.3863 13.9645 17.3863H11.1624C10.6853 17.3863 10.2806 17.0359 10.2123 16.5638L9.34981 10.6067C9.18219 9.44893 10.0801 8.41161 11.25 8.41162ZM25.3739 14.3693C26.5851 14.3693 27.567 13.3873 27.567 12.1761C27.567 10.9648 26.5851 9.98289 25.3739 9.98289C24.1626 9.98289 23.1807 10.9648 23.1807 12.1761C23.1807 13.3873 24.1626 14.3693 25.3739 14.3693Z" fill="#3B82F6"/>
|
|
8
|
+
</svg>
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path d="
|
|
3
|
-
<path d="
|
|
4
|
-
<path d="
|
|
5
|
-
<defs>
|
|
6
|
-
<linearGradient id="paint0_linear_4088_33989" x1="17.0983" y1="20.2887" x2="17.0983" y2="9.97545" gradientUnits="userSpaceOnUse">
|
|
7
|
-
<stop stop-color="#F37C1C"/>
|
|
8
|
-
<stop offset="1" stop-color="#FCC191"/>
|
|
9
|
-
</linearGradient>
|
|
10
|
-
</defs>
|
|
1
|
+
<svg width="37" height="36" viewBox="0 0 37 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.5 18C0.5 8.05888 8.55888 0 18.5 0C28.4411 0 36.5 8.05888 36.5 18C36.5 27.9411 28.4411 36 18.5 36C8.55888 36 0.5 27.9411 0.5 18Z" fill="#E7F1FF"/>
|
|
3
|
+
<path d="M24.3308 17.9084L23.96 13.8334H13.0425L12.6667 17.9842C12.6667 20.9175 14.8433 23.3525 17.6667 23.7575V26.3334H15.1667C14.7067 26.3334 14.3333 26.7067 14.3333 27.1667C14.3333 27.6267 14.7067 28 15.1667 28H21.8333C22.2933 28 22.6667 27.6267 22.6667 27.1667C22.6667 26.7067 22.2933 26.3334 21.8333 26.3334H19.3333V23.7575C22.1567 23.3517 24.3342 20.9109 24.3308 17.9084Z" fill="#3B82F6"/>
|
|
4
|
+
<path d="M13.3658 10.2733L13.1941 12.1667H23.8083L23.6358 10.2733C23.5174 8.9775 22.4474 8 21.1458 8H15.8558C14.5541 8 13.4841 8.9775 13.3658 10.2733Z" fill="#3B82F6"/>
|
|
11
5
|
</svg>
|
|
@@ -4,7 +4,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
4
4
|
Object.defineProperty(exports, "__esModule", {
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
|
-
exports.useUserSelectedTimeFormat = exports.useUserSelectedDateFormat = exports.useTimeInFormat = exports.displayTimeInFormat = exports.displayDuration = exports.calculateTimeDuration = void 0;
|
|
7
|
+
exports.useUserSelectedTimeFormat = exports.useUserSelectedDateFormat = exports.useTimeInFormat = exports.displayTimeInFormat = exports.displayDuration = exports.dayFormatFromTime = exports.calculateTimeDuration = void 0;
|
|
8
8
|
var _reactRedux = require("react-redux");
|
|
9
9
|
var _moment = _interopRequireDefault(require("moment/moment"));
|
|
10
10
|
var useUserSelectedDateTimeFormat = function useUserSelectedDateTimeFormat() {
|
|
@@ -44,6 +44,10 @@ var calculateTimeDuration = function calculateTimeDuration(_ref2) {
|
|
|
44
44
|
return [days, hours, minutes].filter(Boolean).join(' ');
|
|
45
45
|
};
|
|
46
46
|
exports.calculateTimeDuration = calculateTimeDuration;
|
|
47
|
+
var dayFormatFromTime = function dayFormatFromTime(date, format) {
|
|
48
|
+
return (0, _moment.default)(date, 'YYYY-MM-DD').format(format);
|
|
49
|
+
};
|
|
50
|
+
exports.dayFormatFromTime = dayFormatFromTime;
|
|
47
51
|
var displayDuration = function displayDuration(timeInMinutes) {
|
|
48
52
|
var hours = Math.floor(timeInMinutes / 60);
|
|
49
53
|
var minutes = timeInMinutes % 60;
|
|
@@ -59,4 +63,4 @@ var displayTimeInFormat = function displayTimeInFormat(_ref3) {
|
|
|
59
63
|
return _moment.default.unix(time).tz(time_zone).format(format);
|
|
60
64
|
};
|
|
61
65
|
exports.displayTimeInFormat = displayTimeInFormat;
|
|
62
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,
|
|
66
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJfcmVhY3RSZWR1eCIsInJlcXVpcmUiLCJfbW9tZW50IiwiX2ludGVyb3BSZXF1aXJlRGVmYXVsdCIsInVzZVVzZXJTZWxlY3RlZERhdGVUaW1lRm9ybWF0IiwidXNlckluZm8iLCJ1c2VTZWxlY3RvciIsInN0YXRlIiwicGVybWlzc2lvbnMiLCJ1c2VyX2luZm8iLCJkYXRlX3RpbWVfZm9ybWF0IiwidXNlVXNlclNlbGVjdGVkRGF0ZUZvcm1hdCIsImV4cG9ydHMiLCJ1c2VVc2VyU2VsZWN0ZWRUaW1lRm9ybWF0IiwidXNlVGltZUluRm9ybWF0IiwiX3JlZiIsInRpbWUiLCJ0aW1lX3pvbmUiLCJtb21lbnQiLCJ1bml4IiwidHoiLCJmb3JtYXQiLCJjYWxjdWxhdGVUaW1lRHVyYXRpb24iLCJfcmVmMiIsIl9yZWYyJHN0YXJ0X3RpbWUiLCJzdGFydF90aW1lIiwiZW5kX3RpbWUiLCJkdXJhdGlvbiIsImRpZmYiLCJkYXlzIiwiY29uY2F0IiwiaG91cnMiLCJtaW51dGVzIiwiZmlsdGVyIiwiQm9vbGVhbiIsImpvaW4iLCJkYXlGb3JtYXRGcm9tVGltZSIsImRhdGUiLCJkaXNwbGF5RHVyYXRpb24iLCJ0aW1lSW5NaW51dGVzIiwiTWF0aCIsImZsb29yIiwiaG91cnNEaXNwbGF5IiwibWludXRlc0Rpc3BsYXkiLCJkaXNwbGF5VGltZUluRm9ybWF0IiwiX3JlZjMiXSwic291cmNlcyI6WyIuLi8uLi9zcmMvaG9va3MvdXNlVXNlclRpbWVab25lLnRzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IHVzZVNlbGVjdG9yIH0gZnJvbSAncmVhY3QtcmVkdXgnO1xuaW1wb3J0IG1vbWVudCBmcm9tICdtb21lbnQvbW9tZW50JztcblxuY29uc3QgdXNlVXNlclNlbGVjdGVkRGF0ZVRpbWVGb3JtYXQgPSAoKSA9PiB7XG4gIGNvbnN0IHVzZXJJbmZvID0gdXNlU2VsZWN0b3IoKHN0YXRlKSA9PiBzdGF0ZS5wZXJtaXNzaW9ucy51c2VyX2luZm8pO1xuICByZXR1cm4gdXNlckluZm8uZGF0ZV90aW1lX2Zvcm1hdDtcbn07XG5cbmV4cG9ydCBjb25zdCB1c2VVc2VyU2VsZWN0ZWREYXRlRm9ybWF0ID0gKCkgPT4ge1xuICBpZiAodXNlVXNlclNlbGVjdGVkRGF0ZVRpbWVGb3JtYXQoKSA9PT0gJ3VzJykge1xuICAgIHJldHVybiAnTU1NIERELCBZWVlZJztcbiAgfVxuXG4gIHJldHVybiAnREQvTU0vWVlZWSc7XG59O1xuXG5leHBvcnQgY29uc3QgdXNlVXNlclNlbGVjdGVkVGltZUZvcm1hdCA9ICgpID0+IHtcbiAgaWYgKHVzZVVzZXJTZWxlY3RlZERhdGVUaW1lRm9ybWF0KCkgPT09ICd1cycpIHtcbiAgICByZXR1cm4gJ01NTSBERCwgWVlZWSBoaDptbSBBJztcbiAgfVxuXG4gIHJldHVybiAnREQvTU0vWVlZWSBISDptbSc7XG59O1xuXG5leHBvcnQgY29uc3QgdXNlVGltZUluRm9ybWF0ID0gKHtcbiAgdGltZSxcbiAgdGltZV96b25lLFxufToge1xuICB0aW1lOiBudW1iZXI7XG4gIHRpbWVfem9uZTogc3RyaW5nO1xufSkgPT4ge1xuICByZXR1cm4gbW9tZW50LnVuaXgodGltZSkudHoodGltZV96b25lKS5mb3JtYXQodXNlVXNlclNlbGVjdGVkVGltZUZvcm1hdCgpKTtcbn07XG5cbmV4cG9ydCBjb25zdCBjYWxjdWxhdGVUaW1lRHVyYXRpb24gPSAoe1xuICBzdGFydF90aW1lID0gbW9tZW50KCkudW5peCgpLFxuICBlbmRfdGltZSxcbn0pID0+IHtcbiAgY29uc3QgZHVyYXRpb24gPSBtb21lbnQuZHVyYXRpb24oXG4gICAgbW9tZW50LnVuaXgoZW5kX3RpbWUpLmRpZmYobW9tZW50LnVuaXgoc3RhcnRfdGltZSkpLFxuICApO1xuICBjb25zdCBkYXlzID0gZHVyYXRpb24uZGF5cygpID8gYCR7ZHVyYXRpb24uZGF5cygpfWRgIDogJyc7XG4gIGNvbnN0IGhvdXJzID0gZHVyYXRpb24uaG91cnMoKSA/IGAke2R1cmF0aW9uLmhvdXJzKCl9aGAgOiAnJztcbiAgY29uc3QgbWludXRlcyA9XG4gICAgZHVyYXRpb24ubWludXRlcygpIHx8ICghZGF5cyAmJiAhaG91cnMpID8gYCR7ZHVyYXRpb24ubWludXRlcygpfW1gIDogJyc7XG5cbiAgcmV0dXJuIFtkYXlzLCBob3VycywgbWludXRlc10uZmlsdGVyKEJvb2xlYW4pLmpvaW4oJyAnKTtcbn07XG5cbmV4cG9ydCBjb25zdCBkYXlGb3JtYXRGcm9tVGltZSA9IChkYXRlOiBzdHJpbmcsIGZvcm1hdDogc3RyaW5nKSA9PiB7XG4gIHJldHVybiBtb21lbnQoZGF0ZSwgJ1lZWVktTU0tREQnKS5mb3JtYXQoZm9ybWF0KTtcbn07XG5leHBvcnQgY29uc3QgZGlzcGxheUR1cmF0aW9uID0gKHRpbWVJbk1pbnV0ZXM6IG51bWJlcikgPT4ge1xuICBjb25zdCBob3VycyA9IE1hdGguZmxvb3IodGltZUluTWludXRlcyAvIDYwKTtcbiAgY29uc3QgbWludXRlcyA9IHRpbWVJbk1pbnV0ZXMgJSA2MDtcbiAgY29uc3QgaG91cnNEaXNwbGF5ID0gaG91cnMgPiAwID8gYCR7aG91cnN9aGAgOiAnJztcbiAgY29uc3QgbWludXRlc0Rpc3BsYXkgPSBtaW51dGVzID4gMCB8fCAhaG91cnNEaXNwbGF5ID8gYCR7bWludXRlc31tYCA6ICcnO1xuICByZXR1cm4gW2hvdXJzRGlzcGxheSwgbWludXRlc0Rpc3BsYXldLmZpbHRlcihCb29sZWFuKS5qb2luKCcgJyk7XG59O1xuXG5leHBvcnQgY29uc3QgZGlzcGxheVRpbWVJbkZvcm1hdCA9ICh7IHRpbWUsIHRpbWVfem9uZSwgZm9ybWF0IH0pID0+IHtcbiAgcmV0dXJuIG1vbWVudC51bml4KHRpbWUpLnR6KHRpbWVfem9uZSkuZm9ybWF0KGZvcm1hdCk7XG59O1xuIl0sIm1hcHBpbmdzIjoiOzs7Ozs7O0FBQUEsSUFBQUEsV0FBQSxHQUFBQyxPQUFBO0FBQ0EsSUFBQUMsT0FBQSxHQUFBQyxzQkFBQSxDQUFBRixPQUFBO0FBRUEsSUFBTUcsNkJBQTZCLEdBQUcsU0FBaENBLDZCQUE2QkEsQ0FBQSxFQUFTO0VBQzFDLElBQU1DLFFBQVEsR0FBRyxJQUFBQyx1QkFBVyxFQUFDLFVBQUNDLEtBQUs7SUFBQSxPQUFLQSxLQUFLLENBQUNDLFdBQVcsQ0FBQ0MsU0FBUztFQUFBLEVBQUM7RUFDcEUsT0FBT0osUUFBUSxDQUFDSyxnQkFBZ0I7QUFDbEMsQ0FBQztBQUVNLElBQU1DLHlCQUF5QixHQUFHLFNBQTVCQSx5QkFBeUJBLENBQUEsRUFBUztFQUM3QyxJQUFJUCw2QkFBNkIsQ0FBQyxDQUFDLEtBQUssSUFBSSxFQUFFO0lBQzVDLE9BQU8sY0FBYztFQUN2QjtFQUVBLE9BQU8sWUFBWTtBQUNyQixDQUFDO0FBQUNRLE9BQUEsQ0FBQUQseUJBQUEsR0FBQUEseUJBQUE7QUFFSyxJQUFNRSx5QkFBeUIsR0FBRyxTQUE1QkEseUJBQXlCQSxDQUFBLEVBQVM7RUFDN0MsSUFBSVQsNkJBQTZCLENBQUMsQ0FBQyxLQUFLLElBQUksRUFBRTtJQUM1QyxPQUFPLHNCQUFzQjtFQUMvQjtFQUVBLE9BQU8sa0JBQWtCO0FBQzNCLENBQUM7QUFBQ1EsT0FBQSxDQUFBQyx5QkFBQSxHQUFBQSx5QkFBQTtBQUVLLElBQU1DLGVBQWUsR0FBRyxTQUFsQkEsZUFBZUEsQ0FBQUMsSUFBQSxFQU10QjtFQUFBLElBTEpDLElBQUksR0FBQUQsSUFBQSxDQUFKQyxJQUFJO0lBQ0pDLFNBQVMsR0FBQUYsSUFBQSxDQUFURSxTQUFTO0VBS1QsT0FBT0MsZUFBTSxDQUFDQyxJQUFJLENBQUNILElBQUksQ0FBQyxDQUFDSSxFQUFFLENBQUNILFNBQVMsQ0FBQyxDQUFDSSxNQUFNLENBQUNSLHlCQUF5QixDQUFDLENBQUMsQ0FBQztBQUM1RSxDQUFDO0FBQUNELE9BQUEsQ0FBQUUsZUFBQSxHQUFBQSxlQUFBO0FBRUssSUFBTVEscUJBQXFCLEdBQUcsU0FBeEJBLHFCQUFxQkEsQ0FBQUMsS0FBQSxFQUc1QjtFQUFBLElBQUFDLGdCQUFBLEdBQUFELEtBQUEsQ0FGSkUsVUFBVTtJQUFWQSxVQUFVLEdBQUFELGdCQUFBLGNBQUcsSUFBQU4sZUFBTSxFQUFDLENBQUMsQ0FBQ0MsSUFBSSxDQUFDLENBQUMsR0FBQUssZ0JBQUE7SUFDNUJFLFFBQVEsR0FBQUgsS0FBQSxDQUFSRyxRQUFRO0VBRVIsSUFBTUMsUUFBUSxHQUFHVCxlQUFNLENBQUNTLFFBQVEsQ0FDOUJULGVBQU0sQ0FBQ0MsSUFBSSxDQUFDTyxRQUFRLENBQUMsQ0FBQ0UsSUFBSSxDQUFDVixlQUFNLENBQUNDLElBQUksQ0FBQ00sVUFBVSxDQUFDLENBQ3BELENBQUM7RUFDRCxJQUFNSSxJQUFJLEdBQUdGLFFBQVEsQ0FBQ0UsSUFBSSxDQUFDLENBQUMsTUFBQUMsTUFBQSxDQUFNSCxRQUFRLENBQUNFLElBQUksQ0FBQyxDQUFDLFNBQU0sRUFBRTtFQUN6RCxJQUFNRSxLQUFLLEdBQUdKLFFBQVEsQ0FBQ0ksS0FBSyxDQUFDLENBQUMsTUFBQUQsTUFBQSxDQUFNSCxRQUFRLENBQUNJLEtBQUssQ0FBQyxDQUFDLFNBQU0sRUFBRTtFQUM1RCxJQUFNQyxPQUFPLEdBQ1hMLFFBQVEsQ0FBQ0ssT0FBTyxDQUFDLENBQUMsSUFBSyxDQUFDSCxJQUFJLElBQUksQ0FBQ0UsS0FBTSxNQUFBRCxNQUFBLENBQU1ILFFBQVEsQ0FBQ0ssT0FBTyxDQUFDLENBQUMsU0FBTSxFQUFFO0VBRXpFLE9BQU8sQ0FBQ0gsSUFBSSxFQUFFRSxLQUFLLEVBQUVDLE9BQU8sQ0FBQyxDQUFDQyxNQUFNLENBQUNDLE9BQU8sQ0FBQyxDQUFDQyxJQUFJLENBQUMsR0FBRyxDQUFDO0FBQ3pELENBQUM7QUFBQ3ZCLE9BQUEsQ0FBQVUscUJBQUEsR0FBQUEscUJBQUE7QUFFSyxJQUFNYyxpQkFBaUIsR0FBRyxTQUFwQkEsaUJBQWlCQSxDQUFJQyxJQUFZLEVBQUVoQixNQUFjLEVBQUs7RUFDakUsT0FBTyxJQUFBSCxlQUFNLEVBQUNtQixJQUFJLEVBQUUsWUFBWSxDQUFDLENBQUNoQixNQUFNLENBQUNBLE1BQU0sQ0FBQztBQUNsRCxDQUFDO0FBQUNULE9BQUEsQ0FBQXdCLGlCQUFBLEdBQUFBLGlCQUFBO0FBQ0ssSUFBTUUsZUFBZSxHQUFHLFNBQWxCQSxlQUFlQSxDQUFJQyxhQUFxQixFQUFLO0VBQ3hELElBQU1SLEtBQUssR0FBR1MsSUFBSSxDQUFDQyxLQUFLLENBQUNGLGFBQWEsR0FBRyxFQUFFLENBQUM7RUFDNUMsSUFBTVAsT0FBTyxHQUFHTyxhQUFhLEdBQUcsRUFBRTtFQUNsQyxJQUFNRyxZQUFZLEdBQUdYLEtBQUssR0FBRyxDQUFDLE1BQUFELE1BQUEsQ0FBTUMsS0FBSyxTQUFNLEVBQUU7RUFDakQsSUFBTVksY0FBYyxHQUFHWCxPQUFPLEdBQUcsQ0FBQyxJQUFJLENBQUNVLFlBQVksTUFBQVosTUFBQSxDQUFNRSxPQUFPLFNBQU0sRUFBRTtFQUN4RSxPQUFPLENBQUNVLFlBQVksRUFBRUMsY0FBYyxDQUFDLENBQUNWLE1BQU0sQ0FBQ0MsT0FBTyxDQUFDLENBQUNDLElBQUksQ0FBQyxHQUFHLENBQUM7QUFDakUsQ0FBQztBQUFDdkIsT0FBQSxDQUFBMEIsZUFBQSxHQUFBQSxlQUFBO0FBRUssSUFBTU0sbUJBQW1CLEdBQUcsU0FBdEJBLG1CQUFtQkEsQ0FBQUMsS0FBQSxFQUFvQztFQUFBLElBQTlCN0IsSUFBSSxHQUFBNkIsS0FBQSxDQUFKN0IsSUFBSTtJQUFFQyxTQUFTLEdBQUE0QixLQUFBLENBQVQ1QixTQUFTO0lBQUVJLE1BQU0sR0FBQXdCLEtBQUEsQ0FBTnhCLE1BQU07RUFDM0QsT0FBT0gsZUFBTSxDQUFDQyxJQUFJLENBQUNILElBQUksQ0FBQyxDQUFDSSxFQUFFLENBQUNILFNBQVMsQ0FBQyxDQUFDSSxNQUFNLENBQUNBLE1BQU0sQ0FBQztBQUN2RCxDQUFDO0FBQUNULE9BQUEsQ0FBQWdDLG1CQUFBLEdBQUFBLG1CQUFBIn0=
|
package/lib/i18n/en.json
CHANGED
|
@@ -3268,6 +3268,9 @@
|
|
|
3268
3268
|
"exception": "Exception",
|
|
3269
3269
|
"lab-tests": "Lab Tests",
|
|
3270
3270
|
"samples": "Samples",
|
|
3271
|
+
"no-results-title": "No Test Results Found",
|
|
3272
|
+
"no-results-text": "there are currently no test results available within\n the selected time frame, try to",
|
|
3273
|
+
"all_times": "view all time frames",
|
|
3271
3274
|
"no-results1": "There are no tests results within",
|
|
3272
3275
|
"no-results2": "the selected time frame",
|
|
3273
3276
|
"no-results3": "Please select another time frame to find results"
|
|
@@ -3947,7 +3950,15 @@
|
|
|
3947
3950
|
"inlets_info_data": "Inlets info data",
|
|
3948
3951
|
"inlets_plural": "Inlets ({{count}})",
|
|
3949
3952
|
"potential_savings": "Potential Savings",
|
|
3950
|
-
"
|
|
3953
|
+
"no_result_1": "Your sewer network is not fully configured yet to show more insights.",
|
|
3954
|
+
"no_result_2": "Contact your support representative to learn more.",
|
|
3955
|
+
"actual_savings": "Actual Savings",
|
|
3956
|
+
"contaminates": "Contaminates",
|
|
3957
|
+
"prediction": "Next 7 Days Prediction",
|
|
3958
|
+
"discharge": "discharge",
|
|
3959
|
+
"upcoming_title": "Upgrade to unlock this insight.",
|
|
3960
|
+
"upcoming_prediction": "Optimize your WWTP Operation by having 7-day prediction.",
|
|
3961
|
+
"upcoming_contact": "Contact your account manager to learn more."
|
|
3951
3962
|
}
|
|
3952
3963
|
}
|
|
3953
3964
|
}
|
package/lib/i18n/he.json
CHANGED
|
@@ -3195,6 +3195,9 @@
|
|
|
3195
3195
|
"exception": "חריגה",
|
|
3196
3196
|
"lab-tests": "בדיקות מעבדה",
|
|
3197
3197
|
"samples": "דגימות",
|
|
3198
|
+
"no-results-title": "לא נמצאו דגימות",
|
|
3199
|
+
"no-results-text": "לא נמצאו דגימות לפי הסינון שנבחר \n אנא נסה לשנות את הסינון ולחפש שוב",
|
|
3200
|
+
"all_times": "דגימות מכל הזמנים",
|
|
3198
3201
|
"no-results1": "אין תוצאות בדיקות לתקופה שנבחרה",
|
|
3199
3202
|
"no-results2": "אנא עדכנו את התקופה לשיפור התוצאות",
|
|
3200
3203
|
"no-results3": ""
|
|
@@ -3815,6 +3818,28 @@
|
|
|
3815
3818
|
"canceled_by": "יש לבחור מי ביטל את הדיגום"
|
|
3816
3819
|
}
|
|
3817
3820
|
}
|
|
3821
|
+
},
|
|
3822
|
+
"wwtpPage": {
|
|
3823
|
+
"view_sub_areas": "הצג אזורי משנה",
|
|
3824
|
+
"view_inlets": "הצג כניסות",
|
|
3825
|
+
"view_factories": "הצג מפעלים",
|
|
3826
|
+
"organic_load": "עומס אורגני",
|
|
3827
|
+
"organic_load_info_data": "מידע על עומס אורגני",
|
|
3828
|
+
"impact": "השפעה",
|
|
3829
|
+
"impact_info_data": "מידע על השפעה",
|
|
3830
|
+
"inlets": "כניסות",
|
|
3831
|
+
"inlets_info_data": "מידע על כניסות",
|
|
3832
|
+
"inlets_plural": "כניסות ({{count}})",
|
|
3833
|
+
"potential_savings": "חסכונות פוטנציאליים",
|
|
3834
|
+
"actual_savings": "חסכונות בפועל",
|
|
3835
|
+
"no_result_1": "רשת הביוב שלך עדיין לא מוגדרת במלואה כדי להציג תובנות נוספות.",
|
|
3836
|
+
"no_result_2": "צור קשר עם נציג התמיכה שלך כדי ללמוד עוד.",
|
|
3837
|
+
"contaminates": "Contaminates",
|
|
3838
|
+
"prediction": "Next 7 Days Prediction",
|
|
3839
|
+
"discharge": "discharge",
|
|
3840
|
+
"upcoming_title": "על מנת לצפות בתובנה זאת עליך לשדרג",
|
|
3841
|
+
"upcoming_prediction": "צפיה בתחזית זיהום שבוע קדימה מאפשרת לך לטייב את האופרציה במט”ש",
|
|
3842
|
+
"upcoming_contact": "צור קשר עם איש הקשר שלך בקנדו"
|
|
3818
3843
|
}
|
|
3819
3844
|
}
|
|
3820
3845
|
}
|
package/lib/macros/getVersion.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var packageJsonVersion = "1.2.278-alpha.
|
|
3
|
+
var packageJsonVersion = "1.2.278-alpha.31";
|
|
4
4
|
if (typeof packageJsonVersion === 'string') {
|
|
5
5
|
// eslint-disable-next-line no-console
|
|
6
6
|
console.log("%c Kando UI %c v".concat(packageJsonVersion, " "), 'font-size: 15px; background-color: #fff; color: #e20f53;', 'font-weight: bold; font-size: 15px; background-color: #e20f53; color: #fff;', "with NODE_ENV=".concat(process.env.NODE_ENV));
|
|
7
7
|
} else {
|
|
8
8
|
console.error('getVersion.js got bad version from package.json, expected string.');
|
|
9
9
|
}
|
|
10
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,
|
|
10
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJwYWNrYWdlSnNvblZlcnNpb24iLCJjb25zb2xlIiwibG9nIiwiY29uY2F0IiwicHJvY2VzcyIsImVudiIsIk5PREVfRU5WIiwiZXJyb3IiXSwic291cmNlcyI6WyIuLi8uLi9zcmMvbWFjcm9zL2dldFZlcnNpb24uanMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHByZXZhbCBmcm9tICdwcmV2YWwubWFjcm8nO1xuXG5jb25zdCBwYWNrYWdlSnNvblZlcnNpb24gPSBwcmV2YWxgbW9kdWxlLmV4cG9ydHMgPSByZXF1aXJlKCcuLi8uLi9iaW4vZ2V0VmVyc2lvbkZyb21QYWNrYWdlSnNvbi5qcycpYDtcbmlmICh0eXBlb2YgcGFja2FnZUpzb25WZXJzaW9uID09PSAnc3RyaW5nJykge1xuICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgbm8tY29uc29sZVxuICBjb25zb2xlLmxvZyhcbiAgICBgJWMgS2FuZG8gVUkgJWMgdiR7cGFja2FnZUpzb25WZXJzaW9ufSBgLFxuICAgICdmb250LXNpemU6IDE1cHg7IGJhY2tncm91bmQtY29sb3I6ICNmZmY7IGNvbG9yOiAjZTIwZjUzOycsXG4gICAgJ2ZvbnQtd2VpZ2h0OiBib2xkOyBmb250LXNpemU6IDE1cHg7IGJhY2tncm91bmQtY29sb3I6ICNlMjBmNTM7IGNvbG9yOiAjZmZmOycsXG4gICAgYHdpdGggTk9ERV9FTlY9JHtwcm9jZXNzLmVudi5OT0RFX0VOVn1gLFxuICApO1xufSBlbHNlIHtcbiAgY29uc29sZS5lcnJvcihcbiAgICAnZ2V0VmVyc2lvbi5qcyBnb3QgYmFkIHZlcnNpb24gZnJvbSBwYWNrYWdlLmpzb24sIGV4cGVjdGVkIHN0cmluZy4nLFxuICApO1xufVxuIl0sIm1hcHBpbmdzIjoiOztBQUVBLElBQU1BLGtCQUFrQixxQkFBNkU7QUFDckcsSUFBSSxPQUFPQSxrQkFBa0IsS0FBSyxRQUFRLEVBQUU7RUFDMUM7RUFDQUMsT0FBTyxDQUFDQyxHQUFHLG9CQUFBQyxNQUFBLENBQ1VILGtCQUFrQixRQUNyQywwREFBMEQsRUFDMUQsNkVBQTZFLG1CQUFBRyxNQUFBLENBQzVEQyxPQUFPLENBQUNDLEdBQUcsQ0FBQ0MsUUFBUSxDQUN2QyxDQUFDO0FBQ0gsQ0FBQyxNQUFNO0VBQ0xMLE9BQU8sQ0FBQ00sS0FBSyxDQUNYLG1FQUNGLENBQUM7QUFDSCJ9
|