@ambuj.bhaskar/react-component-library 0.20.9-alpha → 0.20.11-alpha
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/dist/assets/index.css +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.js +244 -247
- package/dist/index.umd.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import './assets/index.css';var QF = Object.defineProperty;
|
|
|
2
2
|
var WF = (e, t, n) => t in e ? QF(e, t, { enumerable: !0, configurable: !0, writable: !0, value: n }) : e[t] = n;
|
|
3
3
|
var Sn = (e, t, n) => WF(e, typeof t != "symbol" ? t + "" : t, n);
|
|
4
4
|
import * as c from "react";
|
|
5
|
-
import Ae, { useRef as Et, useCallback as p0, useEffect as kt, useState as Ft, forwardRef as Ve, createContext as oa, useContext as H1, useLayoutEffect as tE, useMemo as
|
|
5
|
+
import Ae, { useRef as Et, useCallback as p0, useEffect as kt, useState as Ft, forwardRef as Ve, createContext as oa, useContext as H1, useLayoutEffect as tE, useMemo as o0, isValidElement as GF, Children as YF, useImperativeHandle as Rr, cloneElement as qF } from "react";
|
|
6
6
|
import * as nE from "react-dom";
|
|
7
7
|
import W9, { createPortal as yC, unstable_batchedUpdates as rE, flushSync as Ef } from "react-dom";
|
|
8
8
|
const oE = {
|
|
@@ -5773,7 +5773,7 @@ function Hz(e, t) {
|
|
|
5773
5773
|
const n = Po(e, t == null ? void 0 : t.in), r = +rs(n, t) - +Mz(n, t);
|
|
5774
5774
|
return Math.round(r / lE) + 1;
|
|
5775
5775
|
}
|
|
5776
|
-
function
|
|
5776
|
+
function t0(e, t) {
|
|
5777
5777
|
const n = e < 0 ? "-" : "", r = Math.abs(e).toString().padStart(t, "0");
|
|
5778
5778
|
return n + r;
|
|
5779
5779
|
}
|
|
@@ -5781,16 +5781,16 @@ const H9 = {
|
|
|
5781
5781
|
// Year
|
|
5782
5782
|
y(e, t) {
|
|
5783
5783
|
const n = e.getFullYear(), r = n > 0 ? n : 1 - n;
|
|
5784
|
-
return
|
|
5784
|
+
return t0(t === "yy" ? r % 100 : r, t.length);
|
|
5785
5785
|
},
|
|
5786
5786
|
// Month
|
|
5787
5787
|
M(e, t) {
|
|
5788
5788
|
const n = e.getMonth();
|
|
5789
|
-
return t === "M" ? String(n + 1) :
|
|
5789
|
+
return t === "M" ? String(n + 1) : t0(n + 1, 2);
|
|
5790
5790
|
},
|
|
5791
5791
|
// Day of the month
|
|
5792
5792
|
d(e, t) {
|
|
5793
|
-
return
|
|
5793
|
+
return t0(e.getDate(), t.length);
|
|
5794
5794
|
},
|
|
5795
5795
|
// AM or PM
|
|
5796
5796
|
a(e, t) {
|
|
@@ -5810,26 +5810,26 @@ const H9 = {
|
|
|
5810
5810
|
},
|
|
5811
5811
|
// Hour [1-12]
|
|
5812
5812
|
h(e, t) {
|
|
5813
|
-
return
|
|
5813
|
+
return t0(e.getHours() % 12 || 12, t.length);
|
|
5814
5814
|
},
|
|
5815
5815
|
// Hour [0-23]
|
|
5816
5816
|
H(e, t) {
|
|
5817
|
-
return
|
|
5817
|
+
return t0(e.getHours(), t.length);
|
|
5818
5818
|
},
|
|
5819
5819
|
// Minute
|
|
5820
5820
|
m(e, t) {
|
|
5821
|
-
return
|
|
5821
|
+
return t0(e.getMinutes(), t.length);
|
|
5822
5822
|
},
|
|
5823
5823
|
// Second
|
|
5824
5824
|
s(e, t) {
|
|
5825
|
-
return
|
|
5825
|
+
return t0(e.getSeconds(), t.length);
|
|
5826
5826
|
},
|
|
5827
5827
|
// Fraction of second
|
|
5828
5828
|
S(e, t) {
|
|
5829
5829
|
const n = t.length, r = e.getMilliseconds(), o = Math.trunc(
|
|
5830
5830
|
r * Math.pow(10, n - 3)
|
|
5831
5831
|
);
|
|
5832
|
-
return
|
|
5832
|
+
return t0(o, t.length);
|
|
5833
5833
|
}
|
|
5834
5834
|
}, I3 = {
|
|
5835
5835
|
am: "am",
|
|
@@ -5872,14 +5872,14 @@ const H9 = {
|
|
|
5872
5872
|
const o = uE(e, r), i = o > 0 ? o : 1 - o;
|
|
5873
5873
|
if (t === "YY") {
|
|
5874
5874
|
const a = i % 100;
|
|
5875
|
-
return
|
|
5875
|
+
return t0(a, 2);
|
|
5876
5876
|
}
|
|
5877
|
-
return t === "Yo" ? n.ordinalNumber(i, { unit: "year" }) :
|
|
5877
|
+
return t === "Yo" ? n.ordinalNumber(i, { unit: "year" }) : t0(i, t.length);
|
|
5878
5878
|
},
|
|
5879
5879
|
// ISO week-numbering year
|
|
5880
5880
|
R: function(e, t) {
|
|
5881
5881
|
const n = cE(e);
|
|
5882
|
-
return
|
|
5882
|
+
return t0(n, t.length);
|
|
5883
5883
|
},
|
|
5884
5884
|
// Extended year. This is a single number designating the year of this calendar system.
|
|
5885
5885
|
// The main difference between `y` and `u` localizers are B.C. years:
|
|
@@ -5892,7 +5892,7 @@ const H9 = {
|
|
|
5892
5892
|
// while `uu` pads single digit years to 2 characters and returns other years unchanged.
|
|
5893
5893
|
u: function(e, t) {
|
|
5894
5894
|
const n = e.getFullYear();
|
|
5895
|
-
return
|
|
5895
|
+
return t0(n, t.length);
|
|
5896
5896
|
},
|
|
5897
5897
|
// Quarter
|
|
5898
5898
|
Q: function(e, t, n) {
|
|
@@ -5903,7 +5903,7 @@ const H9 = {
|
|
|
5903
5903
|
return String(r);
|
|
5904
5904
|
// 01, 02, 03, 04
|
|
5905
5905
|
case "QQ":
|
|
5906
|
-
return
|
|
5906
|
+
return t0(r, 2);
|
|
5907
5907
|
// 1st, 2nd, 3rd, 4th
|
|
5908
5908
|
case "Qo":
|
|
5909
5909
|
return n.ordinalNumber(r, { unit: "quarter" });
|
|
@@ -5937,7 +5937,7 @@ const H9 = {
|
|
|
5937
5937
|
return String(r);
|
|
5938
5938
|
// 01, 02, 03, 04
|
|
5939
5939
|
case "qq":
|
|
5940
|
-
return
|
|
5940
|
+
return t0(r, 2);
|
|
5941
5941
|
// 1st, 2nd, 3rd, 4th
|
|
5942
5942
|
case "qo":
|
|
5943
5943
|
return n.ordinalNumber(r, { unit: "quarter" });
|
|
@@ -5999,7 +5999,7 @@ const H9 = {
|
|
|
5999
5999
|
return String(r + 1);
|
|
6000
6000
|
// 01, 02, ..., 12
|
|
6001
6001
|
case "LL":
|
|
6002
|
-
return
|
|
6002
|
+
return t0(r + 1, 2);
|
|
6003
6003
|
// 1st, 2nd, ..., 12th
|
|
6004
6004
|
case "Lo":
|
|
6005
6005
|
return n.ordinalNumber(r + 1, { unit: "month" });
|
|
@@ -6024,12 +6024,12 @@ const H9 = {
|
|
|
6024
6024
|
// Local week of year
|
|
6025
6025
|
w: function(e, t, n, r) {
|
|
6026
6026
|
const o = Hz(e, r);
|
|
6027
|
-
return t === "wo" ? n.ordinalNumber(o, { unit: "week" }) :
|
|
6027
|
+
return t === "wo" ? n.ordinalNumber(o, { unit: "week" }) : t0(o, t.length);
|
|
6028
6028
|
},
|
|
6029
6029
|
// ISO week of year
|
|
6030
6030
|
I: function(e, t, n) {
|
|
6031
6031
|
const r = Sz(e);
|
|
6032
|
-
return t === "Io" ? n.ordinalNumber(r, { unit: "week" }) :
|
|
6032
|
+
return t === "Io" ? n.ordinalNumber(r, { unit: "week" }) : t0(r, t.length);
|
|
6033
6033
|
},
|
|
6034
6034
|
// Day of the month
|
|
6035
6035
|
d: function(e, t, n) {
|
|
@@ -6038,7 +6038,7 @@ const H9 = {
|
|
|
6038
6038
|
// Day of year
|
|
6039
6039
|
D: function(e, t, n) {
|
|
6040
6040
|
const r = Ez(e);
|
|
6041
|
-
return t === "Do" ? n.ordinalNumber(r, { unit: "dayOfYear" }) :
|
|
6041
|
+
return t === "Do" ? n.ordinalNumber(r, { unit: "dayOfYear" }) : t0(r, t.length);
|
|
6042
6042
|
},
|
|
6043
6043
|
// Day of week
|
|
6044
6044
|
E: function(e, t, n) {
|
|
@@ -6082,7 +6082,7 @@ const H9 = {
|
|
|
6082
6082
|
return String(i);
|
|
6083
6083
|
// Padded numerical value
|
|
6084
6084
|
case "ee":
|
|
6085
|
-
return
|
|
6085
|
+
return t0(i, 2);
|
|
6086
6086
|
// 1st, 2nd, ..., 7th
|
|
6087
6087
|
case "eo":
|
|
6088
6088
|
return n.ordinalNumber(i, { unit: "day" });
|
|
@@ -6121,7 +6121,7 @@ const H9 = {
|
|
|
6121
6121
|
return String(i);
|
|
6122
6122
|
// Padded numerical value
|
|
6123
6123
|
case "cc":
|
|
6124
|
-
return
|
|
6124
|
+
return t0(i, t.length);
|
|
6125
6125
|
// 1st, 2nd, ..., 7th
|
|
6126
6126
|
case "co":
|
|
6127
6127
|
return n.ordinalNumber(i, { unit: "day" });
|
|
@@ -6160,7 +6160,7 @@ const H9 = {
|
|
|
6160
6160
|
return String(o);
|
|
6161
6161
|
// 02
|
|
6162
6162
|
case "ii":
|
|
6163
|
-
return
|
|
6163
|
+
return t0(o, t.length);
|
|
6164
6164
|
// 2nd
|
|
6165
6165
|
case "io":
|
|
6166
6166
|
return n.ordinalNumber(o, { unit: "day" });
|
|
@@ -6288,12 +6288,12 @@ const H9 = {
|
|
|
6288
6288
|
// Hour [0-11]
|
|
6289
6289
|
K: function(e, t, n) {
|
|
6290
6290
|
const r = e.getHours() % 12;
|
|
6291
|
-
return t === "Ko" ? n.ordinalNumber(r, { unit: "hour" }) :
|
|
6291
|
+
return t === "Ko" ? n.ordinalNumber(r, { unit: "hour" }) : t0(r, t.length);
|
|
6292
6292
|
},
|
|
6293
6293
|
// Hour [1-24]
|
|
6294
6294
|
k: function(e, t, n) {
|
|
6295
6295
|
let r = e.getHours();
|
|
6296
|
-
return r === 0 && (r = 24), t === "ko" ? n.ordinalNumber(r, { unit: "hour" }) :
|
|
6296
|
+
return r === 0 && (r = 24), t === "ko" ? n.ordinalNumber(r, { unit: "hour" }) : t0(r, t.length);
|
|
6297
6297
|
},
|
|
6298
6298
|
// Minute
|
|
6299
6299
|
m: function(e, t, n) {
|
|
@@ -6388,22 +6388,22 @@ const H9 = {
|
|
|
6388
6388
|
// Seconds timestamp
|
|
6389
6389
|
t: function(e, t, n) {
|
|
6390
6390
|
const r = Math.trunc(+e / 1e3);
|
|
6391
|
-
return
|
|
6391
|
+
return t0(r, t.length);
|
|
6392
6392
|
},
|
|
6393
6393
|
// Milliseconds timestamp
|
|
6394
6394
|
T: function(e, t, n) {
|
|
6395
|
-
return
|
|
6395
|
+
return t0(+e, t.length);
|
|
6396
6396
|
}
|
|
6397
6397
|
};
|
|
6398
6398
|
function iv(e, t = "") {
|
|
6399
6399
|
const n = e > 0 ? "-" : "+", r = Math.abs(e), o = Math.trunc(r / 60), i = r % 60;
|
|
6400
|
-
return i === 0 ? n + String(o) : n + String(o) + t +
|
|
6400
|
+
return i === 0 ? n + String(o) : n + String(o) + t + t0(i, 2);
|
|
6401
6401
|
}
|
|
6402
6402
|
function av(e, t) {
|
|
6403
|
-
return e % 60 === 0 ? (e > 0 ? "-" : "+") +
|
|
6403
|
+
return e % 60 === 0 ? (e > 0 ? "-" : "+") + t0(Math.abs(e) / 60, 2) : Oa(e, t);
|
|
6404
6404
|
}
|
|
6405
6405
|
function Oa(e, t = "") {
|
|
6406
|
-
const n = e > 0 ? "-" : "+", r = Math.abs(e), o =
|
|
6406
|
+
const n = e > 0 ? "-" : "+", r = Math.abs(e), o = t0(Math.trunc(r / 60), 2), i = t0(r % 60, 2);
|
|
6407
6407
|
return n + o + t + i;
|
|
6408
6408
|
}
|
|
6409
6409
|
const sv = (e, t) => {
|
|
@@ -9027,7 +9027,7 @@ const VZ = F1.MAX_TOASTS_COUNT, l5 = [], zZ = (e) => {
|
|
|
9027
9027
|
error: () => "Error updating"
|
|
9028
9028
|
}) => {
|
|
9029
9029
|
U7.promise(e, t);
|
|
9030
|
-
},
|
|
9030
|
+
}, e0 = {
|
|
9031
9031
|
success: ZZ,
|
|
9032
9032
|
error: IE,
|
|
9033
9033
|
exception: $Z,
|
|
@@ -10879,7 +10879,7 @@ const XQ = /* @__PURE__ */ so(qQ), HC = ({
|
|
|
10879
10879
|
), JQ = "data:image/svg+xml,%3csvg%20width='500'%20height='500'%20viewBox='0%200%20500%20500'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M418.761%20210.271C418.761%20210.271%20357.178%20245.475%20397.316%20355.918C432.963%20454.002%20305.193%20467.329%20255.516%20446.663C191.166%20419.892%20169.949%20327.336%20113.224%20343.732C56.4992%20360.128%2030.512%20228.145%20114.189%20198.582C218.281%20161.807%20165.353%20117.32%20182.003%2078.1944C193.953%2050.1139%20288.26%2022.1537%20323.601%2083.1757C353.341%20134.526%20375.441%20122.826%20394.267%20120.618C421.418%20117.432%20468.085%20172.3%20418.761%20210.271Z'%20fill='%23E3E8EB'/%3e%3cpath%20d='M214.715%20405.659V338.653C214.715%20331.324%20221.227%20325.707%20228.476%20326.783L273.233%20333.423C279.116%20334.295%20283.472%20339.345%20283.472%20345.293V416.142C283.472%20423.875%20276.265%20429.59%20268.736%20427.826L223.978%20417.343C218.552%20416.072%20214.715%20411.232%20214.715%20405.659Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M213.196%20406.792L222.411%20402.678C224.773%20401.624%20227.412%20401.361%20229.935%20401.928L270.602%20411.072C279.389%20413.048%20282.949%20423.639%20277.139%20430.52L270.421%20438.479C267.336%20442.134%20262.374%20443.608%20257.794%20442.229L214.63%20429.24C203.982%20426.036%20203.043%20411.325%20213.196%20406.792Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M377.929%20115.753L116.321%20150.749C110.362%20151.546%20105.912%20156.631%20105.912%20162.643V315.652C105.912%20321.633%20110.316%20326.701%20116.239%20327.535L377.847%20364.372C385.069%20365.389%20391.52%20359.783%20391.52%20352.49V127.647C391.52%20120.388%20385.125%20114.791%20377.929%20115.753Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M368.145%20127.037L124.671%20158.795C118.694%20159.575%20114.223%20164.667%20114.223%20170.694V308.53C114.223%20314.527%20118.649%20319.603%20124.59%20320.418L368.065%20353.848C375.273%20354.838%20381.697%20349.236%20381.697%20341.96V138.936C381.697%20131.692%20375.328%20126.1%20368.145%20127.037Z'%20fill='white'/%3e%3cpath%20d='M84%20260.139L155.78%20210.271C179.077%20243.517%20226.653%20309.025%20230.582%20305.096C234.511%20301.167%20267.227%20261.147%20283.095%20241.628L331.452%20279.406L416.454%20167.581'%20stroke='%236C7378'%20stroke-width='29'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M222.16%2074.3747C220.733%2073.7771%20219.181%2073.5385%20217.64%2073.6798C216.098%2073.8211%20214.615%2074.3379%20213.32%2075.1851C207.278%2079.2013%20201.979%2084.2356%20197.659%2090.0638C196.746%2091.311%20196.153%2092.7625%20195.931%2094.2917C195.708%2095.8208%20195.864%2097.3811%20196.383%2098.8365C197.941%20103.319%20198.193%20107.946%20196.901%20112.293C195.616%20116.644%20192.877%20120.389%20189.124%20123.295C187.894%20124.234%20186.913%20125.46%20186.266%20126.866C185.62%20128.272%20185.328%20129.816%20185.416%20131.361C185.868%20138.591%20187.57%20145.688%20190.446%20152.338C191.798%20155.476%20194.604%20157.312%20197.41%20157.851C202.071%20158.733%20206.212%20160.835%20209.334%20164.123C212.452%20167.419%20214.325%20171.652%20214.969%20176.353C215.355%20179.175%20217.03%20182.075%20220.083%20183.593C226.577%20186.829%20233.583%20188.913%20240.789%20189.752C242.327%20189.919%20243.882%20189.707%20245.318%20189.135C246.754%20188.562%20248.029%20187.646%20249.03%20186.468C252.134%20182.873%20256.02%20180.336%20260.435%20179.277C264.85%20178.219%20269.458%20178.719%20273.854%20180.516C276.499%20181.597%20279.852%20181.593%20282.694%20179.705C288.736%20175.689%20294.035%20170.655%20298.356%20164.826C300.389%20162.089%20300.574%20158.749%20299.632%20156.054C298.073%20151.572%20297.815%20146.946%20299.114%20142.598C300.398%20138.246%20303.139%20134.507%20306.892%20131.602C309.143%20129.856%20310.816%20126.94%20310.598%20123.529C310.146%20116.299%20308.445%20109.202%20305.569%20102.553C304.947%20101.135%20303.987%2099.8923%20302.773%2098.9322C301.559%2097.972%20300.128%2097.324%20298.606%2097.045C293.944%2096.1573%20289.804%2094.061%20286.68%2090.7669C283.557%2087.4789%20281.69%2083.2387%20281.046%2078.5373C280.849%2077.0047%20280.28%2075.5436%20279.388%2074.2816C278.497%2073.0195%20277.31%2071.9948%20275.931%2071.2969C269.437%2068.0616%20262.431%2065.9776%20255.225%2065.1379C253.688%2064.9709%20252.133%2065.183%20250.697%2065.7556C249.26%2066.3282%20247.986%2067.2439%20246.985%2068.4226C243.873%2072.0124%20239.989%2074.556%20235.58%2075.613C231.171%2076.6701%20226.557%2076.1708%20222.16%2074.3747ZM229.714%20131.831C228.55%20126.98%20229.362%20121.864%20231.97%20117.611C234.578%20113.358%20238.769%20110.315%20243.621%20109.151C248.473%20107.988%20253.588%20108.8%20257.841%20111.408C262.095%20114.016%20265.138%20118.207%20266.301%20123.059C267.464%20127.911%20266.653%20133.026%20264.044%20137.279C261.436%20141.533%20257.245%20144.576%20252.393%20145.739C247.542%20146.902%20242.426%20146.09%20238.173%20143.482C233.92%20140.874%20230.877%20136.683%20229.714%20131.831Z'%20fill='%236C7378'/%3e%3ccircle%20cx='247.584'%20cy='127.158'%20r='33.6232'%20fill='white'/%3e%3cpath%20d='M247.631%2093.6724C229.138%2093.6724%20214.008%20108.803%20214.008%20127.296C214.008%20145.788%20229.138%20160.919%20247.631%20160.919C266.124%20160.919%20281.254%20145.788%20281.254%20127.296C281.254%20108.803%20266.124%2093.6724%20247.631%2093.6724ZM247.631%20102.078C253.095%20102.078%20258.138%20103.759%20262.341%20106.701L227.037%20142.006C224.095%20137.803%20222.414%20132.759%20222.414%20127.296C222.414%20113.426%20233.761%20102.078%20247.631%20102.078ZM247.631%20152.513C242.167%20152.513%20237.124%20150.832%20232.921%20147.89L268.225%20112.585C271.167%20116.788%20272.848%20121.832%20272.848%20127.296C272.848%20141.165%20261.501%20152.513%20247.631%20152.513Z'%20fill='%23A2B1BD'/%3e%3c/svg%3e", eW = "data:image/svg+xml,%3csvg%20width='500'%20height='375'%20viewBox='0%200%20500%20375'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M336.843%20160.775C301.358%20160.775%20265.236%20159.333%20231.446%20149.917C198.292%20140.713%20167.852%20122.857%20140.718%20102.201C122.954%2088.7559%20106.801%2078.0675%2083.7377%2079.6793C61.1554%2080.9161%2039.571%2089.3929%2022.1784%20103.855C-7.15984%20129.304%20-2.75064%20176.935%208.99312%20210.4C26.63%20260.788%2080.3036%20295.695%20125.922%20318.514C178.621%20344.853%20236.534%20360.122%20294.574%20368.944C345.45%20376.664%20410.825%20382.305%20454.917%20349.052C495.405%20318.514%20506.513%20248.785%20496.592%20201.705C494.188%20187.784%20486.785%20175.221%20475.776%20166.374C447.328%20145.591%20404.889%20159.46%20372.922%20160.181C361.052%20160.436%20348.969%20160.733%20336.843%20160.775Z'%20fill='%23E3E8EB'/%3e%3cpath%20d='M316.176%201.62428L109.039%2029.6304C102.405%2030.5273%2097.7544%2036.6322%2098.6514%2043.266L138.821%20340.365C139.718%20346.998%20145.822%20351.649%20152.456%20350.752L359.594%20322.746C366.228%20321.849%20370.878%20315.744%20369.981%20309.11L329.812%2012.0119C328.915%205.37803%20322.81%200.727356%20316.176%201.62428Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M385.119%2044.9761H176.19C169.499%2044.9761%20164.074%2050.4137%20164.074%2057.1215V357.528C164.074%20364.236%20169.499%20369.674%20176.19%20369.674H385.119C391.811%20369.674%20397.235%20364.236%20397.235%20357.528V57.1215C397.235%2050.4137%20391.811%2044.9761%20385.119%2044.9761Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M330.835%20278.137H230.475C226.711%20278.137%20223.66%20281.22%20223.66%20285.024V285.067C223.66%20288.87%20226.711%20291.954%20230.475%20291.954H330.835C334.599%20291.954%20337.65%20288.87%20337.65%20285.067V285.024C337.65%20281.22%20334.599%20278.137%20330.835%20278.137Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M326.948%20334.268H230.912C229.77%20334.268%20228.844%20335.106%20228.844%20336.14V336.713C228.844%20337.747%20229.77%20338.585%20230.912%20338.585H326.948C328.09%20338.585%20329.016%20337.747%20329.016%20336.713V336.14C329.016%20335.106%20328.09%20334.268%20326.948%20334.268Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M351.317%20311.815H209.995C208.481%20311.815%20207.254%20312.975%20207.254%20314.406C207.254%20315.837%20208.481%20316.997%20209.995%20316.997H351.317C352.831%20316.997%20354.059%20315.837%20354.059%20314.406C354.059%20312.975%20352.831%20311.815%20351.317%20311.815Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M377.289%2055.3384H183.158C178.342%2055.3384%20174.438%2059.2399%20174.438%2064.0527V232.289C174.438%20237.102%20178.342%20241.003%20183.158%20241.003H377.289C382.105%20241.003%20386.009%20237.102%20386.009%20232.289V64.0527C386.009%2059.2399%20382.105%2055.3384%20377.289%2055.3384Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e", tW = "data:image/svg+xml,%3csvg%20width='500'%20height='500'%20viewBox='0%200%20500%20500'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M174.044%2077.8029C174.044%2077.8029%20221.889%20132.653%20324.897%2069.9822C416.378%2014.3249%20455.572%20140.176%20444.808%20194.322C430.863%20264.464%20342.03%20304.489%20369.973%20358.247C397.917%20412.006%20270.382%20464.786%20223.753%20386.571C165.748%20289.274%20131.676%20351.5%2088.9536%20342.645C58.2921%20336.29%2011.1301%20247.058%2065.3874%20199.187C111.044%20158.905%2094.8154%20139.033%2088.7936%20120.539C80.1086%2093.8669%20125.889%2035.8444%20174.044%2077.8029Z'%20fill='%23E3E8EB'/%3e%3cpath%20d='M117.155%20347.174L364.341%20346.774C366.522%20346.771%20368.68%20346.338%20370.694%20345.5C372.708%20344.662%20374.536%20343.436%20376.076%20341.891C377.616%20340.346%20378.836%20338.514%20379.667%20336.497C380.499%20334.481%20380.925%20332.321%20380.921%20330.14L380.674%20177.454C380.671%20175.273%20380.238%20173.114%20379.4%20171.101C378.562%20169.087%20377.336%20167.259%20375.792%20165.719C374.247%20164.179%20372.414%20162.959%20370.398%20162.128C368.382%20161.296%20366.222%20160.87%20364.041%20160.874L115.201%20160.906C106.724%20160.906%2099.9432%20152.793%20100.248%20145.839V161.3L100.521%20330.593C100.525%20332.774%20100.958%20334.933%20101.796%20336.946C102.633%20338.96%20103.859%20340.789%20105.404%20342.329C106.949%20343.868%20108.781%20345.089%20110.798%20345.92C112.814%20346.752%20114.974%20347.178%20117.155%20347.174Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M285.862%20221.804L381.123%20221.649C384.438%20221.644%20387.62%20222.956%20389.968%20225.296C392.316%20227.636%20393.638%20230.814%20393.643%20234.129L393.707%20273.419C393.712%20276.734%20392.401%20279.916%20390.06%20282.264C387.72%20284.612%20384.543%20285.934%20381.227%20285.939L285.967%20286.094C285.332%20286.095%20284.724%20285.844%20284.274%20285.396C283.825%20284.948%20283.572%20284.34%20283.571%20283.706L283.475%20224.199C283.474%20223.565%20283.725%20222.956%20284.172%20222.507C284.62%20222.058%20285.228%20221.805%20285.862%20221.804Z'%20fill='%237C878F'/%3e%3cpath%20d='M316.799%20268.619C324.927%20268.619%20331.517%20262.03%20331.517%20253.902C331.517%20245.774%20324.927%20239.185%20316.799%20239.185C308.671%20239.185%20302.082%20245.774%20302.082%20253.902C302.082%20262.03%20308.671%20268.619%20316.799%20268.619Z'%20fill='white'/%3e%3cpath%20d='M112.748%20128.917H326.269C329.584%20128.917%20332.763%20130.234%20335.107%20132.578C337.452%20134.922%20338.769%20138.102%20338.769%20141.417V160.908H116.312C112.052%20160.908%20107.966%20159.216%20104.953%20156.203C101.941%20153.19%20100.248%20149.104%20100.248%20144.844V141.417C100.248%20138.102%20101.565%20134.922%20103.909%20132.578C106.253%20130.234%20109.433%20128.917%20112.748%20128.917Z'%20fill='%237C878F'/%3e%3cpath%20d='M278.958%20142.964C278.668%20142.964%20278.386%20142.863%20278.162%20142.678C277.938%20142.494%20277.785%20142.237%20277.73%20141.952C277.675%20141.667%20277.72%20141.371%20277.859%20141.116C277.998%20140.861%20278.221%20140.662%20278.49%20140.554C278.54%20140.533%20279.772%20140.038%20282.03%20139.207C282.341%20139.093%20282.685%20139.107%20282.986%20139.246C283.287%20139.385%20283.52%20139.638%20283.635%20139.949C283.749%20140.26%20283.736%20140.604%20283.596%20140.905C283.457%20141.206%20283.204%20141.439%20282.893%20141.554C280.671%20142.371%20279.437%20142.868%20279.425%20142.873C279.277%20142.933%20279.118%20142.963%20278.958%20142.964Z'%20fill='%237C878F'/%3e%3cpath%20d='M331.269%20430.811C330.398%20430.811%20329.51%20430.794%20328.629%20430.759C328.465%20430.754%20328.302%20430.716%20328.152%20430.647C328.002%20430.579%20327.867%20430.482%20327.755%20430.361C327.643%20430.24%20327.555%20430.099%20327.498%20429.944C327.441%20429.789%20327.415%20429.625%20327.421%20429.46C327.428%20429.296%20327.467%20429.134%20327.536%20428.984C327.605%20428.835%20327.703%20428.7%20327.825%20428.589C327.946%20428.477%20328.089%20428.391%20328.244%20428.335C328.399%20428.278%20328.563%20428.253%20328.728%20428.261C331.197%20428.361%20333.67%20428.313%20336.134%20428.118C336.297%20428.105%20336.462%20428.124%20336.618%20428.175C336.774%20428.225%20336.919%20428.306%20337.044%20428.412C337.169%20428.519%20337.272%20428.649%20337.346%20428.795C337.421%20428.941%20337.466%20429.101%20337.48%20429.264C337.493%20429.428%20337.474%20429.592%20337.423%20429.749C337.373%20429.905%20337.292%20430.05%20337.185%20430.174C337.079%20430.299%20336.949%20430.402%20336.803%20430.477C336.657%20430.552%20336.497%20430.597%20336.334%20430.61C334.676%20430.744%20332.972%20430.811%20331.269%20430.811ZM321.16%20430.058C321.1%20430.058%20321.039%20430.053%20320.979%20430.045C318.54%20429.691%20316.007%20429.206%20313.449%20428.603C313.126%20428.527%20312.847%20428.326%20312.673%20428.044C312.498%20427.762%20312.443%20427.423%20312.519%20427.1C312.595%20426.777%20312.796%20426.498%20313.078%20426.324C313.36%20426.149%20313.7%20426.094%20314.022%20426.17C316.509%20426.756%20318.971%20427.227%20321.338%20427.57C321.651%20427.615%20321.935%20427.777%20322.133%20428.023C322.332%20428.269%20322.429%20428.581%20322.407%20428.896C322.384%20429.211%20322.243%20429.507%20322.012%20429.722C321.781%20429.937%20321.476%20430.057%20321.16%20430.057V430.058ZM343.707%20429.526C343.398%20429.526%20343.1%20429.411%20342.87%20429.205C342.641%20428.998%20342.496%20428.714%20342.464%20428.406C342.431%20428.099%20342.514%20427.791%20342.696%20427.541C342.877%20427.291%20343.145%20427.117%20343.447%20427.053C345.858%20426.538%20348.232%20425.865%20350.554%20425.039C350.867%20424.928%20351.21%20424.945%20351.51%20425.088C351.809%20425.23%20352.04%20425.485%20352.151%20425.798C352.262%20426.11%20352.245%20426.454%20352.102%20426.753C351.96%20427.053%20351.704%20427.283%20351.392%20427.394C348.966%20428.257%20346.486%20428.96%20343.969%20429.498C343.882%20429.516%20343.795%20429.525%20343.707%20429.525V429.526ZM306.445%20426.632C306.318%20426.632%20306.193%20426.613%20306.072%20426.575C303.75%20425.85%20301.322%20425.013%20298.853%20424.087C298.542%20423.971%20298.291%20423.736%20298.154%20423.434C298.017%20423.132%20298.005%20422.788%20298.122%20422.478C298.238%20422.167%20298.473%20421.916%20298.775%20421.779C299.077%20421.641%20299.421%20421.63%20299.731%20421.746C302.156%20422.656%20304.539%20423.478%20306.817%20424.189C307.102%20424.278%20307.346%20424.466%20307.505%20424.719C307.663%20424.973%20307.725%20425.275%20307.68%20425.57C307.635%20425.866%20307.486%20426.135%20307.259%20426.33C307.032%20426.525%20306.743%20426.632%20306.445%20426.632ZM357.914%20424.489C357.632%20424.489%20357.359%20424.395%20357.138%20424.221C356.917%20424.046%20356.761%20423.803%20356.696%20423.529C356.631%20423.255%20356.66%20422.968%20356.779%20422.712C356.897%20422.457%20357.098%20422.25%20357.35%20422.123C359.555%20421.006%20361.696%20419.766%20363.763%20418.408C363.9%20418.317%20364.054%20418.253%20364.216%20418.221C364.378%20418.189%20364.545%20418.19%20364.706%20418.223C364.868%20418.256%20365.022%20418.32%20365.158%20418.413C365.295%20418.506%20365.412%20418.624%20365.503%20418.762C365.593%20418.9%20365.655%20419.055%20365.686%20419.217C365.716%20419.38%20365.714%20419.546%20365.68%20419.708C365.645%20419.869%20365.579%20420.022%20365.486%20420.158C365.392%20420.294%20365.272%20420.41%20365.133%20420.499C362.988%20421.908%20360.765%20423.196%20358.476%20424.355C358.301%20424.443%20358.109%20424.489%20357.914%20424.489ZM292.269%20421.348C292.101%20421.348%20291.934%20421.314%20291.779%20421.248C289.571%20420.307%20287.233%20419.262%20284.831%20418.143C284.68%20418.075%20284.545%20417.978%20284.432%20417.857C284.32%20417.736%20284.232%20417.594%20284.175%20417.439C284.118%20417.284%20284.092%20417.119%20284.098%20416.954C284.105%20416.789%20284.144%20416.627%20284.214%20416.477C284.284%20416.327%20284.383%20416.193%20284.505%20416.081C284.627%20415.97%20284.77%20415.884%20284.925%20415.828C285.081%20415.772%20285.246%20415.748%20285.411%20415.756C285.576%20415.765%20285.738%20415.806%20285.887%20415.877C288.264%20416.985%20290.576%20418.018%20292.759%20418.948C293.024%20419.061%20293.242%20419.262%20293.376%20419.517C293.51%20419.772%20293.552%20420.066%20293.494%20420.348C293.436%20420.631%20293.283%20420.884%20293.06%20421.066C292.836%20421.249%20292.557%20421.348%20292.269%20421.348V421.348ZM370.549%20416.248C370.29%20416.248%20370.038%20416.168%20369.827%20416.018C369.616%20415.869%20369.456%20415.658%20369.37%20415.414C369.284%20415.17%20369.275%20414.906%20369.346%20414.657C369.416%20414.408%20369.562%20414.187%20369.763%20414.025C371.635%20412.515%20373.517%20410.859%20375.356%20409.102C375.596%20408.873%20375.917%20408.749%20376.248%20408.757C376.58%20408.764%20376.895%20408.904%20377.123%20409.143C377.352%20409.383%20377.477%20409.704%20377.469%20410.035C377.461%20410.367%20377.322%20410.682%20377.083%20410.911C375.193%20412.715%20373.258%20414.417%20371.333%20415.971C371.111%20416.15%20370.834%20416.249%20370.549%20416.249L370.549%20416.248ZM278.537%20414.976C278.345%20414.976%20278.155%20414.931%20277.983%20414.846C275.875%20413.801%20273.658%20412.68%20271.211%20411.418C271.065%20411.342%20270.935%20411.239%20270.829%20411.114C270.723%20410.989%20270.643%20410.844%20270.593%20410.687C270.543%20410.531%20270.524%20410.366%20270.538%20410.203C270.552%20410.039%20270.597%20409.88%20270.672%20409.734C270.748%20409.588%20270.851%20409.458%20270.976%20409.352C271.102%20409.246%20271.247%20409.166%20271.403%20409.116C271.559%20409.066%20271.724%20409.047%20271.888%20409.061C272.051%20409.074%20272.21%20409.12%20272.356%20409.195C274.793%20410.452%20276.996%20411.567%20279.093%20412.605C279.346%20412.731%20279.549%20412.938%20279.669%20413.193C279.789%20413.448%20279.82%20413.736%20279.755%20414.011C279.691%20414.286%20279.535%20414.53%20279.314%20414.706C279.093%20414.881%20278.819%20414.976%20278.537%20414.976ZM265.071%20408.053C264.868%20408.053%20264.668%20408.004%20264.489%20407.909C262.408%20406.812%20260.318%20405.706%20258.22%20404.591L257.795%20404.366C257.648%20404.29%20257.518%20404.186%20257.412%20404.059C257.305%20403.933%20257.225%20403.786%20257.176%20403.629C257.127%20403.471%20257.109%20403.305%20257.124%20403.141C257.14%20402.976%20257.187%20402.816%20257.265%20402.67C257.342%20402.524%20257.448%20402.395%20257.575%20402.29C257.703%20402.185%20257.85%20402.106%20258.009%20402.059C258.167%20402.011%20258.333%20401.995%20258.497%20402.012C258.662%20402.029%20258.821%20402.079%20258.966%20402.158L259.391%20402.383C261.487%20403.495%20263.575%20404.599%20265.655%20405.698C265.902%20405.828%20266.099%20406.037%20266.213%20406.292C266.327%20406.547%20266.353%20406.833%20266.286%20407.104C266.218%20407.376%20266.062%20407.616%20265.842%20407.788C265.622%20407.961%20265.351%20408.054%20265.071%20408.054L265.071%20408.053ZM381.49%20405.843C381.248%20405.843%20381.011%20405.772%20380.808%20405.64C380.605%20405.508%20380.445%20405.32%20380.347%20405.098C380.249%20404.877%20380.218%20404.632%20380.256%20404.393C380.295%20404.154%20380.402%20403.931%20380.565%20403.752C382.189%20401.966%20383.825%20400.052%20385.427%20398.062C385.636%20397.808%20385.937%20397.647%20386.264%20397.614C386.592%20397.58%20386.919%20397.677%20387.176%20397.884C387.432%20398.09%20387.596%20398.39%20387.633%20398.717C387.67%20399.044%20387.577%20399.372%20387.373%20399.631C385.74%20401.658%20384.072%20403.61%20382.415%20405.433C382.298%20405.563%20382.156%20405.666%20381.996%20405.737C381.837%20405.807%20381.665%20405.844%20381.49%20405.844V405.843ZM251.696%20400.978C251.494%20400.978%20251.295%20400.929%20251.116%20400.834C248.641%20399.532%20246.449%20398.392%20244.416%20397.347C244.121%20397.195%20243.898%20396.933%20243.796%20396.617C243.695%20396.301%20243.723%20395.958%20243.875%20395.663C244.026%20395.368%20244.289%20395.145%20244.605%20395.044C244.92%20394.942%20245.264%20394.97%20245.559%20395.122C247.598%20396.17%20249.797%20397.315%20252.279%20398.62C252.526%20398.75%20252.723%20398.96%20252.838%20399.215C252.952%20399.47%20252.978%20399.756%20252.911%20400.027C252.844%20400.298%20252.688%20400.539%20252.467%20400.712C252.247%20400.884%20251.976%20400.977%20251.696%20400.977L251.696%20400.978ZM390.987%20394.089C390.756%20394.088%20390.53%20394.025%20390.334%20393.904C390.138%20393.784%20389.978%20393.611%20389.874%20393.406C389.769%20393.201%20389.723%20392.971%20389.741%20392.741C389.759%20392.512%20389.84%20392.291%20389.976%20392.105C391.401%20390.14%20392.838%20388.063%20394.247%20385.933C394.43%20385.656%20394.716%20385.464%20395.04%20385.398C395.365%20385.331%20395.703%20385.397%20395.98%20385.58C396.256%20385.763%20396.449%20386.048%20396.515%20386.373C396.581%20386.698%20396.515%20387.036%20396.332%20387.312C394.904%20389.472%20393.446%20391.578%20392%20393.573C391.884%20393.733%20391.731%20393.863%20391.555%20393.953C391.379%20394.043%20391.184%20394.09%20390.987%20394.09V394.089ZM238.231%20394.073C238.039%20394.073%20237.849%20394.028%20237.677%20393.942C235.296%20392.763%20233.073%20391.69%20230.881%20390.662C230.585%20390.519%20230.358%20390.265%20230.248%20389.955C230.139%20389.645%20230.155%20389.304%20230.295%20389.006C230.435%20388.709%20230.686%20388.478%20230.995%20388.364C231.303%20388.251%20231.644%20388.263%20231.943%20388.399C234.151%20389.435%20236.389%20390.515%20238.787%20391.702C239.039%20391.828%20239.242%20392.035%20239.363%20392.29C239.483%20392.545%20239.513%20392.833%20239.449%20393.108C239.385%20393.383%20239.229%20393.627%20239.008%20393.802C238.787%20393.978%20238.513%20394.073%20238.231%20394.073ZM224.513%20387.653C224.341%20387.653%20224.171%20387.617%20224.013%20387.548C221.645%20386.515%20219.306%20385.539%20217.06%20384.647C216.908%20384.587%20216.769%20384.497%20216.651%20384.382C216.533%20384.268%20216.439%20384.131%20216.374%20383.981C216.309%20383.83%20216.274%20383.668%20216.272%20383.504C216.269%20383.34%20216.299%20383.177%20216.36%20383.024C216.42%20382.871%20216.51%20382.732%20216.625%20382.615C216.739%20382.497%20216.875%20382.403%20217.026%20382.338C217.177%20382.272%20217.339%20382.238%20217.503%20382.235C217.667%20382.233%20217.83%20382.263%20217.983%20382.323C220.254%20383.225%20222.62%20384.213%20225.013%20385.257C225.277%20385.372%20225.492%20385.574%20225.624%20385.829C225.756%20386.085%20225.796%20386.377%20225.737%20386.659C225.679%20386.94%20225.525%20387.192%20225.302%20387.373C225.079%20387.554%20224.801%20387.653%20224.513%20387.653ZM210.428%20382.078C210.287%20382.078%20210.147%20382.054%20210.014%20382.007C207.601%20381.16%20205.197%20380.378%20202.868%20379.682C202.711%20379.635%20202.565%20379.558%20202.437%20379.454C202.31%20379.351%20202.204%20379.223%20202.126%20379.079C202.048%20378.934%20201.999%20378.776%20201.983%20378.613C201.966%20378.449%20201.981%20378.284%20202.028%20378.127C202.075%20377.97%20202.153%20377.823%20202.256%20377.696C202.36%20377.569%20202.487%20377.463%20202.632%20377.385C202.776%20377.307%20202.935%20377.258%20203.098%20377.241C203.261%20377.224%20203.426%20377.24%20203.584%20377.287C205.95%20377.994%20208.392%20378.788%20210.842%20379.649C211.121%20379.746%20211.356%20379.939%20211.505%20380.194C211.655%20380.448%20211.71%20380.747%20211.66%20381.038C211.611%20381.329%20211.46%20381.593%20211.234%20381.783C211.009%20381.974%20210.723%20382.078%20210.428%20382.078ZM399.339%20381.489C399.117%20381.489%20398.9%20381.429%20398.708%20381.317C398.517%20381.205%20398.359%20381.044%20398.251%20380.851C398.142%20380.657%20398.087%20380.438%20398.091%20380.217C398.095%20379.995%20398.158%20379.778%20398.273%20379.589C399.542%20377.507%20400.823%20375.325%20402.08%20373.103C402.159%20372.956%20402.267%20372.827%20402.396%20372.722C402.526%20372.618%20402.675%20372.54%20402.835%20372.494C402.994%20372.448%20403.162%20372.435%20403.327%20372.454C403.492%20372.473%20403.652%20372.526%20403.797%20372.608C403.942%20372.69%20404.068%20372.8%20404.17%20372.931C404.272%20373.063%20404.346%20373.214%20404.389%20373.375C404.432%20373.535%20404.442%20373.703%20404.419%20373.868C404.396%20374.033%20404.34%20374.191%20404.255%20374.334C402.984%20376.579%20401.69%20378.784%20400.407%20380.89C400.296%20381.073%20400.139%20381.225%20399.952%20381.33C399.765%20381.435%20399.554%20381.49%20399.339%20381.49V381.489ZM143.631%20378.645C143.331%20378.645%20143.042%20378.537%20142.815%20378.342C142.588%20378.146%20142.439%20377.876%20142.395%20377.579C142.35%20377.283%20142.414%20376.98%20142.574%20376.727C142.734%20376.474%20142.98%20376.286%20143.267%20376.199C145.714%20375.452%20148.208%20374.799%20150.681%20374.259C151.005%20374.188%20151.343%20374.249%20151.623%20374.428C151.902%20374.607%20152.098%20374.889%20152.169%20375.213C152.24%20375.537%20152.179%20375.876%20152%20376.155C151.821%20376.434%20151.538%20376.63%20151.214%20376.701C148.808%20377.226%20146.379%20377.863%20143.997%20378.59C143.878%20378.626%20143.755%20378.645%20143.631%20378.645ZM195.918%20377.764C195.82%20377.764%20195.721%20377.753%20195.626%20377.73C193.162%20377.138%20190.696%20376.625%20188.297%20376.205C187.974%20376.143%20187.689%20375.957%20187.502%20375.687C187.316%20375.417%20187.243%20375.084%20187.299%20374.761C187.356%20374.438%20187.538%20374.149%20187.805%20373.959C188.072%20373.768%20188.404%20373.691%20188.728%20373.742C191.178%20374.172%20193.695%20374.695%20196.209%20375.298C196.507%20375.369%20196.769%20375.547%20196.944%20375.798C197.12%20376.049%20197.197%20376.356%20197.161%20376.661C197.125%20376.965%20196.979%20377.245%20196.75%20377.449C196.521%20377.652%20196.225%20377.764%20195.918%20377.764V377.764ZM158.396%20375.423C158.078%20375.423%20157.773%20375.302%20157.541%20375.085C157.31%20374.868%20157.169%20374.571%20157.149%20374.254C157.128%20373.938%20157.228%20373.625%20157.43%20373.38C157.631%20373.135%20157.918%20372.975%20158.232%20372.933C160.747%20372.599%20163.316%20372.365%20165.867%20372.237C166.031%20372.229%20166.195%20372.253%20166.35%20372.308C166.504%20372.363%20166.647%20372.448%20166.768%20372.558C166.89%20372.669%20166.989%20372.802%20167.059%20372.95C167.13%20373.098%20167.17%20373.259%20167.178%20373.423C167.186%20373.587%20167.162%20373.751%20167.107%20373.906C167.052%20374.06%20166.967%20374.203%20166.857%20374.324C166.747%20374.446%20166.614%20374.545%20166.465%20374.615C166.317%20374.686%20166.156%20374.726%20165.992%20374.734C163.509%20374.859%20161.009%20375.086%20158.562%20375.412C158.507%20375.419%20158.451%20375.423%20158.396%20375.423ZM181.034%20375.173C180.99%20375.173%20180.946%20375.171%20180.902%20375.166C178.408%20374.904%20175.902%20374.734%20173.455%20374.661C173.123%20374.651%20172.809%20374.51%20172.582%20374.269C172.355%20374.027%20172.232%20373.705%20172.242%20373.374C172.252%20373.042%20172.394%20372.728%20172.635%20372.501C172.876%20372.274%20173.198%20372.151%20173.53%20372.161C176.04%20372.236%20178.608%20372.411%20181.163%20372.679C181.481%20372.713%20181.774%20372.867%20181.982%20373.11C182.189%20373.354%20182.296%20373.667%20182.279%20373.986C182.263%20374.306%20182.125%20374.607%20181.893%20374.827C181.661%20375.048%20181.354%20375.171%20181.034%20375.172L181.034%20375.173ZM406.797%20368.336C406.582%20368.336%20406.37%20368.28%20406.182%20368.174C405.995%20368.067%20405.838%20367.915%20405.727%20367.73C405.616%20367.545%20405.554%20367.335%20405.549%20367.12C405.543%20366.904%20405.593%20366.691%20405.694%20366.5C406.84%20364.335%20407.998%20362.08%20409.134%20359.8C409.207%20359.653%20409.308%20359.522%20409.432%20359.415C409.556%20359.307%20409.7%20359.225%20409.855%20359.173C410.011%20359.12%20410.176%20359.099%20410.339%20359.111C410.503%20359.122%20410.663%20359.166%20410.81%20359.239C410.957%20359.312%20411.088%20359.414%20411.196%20359.537C411.303%20359.661%20411.386%20359.805%20411.438%20359.961C411.49%20360.116%20411.511%20360.281%20411.499%20360.445C411.488%20360.608%20411.445%20360.768%20411.371%20360.915C410.226%20363.214%20409.059%20365.486%20407.903%20367.671C407.797%20367.872%20407.637%20368.04%20407.443%20368.157C407.248%20368.274%20407.025%20368.336%20406.797%20368.335V368.336ZM413.547%20354.801C413.337%20354.801%20413.13%20354.748%20412.945%20354.646C412.761%20354.545%20412.605%20354.398%20412.492%20354.22C412.379%20354.042%20412.314%20353.839%20412.3%20353.629C412.287%20353.419%20412.328%20353.209%20412.417%20353.018C413.465%20350.795%20414.523%20348.49%20415.562%20346.167C415.629%20346.017%20415.725%20345.882%20415.844%20345.769C415.963%20345.656%20416.103%20345.568%20416.257%20345.509C416.41%20345.451%20416.574%20345.423%20416.738%20345.428C416.902%20345.432%20417.063%20345.469%20417.213%20345.536C417.363%20345.603%20417.498%20345.699%20417.611%20345.818C417.724%20345.938%20417.812%20346.078%20417.871%20346.231C417.929%20346.385%20417.957%20346.548%20417.952%20346.712C417.948%20346.876%20417.911%20347.038%20417.844%20347.188C416.798%20349.526%20415.733%20351.846%20414.679%20354.084C414.578%20354.298%20414.418%20354.479%20414.218%20354.606C414.018%20354.733%20413.786%20354.8%20413.549%20354.8L413.547%20354.801ZM419.729%20340.996C419.522%20340.996%20419.318%20340.944%20419.136%20340.847C418.954%20340.749%20418.8%20340.607%20418.686%20340.435C418.572%20340.262%20418.502%20340.064%20418.484%20339.859C418.465%20339.653%20418.498%20339.446%20418.579%20339.255C419.544%20336.992%20420.52%20334.649%20421.481%20332.292C421.541%20332.138%20421.632%20331.997%20421.747%20331.878C421.862%20331.759%20422%20331.664%20422.152%20331.599C422.304%20331.534%20422.468%20331.499%20422.634%20331.498C422.799%20331.496%20422.964%20331.527%20423.117%20331.59C423.271%20331.653%20423.41%20331.745%20423.527%20331.862C423.645%20331.979%20423.738%20332.118%20423.801%20332.271C423.864%20332.424%20423.896%20332.588%20423.895%20332.754C423.894%20332.92%20423.861%20333.083%20423.796%20333.236C422.83%20335.605%20421.848%20337.961%20420.878%20340.236C420.782%20340.461%20420.622%20340.653%20420.418%20340.788C420.214%20340.923%20419.974%20340.995%20419.729%20340.995L419.729%20340.996ZM425.443%20326.989C425.239%20326.989%20425.039%20326.94%20424.859%20326.845C424.679%20326.75%20424.525%20326.612%20424.411%20326.444C424.296%20326.276%20424.224%20326.083%20424.201%20325.88C424.178%20325.678%20424.205%20325.474%20424.279%20325.284C425.176%20322.988%20426.085%20320.617%20426.979%20318.236C427.095%20317.926%20427.331%20317.675%20427.633%20317.538C427.934%20317.401%20428.278%20317.389%20428.589%20317.506C428.899%20317.622%20429.15%20317.858%20429.287%20318.159C429.424%20318.461%20429.436%20318.805%20429.319%20319.116C428.419%20321.507%20427.508%20323.889%20426.606%20326.194C426.515%20326.428%20426.355%20326.629%20426.148%20326.771C425.94%20326.913%20425.695%20326.989%20425.443%20326.989L425.443%20326.989ZM430.768%20312.829C430.567%20312.829%20430.369%20312.781%20430.191%20312.688C430.013%20312.596%20429.86%20312.462%20429.745%20312.297C429.63%20312.133%20429.556%20311.943%20429.529%20311.744C429.503%20311.546%20429.524%20311.343%20429.593%20311.154C430.434%20308.832%20431.285%20306.438%20432.124%20304.04C432.176%20303.884%20432.26%20303.739%20432.369%20303.614C432.478%20303.49%20432.61%20303.388%20432.759%20303.316C432.908%20303.243%20433.069%20303.2%20433.234%20303.191C433.399%20303.181%20433.565%20303.204%20433.721%20303.258C433.877%20303.313%20434.021%20303.398%20434.144%20303.509C434.267%20303.619%20434.367%20303.753%20434.438%20303.903C434.509%20304.052%20434.549%20304.214%20434.557%20304.379C434.565%20304.545%20434.54%20304.71%20434.483%20304.865C433.642%20307.272%20432.787%20309.674%20431.943%20312.005C431.856%20312.247%20431.696%20312.455%20431.486%20312.603C431.276%20312.75%20431.025%20312.829%20430.769%20312.829L430.768%20312.829ZM435.754%20298.544C435.555%20298.544%20435.36%20298.497%20435.184%20298.407C435.007%20298.316%20434.855%20298.185%20434.739%20298.024C434.623%20297.864%20434.547%20297.678%20434.518%20297.482C434.488%20297.286%20434.505%20297.085%20434.568%20296.897C435.375%20294.486%20436.163%20292.072%20436.911%20289.722C437.012%20289.406%20437.234%20289.144%20437.529%20288.991C437.823%20288.839%20438.166%20288.81%20438.482%20288.911C438.798%20289.011%20439.061%20289.233%20439.213%20289.528C439.365%20289.822%20439.394%20290.165%20439.294%20290.481C438.541%20292.843%20437.749%20295.268%20436.939%20297.69C436.856%20297.939%20436.697%20298.155%20436.484%20298.308C436.272%20298.461%20436.017%20298.544%20435.755%20298.544L435.754%20298.544ZM440.343%20284.125C440.148%20284.125%20439.955%20284.08%20439.781%20283.992C439.607%20283.904%20439.456%20283.777%20439.339%20283.621C439.223%20283.464%20439.145%20283.283%20439.111%20283.091C439.078%20282.898%20439.089%20282.701%20439.146%20282.514C439.876%20280.089%20440.588%20277.653%20441.261%20275.272C441.351%20274.953%20441.564%20274.683%20441.854%20274.521C442.143%20274.359%20442.485%20274.319%20442.804%20274.409C443.123%20274.5%20443.393%20274.713%20443.555%20275.002C443.717%20275.292%20443.757%20275.633%20443.667%20275.952C442.99%20278.347%20442.274%20280.797%20441.539%20283.235C441.462%20283.492%20441.304%20283.718%20441.089%20283.878C440.873%20284.038%20440.612%20284.125%20440.344%20284.125L440.343%20284.125ZM444.456%20269.563C444.265%20269.563%20444.076%20269.52%20443.904%20269.435C443.732%20269.351%20443.582%20269.228%20443.465%20269.077C443.349%20268.925%20443.268%20268.749%20443.23%20268.562C443.192%20268.374%20443.198%20268.18%20443.246%20267.995C443.891%20265.54%20444.512%20263.08%20445.089%20260.684C445.169%20260.364%20445.373%20260.089%20445.655%20259.918C445.936%20259.747%20446.274%20259.695%20446.595%20259.772C446.915%20259.849%20447.192%20260.05%20447.365%20260.331C447.539%20260.611%20447.594%20260.949%20447.52%20261.27C446.938%20263.683%20446.314%20266.159%20445.664%20268.631C445.594%20268.897%20445.438%20269.134%20445.219%20269.302C445.001%20269.471%20444.733%20269.563%20444.457%20269.563L444.456%20269.563ZM447.999%20254.852C447.812%20254.853%20447.628%20254.811%20447.459%20254.73C447.29%20254.65%20447.142%20254.533%20447.025%20254.387C446.907%20254.242%20446.824%20254.072%20446.781%20253.89C446.738%20253.708%20446.737%20253.519%20446.776%20253.336C447.317%20250.854%20447.826%20248.371%20448.29%20245.955C448.32%20245.793%20448.382%20245.638%20448.472%20245.5C448.562%20245.361%20448.678%20245.242%20448.814%20245.149C448.951%20245.056%20449.104%20244.991%20449.265%20244.957C449.427%20244.923%20449.594%20244.922%20449.756%20244.953C449.918%20244.984%20450.072%20245.047%20450.21%20245.138C450.347%20245.23%20450.465%20245.347%20450.557%20245.484C450.65%20245.621%20450.713%20245.775%20450.746%20245.937C450.778%20246.098%20450.778%20246.265%20450.745%20246.427C450.278%20248.862%20449.764%20251.366%20449.22%20253.868C449.16%20254.147%20449.005%20254.397%20448.783%20254.576C448.561%20254.755%20448.284%20254.852%20447.999%20254.852ZM450.847%20239.993C450.666%20239.993%20450.487%20239.953%20450.322%20239.877C450.158%20239.801%20450.012%20239.69%20449.894%20239.552C449.777%20239.414%20449.691%20239.252%20449.642%20239.077C449.593%20238.902%20449.583%20238.719%20449.612%20238.54C450.025%20236.026%20450.398%20233.521%20450.721%20231.094C450.741%20230.93%20450.793%20230.772%20450.875%20230.628C450.956%20230.484%20451.066%20230.358%20451.196%20230.257C451.327%20230.156%20451.477%20230.081%20451.636%20230.038C451.796%20229.995%20451.962%20229.985%20452.126%20230.006C452.29%20230.028%20452.448%20230.082%20452.591%20230.166C452.734%20230.249%20452.859%20230.36%20452.958%20230.491C453.058%20230.623%20453.131%20230.774%20453.172%20230.934C453.213%20231.094%20453.222%20231.261%20453.199%20231.424C452.874%20233.876%20452.496%20236.406%20452.079%20238.945C452.032%20239.237%20451.882%20239.502%20451.656%20239.694C451.431%20239.886%20451.145%20239.992%20450.849%20239.993H450.847ZM452.834%20224.995C452.793%20224.995%20452.751%20224.992%20452.709%20224.988C452.545%20224.972%20452.387%20224.924%20452.242%20224.847C452.097%20224.769%20451.969%20224.664%20451.865%20224.537C451.761%20224.41%20451.683%20224.264%20451.635%20224.107C451.587%20223.95%20451.571%20223.785%20451.587%20223.622C451.837%20221.09%20452.037%20218.569%20452.185%20216.128C452.204%20215.797%20452.355%20215.488%20452.603%20215.268C452.851%20215.048%20453.176%20214.935%20453.507%20214.955C453.838%20214.975%20454.148%20215.126%20454.368%20215.374C454.588%20215.622%20454.7%20215.947%20454.68%20216.278C454.532%20218.751%20454.328%20221.303%20454.075%20223.867C454.045%20224.176%20453.901%20224.462%20453.672%20224.67C453.443%20224.878%20453.144%20224.994%20452.835%20224.995H452.834ZM453.727%20209.895H453.706C453.542%20209.892%20453.38%20209.857%20453.229%20209.792C453.079%20209.726%20452.942%20209.632%20452.828%20209.514C452.714%20209.396%20452.624%20209.257%20452.564%20209.104C452.504%20208.952%20452.474%20208.789%20452.477%20208.624C452.491%20207.743%20452.498%20206.863%20452.498%20206.009C452.498%20204.368%20452.472%20202.724%20452.419%20201.121C452.412%20200.956%20452.437%20200.791%20452.494%20200.636C452.551%20200.481%20452.638%20200.339%20452.751%20200.218C452.863%20200.096%20452.998%20199.999%20453.148%20199.93C453.299%20199.861%20453.461%20199.823%20453.626%20199.818C453.792%20199.812%20453.956%20199.84%20454.111%20199.898C454.265%20199.957%20454.407%20200.045%20454.527%20200.159C454.647%20200.272%20454.743%20200.409%20454.81%20200.56C454.877%20200.711%20454.914%20200.874%20454.917%20201.039C454.971%20202.669%20454.998%20204.341%20454.998%20206.009C454.998%20206.877%20454.991%20207.77%20454.976%20208.665C454.971%20208.992%20454.837%20209.305%20454.603%20209.534C454.37%20209.764%20454.055%20209.893%20453.728%20209.894L453.727%20209.895ZM453.207%20194.787C452.895%20194.786%20452.595%20194.669%20452.365%20194.459C452.135%20194.248%20451.992%20193.959%20451.964%20193.649C451.736%20191.118%20451.43%20188.621%20451.056%20186.229C451.029%20186.066%20451.033%20185.899%20451.071%20185.737C451.108%20185.576%20451.177%20185.424%20451.274%20185.289C451.371%20185.155%20451.493%20185.041%20451.634%20184.954C451.775%20184.867%20451.932%20184.81%20452.095%20184.784C452.259%20184.758%20452.426%20184.766%20452.587%20184.805C452.748%20184.845%20452.899%20184.916%20453.032%20185.014C453.165%20185.113%20453.277%20185.237%20453.362%20185.379C453.447%20185.521%20453.503%20185.679%20453.526%20185.843C453.909%20188.288%20454.221%20190.839%20454.454%20193.424C454.468%20193.588%20454.451%20193.752%20454.402%20193.909C454.353%20194.066%20454.274%20194.211%20454.168%20194.337C454.063%20194.463%20453.934%20194.567%20453.789%20194.644C453.643%20194.72%20453.484%20194.767%20453.321%20194.781C453.284%20194.784%20453.246%20194.786%20453.208%20194.786L453.207%20194.787ZM450.85%20179.87C450.568%20179.869%20450.294%20179.774%20450.074%20179.599C449.853%20179.424%20449.698%20179.179%20449.634%20178.905C449.057%20176.444%20448.384%20174.03%20447.63%20171.734C447.574%20171.577%20447.551%20171.41%20447.561%20171.244C447.571%20171.078%20447.614%20170.916%20447.687%20170.766C447.761%20170.617%20447.864%20170.484%20447.989%20170.375C448.115%20170.266%20448.261%20170.183%20448.419%20170.131C448.577%20170.079%20448.744%20170.059%20448.91%20170.073C449.076%20170.086%20449.238%20170.133%20449.385%20170.21C449.533%20170.286%20449.664%20170.392%20449.77%20170.52C449.876%20170.648%20449.956%20170.796%20450.005%20170.955C450.78%20173.321%20451.474%20175.803%20452.067%20178.334C452.11%20178.518%20452.111%20178.709%20452.07%20178.893C452.029%20179.076%20451.947%20179.249%20451.829%20179.396C451.712%20179.544%20451.563%20179.663%20451.393%20179.745C451.224%20179.827%20451.038%20179.87%20450.849%20179.87H450.85ZM446.125%20165.539C445.882%20165.54%20445.644%20165.469%20445.441%20165.336C445.238%20165.204%20445.078%20165.015%20444.98%20164.793C443.985%20162.528%20442.867%20160.32%20441.631%20158.177C441.473%20157.891%20441.434%20157.554%20441.522%20157.238C441.61%20156.923%20441.817%20156.655%20442.101%20156.491C442.384%20156.328%20442.72%20156.282%20443.037%20156.363C443.354%20156.445%20443.627%20156.647%20443.796%20156.927C445.077%20159.149%20446.236%20161.439%20447.268%20163.786C447.352%20163.977%20447.387%20164.185%20447.37%20164.392C447.353%20164.599%20447.285%20164.799%20447.171%20164.973C447.058%20165.147%20446.903%20165.29%20446.72%20165.39C446.537%20165.489%20446.333%20165.541%20446.125%20165.541V165.539ZM438.558%20152.498C438.364%20152.498%20438.172%20152.453%20437.999%20152.366C437.825%20152.279%20437.673%20152.153%20437.557%20151.998C436.077%20150.023%20434.477%20148.141%20432.766%20146.364C432.536%20146.125%20432.41%20145.805%20432.416%20145.473C432.422%20145.142%20432.559%20144.826%20432.798%20144.596C433.037%20144.366%20433.357%20144.24%20433.689%20144.246C434.02%20144.252%20434.336%20144.39%20434.566%20144.629C436.349%20146.481%20438.016%20148.441%20439.558%20150.499C439.697%20150.685%20439.782%20150.906%20439.803%20151.137C439.824%20151.368%20439.78%20151.601%20439.676%20151.808C439.572%20152.016%20439.413%20152.19%20439.215%20152.312C439.018%20152.434%20438.79%20152.499%20438.558%20152.499L438.558%20152.498ZM428.094%20141.645C427.809%20141.645%20427.531%20141.547%20427.309%20141.367C425.386%20139.816%20423.372%20138.38%20421.279%20137.067C420.998%20136.891%20420.799%20136.61%20420.725%20136.287C420.651%20135.964%20420.708%20135.625%20420.885%20135.344C421.061%20135.063%20421.341%20134.864%20421.665%20134.79C421.988%20134.716%20422.327%20134.773%20422.608%20134.95C424.785%20136.315%20426.88%20137.808%20428.881%20139.422C429.082%20139.585%20429.227%20139.805%20429.298%20140.054C429.368%20140.303%20429.36%20140.568%20429.273%20140.811C429.187%20141.055%20429.027%20141.266%20428.816%20141.415C428.605%20141.564%20428.353%20141.645%20428.094%20141.644V141.645ZM289.599%20139.129C289.302%20139.129%20289.015%20139.023%20288.789%20138.831C288.563%20138.639%20288.412%20138.373%20288.365%20138.08C288.317%20137.787%20288.375%20137.486%20288.528%20137.232C288.682%20136.978%20288.921%20136.787%20289.202%20136.693C291.561%20135.902%20293.996%20135.12%20296.44%20134.368C296.597%20134.317%20296.763%20134.298%20296.929%20134.312C297.094%20134.325%20297.254%20134.372%20297.401%20134.448C297.549%20134.524%20297.679%20134.629%20297.785%20134.757C297.891%20134.884%20297.971%20135.031%20298.02%20135.189C298.068%20135.348%20298.085%20135.514%20298.069%20135.679C298.053%20135.844%20298.004%20136.004%20297.926%20136.15C297.847%20136.296%20297.74%20136.425%20297.611%20136.529C297.483%20136.633%20297.334%20136.711%20297.175%20136.757C294.75%20137.504%20292.336%20138.28%20289.997%20139.064C289.868%20139.107%20289.734%20139.129%20289.599%20139.129ZM304.068%20134.669C303.766%20134.669%20303.474%20134.559%20303.246%20134.361C303.019%20134.163%20302.87%20133.889%20302.829%20133.59C302.788%20133.291%20302.856%20132.987%20303.021%20132.734C303.187%20132.481%20303.438%20132.297%20303.729%20132.215C306.164%20131.528%20308.633%20130.862%20311.067%20130.237C311.386%20130.158%20311.724%20130.209%20312.007%20130.378C312.289%20130.547%20312.494%20130.821%20312.576%20131.139C312.658%20131.458%20312.611%20131.797%20312.444%20132.081C312.278%20132.365%20312.007%20132.573%20311.689%20132.658C309.274%20133.278%20306.825%20133.939%20304.408%20134.621C304.298%20134.653%20304.183%20134.669%20304.068%20134.669H304.068ZM415.327%20133.605C415.139%20133.604%20414.953%20133.562%20414.784%20133.48C412.604%20132.425%20410.299%20131.451%20407.934%20130.583C407.625%20130.468%20407.374%20130.234%20407.236%20129.934C407.099%20129.634%20407.085%20129.292%20407.199%20128.982C407.312%20128.672%20407.544%20128.42%20407.843%20128.28C408.142%20128.14%20408.484%20128.125%20408.795%20128.236C411.237%20129.132%20413.618%20130.139%20415.872%20131.229C416.127%20131.352%20416.332%20131.558%20416.454%20131.813C416.577%20132.069%20416.609%20132.358%20416.546%20132.634C416.482%20132.909%20416.327%20133.156%20416.106%20133.332C415.884%20133.508%20415.61%20133.604%20415.327%20133.604L415.327%20133.605ZM318.731%20130.905C318.423%20130.905%20318.127%20130.792%20317.898%20130.587C317.669%20130.382%20317.523%20130.101%20317.489%20129.796C317.454%20129.49%20317.533%20129.183%20317.71%20128.932C317.888%20128.682%20318.151%20128.505%20318.451%20128.436C320.931%20127.864%20323.431%20127.321%20325.879%20126.823C326.204%20126.757%20326.542%20126.822%20326.818%20127.005C327.095%20127.188%20327.287%20127.473%20327.353%20127.798C327.419%20128.123%20327.354%20128.461%20327.171%20128.738C326.988%20129.014%20326.702%20129.207%20326.378%20129.273C323.95%20129.767%20321.472%20130.305%20319.013%20130.873C318.92%20130.894%20318.826%20130.904%20318.731%20130.904L318.731%20130.905ZM401.156%20128.376C401.045%20128.376%20400.935%20128.361%20400.828%20128.332C398.489%20127.699%20396.04%20127.138%20393.548%20126.663C393.385%20126.634%20393.229%20126.574%20393.09%20126.484C392.951%20126.395%20392.831%20126.278%20392.737%20126.142C392.643%20126.006%20392.577%20125.852%20392.543%20125.69C392.509%20125.529%20392.507%20125.361%20392.538%20125.199C392.569%20125.036%20392.632%20124.882%20392.723%20124.744C392.814%20124.606%20392.932%20124.487%20393.069%20124.395C393.207%20124.303%20393.361%20124.238%20393.523%20124.206C393.686%20124.174%20393.853%20124.175%20394.015%20124.208C396.569%20124.694%20399.081%20125.269%20401.482%20125.919C401.774%20125.998%20402.028%20126.18%20402.197%20126.432C402.365%20126.685%20402.436%20126.989%20402.396%20127.29C402.356%20127.59%20402.208%20127.866%20401.98%20128.066C401.753%20128.266%20401.46%20128.376%20401.157%20128.376H401.156ZM333.563%20127.89C333.25%20127.89%20332.949%20127.772%20332.718%20127.561C332.488%20127.349%20332.345%20127.059%20332.318%20126.747C332.291%20126.435%20332.382%20126.125%20332.573%20125.877C332.764%20125.629%20333.041%20125.462%20333.349%20125.408C335.869%20124.968%20338.396%20124.565%20340.861%20124.21C341.189%20124.163%20341.523%20124.248%20341.788%20124.447C342.053%20124.646%20342.229%20124.942%20342.276%20125.27C342.324%20125.598%20342.238%20125.932%20342.04%20126.197C341.841%20126.463%20341.545%20126.638%20341.217%20126.685C338.777%20127.037%20336.274%20127.435%20333.78%20127.872C333.708%20127.883%20333.636%20127.889%20333.564%20127.889L333.563%20127.89ZM348.54%20125.742C348.22%20125.742%20347.913%20125.619%20347.681%20125.399C347.449%20125.18%20347.31%20124.879%20347.292%20124.56C347.275%20124.241%20347.381%20123.927%20347.587%20123.684C347.794%20123.44%20348.086%20123.285%20348.404%20123.25C350.959%20122.967%20353.509%20122.731%20355.982%20122.55C356.313%20122.525%20356.64%20122.633%20356.891%20122.85C357.142%20123.066%20357.297%20123.374%20357.321%20123.704C357.346%20124.035%20357.238%20124.362%20357.021%20124.613C356.805%20124.864%20356.497%20125.018%20356.167%20125.043C353.723%20125.223%20351.204%20125.456%20348.678%20125.735C348.633%20125.74%20348.587%20125.742%20348.541%20125.741L348.54%20125.742ZM386.306%20125.525C386.255%20125.525%20386.204%20125.522%20386.153%20125.516C383.739%20125.221%20381.228%20124.991%20378.688%20124.83C378.524%20124.82%20378.363%20124.778%20378.215%20124.706C378.067%20124.634%20377.935%20124.534%20377.826%20124.41C377.717%20124.287%20377.634%20124.144%20377.58%20123.988C377.527%20123.832%20377.505%20123.668%20377.515%20123.503C377.525%20123.339%20377.568%20123.179%20377.641%20123.031C377.713%20122.883%20377.814%20122.751%20377.938%20122.643C378.062%20122.534%20378.205%20122.451%20378.361%20122.398C378.517%20122.346%20378.682%20122.324%20378.846%20122.335C381.433%20122.499%20383.993%20122.735%20386.456%20123.035C386.772%20123.073%20387.062%20123.231%20387.266%20123.475C387.47%20123.72%20387.573%20124.033%20387.554%20124.351C387.535%20124.669%20387.395%20124.968%20387.163%20125.186C386.931%20125.405%20386.624%20125.526%20386.306%20125.526V125.525ZM363.631%20124.637C363.299%20124.643%20362.979%20124.516%20362.741%20124.286C362.503%20124.055%20362.366%20123.739%20362.36%20123.408C362.355%20123.076%20362.481%20122.756%20362.712%20122.518C362.943%20122.28%20363.258%20122.143%20363.59%20122.137C365.508%20122.073%20367.425%20122.041%20369.286%20122.041C369.941%20122.035%20370.574%20122.044%20371.217%20122.052C371.548%20122.054%20371.866%20122.188%20372.099%20122.423C372.332%20122.659%20372.461%20122.978%20372.459%20123.31C372.458%20123.641%20372.324%20123.958%20372.088%20124.191C371.852%20124.424%20371.534%20124.554%20371.202%20124.552H371.187C370.557%20124.545%20369.927%20124.541%20369.297%20124.541H369.286C367.452%20124.541%20365.564%20124.573%20363.673%20124.636C363.661%20124.636%20363.646%20124.636%20363.632%20124.636L363.631%20124.637Z'%20fill='%237C878F'/%3e%3cpath%20d='M132.816%20382.663C132.529%20382.663%20132.25%20382.564%20132.027%20382.384C131.804%20382.203%20131.65%20381.951%20131.591%20381.67C131.532%20381.389%20131.572%20381.096%20131.703%20380.84C131.835%20380.585%20132.05%20380.383%20132.313%20380.268C133.472%20379.76%20134.651%20379.268%20135.818%20378.807C135.97%20378.747%20136.133%20378.717%20136.298%20378.72C136.462%20378.723%20136.624%20378.758%20136.774%20378.823C136.925%20378.888%20137.061%20378.982%20137.175%20379.1C137.29%20379.218%20137.379%20379.358%20137.44%20379.51C137.5%20379.663%20137.53%20379.826%20137.527%20379.99C137.524%20380.154%20137.489%20380.316%20137.424%20380.467C137.359%20380.617%20137.265%20380.754%20137.147%20380.868C137.029%20380.982%20136.889%20381.072%20136.737%20381.132C135.599%20381.582%20134.448%20382.062%20133.317%20382.557C133.159%20382.627%20132.988%20382.663%20132.816%20382.663Z'%20fill='%237C878F'/%3e%3cpath%20d='M118.332%20383.928C120.235%20383.448%20121.081%20380.296%20120.221%20376.888C119.361%20373.479%20117.121%20371.106%20115.217%20371.586C113.314%20372.067%20112.469%20375.219%20113.329%20378.627C114.189%20382.035%20116.429%20384.408%20118.332%20383.928Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M125.547%20402.058C127.381%20401.359%20127.853%20398.13%20126.6%20394.845C125.348%20391.561%20122.846%20389.466%20121.012%20390.165C119.178%20390.864%20118.707%20394.094%20119.959%20397.378C121.211%20400.662%20123.713%20402.758%20125.547%20402.058Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M119.177%20389.91C120.629%20389.91%20121.805%20388.733%20121.805%20387.282C121.805%20385.83%20120.629%20384.653%20119.177%20384.653C117.726%20384.653%20116.549%20385.83%20116.549%20387.282C116.549%20388.733%20117.726%20389.91%20119.177%20389.91Z'%20fill='%237C878F'/%3e%3c/svg%3e", nW = "data:image/svg+xml,%3csvg%20width='500'%20height='500'%20viewBox='0%200%20500%20500'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M250%20500C388.071%20500%20500%20388.071%20500%20250C500%20111.929%20388.071%200%20250%200C111.929%200%200%20111.929%200%20250C0%20388.071%20111.929%20500%20250%20500Z'%20fill='%23E3E8EB'/%3e%3cpath%20d='M400%20500H100V176.667C114.14%20176.651%20127.696%20171.027%20137.695%20161.028C147.693%20151.03%20153.317%20137.474%20153.333%20123.333H346.667C346.652%20130.338%20348.026%20137.276%20350.71%20143.746C353.394%20150.216%20357.334%20156.09%20362.303%20161.027C367.24%20165.997%20373.114%20169.939%20379.585%20172.623C386.056%20175.308%20392.995%20176.682%20400%20176.667V500Z'%20fill='white'/%3e%3cpath%20d='M250%20340C294.183%20340%20330%20304.183%20330%20260C330%20215.818%20294.183%20180%20250%20180C205.817%20180%20170%20215.818%20170%20260C170%20304.183%20205.817%20340%20250%20340Z'%20fill='%236C7378'/%3e%3cpath%20d='M278.284%20297.713L250%20269.429L221.716%20297.713L212.288%20288.285L240.572%20260.001L212.288%20231.716L221.716%20222.288L250%20250.572L278.284%20222.288L287.712%20231.716L259.428%20260.001L287.712%20288.285L278.284%20297.713Z'%20fill='white'/%3e%3cpath%20d='M293.331%20360H206.664C201.141%20360%20196.664%20364.477%20196.664%20370C196.664%20375.523%20201.141%20380%20206.664%20380H293.331C298.854%20380%20303.331%20375.523%20303.331%20370C303.331%20364.477%20298.854%20360%20293.331%20360Z'%20fill='%237C878F'/%3e%3cpath%20d='M323.335%20400H176.668C171.145%20400%20166.668%20404.477%20166.668%20410C166.668%20415.523%20171.145%20420%20176.668%20420H323.335C328.857%20420%20333.335%20415.523%20333.335%20410C333.335%20404.477%20328.857%20400%20323.335%20400Z'%20fill='%237C878F'/%3e%3c/svg%3e", rW = "data:image/svg+xml,%3csvg%20width='500'%20height='500'%20viewBox='0%200%20500%20500'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M326.84%2087.0503C326.84%2087.0503%20269.765%20159.346%20178.446%20116.223C87.1263%2073.0998%20-4.19322%20189.786%2074.443%20260.812C153.079%20331.838%2076.1278%20370.867%20129.55%20414.396C190.268%20463.871%20243.13%20363.546%20291.326%20386.376C397.698%20436.762%20476.501%20416.816%20458.745%20358.473C427.576%20256.059%20387.72%20249.398%20418.159%20196.127C448.598%20142.857%20381.418%2032.0968%20326.84%2087.0503Z'%20fill='%23E3E8EB'/%3e%3cpath%20d='M251.985%20241.581V393.255L134.223%20342.39L134.784%20191.264L251.985%20241.581Z'%20fill='%237C878F'/%3e%3cpath%20d='M251.986%20241.671V393.346L369.176%20344.238V191.748L251.986%20241.671Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M251.985%20241.581L369.748%20192.256L252.91%20140.465L134.223%20191.023L251.985%20241.581Z'%20fill='%237C878F'/%3e%3cpath%20d='M102.063%20218.08L220.576%20275.605C220.894%20275.76%20221.254%20275.805%20221.602%20275.735C221.949%20275.665%20222.263%20275.483%20222.496%20275.217L251.985%20241.581L134.222%20191.023L101.799%20215.333C101.577%20215.5%20101.402%20215.72%20101.29%20215.974C101.178%20216.227%20101.133%20216.505%20101.16%20216.781C101.186%20217.057%20101.283%20217.321%20101.441%20217.549C101.599%20217.776%20101.813%20217.959%20102.063%20218.08Z'%20fill='%236C7378'/%3e%3cpath%20d='M369.747%20192.256L402.453%20221.825C402.653%20222.005%20402.804%20222.233%20402.894%20222.486C402.984%20222.74%20403.008%20223.012%20402.966%20223.278C402.924%20223.544%20402.816%20223.794%20402.652%20224.008C402.489%20224.221%20402.274%20224.391%20402.028%20224.5L284.977%20276.74C284.664%20276.88%20284.316%20276.916%20283.981%20276.845C283.646%20276.774%20283.343%20276.598%20283.114%20276.343L251.984%20241.581L369.747%20192.256Z'%20fill='%236C7378'/%3e%3cpath%20d='M252.908%20140.465L370.074%20192.256L386.924%20188.351C387.255%20188.274%20387.554%20188.094%20387.777%20187.838C388.001%20187.582%20388.138%20187.261%20388.169%20186.923C388.199%20186.584%20388.122%20186.244%20387.949%20185.952C387.775%20185.659%20387.514%20185.429%20387.202%20185.294L280.215%20138.936C279.981%20138.835%20279.727%20138.79%20279.472%20138.806L252.908%20140.465Z'%20fill='%236C7378'/%3e%3cpath%20d='M252.908%20140.465L136.399%20191.264L121.671%20188.789C121.33%20188.725%20121.019%20188.554%20120.783%20188.3C120.547%20188.045%20120.399%20187.722%20120.361%20187.377C120.323%20187.032%20120.397%20186.684%20120.573%20186.385C120.748%20186.085%20121.014%20185.85%20121.333%20185.714L230.964%20138.467C231.207%20138.364%20231.47%20138.322%20231.733%20138.344L252.908%20140.465Z'%20fill='%236C7378'/%3e%3cpath%20d='M374.34%20369.697C390.405%20369.697%20403.428%20356.674%20403.428%20340.609C403.428%20324.544%20390.405%20311.521%20374.34%20311.521C358.275%20311.521%20345.252%20324.544%20345.252%20340.609C345.252%20356.674%20358.275%20369.697%20374.34%20369.697Z'%20fill='%237C878F'%20stroke='white'%20stroke-width='15'%20stroke-miterlimit='10'/%3e%3cpath%20d='M383.585%20331.988C383.105%20330.318%20382.432%20328.96%20381.567%20327.927C380.73%20326.917%20379.645%20326.143%20378.419%20325.68C375.772%20324.767%20372.895%20324.767%20370.248%20325.68C369.023%20326.14%20367.942%20326.915%20367.112%20327.927C366.235%20328.96%20365.562%20330.318%20365.094%20331.988C364.625%20333.658%20364.385%20335.701%20364.385%20338.104V343.006C364.385%20345.409%20364.625%20347.451%20365.106%20349.134C365.483%20350.628%20366.175%20352.025%20367.136%20353.231C367.971%20354.251%20369.055%20355.037%20370.284%20355.514C372.918%20356.459%20375.798%20356.459%20378.431%20355.514C379.653%20355.037%20380.73%20354.25%20381.556%20353.231C382.502%20352.019%20383.185%20350.624%20383.562%20349.134C384.031%20347.452%20384.271%20345.409%20384.271%20343.006H384.296V338.104C384.294%20335.7%20384.054%20333.658%20383.585%20331.988ZM379.2%20343.738C379.216%20345.047%20379.112%20346.354%20378.887%20347.643C378.736%20348.56%20378.422%20349.443%20377.962%20350.25C377.608%20350.873%20377.083%20351.382%20376.449%20351.716C375.797%20352.03%20375.081%20352.186%20374.358%20352.173C373.635%20352.184%20372.919%20352.028%20372.267%20351.716C371.625%20351.38%20371.088%20350.873%20370.717%20350.25C370.247%20349.444%20369.922%20348.562%20369.756%20347.643C369.51%20346.356%20369.398%20345.048%20369.42%20343.738V337.322C369.399%20336.017%20369.508%20334.713%20369.745%20333.429C369.903%20332.529%20370.225%20331.666%20370.695%20330.882C371.067%20330.283%20371.6%20329.8%20372.232%20329.488C372.888%20329.203%20373.596%20329.056%20374.311%20329.056C375.026%20329.056%20375.734%20329.203%20376.39%20329.488C377.027%20329.792%20377.562%20330.277%20377.928%20330.882C378.397%20331.666%20378.719%20332.529%20378.878%20333.429C379.115%20334.713%20379.224%20336.017%20379.203%20337.322V343.738H379.2Z'%20fill='white'/%3e%3c/svg%3e", oW = "data:image/svg+xml,%3csvg%20width='500'%20height='500'%20viewBox='0%200%20500%20500'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M74.108%20379.282C87.708%20412.469%20109.883%20419.377%20125.474%20412.469C155.626%20399.11%20233.95%20384.183%20314.392%20419.269C420.933%20465.739%20443.601%20395.628%20409.599%20324.709C375.597%20253.79%20364.071%20182.072%20403.27%20142.559C442.468%20103.047%20391.173%2041.2343%20300.079%20105.577C241.21%20147.157%20198.007%20137.898%20174.808%20126.144C152.943%20115.065%20128.626%20103.484%20105.844%20112.527C78.2%20123.5%2067.3075%20147.29%20109.366%20200.439C168.967%20275.754%2043.6218%20304.893%2074.108%20379.282Z'%20fill='%23E3E8EB'/%3e%3cpath%20d='M129.482%20217.615H341.14V380.392C341.14%20380.724%20341.008%20381.041%20340.774%20381.276C340.539%20381.51%20340.221%20381.642%20339.89%20381.642H130.732C130.401%20381.642%20130.083%20381.51%20129.849%20381.276C129.614%20381.041%20129.482%20380.724%20129.482%20380.392V217.615Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M288.042%20153.826H189.626L129.482%20217.614H341.14L288.042%20153.826Z'%20fill='%237C878F'/%3e%3cpath%20d='M149.531%20128.311L189.626%20153.827L129.483%20217.615L83.9199%20182.987L149.531%20128.311Z'%20fill='%236C7378'/%3e%3cpath%20d='M328.138%20128.311L288.043%20153.827L341.141%20217.615L393.749%20182.987L328.138%20128.311Z'%20fill='%236C7378'/%3e%3cpath%20d='M215.482%20129.616C216.613%20129.079%20217.494%20128.126%20217.939%20126.956C218.384%20125.785%20218.36%20124.488%20217.871%20123.335L199.834%2080.8033C199.578%2080.2008%20199.204%2079.6562%20198.732%2079.2023C198.261%2078.7484%20197.703%2078.3944%20197.091%2078.1618C196.479%2077.9292%20195.827%2077.8226%20195.173%2077.8485C194.519%2077.8745%20193.877%2078.0324%20193.286%2078.3128L189.811%2079.9605C189.22%2080.2409%20188.691%2080.6379%20188.258%2081.1277C187.824%2081.6175%20187.493%2082.19%20187.286%2082.8108C187.079%2083.4316%20187%2084.0878%20187.053%2084.74C187.106%2085.3922%20187.291%2086.0269%20187.595%2086.606L209.107%20127.49C209.691%20128.598%20210.679%20129.438%20211.867%20129.834C213.055%20130.23%20214.35%20130.152%20215.482%20129.616Z'%20fill='%237C878F'/%3e%3cpath%20d='M238.096%20125.492C238.915%20125.434%20239.68%20125.061%20240.23%20124.453C240.781%20123.844%20241.075%20123.046%20241.051%20122.225L240.16%2091.9459C240.148%2091.5171%20240.048%2091.0951%20239.868%2090.7056C239.689%2090.316%20239.432%2089.9668%20239.114%2089.679C238.795%2089.3912%20238.422%2089.1708%20238.017%2089.0309C237.611%2088.891%20237.181%2088.8345%20236.753%2088.8649L234.238%2089.0442C233.81%2089.0747%20233.392%2089.1913%20233.011%2089.3871C232.629%2089.5829%20232.291%2089.8539%20232.017%2090.1837C231.743%2090.5135%20231.538%2090.8953%20231.415%2091.3062C231.292%2091.7172%20231.253%2092.1487%20231.301%2092.5749L234.708%20122.675C234.8%20123.491%20235.204%20124.24%20235.836%20124.765C236.467%20125.29%20237.277%20125.551%20238.096%20125.492Z'%20fill='%237C878F'/%3e%3cpath%20d='M255.554%20136.685C257.806%20137.988%20260.968%20136.793%20262.722%20133.976L293.863%2083.9626C295.724%2080.9749%20295.283%2077.3334%20292.894%2075.9521L289.564%2074.0272C287.175%2072.6457%20283.799%2074.0802%20282.138%2077.1829L254.326%20129.121C252.76%20132.046%20253.301%20135.383%20255.554%20136.685Z'%20fill='%237C878F'/%3e%3cpath%20d='M290.679%20252H178.321C175.931%20252%20174%20253.93%20174%20256.318V342.682C174%20345.07%20175.931%20347%20178.321%20347H290.679C293.069%20347%20295%20345.07%20295%20342.682V256.318C295%20253.93%20293.069%20252%20290.679%20252ZM211.002%20271.432C215.769%20271.432%20219.645%20275.305%20219.645%20280.068C219.645%20284.832%20215.769%20288.705%20211.002%20288.705C206.235%20288.705%20202.359%20284.832%20202.359%20280.068C202.359%20275.305%20206.235%20271.432%20211.002%20271.432ZM280.402%20330.415C280.205%20330.581%20279.956%20330.671%20279.699%20330.672H189.287C188.693%20330.672%20188.207%20330.186%20188.207%20329.592C188.207%20329.336%20188.301%20329.093%20188.463%20328.891L211.461%20301.632C211.84%20301.173%20212.528%20301.119%20212.987%20301.497C213.028%20301.538%20213.082%20301.578%20213.122%20301.632L226.546%20317.555L247.896%20292.254C248.275%20291.795%20248.963%20291.741%20249.422%20292.119C249.463%20292.159%20249.517%20292.2%20249.557%20292.254L280.564%20328.904C280.915%20329.349%20280.861%20330.038%20280.402%20330.415Z'%20fill='%236C7378'/%3e%3c/svg%3e", iW = "data:image/svg+xml,%3csvg%20width='452'%20height='512'%20viewBox='0%200%20452%20512'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M225.904%20484.904C350.667%20484.904%20451.807%20383.763%20451.807%20259C451.807%20134.237%20350.667%2033.0967%20225.904%2033.0967C101.14%2033.0967%200%20134.237%200%20259C0%20383.763%20101.14%20484.904%20225.904%20484.904Z'%20fill='%23E3E8EB'/%3e%3cg%20filter='url(%23filter0_d_13670_7517)'%3e%3cpath%20d='M355.425%20162.615H96.3884C88.0708%20162.615%2081.3281%20169.357%2081.3281%20177.675V493.94C81.3281%20502.258%2088.0708%20509%2096.3884%20509H355.425C363.742%20509%20370.485%20502.258%20370.485%20493.94V177.675C370.485%20169.357%20363.742%20162.615%20355.425%20162.615Z'%20fill='white'/%3e%3c/g%3e%3cpath%20d='M195.779%20207.794H117.466C112.475%20207.794%20108.43%20211.84%20108.43%20216.831C108.43%20221.821%20112.475%20225.867%20117.466%20225.867H195.779C200.77%20225.867%20204.815%20221.821%20204.815%20216.831C204.815%20211.84%20200.77%20207.794%20195.779%20207.794Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M249.996%20246.951H117.466C112.475%20246.951%20108.43%20250.997%20108.43%20255.987C108.43%20260.978%20112.475%20265.023%20117.466%20265.023H249.996C254.986%20265.023%20259.032%20260.978%20259.032%20255.987C259.032%20250.997%20254.986%20246.951%20249.996%20246.951Z'%20fill='%237C878F'/%3e%3cpath%20d='M195.779%20289.12H117.466C112.475%20289.12%20108.43%20293.166%20108.43%20298.156C108.43%20303.147%20112.475%20307.192%20117.466%20307.192H195.779C200.77%20307.192%20204.815%20303.147%20204.815%20298.156C204.815%20293.166%20200.77%20289.12%20195.779%20289.12Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M249.996%20328.277H117.466C112.475%20328.277%20108.43%20332.322%20108.43%20337.313C108.43%20342.304%20112.475%20346.349%20117.466%20346.349H249.996C254.986%20346.349%20259.032%20342.304%20259.032%20337.313C259.032%20332.322%20254.986%20328.277%20249.996%20328.277Z'%20fill='%237C878F'/%3e%3cpath%20d='M195.779%20370.446H117.466C112.475%20370.446%20108.43%20374.492%20108.43%20379.482C108.43%20384.473%20112.475%20388.519%20117.466%20388.519H195.779C200.77%20388.519%20204.815%20384.473%20204.815%20379.482C204.815%20374.492%20200.77%20370.446%20195.779%20370.446Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M249.996%20409.603H117.466C112.475%20409.603%20108.43%20413.649%20108.43%20418.639C108.43%20423.63%20112.475%20427.675%20117.466%20427.675H249.996C254.986%20427.675%20259.032%20423.63%20259.032%20418.639C259.032%20413.649%20254.986%20409.603%20249.996%20409.603Z'%20fill='%237C878F'/%3e%3cg%20filter='url(%23filter1_d_13670_7517)'%3e%3cpath%20d='M355.425%209H96.3884C88.0708%209%2081.3281%2015.7427%2081.3281%2024.0602V114.422C81.3281%20122.739%2088.0708%20129.482%2096.3884%20129.482H355.425C363.742%20129.482%20370.485%20122.739%20370.485%20114.422V24.0602C370.485%2015.7427%20363.742%209%20355.425%209Z'%20fill='%237C878F'/%3e%3c/g%3e%3cpath%20d='M195.783%2042.1328H117.47C112.479%2042.1328%20108.434%2046.1784%20108.434%2051.169C108.434%2056.1595%20112.479%2060.2051%20117.47%2060.2051H195.783C200.774%2060.2051%20204.819%2056.1595%20204.819%2051.169C204.819%2046.1784%20200.774%2042.1328%20195.783%2042.1328Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M250%2081.2896H117.47C112.479%2081.2896%20108.434%2085.3352%20108.434%2090.3257C108.434%2095.3162%20112.479%2099.3618%20117.47%2099.3618H250C254.99%2099.3618%20259.036%2095.3162%20259.036%2090.3257C259.036%2085.3352%20254.99%2081.2896%20250%2081.2896Z'%20fill='white'/%3e%3cdefs%3e%3cfilter%20id='filter0_d_13670_7517'%20x='75.3281'%20y='153.615'%20width='301.156'%20height='358.386'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeColorMatrix%20in='SourceAlpha'%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%20127%200'%20result='hardAlpha'/%3e%3cfeOffset%20dy='-3'/%3e%3cfeGaussianBlur%20stdDeviation='3'/%3e%3cfeColorMatrix%20type='matrix'%20values='0%200%200%200%200.788235%200%200%200%200%200.803922%200%200%200%200%200.85098%200%200%200%200.349%200'/%3e%3cfeBlend%20mode='normal'%20in2='BackgroundImageFix'%20result='effect1_dropShadow_13670_7517'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_dropShadow_13670_7517'%20result='shape'/%3e%3c/filter%3e%3cfilter%20id='filter1_d_13670_7517'%20x='75.3281'%20y='0'%20width='301.156'%20height='132.482'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeColorMatrix%20in='SourceAlpha'%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%20127%200'%20result='hardAlpha'/%3e%3cfeOffset%20dy='-3'/%3e%3cfeGaussianBlur%20stdDeviation='3'/%3e%3cfeColorMatrix%20type='matrix'%20values='0%200%200%200%200.788235%200%200%200%200%200.803922%200%200%200%200%200.85098%200%200%200%200.349%200'/%3e%3cfeBlend%20mode='normal'%20in2='BackgroundImageFix'%20result='effect1_dropShadow_13670_7517'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_dropShadow_13670_7517'%20result='shape'/%3e%3c/filter%3e%3c/defs%3e%3c/svg%3e", aW = "data:image/svg+xml,%3csvg%20width='500'%20height='500'%20viewBox='0%200%20500%20500'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M418.761%20210.271C418.761%20210.271%20357.178%20245.475%20397.316%20355.918C432.963%20454.002%20305.193%20467.329%20255.516%20446.663C191.166%20419.892%20169.949%20327.336%20113.224%20343.732C56.4992%20360.128%2030.512%20228.145%20114.189%20198.582C218.281%20161.807%20165.353%20117.32%20182.003%2078.1944C193.953%2050.1139%20288.26%2022.1537%20323.601%2083.1757C353.341%20134.526%20375.441%20122.826%20394.267%20120.618C421.418%20117.432%20468.085%20172.3%20418.761%20210.271Z'%20fill='%23E3E8EB'/%3e%3cpath%20d='M214.715%20405.659V338.653C214.715%20331.324%20221.227%20325.707%20228.476%20326.783L273.233%20333.423C279.116%20334.295%20283.472%20339.345%20283.472%20345.293V416.142C283.472%20423.875%20276.265%20429.59%20268.736%20427.826L223.978%20417.343C218.552%20416.072%20214.715%20411.232%20214.715%20405.659Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M213.196%20406.792L222.411%20402.678C224.773%20401.624%20227.412%20401.361%20229.935%20401.928L270.602%20411.072C279.389%20413.048%20282.949%20423.639%20277.139%20430.52L270.421%20438.479C267.336%20442.134%20262.374%20443.608%20257.794%20442.229L214.63%20429.24C203.982%20426.036%20203.043%20411.325%20213.196%20406.792Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M377.929%20115.753L116.321%20150.749C110.362%20151.546%20105.912%20156.631%20105.912%20162.643V315.652C105.912%20321.633%20110.316%20326.701%20116.239%20327.535L377.847%20364.372C385.069%20365.389%20391.52%20359.783%20391.52%20352.49V127.647C391.52%20120.388%20385.125%20114.791%20377.929%20115.753Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M368.145%20127.037L124.671%20158.795C118.694%20159.575%20114.223%20164.667%20114.223%20170.694V308.53C114.223%20314.527%20118.649%20319.603%20124.59%20320.418L368.065%20353.848C375.273%20354.838%20381.697%20349.236%20381.697%20341.96V138.936C381.697%20131.692%20375.328%20126.1%20368.145%20127.037Z'%20fill='white'/%3e%3cpath%20d='M84%20260.139L155.78%20210.271C179.077%20243.517%20226.653%20309.025%20230.582%20305.096C234.511%20301.167%20267.227%20261.147%20283.095%20241.628L331.452%20279.406L416.454%20167.581'%20stroke='%236C7378'%20stroke-width='29'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M222.16%2074.3747C220.733%2073.7771%20219.181%2073.5385%20217.64%2073.6798C216.098%2073.8211%20214.615%2074.3379%20213.32%2075.1851C207.278%2079.2013%20201.979%2084.2356%20197.659%2090.0638C196.746%2091.311%20196.153%2092.7625%20195.931%2094.2917C195.708%2095.8208%20195.864%2097.3811%20196.383%2098.8365C197.941%20103.319%20198.193%20107.946%20196.901%20112.293C195.616%20116.644%20192.877%20120.389%20189.124%20123.295C187.894%20124.234%20186.913%20125.46%20186.266%20126.866C185.62%20128.272%20185.328%20129.816%20185.416%20131.361C185.868%20138.591%20187.57%20145.688%20190.446%20152.338C191.798%20155.476%20194.604%20157.312%20197.41%20157.851C202.071%20158.733%20206.212%20160.835%20209.334%20164.123C212.452%20167.419%20214.325%20171.652%20214.969%20176.353C215.355%20179.175%20217.03%20182.075%20220.083%20183.593C226.577%20186.829%20233.583%20188.913%20240.789%20189.752C242.327%20189.919%20243.882%20189.707%20245.318%20189.135C246.754%20188.562%20248.029%20187.646%20249.03%20186.468C252.134%20182.873%20256.02%20180.336%20260.435%20179.277C264.85%20178.219%20269.458%20178.719%20273.854%20180.516C276.499%20181.597%20279.852%20181.593%20282.694%20179.705C288.736%20175.689%20294.035%20170.655%20298.356%20164.826C300.389%20162.089%20300.574%20158.749%20299.632%20156.054C298.073%20151.572%20297.815%20146.946%20299.114%20142.598C300.398%20138.246%20303.139%20134.507%20306.892%20131.602C309.143%20129.856%20310.816%20126.94%20310.598%20123.529C310.146%20116.299%20308.445%20109.202%20305.569%20102.553C304.947%20101.135%20303.987%2099.8923%20302.773%2098.9322C301.559%2097.972%20300.128%2097.324%20298.606%2097.045C293.944%2096.1573%20289.804%2094.061%20286.68%2090.7669C283.557%2087.4789%20281.69%2083.2387%20281.046%2078.5373C280.849%2077.0047%20280.28%2075.5436%20279.388%2074.2816C278.497%2073.0195%20277.31%2071.9948%20275.931%2071.2969C269.437%2068.0616%20262.431%2065.9776%20255.225%2065.1379C253.688%2064.9709%20252.133%2065.183%20250.697%2065.7556C249.26%2066.3282%20247.986%2067.2439%20246.985%2068.4226C243.873%2072.0124%20239.989%2074.556%20235.58%2075.613C231.171%2076.6701%20226.557%2076.1708%20222.16%2074.3747ZM229.714%20131.831C228.55%20126.98%20229.362%20121.864%20231.97%20117.611C234.578%20113.358%20238.769%20110.315%20243.621%20109.151C248.473%20107.988%20253.588%20108.8%20257.841%20111.408C262.095%20114.016%20265.138%20118.207%20266.301%20123.059C267.464%20127.911%20266.653%20133.026%20264.044%20137.279C261.436%20141.533%20257.245%20144.576%20252.393%20145.739C247.542%20146.902%20242.426%20146.09%20238.173%20143.482C233.92%20140.874%20230.877%20136.683%20229.714%20131.831Z'%20fill='%236C7378'/%3e%3ccircle%20cx='247.584'%20cy='127.158'%20r='33.6232'%20fill='white'/%3e%3cpath%20d='M247.631%2093.6724C229.138%2093.6724%20214.008%20108.803%20214.008%20127.296C214.008%20145.788%20229.138%20160.919%20247.631%20160.919C266.124%20160.919%20281.254%20145.788%20281.254%20127.296C281.254%20108.803%20266.124%2093.6724%20247.631%2093.6724ZM247.631%20102.078C253.095%20102.078%20258.138%20103.759%20262.341%20106.701L227.037%20142.006C224.095%20137.803%20222.414%20132.759%20222.414%20127.296C222.414%20113.426%20233.761%20102.078%20247.631%20102.078ZM247.631%20152.513C242.167%20152.513%20237.124%20150.832%20232.921%20147.89L268.225%20112.585C271.167%20116.788%20272.848%20121.832%20272.848%20127.296C272.848%20141.165%20261.501%20152.513%20247.631%20152.513Z'%20fill='%23A2B1BD'/%3e%3c/svg%3e", sW = "data:image/svg+xml,%3csvg%20width='500'%20height='385'%20viewBox='0%200%20500%20385'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M336.859%20169.92C301.354%20169.92%20265.255%20168.518%20231.45%20159.086C197.644%20149.654%20168%20132.022%20140.692%20111.374C122.94%2097.9055%20106.717%2087.2414%2083.6986%2088.8559C61.1355%2090.0466%2039.5565%2098.4791%2022.1604%20112.903C-7.18593%20138.395%20-2.72664%20186.108%208.99491%20219.544C26.6197%20269.891%2080.1736%20304.857%20125.913%20327.673C178.618%20354.014%20236.334%20369.31%20294.559%20378.104C345.522%20385.837%20410.798%20391.445%20454.881%20358.221C495.397%20327.673%20506.524%20257.952%20496.586%20210.835C494.117%20196.995%20486.706%20184.524%20475.733%20175.741C447.321%20154.965%20404.852%20168.858%20372.915%20169.538C361.024%20169.58%20348.962%20169.878%20336.859%20169.92Z'%20fill='%23E3E8EB'/%3e%3cpath%20d='M435.158%2044.8345H67.7688C57.2564%2044.8345%2048.7344%2053.3654%2048.7344%2063.8888V326.95C48.7344%20337.473%2057.2564%20346.004%2067.7688%20346.004H435.158C445.67%20346.004%20454.192%20337.473%20454.192%20326.95V63.8888C454.192%2053.3654%20445.67%2044.8345%20435.158%2044.8345Z'%20fill='white'%20stroke='%23A2B1BD'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M64.3281%20317.739H426.901'%20stroke='%23E3E8EB'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M64.3281%20269.98H426.901'%20stroke='%23E3E8EB'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M64.3281%20222.222H426.901'%20stroke='%23E3E8EB'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M64.3281%20174.464H426.901'%20stroke='%23E3E8EB'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M64.3281%20127.68H426.901'%20stroke='%23E3E8EB'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M64.3281%2079.9219H426.901'%20stroke='%23E3E8EB'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M134.761%20111.111H110.855C105.076%20111.111%20100.391%20115.771%20100.391%20121.519V309.281C100.391%20315.029%20105.076%20319.688%20110.855%20319.688H134.761C140.54%20319.688%20145.225%20315.029%20145.225%20309.281V121.519C145.225%20115.771%20140.54%20111.111%20134.761%20111.111Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M220.53%20192.008H196.624C190.845%20192.008%20186.16%20196.684%20186.16%20202.453V309.243C186.16%20315.012%20190.845%20319.688%20196.624%20319.688H220.53C226.309%20319.688%20230.994%20315.012%20230.994%20309.243V202.453C230.994%20196.684%20226.309%20192.008%20220.53%20192.008Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M306.3%20132.554H282.394C276.615%20132.554%20271.93%20137.224%20271.93%20142.985V309.257C271.93%20315.018%20276.615%20319.688%20282.394%20319.688H306.3C312.079%20319.688%20316.764%20315.018%20316.764%20309.257V142.985C316.764%20137.224%20312.079%20132.554%20306.3%20132.554Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M392.069%20221.248H368.163C362.384%20221.248%20357.699%20225.925%20357.699%20231.695V309.241C357.699%20315.011%20362.384%20319.688%20368.163%20319.688H392.069C397.849%20319.688%20402.534%20315.011%20402.534%20309.241V231.695C402.534%20225.925%20397.849%20221.248%20392.069%20221.248Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M103.312%20204.91L128.204%20203.93L197.909%20275.828L264.598%20214.883L337.276%20238.878L407.406%20193.957'%20stroke='%23A2B1BD'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M439.084%2098.4405C466.267%2098.4405%20488.304%2076.4039%20488.304%2049.2203C488.304%2022.0367%20466.267%200%20439.084%200C411.9%200%20389.863%2022.0367%20389.863%2049.2203C389.863%2076.4039%20411.9%2098.4405%20439.084%2098.4405Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M418.129%2028.2651L461.014%2071.1501'%20stroke='white'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M461.014%2028.2651L418.129%2071.1501'%20stroke='white'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e", lW = "data:image/svg+xml,%3csvg%20width='500'%20height='294'%20viewBox='0%200%20500%20294'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M292.96%20100.681C262.051%20100.866%20230.662%2099.4232%20201.303%2091.2476C171.943%2083.0721%20145.976%2067.6459%20122.371%2049.6302C106.916%2037.9033%2092.8634%2028.581%2072.7985%2029.9868C53.1799%2031.0209%2034.4146%2038.3625%2019.2797%2050.925C-6.24413%2073.3429%20-2.3713%20114.775%207.80871%20143.926C23.1525%20187.837%2069.8477%20218.32%20109.498%20238.185C155.345%20261.158%20205.692%20274.512%20256.186%20282.17C300.447%20288.903%20357.285%20293.823%20395.608%20264.82C430.832%20238.222%20440.496%20177.405%20431.865%20136.342C429.765%20124.214%20423.325%20113.271%20413.755%20105.564C389.006%2087.4373%20352.122%2099.5341%20324.311%20100.163C314.168%20100.385%20303.508%20100.644%20292.96%20100.681Z'%20fill='%23E3E8EB'/%3e%3cpath%20d='M125.879%201H322.38C327.268%201%20331.957%202.93965%20335.414%206.39224C338.871%209.84484%20340.813%2014.5276%20340.813%2019.4103V252.889C340.813%20257.772%20338.871%20262.455%20335.414%20265.907C331.957%20269.36%20327.268%20271.3%20322.38%20271.3H100.699C95.8102%20271.3%2091.1216%20269.36%2087.6647%20265.907C84.2077%20262.455%2082.2656%20257.772%2082.2656%20252.889V45.0005L125.879%201Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M339.746%20114.248H136.754V274.505H339.746V114.248Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M82.2656%2044.8035H117.27C119.324%2044.7938%20121.29%2043.9592%20122.739%2042.4823C124.187%2041.0054%20125.001%2039.0063%20125.001%2036.9225V1L82.2656%2044.8035Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M339.514%2064.0342H139.119C131.321%2064.0342%20125%2070.3973%20125%2078.2465V121.403C125%20129.252%20131.321%20135.615%20139.119%20135.615H339.514C347.311%20135.615%20353.633%20129.252%20353.633%20121.403V78.2465C353.633%2070.3973%20347.311%2064.0342%20339.514%2064.0342Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M162.929%20112.111C170.305%20112.111%20176.284%20106.61%20176.284%2099.8249C176.284%2093.0394%20170.305%2087.5386%20162.929%2087.5386C155.553%2087.5386%20149.574%2093.0394%20149.574%2099.8249C149.574%20106.61%20155.553%20112.111%20162.929%20112.111Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M201.388%20112.111C208.173%20112.111%20213.674%20106.61%20213.674%2099.8249C213.674%2093.0394%20208.173%2087.5386%20201.388%2087.5386C194.602%2087.5386%20189.102%2093.0394%20189.102%2099.8249C189.102%20106.61%20194.602%20112.111%20201.388%20112.111Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M240.385%20112.111C246.875%20112.111%20252.137%20106.61%20252.137%2099.8249C252.137%2093.0394%20246.875%2087.5386%20240.385%2087.5386C233.894%2087.5386%20228.633%2093.0394%20228.633%2099.8249C228.633%20106.61%20233.894%20112.111%20240.385%20112.111Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M339.514%20143.094H139.119C131.321%20143.094%20125%20149.457%20125%20157.307V200.463C125%20208.312%20131.321%20214.676%20139.119%20214.676H339.514C347.311%20214.676%20353.633%20208.312%20353.633%20200.463V157.307C353.633%20149.457%20347.311%20143.094%20339.514%20143.094Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M162.929%20191.171C170.305%20191.171%20176.284%20185.671%20176.284%20178.885C176.284%20172.099%20170.305%20166.599%20162.929%20166.599C155.553%20166.599%20149.574%20172.099%20149.574%20178.885C149.574%20185.671%20155.553%20191.171%20162.929%20191.171Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M201.388%20191.171C208.173%20191.171%20213.674%20185.671%20213.674%20178.885C213.674%20172.099%20208.173%20166.599%20201.388%20166.599C194.602%20166.599%20189.102%20172.099%20189.102%20178.885C189.102%20185.671%20194.602%20191.171%20201.388%20191.171Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M240.385%20191.171C246.875%20191.171%20252.137%20185.671%20252.137%20178.885C252.137%20172.099%20246.875%20166.599%20240.385%20166.599C233.894%20166.599%20228.633%20172.099%20228.633%20178.885C228.633%20185.671%20233.894%20191.171%20240.385%20191.171Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M339.514%20221.086H139.119C131.321%20221.086%20125%20227.449%20125%20235.298V278.455C125%20286.304%20131.321%20292.667%20139.119%20292.667H339.514C347.311%20292.667%20353.633%20286.304%20353.633%20278.455V235.298C353.633%20227.449%20347.311%20221.086%20339.514%20221.086Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M162.929%20270.231C170.305%20270.231%20176.284%20264.731%20176.284%20257.945C176.284%20251.159%20170.305%20245.659%20162.929%20245.659C155.553%20245.659%20149.574%20251.159%20149.574%20257.945C149.574%20264.731%20155.553%20270.231%20162.929%20270.231Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M201.388%20270.231C208.173%20270.231%20213.674%20264.731%20213.674%20257.945C213.674%20251.159%20208.173%20245.659%20201.388%20245.659C194.602%20245.659%20189.102%20251.159%20189.102%20257.945C189.102%20264.731%20194.602%20270.231%20201.388%20270.231Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M240.385%20270.231C246.875%20270.231%20252.137%20264.731%20252.137%20257.945C252.137%20251.159%20246.875%20245.659%20240.385%20245.659C233.894%20245.659%20228.633%20251.159%20228.633%20257.945C228.633%20264.731%20233.894%20270.231%20240.385%20270.231Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M357.373%20153.778C399.562%20153.778%20433.762%20119.577%20433.762%2077.389C433.762%2035.2005%20399.562%201%20357.373%201C315.185%201%20280.984%2035.2005%20280.984%2077.389C280.984%20119.577%20315.185%20153.778%20357.373%20153.778Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M411.324%20132.411L430.555%20153.778'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M429.164%20143.523L422.843%20150.135C420%20153.109%20420.106%20157.825%20423.081%20160.668L478%20213.168C480.974%20216.011%20485.69%20215.905%20488.533%20212.931L494.853%20206.319C497.697%20203.345%20497.59%20198.629%20494.616%20195.786L439.697%20143.286C436.723%20140.443%20432.007%20140.549%20429.164%20143.523Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e", cW = "data:image/svg+xml,%3csvg%20width='500'%20height='332'%20viewBox='0%200%20500%20332'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M336.859%20117.055C301.354%20117.055%20265.255%20115.647%20231.45%20106.18C197.644%2096.7127%20168%2079.0147%20140.735%2058.2888C122.94%2044.7701%20106.759%2034.066%2083.6986%2035.6865C61.1355%2036.8818%2039.5565%2045.3459%2022.1604%2059.8241C-7.18593%2085.4116%20-2.72664%20133.303%208.99491%20166.865C26.6197%20217.4%2080.301%20252.498%20125.913%20275.399C178.618%20301.839%20236.334%20317.191%20294.559%20326.019C345.522%20333.781%20410.798%20339.41%20454.881%20306.061C495.397%20275.399%20506.524%20205.417%20496.586%20158.123C494.18%20144.159%20486.78%20131.557%20475.776%20122.684C447.321%20101.83%20404.895%20115.775%20372.915%20116.458C361.024%20116.714%20348.835%20117.012%20336.859%20117.055Z'%20fill='%23E3E8EB'/%3e%3cpath%20d='M203.57%20129.571H188.094V241.476H203.57V129.571Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M187.215%20137.285L194.93%20151.524L288.549%20100.799L280.834%2086.5594L187.215%20137.285Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M182.236%20231.952H207.049C219.703%20231.952%20231.839%20236.861%20240.787%20245.599C249.735%20254.336%20254.762%20266.187%20254.762%20278.544V281.952H134.523V278.544C134.523%20266.187%20139.55%20254.336%20148.498%20245.599C157.446%20236.861%20169.582%20231.952%20182.236%20231.952Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M271.427%20283.143H117.855'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M197.023%20170.048C212.474%20170.048%20224.999%20157.522%20224.999%20142.071C224.999%20126.621%20212.474%20114.095%20197.023%20114.095C181.572%20114.095%20169.047%20126.621%20169.047%20142.071C169.047%20157.522%20181.572%20170.048%20197.023%20170.048Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M352.735%20249.823C352.012%20249.567%20346.573%20250.079%20345.893%20249.823C341.006%20247.988%20339.263%20254.089%20334.759%20251.572C306.068%20236.75%20283.773%20211.9%20272.078%20181.711C260.383%20151.521%20260.097%20118.079%20271.274%2087.6917C282.451%2057.3049%20304.318%2032.0745%20332.75%2016.7601C361.183%201.44561%20394.215%20-2.89421%20425.616%204.55928C430.978%205.86095%20436.257%207.48505%20441.425%209.42275C442.402%209.76405%20440.022%2015.0541%20440.957%2015.3954L352.735%20249.823Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M437.544%20148.528C417.117%20203.186%20386.944%20244.762%20362.491%20255.431C359.217%20256.973%20355.679%20257.878%20352.066%20258.098C349.332%20258.282%20346.589%20257.893%20344.014%20256.955C341.986%20256.203%20340.107%20255.099%20338.462%20253.695C337.533%20252.95%20336.681%20252.114%20335.92%20251.197C318.968%20231.849%20321.723%20174.989%20344.395%20114.022C366.856%2053.9872%20401.268%209.57468%20426.737%205.00218C428.312%204.67781%20429.919%204.53575%20431.526%204.5788C433.682%204.62466%20435.815%205.02518%20437.84%205.76426C440.73%206.8657%20443.326%208.61889%20445.426%2010.8872C447.693%2013.2972%20449.58%2016.0383%20451.02%2019.016C462.42%2043.1063%20457.886%2094.2506%20437.544%20148.528Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M346.43%20111.714L479.763%20160.524'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M472.023%20174.81C482.214%20174.81%20490.475%20166.548%20490.475%20156.357C490.475%20146.166%20482.214%20137.905%20472.023%20137.905C461.832%20137.905%20453.57%20146.166%20453.57%20156.357C453.57%20166.548%20461.832%20174.81%20472.023%20174.81Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M160.716%2057.1681C160.716%2059.4884%20160.257%2061.7859%20159.367%2063.929C158.476%2066.0721%20157.171%2068.0188%20155.525%2069.6575C153.88%2071.2962%20151.927%2072.5948%20149.778%2073.4789C147.63%2074.363%20145.327%2074.8152%20143.003%2074.8096H99.5883C96.2248%2074.8096%2092.9991%2073.4757%2090.6207%2071.1012C88.2424%2068.7268%2086.9062%2065.5063%2086.9062%2062.1483C86.9062%2058.7903%2088.2424%2055.5698%2090.6207%2053.1953C92.9991%2050.8209%2096.2248%2049.4869%2099.5883%2049.4869C101.253%2049.4894%20102.902%2049.8043%20104.45%2050.4154C104.28%2049.5963%20104.195%2048.7619%20104.196%2047.9253C104.226%2044.6343%20105.44%2041.4636%20107.617%2038.9921C109.794%2036.5206%20112.789%2034.913%20116.054%2034.4626C119.32%2034.0122%20122.639%2034.7491%20125.405%2036.5388C128.172%2038.3285%20130.202%2041.0516%20131.124%2044.2113C134.342%2041.2014%20138.594%2039.5395%20143.003%2039.5688C145.324%2039.5633%20147.623%2040.0141%20149.769%2040.8956C151.915%2041.777%20153.866%2043.0718%20155.51%2044.706C157.155%2046.3403%20158.461%2048.282%20159.355%2050.4202C160.248%2052.5585%20160.71%2054.8514%20160.716%2057.1681Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e", uW = "data:image/svg+xml,%3csvg%20width='500'%20height='500'%20viewBox='0%200%20500%20500'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M181.77%20433.01C208.3%20449%20227.226%20442.362%20234.472%20429.539C248.484%20404.741%20295.074%20354.032%20368.906%20336.893C466.692%20314.193%20446.27%20253.921%20386.157%20222.293C326.044%20190.665%20281.097%20146.902%20287.9%2099.3173C294.702%2051.7325%20227.3%2035.3285%20197.325%20126.866C177.954%20186.02%20143.241%20201.868%20121.105%20205.678C100.242%20209.268%2077.4209%20213.773%2066.2921%20231.781C52.7881%20253.631%2057.5004%20275.733%20114.039%20290.893C194.159%20312.375%20122.305%20397.166%20181.77%20433.01Z'%20fill='%23E3E8EB'/%3e%3cpath%20d='M179.102%20330.986L307.109%20289.927C308.984%20289.326%20311.005%20289.356%20312.862%20290.014L428.805%20331.077C436.931%20333.955%20436.751%20345.51%20428.539%20348.133L312.609%20385.167C310.908%20385.71%20309.084%20385.735%20307.369%20385.239L179.349%20348.202C170.813%20345.732%20170.64%20333.7%20179.102%20330.986Z'%20fill='%236C7378'/%3e%3cpath%20d='M179.102%20287.986L307.109%20246.927C308.984%20246.326%20311.005%20246.356%20312.862%20247.014L428.805%20288.077C436.931%20290.955%20436.751%20302.51%20428.539%20305.133L312.609%20342.167C310.908%20342.71%20309.084%20342.735%20307.369%20342.239L179.349%20305.202C170.813%20302.732%20170.64%20290.7%20179.102%20287.986Z'%20fill='%237C878F'/%3e%3cpath%20d='M174.102%20244.986L302.109%20203.927C303.984%20203.326%20306.005%20203.356%20307.862%20204.014L423.805%20245.077C431.931%20247.955%20431.751%20259.51%20423.539%20262.133L307.609%20299.167C305.908%20299.71%20304.084%20299.735%20302.369%20299.239L174.349%20262.202C165.813%20259.732%20165.64%20247.7%20174.102%20244.986Z'%20fill='%23A2B1BD'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M132.791%2081.4593C130.902%2080.6684%20128.848%2080.3527%20126.808%2080.5396C124.769%2080.7266%20122.806%2081.4107%20121.092%2082.532C113.095%2087.8474%20106.082%2094.5102%20100.363%20102.224C99.156%20103.874%2098.3709%20105.795%2098.0766%20107.819C97.7824%20109.843%2097.9879%20111.908%2098.6752%20113.834C100.738%20119.766%20101.071%20125.891%2099.3607%20131.644C97.6605%20137.402%2094.0356%20142.359%2089.0687%20146.204C87.4405%20147.447%2086.1417%20149.07%2085.286%20150.931C84.4304%20152.793%2084.044%20154.835%2084.1607%20156.88C84.7592%20166.449%2087.0113%20175.842%2090.8172%20184.643C92.6068%20188.797%2096.3214%20191.226%20100.034%20191.94C106.203%20193.107%20111.684%20195.889%20115.816%20200.241C119.943%20204.603%20122.421%20210.204%20123.273%20216.427C123.785%20220.162%20126.002%20224%20130.043%20226.009C138.637%20230.291%20147.909%20233.049%20157.447%20234.161C159.481%20234.382%20161.539%20234.101%20163.44%20233.343C165.342%20232.585%20167.028%20231.373%20168.353%20229.813C172.461%20225.056%20177.604%20221.698%20183.447%20220.297C189.29%20218.896%20195.389%20219.559%20201.208%20221.936C204.709%20223.367%20209.145%20223.361%20212.907%20220.863C220.904%20215.548%20227.917%20208.885%20233.636%20201.171C236.326%20197.548%20236.572%20193.128%20235.324%20189.561C233.262%20183.629%20232.92%20177.506%20234.639%20171.752C236.339%20165.993%20239.966%20161.044%20244.932%20157.199C247.912%20154.889%20250.127%20151.029%20249.839%20146.515C249.24%20136.946%20246.988%20127.553%20243.182%20118.753C242.359%20116.877%20241.088%20115.232%20239.482%20113.961C237.875%20112.69%20235.982%20111.833%20233.967%20111.463C227.796%20110.288%20222.318%20107.514%20218.183%20103.154C214.05%2098.8027%20211.578%2093.1908%20210.726%2086.9686C210.465%2084.9402%20209.712%2083.0064%20208.532%2081.3361C207.352%2079.6658%20205.781%2078.3096%20203.957%2077.386C195.362%2073.104%20186.09%2070.3459%20176.552%2069.2345C174.518%2069.0135%20172.46%2069.2942%20170.559%2070.0521C168.658%2070.8099%20166.971%2072.0218%20165.646%2073.5819C161.528%2078.3329%20156.387%2081.6993%20150.552%2083.0983C144.717%2084.4973%20138.61%2083.8364%20132.791%2081.4593ZM142.788%20157.503C141.248%20151.081%20142.323%20144.311%20145.775%20138.682C149.227%20133.053%20154.773%20129.026%20161.195%20127.486C167.616%20125.947%20174.386%20127.021%20180.015%20130.473C185.644%20133.925%20189.672%20139.471%20191.211%20145.893C192.751%20152.314%20191.676%20159.084%20188.225%20164.713C184.773%20170.342%20179.226%20174.37%20172.805%20175.909C166.383%20177.449%20159.613%20176.374%20153.984%20172.923C148.355%20169.471%20144.328%20163.924%20142.788%20157.503Z'%20fill='%236C7378'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M132.791%2081.4593C130.902%2080.6684%20128.848%2080.3527%20126.808%2080.5396C124.769%2080.7266%20122.806%2081.4107%20121.092%2082.532C113.095%2087.8474%20106.082%2094.5102%20100.363%20102.224C99.156%20103.874%2098.3709%20105.795%2098.0766%20107.819C97.7824%20109.843%2097.9879%20111.908%2098.6752%20113.834C100.738%20119.766%20101.071%20125.891%2099.3607%20131.644C97.6605%20137.402%2094.0356%20142.359%2089.0687%20146.204C87.4405%20147.447%2086.1417%20149.07%2085.286%20150.931C84.4304%20152.793%2084.044%20154.835%2084.1607%20156.88C84.7592%20166.449%2087.0113%20175.842%2090.8172%20184.643C92.6068%20188.797%2096.3214%20191.226%20100.034%20191.94C106.203%20193.107%20111.684%20195.889%20115.816%20200.241C119.943%20204.603%20122.421%20210.204%20123.273%20216.427C123.785%20220.162%20126.002%20224%20130.043%20226.009C138.637%20230.291%20147.909%20233.049%20157.447%20234.161C159.481%20234.382%20161.539%20234.101%20163.44%20233.343C165.342%20232.585%20167.028%20231.373%20168.353%20229.813C172.461%20225.056%20177.604%20221.698%20183.447%20220.297C189.29%20218.896%20195.389%20219.559%20201.208%20221.936C204.709%20223.367%20209.145%20223.361%20212.907%20220.863C220.904%20215.548%20227.917%20208.885%20233.636%20201.171C236.326%20197.548%20236.572%20193.128%20235.324%20189.561C233.262%20183.629%20232.92%20177.506%20234.639%20171.752C236.339%20165.993%20239.966%20161.044%20244.932%20157.199C247.912%20154.889%20250.127%20151.029%20249.839%20146.515C249.24%20136.946%20246.988%20127.553%20243.182%20118.753C242.359%20116.877%20241.088%20115.232%20239.482%20113.961C237.875%20112.69%20235.982%20111.833%20233.967%20111.463C227.796%20110.288%20222.318%20107.514%20218.183%20103.154C214.05%2098.8027%20211.578%2093.1908%20210.726%2086.9686C210.465%2084.9402%20209.712%2083.0064%20208.532%2081.3361C207.352%2079.6658%20205.781%2078.3096%20203.957%2077.386C195.362%2073.104%20186.09%2070.3459%20176.552%2069.2345C174.518%2069.0135%20172.46%2069.2942%20170.559%2070.0521C168.658%2070.8099%20166.971%2072.0218%20165.646%2073.5819C161.528%2078.3329%20156.387%2081.6993%20150.552%2083.0983C144.717%2084.4973%20138.61%2083.8364%20132.791%2081.4593ZM142.788%20157.503C141.248%20151.081%20142.323%20144.311%20145.775%20138.682C149.227%20133.053%20154.773%20129.026%20161.195%20127.486C167.616%20125.947%20174.386%20127.021%20180.015%20130.473C185.644%20133.925%20189.672%20139.471%20191.211%20145.893C192.751%20152.314%20191.676%20159.084%20188.225%20164.713C184.773%20170.342%20179.226%20174.37%20172.805%20175.909C166.383%20177.449%20159.613%20176.374%20153.984%20172.923C148.355%20169.471%20144.328%20163.924%20142.788%20157.503Z'%20fill='%236C7378'/%3e%3ccircle%20cx='166.5'%20cy='151.5'%20r='44.5'%20fill='%23E3E8EB'/%3e%3cpath%20d='M166.5%20107C142.025%20107%20122%20127.025%20122%20151.5C122%20175.975%20142.025%20196%20166.5%20196C190.975%20196%20211%20175.975%20211%20151.5C211%20127.025%20190.975%20107%20166.5%20107ZM166.5%20118.125C173.731%20118.125%20180.406%20120.35%20185.969%20124.244L139.244%20170.969C135.35%20165.406%20133.125%20158.731%20133.125%20151.5C133.125%20133.144%20148.144%20118.125%20166.5%20118.125ZM166.5%20184.875C159.269%20184.875%20152.594%20182.65%20147.031%20178.756L193.756%20132.031C197.65%20137.594%20199.875%20144.269%20199.875%20151.5C199.875%20169.856%20184.856%20184.875%20166.5%20184.875Z'%20fill='%23A2B1BD'/%3e%3c/svg%3e", dW = "data:image/svg+xml,%3csvg%20width='400'%20height='298'%20viewBox='0%200%20400%20298'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M331.916%200H76.5969C64.8462%200%2055.3203%209.52586%2055.3203%2021.2766V276.596C55.3203%20288.346%2064.8462%20297.872%2076.5969%20297.872H331.916C343.667%20297.872%20353.193%20288.346%20353.193%20276.596V21.2766C353.193%209.52586%20343.667%200%20331.916%200Z'%20fill='%23F2F2F2'/%3e%3cpath%20d='M102.127%20114.894H389.361C392.182%20114.894%20394.888%20116.014%20396.883%20118.009C398.878%20120.005%20399.999%20122.71%20399.999%20125.532V178.723C399.999%20181.545%20398.878%20184.251%20396.883%20186.246C394.888%20188.241%20392.182%20189.362%20389.361%20189.362H102.127C99.3051%20189.362%2096.5992%20188.241%2094.6042%20186.246C92.6091%20184.251%2091.4883%20181.545%2091.4883%20178.723V125.532C91.4883%20122.71%2092.6091%20120.005%2094.6042%20118.009C96.5992%20116.014%2099.3051%20114.894%20102.127%20114.894V114.894Z'%20fill='%23E3E8EB'/%3e%3cpath%20d='M259.573%20131.915H204.254C200.729%20131.915%20197.871%20134.773%20197.871%20138.298C197.871%20141.823%20200.729%20144.681%20204.254%20144.681H259.573C263.098%20144.681%20265.956%20141.823%20265.956%20138.298C265.956%20134.773%20263.098%20131.915%20259.573%20131.915Z'%20fill='%237C878F'/%3e%3cpath%20d='M297.871%20159.574H204.254C200.729%20159.574%20197.871%20162.432%20197.871%20165.957C197.871%20169.482%20200.729%20172.34%20204.254%20172.34H297.871C301.396%20172.34%20304.254%20169.482%20304.254%20165.957C304.254%20162.432%20301.396%20159.574%20297.871%20159.574Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M156.385%20172.341C167.548%20172.341%20176.597%20163.291%20176.597%20152.128C176.597%20140.965%20167.548%20131.915%20156.385%20131.915C145.221%20131.915%20136.172%20140.965%20136.172%20152.128C136.172%20163.291%20145.221%20172.341%20156.385%20172.341Z'%20fill='%236C7378'/%3e%3cpath%20d='M161.893%20148.644C163.01%20148.644%20163.471%20149.582%20163.471%20150.446C163.471%20151.325%20162.965%20152.234%20161.833%20152.234H159.39V148.644H161.893ZM157.797%20157.446H159.39V153.678H161.922C164.127%20153.678%20165.05%20152.07%20165.05%20150.446C165.05%20148.823%20164.127%20147.185%20161.922%20147.185H157.797V157.446Z'%20fill='white'/%3e%3cpath%20d='M154.692%20157.446H156.36L152.487%20147.185H150.775L146.902%20157.446H148.585L149.568%20154.885H153.709L154.692%20157.446ZM151.639%20149.165L153.173%20153.47H150.104L151.639%20149.165Z'%20fill='white'/%3e%3cpath%20d='M10.6383%20206.383H297.872C300.694%20206.383%20303.4%20207.504%20305.395%20209.499C307.39%20211.494%20308.511%20214.2%20308.511%20217.021V270.213C308.511%20273.034%20307.39%20275.74%20305.395%20277.735C303.4%20279.73%20300.694%20280.851%20297.872%20280.851H10.6383C7.81685%20280.851%205.11095%20279.73%203.11589%20277.735C1.12082%20275.74%200%20273.034%200%20270.213L0%20217.021C0%20214.2%201.12082%20211.494%203.11589%20209.499C5.11095%20207.504%207.81685%20206.383%2010.6383%20206.383V206.383Z'%20fill='%23E3E8EB'/%3e%3cpath%20d='M168.085%20223.404H112.766C109.241%20223.404%20106.383%20226.262%20106.383%20229.787C106.383%20233.312%20109.241%20236.17%20112.766%20236.17H168.085C171.61%20236.17%20174.468%20233.312%20174.468%20229.787C174.468%20226.262%20171.61%20223.404%20168.085%20223.404Z'%20fill='%237C878F'/%3e%3cpath%20d='M206.383%20251.063H112.766C109.241%20251.063%20106.383%20253.921%20106.383%20257.446C106.383%20260.972%20109.241%20263.829%20112.766%20263.829H206.383C209.908%20263.829%20212.766%20260.972%20212.766%20257.446C212.766%20253.921%20209.908%20251.063%20206.383%20251.063Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M37.2323%20263.83C48.3955%20263.83%2057.4451%20254.78%2057.4451%20243.617C57.4451%20232.454%2048.3955%20223.404%2037.2323%20223.404C26.0691%20223.404%2017.0195%20232.454%2017.0195%20243.617C17.0195%20254.78%2026.0691%20263.83%2037.2323%20263.83Z'%20fill='%236C7378'/%3e%3cpath%20d='M38.6021%20246.958C40.6723%20246.958%2042.0723%20245.602%2042.0723%20243.889C42.0723%20242.385%2040.985%20241.447%2039.2574%20241.015L37.9616%20240.687C36.6659%20240.36%2036.5616%20239.675%2036.5616%20239.347C36.5616%20238.409%2037.4255%20237.828%2038.3936%20237.828C39.451%20237.828%2040.2106%20238.483%2040.2106%20239.451H41.7297C41.7297%20237.589%2040.285%20236.428%2038.4382%20236.428C36.6212%20236.428%2035.0276%20237.575%2035.0276%20239.377C35.0276%20240.226%2035.385%20241.521%2037.5744%20242.072L38.885%20242.4C39.7191%20242.623%2040.5382%20243.055%2040.5382%20243.964C40.5382%20244.813%2039.8233%20245.558%2038.6021%20245.558C37.3212%20245.558%2036.5021%20244.709%2036.4723%20243.83H34.9531C34.9531%20245.483%2036.4127%20246.958%2038.6021%20246.958Z'%20fill='white'/%3e%3cpath%20d='M29.6212%20250.278C31.9446%20250.278%2032.8233%20248.744%2032.8233%20246.927V236.546H31.2893V246.927C31.2893%20247.94%2030.8276%20248.803%2029.6212%20248.803C29.502%20248.803%2028.8318%20248.774%2028.5786%20248.684L28.4297%20250.114C28.8169%20250.203%2029.3382%20250.278%2029.6212%20250.278Z'%20fill='white'/%3e%3cpath%20d='M297.872%2023.4043H10.6383C4.76293%2023.4043%200%2028.1672%200%2034.0426V87.2341C0%2093.1095%204.76293%2097.8724%2010.6383%2097.8724H297.872C303.748%2097.8724%20308.511%2093.1095%20308.511%2087.2341V34.0426C308.511%2028.1672%20303.748%2023.4043%20297.872%2023.4043Z'%20fill='%23E3E8EB'/%3e%3cpath%20d='M163.831%2040.4258H108.512C104.987%2040.4258%20102.129%2043.2835%20102.129%2046.8088C102.129%2050.334%20104.987%2053.1917%20108.512%2053.1917H163.831C167.356%2053.1917%20170.214%2050.334%20170.214%2046.8088C170.214%2043.2835%20167.356%2040.4258%20163.831%2040.4258Z'%20fill='%237C878F'/%3e%3cpath%20d='M202.129%2068.085H108.512C104.987%2068.085%20102.129%2070.9427%20102.129%2074.4679C102.129%2077.9932%20104.987%2080.8509%20108.512%2080.8509H202.129C205.654%2080.8509%20208.512%2077.9932%20208.512%2074.4679C208.512%2070.9427%20205.654%2068.085%20202.129%2068.085Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M64.8925%2080.8513C76.0557%2080.8513%2085.1052%2071.8017%2085.1052%2060.6385C85.1052%2049.4753%2076.0557%2040.4258%2064.8925%2040.4258C53.7293%2040.4258%2044.6797%2049.4753%2044.6797%2060.6385C44.6797%2071.8017%2053.7293%2080.8513%2064.8925%2080.8513Z'%20fill='%236C7378'/%3e%3cpath%20d='M65.6764%2055.0419H68.0891C70.0998%2055.0419%2071.1274%2056.695%2071.1274%2058.7206C71.1274%2060.761%2070.0998%2062.3695%2068.0891%2062.3695H65.6764V55.0419ZM68.0891%2063.8291C71.0083%2063.8291%2072.7062%2061.6397%2072.7062%2058.7206C72.7062%2055.8014%2071.0083%2053.5674%2068.0891%2053.5674H64.0977V63.8291H68.0891Z'%20fill='white'/%3e%3cpath%20d='M54.9453%2060.8513C54.9453%2062.5194%2056.4347%2063.979%2058.5645%2063.979C60.5155%2063.979%2061.9006%2062.8322%2062.0645%2061.2237C62.2283%2059.7343%2061.3794%2058.5875%2059.2942%2058.0365L57.9836%2057.6939C56.7623%2057.3811%2056.6134%2056.7556%2056.6134%2056.3535C56.6134%2055.5194%2057.4325%2054.9386%2058.3857%2054.9386C59.4581%2054.9386%2060.173%2055.5343%2060.173%2056.4875H61.7517C61.7517%2054.6109%2060.3219%2053.4492%2058.4155%2053.4492C56.6134%2053.4492%2055.0347%2054.6258%2055.0347%2056.3833C55.0347%2057.2918%2055.3772%2058.5428%2057.5815%2059.1386L58.8772%2059.4662C59.8304%2059.6896%2060.5602%2060.1811%2060.5006%2061.1343C60.3964%2061.8939%2059.7708%2062.5343%2058.5645%2062.5343C57.3283%2062.5343%2056.5687%2061.6854%2056.524%2060.8513H54.9453Z'%20fill='white'/%3e%3c/svg%3e", fW = "data:image/svg+xml,%3csvg%20width='500'%20height='351'%20viewBox='0%200%20500%20351'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M336.859%20135.427C301.323%20135.427%20265.227%20133.979%20231.463%20124.594C197.699%20115.208%20168.039%2097.511%20140.711%2076.8253C122.943%2063.3306%20106.714%2052.6375%2083.7227%2054.2718C61.1733%2055.4735%2039.6076%2063.9044%2022.2108%2078.3195C-7.30932%20104.048%20-2.6458%20151.63%209.01302%20185.063C26.6412%20235.493%2080.3184%20270.468%20125.928%20293.301C178.626%20319.637%20236.5%20334.953%20294.561%20343.778C345.86%20351.529%20410.823%20357.133%20454.893%20323.839C495.419%20293.301%20506.518%20223.493%20496.585%20176.378C494.181%20162.453%20486.785%20149.885%20475.786%20141.03C447.338%20120.205%20404.9%20134.119%20372.908%20134.82C361.109%20135.1%20348.984%20135.38%20336.859%20135.427Z'%20fill='%23E3E8EB'/%3e%3cpath%20d='M135.269%20103.205H106.211V342.684H135.269V103.205Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M392.785%20103.205H363.727V342.684H392.785V103.205Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M264.531%20103.205H235.473V342.684H264.531V103.205Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M411.825%20326.651H87.1758V349.697H411.825V326.651Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M411.825%20108.214H87.1758V131.26H411.825V108.214Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M432.866%20109.216L249.523%201L66.1328%20109.216H432.866Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e", hW = "data:image/svg+xml,%3csvg%20width='500'%20height='500'%20viewBox='0%200%20500%20500'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M174.044%2077.8029C174.044%2077.8029%20221.889%20132.653%20324.897%2069.9822C416.378%2014.3249%20455.572%20140.176%20444.808%20194.322C430.863%20264.464%20342.03%20304.489%20369.973%20358.247C397.917%20412.006%20270.382%20464.786%20223.753%20386.571C165.748%20289.274%20131.676%20351.5%2088.9536%20342.645C58.2921%20336.29%2011.1301%20247.058%2065.3874%20199.187C111.044%20158.905%2094.8154%20139.033%2088.7936%20120.539C80.1086%2093.8669%20125.889%2035.8444%20174.044%2077.8029Z'%20fill='%23E3E8EB'/%3e%3cpath%20d='M117.155%20347.174L364.341%20346.774C366.522%20346.771%20368.68%20346.338%20370.694%20345.5C372.708%20344.662%20374.536%20343.436%20376.076%20341.891C377.616%20340.346%20378.836%20338.514%20379.667%20336.497C380.499%20334.481%20380.925%20332.321%20380.921%20330.14L380.674%20177.454C380.671%20175.273%20380.238%20173.114%20379.4%20171.101C378.562%20169.087%20377.336%20167.259%20375.792%20165.719C374.247%20164.179%20372.414%20162.959%20370.398%20162.128C368.382%20161.296%20366.222%20160.87%20364.041%20160.874L115.201%20160.906C106.724%20160.906%2099.9432%20152.793%20100.248%20145.839V161.3L100.521%20330.593C100.525%20332.774%20100.958%20334.933%20101.796%20336.946C102.633%20338.96%20103.859%20340.789%20105.404%20342.329C106.949%20343.868%20108.781%20345.089%20110.798%20345.92C112.814%20346.752%20114.974%20347.178%20117.155%20347.174Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M285.862%20221.804L381.123%20221.649C384.438%20221.644%20387.62%20222.956%20389.968%20225.296C392.316%20227.636%20393.638%20230.814%20393.643%20234.129L393.707%20273.419C393.712%20276.734%20392.401%20279.916%20390.06%20282.264C387.72%20284.612%20384.543%20285.934%20381.227%20285.939L285.967%20286.094C285.332%20286.095%20284.724%20285.844%20284.274%20285.396C283.825%20284.948%20283.572%20284.34%20283.571%20283.706L283.475%20224.199C283.474%20223.565%20283.725%20222.956%20284.172%20222.507C284.62%20222.058%20285.228%20221.805%20285.862%20221.804Z'%20fill='%237C878F'/%3e%3cpath%20d='M316.799%20268.619C324.927%20268.619%20331.517%20262.03%20331.517%20253.902C331.517%20245.774%20324.927%20239.185%20316.799%20239.185C308.671%20239.185%20302.082%20245.774%20302.082%20253.902C302.082%20262.03%20308.671%20268.619%20316.799%20268.619Z'%20fill='white'/%3e%3cpath%20d='M112.748%20128.917H326.269C329.584%20128.917%20332.763%20130.234%20335.107%20132.578C337.452%20134.922%20338.769%20138.102%20338.769%20141.417V160.908H116.312C112.052%20160.908%20107.966%20159.216%20104.953%20156.203C101.941%20153.19%20100.248%20149.104%20100.248%20144.844V141.417C100.248%20138.102%20101.565%20134.922%20103.909%20132.578C106.253%20130.234%20109.433%20128.917%20112.748%20128.917Z'%20fill='%237C878F'/%3e%3cpath%20d='M278.958%20142.964C278.668%20142.964%20278.386%20142.863%20278.162%20142.678C277.938%20142.494%20277.785%20142.237%20277.73%20141.952C277.675%20141.667%20277.72%20141.371%20277.859%20141.116C277.998%20140.861%20278.221%20140.662%20278.49%20140.554C278.54%20140.533%20279.772%20140.038%20282.03%20139.207C282.341%20139.093%20282.685%20139.107%20282.986%20139.246C283.287%20139.385%20283.52%20139.638%20283.635%20139.949C283.749%20140.26%20283.736%20140.604%20283.596%20140.905C283.457%20141.206%20283.204%20141.439%20282.893%20141.554C280.671%20142.371%20279.437%20142.868%20279.425%20142.873C279.277%20142.933%20279.118%20142.963%20278.958%20142.964Z'%20fill='%237C878F'/%3e%3cpath%20d='M331.269%20430.811C330.398%20430.811%20329.51%20430.794%20328.629%20430.759C328.465%20430.754%20328.302%20430.716%20328.152%20430.647C328.002%20430.579%20327.867%20430.482%20327.755%20430.361C327.643%20430.24%20327.555%20430.099%20327.498%20429.944C327.441%20429.789%20327.415%20429.625%20327.421%20429.46C327.428%20429.296%20327.467%20429.134%20327.536%20428.984C327.605%20428.835%20327.703%20428.7%20327.825%20428.589C327.946%20428.477%20328.089%20428.391%20328.244%20428.335C328.399%20428.278%20328.563%20428.253%20328.728%20428.261C331.197%20428.361%20333.67%20428.313%20336.134%20428.118C336.297%20428.105%20336.462%20428.124%20336.618%20428.175C336.774%20428.225%20336.919%20428.306%20337.044%20428.412C337.169%20428.519%20337.272%20428.649%20337.346%20428.795C337.421%20428.941%20337.466%20429.101%20337.48%20429.264C337.493%20429.428%20337.474%20429.592%20337.423%20429.749C337.373%20429.905%20337.292%20430.05%20337.185%20430.174C337.079%20430.299%20336.949%20430.402%20336.803%20430.477C336.657%20430.552%20336.497%20430.597%20336.334%20430.61C334.676%20430.744%20332.972%20430.811%20331.269%20430.811ZM321.16%20430.058C321.1%20430.058%20321.039%20430.053%20320.979%20430.045C318.54%20429.691%20316.007%20429.206%20313.449%20428.603C313.126%20428.527%20312.847%20428.326%20312.673%20428.044C312.498%20427.762%20312.443%20427.423%20312.519%20427.1C312.595%20426.777%20312.796%20426.498%20313.078%20426.324C313.36%20426.149%20313.7%20426.094%20314.022%20426.17C316.509%20426.756%20318.971%20427.227%20321.338%20427.57C321.651%20427.615%20321.935%20427.777%20322.133%20428.023C322.332%20428.269%20322.429%20428.581%20322.407%20428.896C322.384%20429.211%20322.243%20429.507%20322.012%20429.722C321.781%20429.937%20321.476%20430.057%20321.16%20430.057V430.058ZM343.707%20429.526C343.398%20429.526%20343.1%20429.411%20342.87%20429.205C342.641%20428.998%20342.496%20428.714%20342.464%20428.406C342.431%20428.099%20342.514%20427.791%20342.696%20427.541C342.877%20427.291%20343.145%20427.117%20343.447%20427.053C345.858%20426.538%20348.232%20425.865%20350.554%20425.039C350.867%20424.928%20351.21%20424.945%20351.51%20425.088C351.809%20425.23%20352.04%20425.485%20352.151%20425.798C352.262%20426.11%20352.245%20426.454%20352.102%20426.753C351.96%20427.053%20351.704%20427.283%20351.392%20427.394C348.966%20428.257%20346.486%20428.96%20343.969%20429.498C343.882%20429.516%20343.795%20429.525%20343.707%20429.525V429.526ZM306.445%20426.632C306.318%20426.632%20306.193%20426.613%20306.072%20426.575C303.75%20425.85%20301.322%20425.013%20298.853%20424.087C298.542%20423.971%20298.291%20423.736%20298.154%20423.434C298.017%20423.132%20298.005%20422.788%20298.122%20422.478C298.238%20422.167%20298.473%20421.916%20298.775%20421.779C299.077%20421.641%20299.421%20421.63%20299.731%20421.746C302.156%20422.656%20304.539%20423.478%20306.817%20424.189C307.102%20424.278%20307.346%20424.466%20307.505%20424.719C307.663%20424.973%20307.725%20425.275%20307.68%20425.57C307.635%20425.866%20307.486%20426.135%20307.259%20426.33C307.032%20426.525%20306.743%20426.632%20306.445%20426.632ZM357.914%20424.489C357.632%20424.489%20357.359%20424.395%20357.138%20424.221C356.917%20424.046%20356.761%20423.803%20356.696%20423.529C356.631%20423.255%20356.66%20422.968%20356.779%20422.712C356.897%20422.457%20357.098%20422.25%20357.35%20422.123C359.555%20421.006%20361.696%20419.766%20363.763%20418.408C363.9%20418.317%20364.054%20418.253%20364.216%20418.221C364.378%20418.189%20364.545%20418.19%20364.706%20418.223C364.868%20418.256%20365.022%20418.32%20365.158%20418.413C365.295%20418.506%20365.412%20418.624%20365.503%20418.762C365.593%20418.9%20365.655%20419.055%20365.686%20419.217C365.716%20419.38%20365.714%20419.546%20365.68%20419.708C365.645%20419.869%20365.579%20420.022%20365.486%20420.158C365.392%20420.294%20365.272%20420.41%20365.133%20420.499C362.988%20421.908%20360.765%20423.196%20358.476%20424.355C358.301%20424.443%20358.109%20424.489%20357.914%20424.489ZM292.269%20421.348C292.101%20421.348%20291.934%20421.314%20291.779%20421.248C289.571%20420.307%20287.233%20419.262%20284.831%20418.143C284.68%20418.075%20284.545%20417.978%20284.432%20417.857C284.32%20417.736%20284.232%20417.594%20284.175%20417.439C284.118%20417.284%20284.092%20417.119%20284.098%20416.954C284.105%20416.789%20284.144%20416.627%20284.214%20416.477C284.284%20416.327%20284.383%20416.193%20284.505%20416.081C284.627%20415.97%20284.77%20415.884%20284.925%20415.828C285.081%20415.772%20285.246%20415.748%20285.411%20415.756C285.576%20415.765%20285.738%20415.806%20285.887%20415.877C288.264%20416.985%20290.576%20418.018%20292.759%20418.948C293.024%20419.061%20293.242%20419.262%20293.376%20419.517C293.51%20419.772%20293.552%20420.066%20293.494%20420.348C293.436%20420.631%20293.283%20420.884%20293.06%20421.066C292.836%20421.249%20292.557%20421.348%20292.269%20421.348V421.348ZM370.549%20416.248C370.29%20416.248%20370.038%20416.168%20369.827%20416.018C369.616%20415.869%20369.456%20415.658%20369.37%20415.414C369.284%20415.17%20369.275%20414.906%20369.346%20414.657C369.416%20414.408%20369.562%20414.187%20369.763%20414.025C371.635%20412.515%20373.517%20410.859%20375.356%20409.102C375.596%20408.873%20375.917%20408.749%20376.248%20408.757C376.58%20408.764%20376.895%20408.904%20377.123%20409.143C377.352%20409.383%20377.477%20409.704%20377.469%20410.035C377.461%20410.367%20377.322%20410.682%20377.083%20410.911C375.193%20412.715%20373.258%20414.417%20371.333%20415.971C371.111%20416.15%20370.834%20416.249%20370.549%20416.249L370.549%20416.248ZM278.537%20414.976C278.345%20414.976%20278.155%20414.931%20277.983%20414.846C275.875%20413.801%20273.658%20412.68%20271.211%20411.418C271.065%20411.342%20270.935%20411.239%20270.829%20411.114C270.723%20410.989%20270.643%20410.844%20270.593%20410.687C270.543%20410.531%20270.524%20410.366%20270.538%20410.203C270.552%20410.039%20270.597%20409.88%20270.672%20409.734C270.748%20409.588%20270.851%20409.458%20270.976%20409.352C271.102%20409.246%20271.247%20409.166%20271.403%20409.116C271.559%20409.066%20271.724%20409.047%20271.888%20409.061C272.051%20409.074%20272.21%20409.12%20272.356%20409.195C274.793%20410.452%20276.996%20411.567%20279.093%20412.605C279.346%20412.731%20279.549%20412.938%20279.669%20413.193C279.789%20413.448%20279.82%20413.736%20279.755%20414.011C279.691%20414.286%20279.535%20414.53%20279.314%20414.706C279.093%20414.881%20278.819%20414.976%20278.537%20414.976ZM265.071%20408.053C264.868%20408.053%20264.668%20408.004%20264.489%20407.909C262.408%20406.812%20260.318%20405.706%20258.22%20404.591L257.795%20404.366C257.648%20404.29%20257.518%20404.186%20257.412%20404.059C257.305%20403.933%20257.225%20403.786%20257.176%20403.629C257.127%20403.471%20257.109%20403.305%20257.124%20403.141C257.14%20402.976%20257.187%20402.816%20257.265%20402.67C257.342%20402.524%20257.448%20402.395%20257.575%20402.29C257.703%20402.185%20257.85%20402.106%20258.009%20402.059C258.167%20402.011%20258.333%20401.995%20258.497%20402.012C258.662%20402.029%20258.821%20402.079%20258.966%20402.158L259.391%20402.383C261.487%20403.495%20263.575%20404.599%20265.655%20405.698C265.902%20405.828%20266.099%20406.037%20266.213%20406.292C266.327%20406.547%20266.353%20406.833%20266.286%20407.104C266.218%20407.376%20266.062%20407.616%20265.842%20407.788C265.622%20407.961%20265.351%20408.054%20265.071%20408.054L265.071%20408.053ZM381.49%20405.843C381.248%20405.843%20381.011%20405.772%20380.808%20405.64C380.605%20405.508%20380.445%20405.32%20380.347%20405.098C380.249%20404.877%20380.218%20404.632%20380.256%20404.393C380.295%20404.154%20380.402%20403.931%20380.565%20403.752C382.189%20401.966%20383.825%20400.052%20385.427%20398.062C385.636%20397.808%20385.937%20397.647%20386.264%20397.614C386.592%20397.58%20386.919%20397.677%20387.176%20397.884C387.432%20398.09%20387.596%20398.39%20387.633%20398.717C387.67%20399.044%20387.577%20399.372%20387.373%20399.631C385.74%20401.658%20384.072%20403.61%20382.415%20405.433C382.298%20405.563%20382.156%20405.666%20381.996%20405.737C381.837%20405.807%20381.665%20405.844%20381.49%20405.844V405.843ZM251.696%20400.978C251.494%20400.978%20251.295%20400.929%20251.116%20400.834C248.641%20399.532%20246.449%20398.392%20244.416%20397.347C244.121%20397.195%20243.898%20396.933%20243.796%20396.617C243.695%20396.301%20243.723%20395.958%20243.875%20395.663C244.026%20395.368%20244.289%20395.145%20244.605%20395.044C244.92%20394.942%20245.264%20394.97%20245.559%20395.122C247.598%20396.17%20249.797%20397.315%20252.279%20398.62C252.526%20398.75%20252.723%20398.96%20252.838%20399.215C252.952%20399.47%20252.978%20399.756%20252.911%20400.027C252.844%20400.298%20252.688%20400.539%20252.467%20400.712C252.247%20400.884%20251.976%20400.977%20251.696%20400.977L251.696%20400.978ZM390.987%20394.089C390.756%20394.088%20390.53%20394.025%20390.334%20393.904C390.138%20393.784%20389.978%20393.611%20389.874%20393.406C389.769%20393.201%20389.723%20392.971%20389.741%20392.741C389.759%20392.512%20389.84%20392.291%20389.976%20392.105C391.401%20390.14%20392.838%20388.063%20394.247%20385.933C394.43%20385.656%20394.716%20385.464%20395.04%20385.398C395.365%20385.331%20395.703%20385.397%20395.98%20385.58C396.256%20385.763%20396.449%20386.048%20396.515%20386.373C396.581%20386.698%20396.515%20387.036%20396.332%20387.312C394.904%20389.472%20393.446%20391.578%20392%20393.573C391.884%20393.733%20391.731%20393.863%20391.555%20393.953C391.379%20394.043%20391.184%20394.09%20390.987%20394.09V394.089ZM238.231%20394.073C238.039%20394.073%20237.849%20394.028%20237.677%20393.942C235.296%20392.763%20233.073%20391.69%20230.881%20390.662C230.585%20390.519%20230.358%20390.265%20230.248%20389.955C230.139%20389.645%20230.155%20389.304%20230.295%20389.006C230.435%20388.709%20230.686%20388.478%20230.995%20388.364C231.303%20388.251%20231.644%20388.263%20231.943%20388.399C234.151%20389.435%20236.389%20390.515%20238.787%20391.702C239.039%20391.828%20239.242%20392.035%20239.363%20392.29C239.483%20392.545%20239.513%20392.833%20239.449%20393.108C239.385%20393.383%20239.229%20393.627%20239.008%20393.802C238.787%20393.978%20238.513%20394.073%20238.231%20394.073ZM224.513%20387.653C224.341%20387.653%20224.171%20387.617%20224.013%20387.548C221.645%20386.515%20219.306%20385.539%20217.06%20384.647C216.908%20384.587%20216.769%20384.497%20216.651%20384.382C216.533%20384.268%20216.439%20384.131%20216.374%20383.981C216.309%20383.83%20216.274%20383.668%20216.272%20383.504C216.269%20383.34%20216.299%20383.177%20216.36%20383.024C216.42%20382.871%20216.51%20382.732%20216.625%20382.615C216.739%20382.497%20216.875%20382.403%20217.026%20382.338C217.177%20382.272%20217.339%20382.238%20217.503%20382.235C217.667%20382.233%20217.83%20382.263%20217.983%20382.323C220.254%20383.225%20222.62%20384.213%20225.013%20385.257C225.277%20385.372%20225.492%20385.574%20225.624%20385.829C225.756%20386.085%20225.796%20386.377%20225.737%20386.659C225.679%20386.94%20225.525%20387.192%20225.302%20387.373C225.079%20387.554%20224.801%20387.653%20224.513%20387.653ZM210.428%20382.078C210.287%20382.078%20210.147%20382.054%20210.014%20382.007C207.601%20381.16%20205.197%20380.378%20202.868%20379.682C202.711%20379.635%20202.565%20379.558%20202.437%20379.454C202.31%20379.351%20202.204%20379.223%20202.126%20379.079C202.048%20378.934%20201.999%20378.776%20201.983%20378.613C201.966%20378.449%20201.981%20378.284%20202.028%20378.127C202.075%20377.97%20202.153%20377.823%20202.256%20377.696C202.36%20377.569%20202.487%20377.463%20202.632%20377.385C202.776%20377.307%20202.935%20377.258%20203.098%20377.241C203.261%20377.224%20203.426%20377.24%20203.584%20377.287C205.95%20377.994%20208.392%20378.788%20210.842%20379.649C211.121%20379.746%20211.356%20379.939%20211.505%20380.194C211.655%20380.448%20211.71%20380.747%20211.66%20381.038C211.611%20381.329%20211.46%20381.593%20211.234%20381.783C211.009%20381.974%20210.723%20382.078%20210.428%20382.078ZM399.339%20381.489C399.117%20381.489%20398.9%20381.429%20398.708%20381.317C398.517%20381.205%20398.359%20381.044%20398.251%20380.851C398.142%20380.657%20398.087%20380.438%20398.091%20380.217C398.095%20379.995%20398.158%20379.778%20398.273%20379.589C399.542%20377.507%20400.823%20375.325%20402.08%20373.103C402.159%20372.956%20402.267%20372.827%20402.396%20372.722C402.526%20372.618%20402.675%20372.54%20402.835%20372.494C402.994%20372.448%20403.162%20372.435%20403.327%20372.454C403.492%20372.473%20403.652%20372.526%20403.797%20372.608C403.942%20372.69%20404.068%20372.8%20404.17%20372.931C404.272%20373.063%20404.346%20373.214%20404.389%20373.375C404.432%20373.535%20404.442%20373.703%20404.419%20373.868C404.396%20374.033%20404.34%20374.191%20404.255%20374.334C402.984%20376.579%20401.69%20378.784%20400.407%20380.89C400.296%20381.073%20400.139%20381.225%20399.952%20381.33C399.765%20381.435%20399.554%20381.49%20399.339%20381.49V381.489ZM143.631%20378.645C143.331%20378.645%20143.042%20378.537%20142.815%20378.342C142.588%20378.146%20142.439%20377.876%20142.395%20377.579C142.35%20377.283%20142.414%20376.98%20142.574%20376.727C142.734%20376.474%20142.98%20376.286%20143.267%20376.199C145.714%20375.452%20148.208%20374.799%20150.681%20374.259C151.005%20374.188%20151.343%20374.249%20151.623%20374.428C151.902%20374.607%20152.098%20374.889%20152.169%20375.213C152.24%20375.537%20152.179%20375.876%20152%20376.155C151.821%20376.434%20151.538%20376.63%20151.214%20376.701C148.808%20377.226%20146.379%20377.863%20143.997%20378.59C143.878%20378.626%20143.755%20378.645%20143.631%20378.645ZM195.918%20377.764C195.82%20377.764%20195.721%20377.753%20195.626%20377.73C193.162%20377.138%20190.696%20376.625%20188.297%20376.205C187.974%20376.143%20187.689%20375.957%20187.502%20375.687C187.316%20375.417%20187.243%20375.084%20187.299%20374.761C187.356%20374.438%20187.538%20374.149%20187.805%20373.959C188.072%20373.768%20188.404%20373.691%20188.728%20373.742C191.178%20374.172%20193.695%20374.695%20196.209%20375.298C196.507%20375.369%20196.769%20375.547%20196.944%20375.798C197.12%20376.049%20197.197%20376.356%20197.161%20376.661C197.125%20376.965%20196.979%20377.245%20196.75%20377.449C196.521%20377.652%20196.225%20377.764%20195.918%20377.764V377.764ZM158.396%20375.423C158.078%20375.423%20157.773%20375.302%20157.541%20375.085C157.31%20374.868%20157.169%20374.571%20157.149%20374.254C157.128%20373.938%20157.228%20373.625%20157.43%20373.38C157.631%20373.135%20157.918%20372.975%20158.232%20372.933C160.747%20372.599%20163.316%20372.365%20165.867%20372.237C166.031%20372.229%20166.195%20372.253%20166.35%20372.308C166.504%20372.363%20166.647%20372.448%20166.768%20372.558C166.89%20372.669%20166.989%20372.802%20167.059%20372.95C167.13%20373.098%20167.17%20373.259%20167.178%20373.423C167.186%20373.587%20167.162%20373.751%20167.107%20373.906C167.052%20374.06%20166.967%20374.203%20166.857%20374.324C166.747%20374.446%20166.614%20374.545%20166.465%20374.615C166.317%20374.686%20166.156%20374.726%20165.992%20374.734C163.509%20374.859%20161.009%20375.086%20158.562%20375.412C158.507%20375.419%20158.451%20375.423%20158.396%20375.423ZM181.034%20375.173C180.99%20375.173%20180.946%20375.171%20180.902%20375.166C178.408%20374.904%20175.902%20374.734%20173.455%20374.661C173.123%20374.651%20172.809%20374.51%20172.582%20374.269C172.355%20374.027%20172.232%20373.705%20172.242%20373.374C172.252%20373.042%20172.394%20372.728%20172.635%20372.501C172.876%20372.274%20173.198%20372.151%20173.53%20372.161C176.04%20372.236%20178.608%20372.411%20181.163%20372.679C181.481%20372.713%20181.774%20372.867%20181.982%20373.11C182.189%20373.354%20182.296%20373.667%20182.279%20373.986C182.263%20374.306%20182.125%20374.607%20181.893%20374.827C181.661%20375.048%20181.354%20375.171%20181.034%20375.172L181.034%20375.173ZM406.797%20368.336C406.582%20368.336%20406.37%20368.28%20406.182%20368.174C405.995%20368.067%20405.838%20367.915%20405.727%20367.73C405.616%20367.545%20405.554%20367.335%20405.549%20367.12C405.543%20366.904%20405.593%20366.691%20405.694%20366.5C406.84%20364.335%20407.998%20362.08%20409.134%20359.8C409.207%20359.653%20409.308%20359.522%20409.432%20359.415C409.556%20359.307%20409.7%20359.225%20409.855%20359.173C410.011%20359.12%20410.176%20359.099%20410.339%20359.111C410.503%20359.122%20410.663%20359.166%20410.81%20359.239C410.957%20359.312%20411.088%20359.414%20411.196%20359.537C411.303%20359.661%20411.386%20359.805%20411.438%20359.961C411.49%20360.116%20411.511%20360.281%20411.499%20360.445C411.488%20360.608%20411.445%20360.768%20411.371%20360.915C410.226%20363.214%20409.059%20365.486%20407.903%20367.671C407.797%20367.872%20407.637%20368.04%20407.443%20368.157C407.248%20368.274%20407.025%20368.336%20406.797%20368.335V368.336ZM413.547%20354.801C413.337%20354.801%20413.13%20354.748%20412.945%20354.646C412.761%20354.545%20412.605%20354.398%20412.492%20354.22C412.379%20354.042%20412.314%20353.839%20412.3%20353.629C412.287%20353.419%20412.328%20353.209%20412.417%20353.018C413.465%20350.795%20414.523%20348.49%20415.562%20346.167C415.629%20346.017%20415.725%20345.882%20415.844%20345.769C415.963%20345.656%20416.103%20345.568%20416.257%20345.509C416.41%20345.451%20416.574%20345.423%20416.738%20345.428C416.902%20345.432%20417.063%20345.469%20417.213%20345.536C417.363%20345.603%20417.498%20345.699%20417.611%20345.818C417.724%20345.938%20417.812%20346.078%20417.871%20346.231C417.929%20346.385%20417.957%20346.548%20417.952%20346.712C417.948%20346.876%20417.911%20347.038%20417.844%20347.188C416.798%20349.526%20415.733%20351.846%20414.679%20354.084C414.578%20354.298%20414.418%20354.479%20414.218%20354.606C414.018%20354.733%20413.786%20354.8%20413.549%20354.8L413.547%20354.801ZM419.729%20340.996C419.522%20340.996%20419.318%20340.944%20419.136%20340.847C418.954%20340.749%20418.8%20340.607%20418.686%20340.435C418.572%20340.262%20418.502%20340.064%20418.484%20339.859C418.465%20339.653%20418.498%20339.446%20418.579%20339.255C419.544%20336.992%20420.52%20334.649%20421.481%20332.292C421.541%20332.138%20421.632%20331.997%20421.747%20331.878C421.862%20331.759%20422%20331.664%20422.152%20331.599C422.304%20331.534%20422.468%20331.499%20422.634%20331.498C422.799%20331.496%20422.964%20331.527%20423.117%20331.59C423.271%20331.653%20423.41%20331.745%20423.527%20331.862C423.645%20331.979%20423.738%20332.118%20423.801%20332.271C423.864%20332.424%20423.896%20332.588%20423.895%20332.754C423.894%20332.92%20423.861%20333.083%20423.796%20333.236C422.83%20335.605%20421.848%20337.961%20420.878%20340.236C420.782%20340.461%20420.622%20340.653%20420.418%20340.788C420.214%20340.923%20419.974%20340.995%20419.729%20340.995L419.729%20340.996ZM425.443%20326.989C425.239%20326.989%20425.039%20326.94%20424.859%20326.845C424.679%20326.75%20424.525%20326.612%20424.411%20326.444C424.296%20326.276%20424.224%20326.083%20424.201%20325.88C424.178%20325.678%20424.205%20325.474%20424.279%20325.284C425.176%20322.988%20426.085%20320.617%20426.979%20318.236C427.095%20317.926%20427.331%20317.675%20427.633%20317.538C427.934%20317.401%20428.278%20317.389%20428.589%20317.506C428.899%20317.622%20429.15%20317.858%20429.287%20318.159C429.424%20318.461%20429.436%20318.805%20429.319%20319.116C428.419%20321.507%20427.508%20323.889%20426.606%20326.194C426.515%20326.428%20426.355%20326.629%20426.148%20326.771C425.94%20326.913%20425.695%20326.989%20425.443%20326.989L425.443%20326.989ZM430.768%20312.829C430.567%20312.829%20430.369%20312.781%20430.191%20312.688C430.013%20312.596%20429.86%20312.462%20429.745%20312.297C429.63%20312.133%20429.556%20311.943%20429.529%20311.744C429.503%20311.546%20429.524%20311.343%20429.593%20311.154C430.434%20308.832%20431.285%20306.438%20432.124%20304.04C432.176%20303.884%20432.26%20303.739%20432.369%20303.614C432.478%20303.49%20432.61%20303.388%20432.759%20303.316C432.908%20303.243%20433.069%20303.2%20433.234%20303.191C433.399%20303.181%20433.565%20303.204%20433.721%20303.258C433.877%20303.313%20434.021%20303.398%20434.144%20303.509C434.267%20303.619%20434.367%20303.753%20434.438%20303.903C434.509%20304.052%20434.549%20304.214%20434.557%20304.379C434.565%20304.545%20434.54%20304.71%20434.483%20304.865C433.642%20307.272%20432.787%20309.674%20431.943%20312.005C431.856%20312.247%20431.696%20312.455%20431.486%20312.603C431.276%20312.75%20431.025%20312.829%20430.769%20312.829L430.768%20312.829ZM435.754%20298.544C435.555%20298.544%20435.36%20298.497%20435.184%20298.407C435.007%20298.316%20434.855%20298.185%20434.739%20298.024C434.623%20297.864%20434.547%20297.678%20434.518%20297.482C434.488%20297.286%20434.505%20297.085%20434.568%20296.897C435.375%20294.486%20436.163%20292.072%20436.911%20289.722C437.012%20289.406%20437.234%20289.144%20437.529%20288.991C437.823%20288.839%20438.166%20288.81%20438.482%20288.911C438.798%20289.011%20439.061%20289.233%20439.213%20289.528C439.365%20289.822%20439.394%20290.165%20439.294%20290.481C438.541%20292.843%20437.749%20295.268%20436.939%20297.69C436.856%20297.939%20436.697%20298.155%20436.484%20298.308C436.272%20298.461%20436.017%20298.544%20435.755%20298.544L435.754%20298.544ZM440.343%20284.125C440.148%20284.125%20439.955%20284.08%20439.781%20283.992C439.607%20283.904%20439.456%20283.777%20439.339%20283.621C439.223%20283.464%20439.145%20283.283%20439.111%20283.091C439.078%20282.898%20439.089%20282.701%20439.146%20282.514C439.876%20280.089%20440.588%20277.653%20441.261%20275.272C441.351%20274.953%20441.564%20274.683%20441.854%20274.521C442.143%20274.359%20442.485%20274.319%20442.804%20274.409C443.123%20274.5%20443.393%20274.713%20443.555%20275.002C443.717%20275.292%20443.757%20275.633%20443.667%20275.952C442.99%20278.347%20442.274%20280.797%20441.539%20283.235C441.462%20283.492%20441.304%20283.718%20441.089%20283.878C440.873%20284.038%20440.612%20284.125%20440.344%20284.125L440.343%20284.125ZM444.456%20269.563C444.265%20269.563%20444.076%20269.52%20443.904%20269.435C443.732%20269.351%20443.582%20269.228%20443.465%20269.077C443.349%20268.925%20443.268%20268.749%20443.23%20268.562C443.192%20268.374%20443.198%20268.18%20443.246%20267.995C443.891%20265.54%20444.512%20263.08%20445.089%20260.684C445.169%20260.364%20445.373%20260.089%20445.655%20259.918C445.936%20259.747%20446.274%20259.695%20446.595%20259.772C446.915%20259.849%20447.192%20260.05%20447.365%20260.331C447.539%20260.611%20447.594%20260.949%20447.52%20261.27C446.938%20263.683%20446.314%20266.159%20445.664%20268.631C445.594%20268.897%20445.438%20269.134%20445.219%20269.302C445.001%20269.471%20444.733%20269.563%20444.457%20269.563L444.456%20269.563ZM447.999%20254.852C447.812%20254.853%20447.628%20254.811%20447.459%20254.73C447.29%20254.65%20447.142%20254.533%20447.025%20254.387C446.907%20254.242%20446.824%20254.072%20446.781%20253.89C446.738%20253.708%20446.737%20253.519%20446.776%20253.336C447.317%20250.854%20447.826%20248.371%20448.29%20245.955C448.32%20245.793%20448.382%20245.638%20448.472%20245.5C448.562%20245.361%20448.678%20245.242%20448.814%20245.149C448.951%20245.056%20449.104%20244.991%20449.265%20244.957C449.427%20244.923%20449.594%20244.922%20449.756%20244.953C449.918%20244.984%20450.072%20245.047%20450.21%20245.138C450.347%20245.23%20450.465%20245.347%20450.557%20245.484C450.65%20245.621%20450.713%20245.775%20450.746%20245.937C450.778%20246.098%20450.778%20246.265%20450.745%20246.427C450.278%20248.862%20449.764%20251.366%20449.22%20253.868C449.16%20254.147%20449.005%20254.397%20448.783%20254.576C448.561%20254.755%20448.284%20254.852%20447.999%20254.852ZM450.847%20239.993C450.666%20239.993%20450.487%20239.953%20450.322%20239.877C450.158%20239.801%20450.012%20239.69%20449.894%20239.552C449.777%20239.414%20449.691%20239.252%20449.642%20239.077C449.593%20238.902%20449.583%20238.719%20449.612%20238.54C450.025%20236.026%20450.398%20233.521%20450.721%20231.094C450.741%20230.93%20450.793%20230.772%20450.875%20230.628C450.956%20230.484%20451.066%20230.358%20451.196%20230.257C451.327%20230.156%20451.477%20230.081%20451.636%20230.038C451.796%20229.995%20451.962%20229.985%20452.126%20230.006C452.29%20230.028%20452.448%20230.082%20452.591%20230.166C452.734%20230.249%20452.859%20230.36%20452.958%20230.491C453.058%20230.623%20453.131%20230.774%20453.172%20230.934C453.213%20231.094%20453.222%20231.261%20453.199%20231.424C452.874%20233.876%20452.496%20236.406%20452.079%20238.945C452.032%20239.237%20451.882%20239.502%20451.656%20239.694C451.431%20239.886%20451.145%20239.992%20450.849%20239.993H450.847ZM452.834%20224.995C452.793%20224.995%20452.751%20224.992%20452.709%20224.988C452.545%20224.972%20452.387%20224.924%20452.242%20224.847C452.097%20224.769%20451.969%20224.664%20451.865%20224.537C451.761%20224.41%20451.683%20224.264%20451.635%20224.107C451.587%20223.95%20451.571%20223.785%20451.587%20223.622C451.837%20221.09%20452.037%20218.569%20452.185%20216.128C452.204%20215.797%20452.355%20215.488%20452.603%20215.268C452.851%20215.048%20453.176%20214.935%20453.507%20214.955C453.838%20214.975%20454.148%20215.126%20454.368%20215.374C454.588%20215.622%20454.7%20215.947%20454.68%20216.278C454.532%20218.751%20454.328%20221.303%20454.075%20223.867C454.045%20224.176%20453.901%20224.462%20453.672%20224.67C453.443%20224.878%20453.144%20224.994%20452.835%20224.995H452.834ZM453.727%20209.895H453.706C453.542%20209.892%20453.38%20209.857%20453.229%20209.792C453.079%20209.726%20452.942%20209.632%20452.828%20209.514C452.714%20209.396%20452.624%20209.257%20452.564%20209.104C452.504%20208.952%20452.474%20208.789%20452.477%20208.624C452.491%20207.743%20452.498%20206.863%20452.498%20206.009C452.498%20204.368%20452.472%20202.724%20452.419%20201.121C452.412%20200.956%20452.437%20200.791%20452.494%20200.636C452.551%20200.481%20452.638%20200.339%20452.751%20200.218C452.863%20200.096%20452.998%20199.999%20453.148%20199.93C453.299%20199.861%20453.461%20199.823%20453.626%20199.818C453.792%20199.812%20453.956%20199.84%20454.111%20199.898C454.265%20199.957%20454.407%20200.045%20454.527%20200.159C454.647%20200.272%20454.743%20200.409%20454.81%20200.56C454.877%20200.711%20454.914%20200.874%20454.917%20201.039C454.971%20202.669%20454.998%20204.341%20454.998%20206.009C454.998%20206.877%20454.991%20207.77%20454.976%20208.665C454.971%20208.992%20454.837%20209.305%20454.603%20209.534C454.37%20209.764%20454.055%20209.893%20453.728%20209.894L453.727%20209.895ZM453.207%20194.787C452.895%20194.786%20452.595%20194.669%20452.365%20194.459C452.135%20194.248%20451.992%20193.959%20451.964%20193.649C451.736%20191.118%20451.43%20188.621%20451.056%20186.229C451.029%20186.066%20451.033%20185.899%20451.071%20185.737C451.108%20185.576%20451.177%20185.424%20451.274%20185.289C451.371%20185.155%20451.493%20185.041%20451.634%20184.954C451.775%20184.867%20451.932%20184.81%20452.095%20184.784C452.259%20184.758%20452.426%20184.766%20452.587%20184.805C452.748%20184.845%20452.899%20184.916%20453.032%20185.014C453.165%20185.113%20453.277%20185.237%20453.362%20185.379C453.447%20185.521%20453.503%20185.679%20453.526%20185.843C453.909%20188.288%20454.221%20190.839%20454.454%20193.424C454.468%20193.588%20454.451%20193.752%20454.402%20193.909C454.353%20194.066%20454.274%20194.211%20454.168%20194.337C454.063%20194.463%20453.934%20194.567%20453.789%20194.644C453.643%20194.72%20453.484%20194.767%20453.321%20194.781C453.284%20194.784%20453.246%20194.786%20453.208%20194.786L453.207%20194.787ZM450.85%20179.87C450.568%20179.869%20450.294%20179.774%20450.074%20179.599C449.853%20179.424%20449.698%20179.179%20449.634%20178.905C449.057%20176.444%20448.384%20174.03%20447.63%20171.734C447.574%20171.577%20447.551%20171.41%20447.561%20171.244C447.571%20171.078%20447.614%20170.916%20447.687%20170.766C447.761%20170.617%20447.864%20170.484%20447.989%20170.375C448.115%20170.266%20448.261%20170.183%20448.419%20170.131C448.577%20170.079%20448.744%20170.059%20448.91%20170.073C449.076%20170.086%20449.238%20170.133%20449.385%20170.21C449.533%20170.286%20449.664%20170.392%20449.77%20170.52C449.876%20170.648%20449.956%20170.796%20450.005%20170.955C450.78%20173.321%20451.474%20175.803%20452.067%20178.334C452.11%20178.518%20452.111%20178.709%20452.07%20178.893C452.029%20179.076%20451.947%20179.249%20451.829%20179.396C451.712%20179.544%20451.563%20179.663%20451.393%20179.745C451.224%20179.827%20451.038%20179.87%20450.849%20179.87H450.85ZM446.125%20165.539C445.882%20165.54%20445.644%20165.469%20445.441%20165.336C445.238%20165.204%20445.078%20165.015%20444.98%20164.793C443.985%20162.528%20442.867%20160.32%20441.631%20158.177C441.473%20157.891%20441.434%20157.554%20441.522%20157.238C441.61%20156.923%20441.817%20156.655%20442.101%20156.491C442.384%20156.328%20442.72%20156.282%20443.037%20156.363C443.354%20156.445%20443.627%20156.647%20443.796%20156.927C445.077%20159.149%20446.236%20161.439%20447.268%20163.786C447.352%20163.977%20447.387%20164.185%20447.37%20164.392C447.353%20164.599%20447.285%20164.799%20447.171%20164.973C447.058%20165.147%20446.903%20165.29%20446.72%20165.39C446.537%20165.489%20446.333%20165.541%20446.125%20165.541V165.539ZM438.558%20152.498C438.364%20152.498%20438.172%20152.453%20437.999%20152.366C437.825%20152.279%20437.673%20152.153%20437.557%20151.998C436.077%20150.023%20434.477%20148.141%20432.766%20146.364C432.536%20146.125%20432.41%20145.805%20432.416%20145.473C432.422%20145.142%20432.559%20144.826%20432.798%20144.596C433.037%20144.366%20433.357%20144.24%20433.689%20144.246C434.02%20144.252%20434.336%20144.39%20434.566%20144.629C436.349%20146.481%20438.016%20148.441%20439.558%20150.499C439.697%20150.685%20439.782%20150.906%20439.803%20151.137C439.824%20151.368%20439.78%20151.601%20439.676%20151.808C439.572%20152.016%20439.413%20152.19%20439.215%20152.312C439.018%20152.434%20438.79%20152.499%20438.558%20152.499L438.558%20152.498ZM428.094%20141.645C427.809%20141.645%20427.531%20141.547%20427.309%20141.367C425.386%20139.816%20423.372%20138.38%20421.279%20137.067C420.998%20136.891%20420.799%20136.61%20420.725%20136.287C420.651%20135.964%20420.708%20135.625%20420.885%20135.344C421.061%20135.063%20421.341%20134.864%20421.665%20134.79C421.988%20134.716%20422.327%20134.773%20422.608%20134.95C424.785%20136.315%20426.88%20137.808%20428.881%20139.422C429.082%20139.585%20429.227%20139.805%20429.298%20140.054C429.368%20140.303%20429.36%20140.568%20429.273%20140.811C429.187%20141.055%20429.027%20141.266%20428.816%20141.415C428.605%20141.564%20428.353%20141.645%20428.094%20141.644V141.645ZM289.599%20139.129C289.302%20139.129%20289.015%20139.023%20288.789%20138.831C288.563%20138.639%20288.412%20138.373%20288.365%20138.08C288.317%20137.787%20288.375%20137.486%20288.528%20137.232C288.682%20136.978%20288.921%20136.787%20289.202%20136.693C291.561%20135.902%20293.996%20135.12%20296.44%20134.368C296.597%20134.317%20296.763%20134.298%20296.929%20134.312C297.094%20134.325%20297.254%20134.372%20297.401%20134.448C297.549%20134.524%20297.679%20134.629%20297.785%20134.757C297.891%20134.884%20297.971%20135.031%20298.02%20135.189C298.068%20135.348%20298.085%20135.514%20298.069%20135.679C298.053%20135.844%20298.004%20136.004%20297.926%20136.15C297.847%20136.296%20297.74%20136.425%20297.611%20136.529C297.483%20136.633%20297.334%20136.711%20297.175%20136.757C294.75%20137.504%20292.336%20138.28%20289.997%20139.064C289.868%20139.107%20289.734%20139.129%20289.599%20139.129ZM304.068%20134.669C303.766%20134.669%20303.474%20134.559%20303.246%20134.361C303.019%20134.163%20302.87%20133.889%20302.829%20133.59C302.788%20133.291%20302.856%20132.987%20303.021%20132.734C303.187%20132.481%20303.438%20132.297%20303.729%20132.215C306.164%20131.528%20308.633%20130.862%20311.067%20130.237C311.386%20130.158%20311.724%20130.209%20312.007%20130.378C312.289%20130.547%20312.494%20130.821%20312.576%20131.139C312.658%20131.458%20312.611%20131.797%20312.444%20132.081C312.278%20132.365%20312.007%20132.573%20311.689%20132.658C309.274%20133.278%20306.825%20133.939%20304.408%20134.621C304.298%20134.653%20304.183%20134.669%20304.068%20134.669H304.068ZM415.327%20133.605C415.139%20133.604%20414.953%20133.562%20414.784%20133.48C412.604%20132.425%20410.299%20131.451%20407.934%20130.583C407.625%20130.468%20407.374%20130.234%20407.236%20129.934C407.099%20129.634%20407.085%20129.292%20407.199%20128.982C407.312%20128.672%20407.544%20128.42%20407.843%20128.28C408.142%20128.14%20408.484%20128.125%20408.795%20128.236C411.237%20129.132%20413.618%20130.139%20415.872%20131.229C416.127%20131.352%20416.332%20131.558%20416.454%20131.813C416.577%20132.069%20416.609%20132.358%20416.546%20132.634C416.482%20132.909%20416.327%20133.156%20416.106%20133.332C415.884%20133.508%20415.61%20133.604%20415.327%20133.604L415.327%20133.605ZM318.731%20130.905C318.423%20130.905%20318.127%20130.792%20317.898%20130.587C317.669%20130.382%20317.523%20130.101%20317.489%20129.796C317.454%20129.49%20317.533%20129.183%20317.71%20128.932C317.888%20128.682%20318.151%20128.505%20318.451%20128.436C320.931%20127.864%20323.431%20127.321%20325.879%20126.823C326.204%20126.757%20326.542%20126.822%20326.818%20127.005C327.095%20127.188%20327.287%20127.473%20327.353%20127.798C327.419%20128.123%20327.354%20128.461%20327.171%20128.738C326.988%20129.014%20326.702%20129.207%20326.378%20129.273C323.95%20129.767%20321.472%20130.305%20319.013%20130.873C318.92%20130.894%20318.826%20130.904%20318.731%20130.904L318.731%20130.905ZM401.156%20128.376C401.045%20128.376%20400.935%20128.361%20400.828%20128.332C398.489%20127.699%20396.04%20127.138%20393.548%20126.663C393.385%20126.634%20393.229%20126.574%20393.09%20126.484C392.951%20126.395%20392.831%20126.278%20392.737%20126.142C392.643%20126.006%20392.577%20125.852%20392.543%20125.69C392.509%20125.529%20392.507%20125.361%20392.538%20125.199C392.569%20125.036%20392.632%20124.882%20392.723%20124.744C392.814%20124.606%20392.932%20124.487%20393.069%20124.395C393.207%20124.303%20393.361%20124.238%20393.523%20124.206C393.686%20124.174%20393.853%20124.175%20394.015%20124.208C396.569%20124.694%20399.081%20125.269%20401.482%20125.919C401.774%20125.998%20402.028%20126.18%20402.197%20126.432C402.365%20126.685%20402.436%20126.989%20402.396%20127.29C402.356%20127.59%20402.208%20127.866%20401.98%20128.066C401.753%20128.266%20401.46%20128.376%20401.157%20128.376H401.156ZM333.563%20127.89C333.25%20127.89%20332.949%20127.772%20332.718%20127.561C332.488%20127.349%20332.345%20127.059%20332.318%20126.747C332.291%20126.435%20332.382%20126.125%20332.573%20125.877C332.764%20125.629%20333.041%20125.462%20333.349%20125.408C335.869%20124.968%20338.396%20124.565%20340.861%20124.21C341.189%20124.163%20341.523%20124.248%20341.788%20124.447C342.053%20124.646%20342.229%20124.942%20342.276%20125.27C342.324%20125.598%20342.238%20125.932%20342.04%20126.197C341.841%20126.463%20341.545%20126.638%20341.217%20126.685C338.777%20127.037%20336.274%20127.435%20333.78%20127.872C333.708%20127.883%20333.636%20127.889%20333.564%20127.889L333.563%20127.89ZM348.54%20125.742C348.22%20125.742%20347.913%20125.619%20347.681%20125.399C347.449%20125.18%20347.31%20124.879%20347.292%20124.56C347.275%20124.241%20347.381%20123.927%20347.587%20123.684C347.794%20123.44%20348.086%20123.285%20348.404%20123.25C350.959%20122.967%20353.509%20122.731%20355.982%20122.55C356.313%20122.525%20356.64%20122.633%20356.891%20122.85C357.142%20123.066%20357.297%20123.374%20357.321%20123.704C357.346%20124.035%20357.238%20124.362%20357.021%20124.613C356.805%20124.864%20356.497%20125.018%20356.167%20125.043C353.723%20125.223%20351.204%20125.456%20348.678%20125.735C348.633%20125.74%20348.587%20125.742%20348.541%20125.741L348.54%20125.742ZM386.306%20125.525C386.255%20125.525%20386.204%20125.522%20386.153%20125.516C383.739%20125.221%20381.228%20124.991%20378.688%20124.83C378.524%20124.82%20378.363%20124.778%20378.215%20124.706C378.067%20124.634%20377.935%20124.534%20377.826%20124.41C377.717%20124.287%20377.634%20124.144%20377.58%20123.988C377.527%20123.832%20377.505%20123.668%20377.515%20123.503C377.525%20123.339%20377.568%20123.179%20377.641%20123.031C377.713%20122.883%20377.814%20122.751%20377.938%20122.643C378.062%20122.534%20378.205%20122.451%20378.361%20122.398C378.517%20122.346%20378.682%20122.324%20378.846%20122.335C381.433%20122.499%20383.993%20122.735%20386.456%20123.035C386.772%20123.073%20387.062%20123.231%20387.266%20123.475C387.47%20123.72%20387.573%20124.033%20387.554%20124.351C387.535%20124.669%20387.395%20124.968%20387.163%20125.186C386.931%20125.405%20386.624%20125.526%20386.306%20125.526V125.525ZM363.631%20124.637C363.299%20124.643%20362.979%20124.516%20362.741%20124.286C362.503%20124.055%20362.366%20123.739%20362.36%20123.408C362.355%20123.076%20362.481%20122.756%20362.712%20122.518C362.943%20122.28%20363.258%20122.143%20363.59%20122.137C365.508%20122.073%20367.425%20122.041%20369.286%20122.041C369.941%20122.035%20370.574%20122.044%20371.217%20122.052C371.548%20122.054%20371.866%20122.188%20372.099%20122.423C372.332%20122.659%20372.461%20122.978%20372.459%20123.31C372.458%20123.641%20372.324%20123.958%20372.088%20124.191C371.852%20124.424%20371.534%20124.554%20371.202%20124.552H371.187C370.557%20124.545%20369.927%20124.541%20369.297%20124.541H369.286C367.452%20124.541%20365.564%20124.573%20363.673%20124.636C363.661%20124.636%20363.646%20124.636%20363.632%20124.636L363.631%20124.637Z'%20fill='%237C878F'/%3e%3cpath%20d='M132.816%20382.663C132.529%20382.663%20132.25%20382.564%20132.027%20382.384C131.804%20382.203%20131.65%20381.951%20131.591%20381.67C131.532%20381.389%20131.572%20381.096%20131.703%20380.84C131.835%20380.585%20132.05%20380.383%20132.313%20380.268C133.472%20379.76%20134.651%20379.268%20135.818%20378.807C135.97%20378.747%20136.133%20378.717%20136.298%20378.72C136.462%20378.723%20136.624%20378.758%20136.774%20378.823C136.925%20378.888%20137.061%20378.982%20137.175%20379.1C137.29%20379.218%20137.379%20379.358%20137.44%20379.51C137.5%20379.663%20137.53%20379.826%20137.527%20379.99C137.524%20380.154%20137.489%20380.316%20137.424%20380.467C137.359%20380.617%20137.265%20380.754%20137.147%20380.868C137.029%20380.982%20136.889%20381.072%20136.737%20381.132C135.599%20381.582%20134.448%20382.062%20133.317%20382.557C133.159%20382.627%20132.988%20382.663%20132.816%20382.663Z'%20fill='%237C878F'/%3e%3cpath%20d='M118.332%20383.928C120.235%20383.448%20121.081%20380.296%20120.221%20376.888C119.361%20373.479%20117.121%20371.106%20115.217%20371.586C113.314%20372.067%20112.469%20375.219%20113.329%20378.627C114.189%20382.035%20116.429%20384.408%20118.332%20383.928Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M125.547%20402.058C127.381%20401.359%20127.853%20398.13%20126.6%20394.845C125.348%20391.561%20122.846%20389.466%20121.012%20390.165C119.178%20390.864%20118.707%20394.094%20119.959%20397.378C121.211%20400.662%20123.713%20402.758%20125.547%20402.058Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M119.177%20389.91C120.629%20389.91%20121.805%20388.733%20121.805%20387.282C121.805%20385.83%20120.629%20384.653%20119.177%20384.653C117.726%20384.653%20116.549%20385.83%20116.549%20387.282C116.549%20388.733%20117.726%20389.91%20119.177%20389.91Z'%20fill='%237C878F'/%3e%3c/svg%3e", CW = "data:image/svg+xml,%3csvg%20width='500'%20height='500'%20viewBox='0%200%20500%20500'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M74.108%20379.282C87.708%20412.469%20109.883%20419.377%20125.474%20412.469C155.626%20399.11%20233.95%20384.183%20314.392%20419.269C420.933%20465.739%20443.601%20395.628%20409.599%20324.709C375.597%20253.79%20364.071%20182.072%20403.27%20142.559C442.468%20103.047%20391.173%2041.2343%20300.079%20105.577C241.21%20147.157%20198.007%20137.898%20174.808%20126.144C152.943%20115.065%20128.626%20103.484%20105.844%20112.527C78.2%20123.5%2067.3075%20147.29%20109.366%20200.439C168.967%20275.754%2043.6218%20304.893%2074.108%20379.282Z'%20fill='%23E3E8EB'/%3e%3cpath%20d='M129.482%20217.615H341.14V380.392C341.14%20380.724%20341.008%20381.041%20340.774%20381.276C340.539%20381.51%20340.221%20381.642%20339.89%20381.642H130.732C130.401%20381.642%20130.083%20381.51%20129.849%20381.276C129.614%20381.041%20129.482%20380.724%20129.482%20380.392V217.615Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M288.042%20153.826H189.626L129.482%20217.614H341.14L288.042%20153.826Z'%20fill='%237C878F'/%3e%3cpath%20d='M149.531%20128.311L189.626%20153.827L129.483%20217.615L83.9199%20182.987L149.531%20128.311Z'%20fill='%236C7378'/%3e%3cpath%20d='M328.138%20128.311L288.043%20153.827L341.141%20217.615L393.749%20182.987L328.138%20128.311Z'%20fill='%236C7378'/%3e%3cpath%20d='M215.482%20129.616C216.613%20129.079%20217.494%20128.126%20217.939%20126.956C218.384%20125.785%20218.36%20124.488%20217.871%20123.335L199.834%2080.8033C199.578%2080.2008%20199.204%2079.6562%20198.732%2079.2023C198.261%2078.7484%20197.703%2078.3944%20197.091%2078.1618C196.479%2077.9292%20195.827%2077.8226%20195.173%2077.8485C194.519%2077.8745%20193.877%2078.0324%20193.286%2078.3128L189.811%2079.9605C189.22%2080.2409%20188.691%2080.6379%20188.258%2081.1277C187.824%2081.6175%20187.493%2082.19%20187.286%2082.8108C187.079%2083.4316%20187%2084.0878%20187.053%2084.74C187.106%2085.3922%20187.291%2086.0269%20187.595%2086.606L209.107%20127.49C209.691%20128.598%20210.679%20129.438%20211.867%20129.834C213.055%20130.23%20214.35%20130.152%20215.482%20129.616Z'%20fill='%237C878F'/%3e%3cpath%20d='M238.096%20125.492C238.915%20125.434%20239.68%20125.061%20240.23%20124.453C240.781%20123.844%20241.075%20123.046%20241.051%20122.225L240.16%2091.9459C240.148%2091.5171%20240.048%2091.0951%20239.868%2090.7056C239.689%2090.316%20239.432%2089.9668%20239.114%2089.679C238.795%2089.3912%20238.422%2089.1708%20238.017%2089.0309C237.611%2088.891%20237.181%2088.8345%20236.753%2088.8649L234.238%2089.0442C233.81%2089.0747%20233.392%2089.1913%20233.011%2089.3871C232.629%2089.5829%20232.291%2089.8539%20232.017%2090.1837C231.743%2090.5135%20231.538%2090.8953%20231.415%2091.3062C231.292%2091.7172%20231.253%2092.1487%20231.301%2092.5749L234.708%20122.675C234.8%20123.491%20235.204%20124.24%20235.836%20124.765C236.467%20125.29%20237.277%20125.551%20238.096%20125.492Z'%20fill='%237C878F'/%3e%3cpath%20d='M255.554%20136.685C257.806%20137.988%20260.968%20136.793%20262.722%20133.976L293.863%2083.9626C295.724%2080.9749%20295.283%2077.3334%20292.894%2075.9521L289.564%2074.0272C287.175%2072.6457%20283.799%2074.0802%20282.138%2077.1829L254.326%20129.121C252.76%20132.046%20253.301%20135.383%20255.554%20136.685Z'%20fill='%237C878F'/%3e%3cpath%20d='M290.679%20252H178.321C175.931%20252%20174%20253.93%20174%20256.318V342.682C174%20345.07%20175.931%20347%20178.321%20347H290.679C293.069%20347%20295%20345.07%20295%20342.682V256.318C295%20253.93%20293.069%20252%20290.679%20252ZM211.002%20271.432C215.769%20271.432%20219.645%20275.305%20219.645%20280.068C219.645%20284.832%20215.769%20288.705%20211.002%20288.705C206.235%20288.705%20202.359%20284.832%20202.359%20280.068C202.359%20275.305%20206.235%20271.432%20211.002%20271.432ZM280.402%20330.415C280.205%20330.581%20279.956%20330.671%20279.699%20330.672H189.287C188.693%20330.672%20188.207%20330.186%20188.207%20329.592C188.207%20329.336%20188.301%20329.093%20188.463%20328.891L211.461%20301.632C211.84%20301.173%20212.528%20301.119%20212.987%20301.497C213.028%20301.538%20213.082%20301.578%20213.122%20301.632L226.546%20317.555L247.896%20292.254C248.275%20291.795%20248.963%20291.741%20249.422%20292.119C249.463%20292.159%20249.517%20292.2%20249.557%20292.254L280.564%20328.904C280.915%20329.349%20280.861%20330.038%20280.402%20330.415Z'%20fill='%236C7378'/%3e%3c/svg%3e", gW = "data:image/svg+xml,%3csvg%20width='500'%20height='500'%20viewBox='0%200%20500%20500'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M322.496%2097.5124C322.496%2097.5124%20269.015%20165.255%20183.446%20124.847C97.8763%2084.4391%2012.3068%20193.778%2085.9916%20260.332C159.676%20326.885%2087.5703%20363.457%20137.629%20404.245C194.524%20450.604%20244.057%20356.597%20289.219%20377.99C388.892%20425.203%20462.734%20406.513%20446.096%20351.843C416.889%20255.879%20379.542%20249.636%20408.065%20199.72C436.588%20149.805%20373.637%2046.0181%20322.496%2097.5124Z'%20fill='%23E3E8EB'/%3e%3crect%20x='83'%20y='137.14'%20width='334.341'%20height='193.363'%20rx='40'%20fill='%237C878F'/%3e%3crect%20x='88.3926'%20y='142.533'%20width='324.326'%20height='182.578'%20rx='33'%20fill='white'/%3e%3crect%20x='226.289'%20y='330.503'%20width='47.763'%20height='57.7778'%20fill='%237C878F'/%3e%3crect%20x='187.771'%20y='388.281'%20width='125.57'%20height='17.7185'%20rx='8.85926'%20fill='%237C878F'/%3e%3cpath%20d='M317.01%20174.9L148.981%20212.509C142.839%20213.884%20138.802%20219.771%20139.734%20225.996L158.653%20352.334C159.77%20359.791%20167.405%20364.383%20174.515%20361.873L376.448%20290.603C383.503%20288.113%20386.584%20279.845%20382.879%20273.345L330.057%20180.669C327.447%20176.089%20322.154%20173.749%20317.01%20174.9Z'%20fill='%23E3E8EB'%20stroke='%23A2B1BD'%20stroke-width='14'/%3e%3cpath%20d='M223.59%20168.075L228.126%20185.6C229.237%20189.89%20226.648%20194.266%20222.353%20195.358L147.138%20214.48C142.798%20215.583%20138.398%20212.91%20137.378%20208.55L132.616%20188.205C131.597%20183.851%20134.345%20179.507%20138.716%20178.563L214.156%20162.26C218.352%20161.353%20222.515%20163.919%20223.59%20168.075Z'%20fill='%23A2B1BD'%20stroke='%23A2B1BD'%20stroke-width='14'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M307.335%2096.0146C308.626%2094.7246%20310.375%2094%20312.2%2094C314.024%2094%20315.774%2094.7246%20317.065%2096.0146L325.961%20104.911C327.251%20106.202%20327.976%20107.951%20327.976%20109.776C327.976%20111.6%20327.251%20113.35%20325.961%20114.641L320.505%20120.097L301.879%20101.471L307.335%2096.0146ZM297.014%20106.336L266.051%20137.299C264.761%20138.589%20264.036%20140.339%20264.035%20142.163V151.06C264.035%20152.885%20264.76%20154.635%20266.05%20155.925C267.341%20157.216%20269.091%20157.941%20270.916%20157.941H279.813C281.637%20157.94%20283.387%20157.215%20284.677%20155.925L315.64%20124.962L297.014%20106.336Z'%20fill='%23A2B1BD'/%3e%3c/svg%3e", mW = "data:image/svg+xml,%3csvg%20width='500'%20height='500'%20viewBox='0%200%20500%20500'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M157.807%20126.89C157.807%20126.89%20214.666%20170.037%20301.107%2089.3587C377.875%2017.7087%20440.557%20130.756%20440.996%20184.892C441.564%20255.021%20364.227%20311.134%20401.758%20357.195C439.289%20403.256%20327.329%20479.318%20266.988%20413.491C191.925%20331.605%20171.59%20398.138%20128.805%20398.138C98.0976%20398.138%2035.0521%20321.838%2077.6261%20265.073C113.451%20217.306%2093.9128%20201.453%2084.4511%20184.892C70.8028%20161.009%20103.216%2096.1824%20157.807%20126.89Z'%20fill='%23E3E8EB'/%3e%3cpath%20d='M411.369%2097.4776C411.369%2098.5391%20411.323%2099.5848%20411.23%20100.621C410.405%20109.978%20405.948%20118.64%20398.814%20124.751C391.68%20130.863%20382.437%20133.938%20373.064%20133.317C363.69%20132.697%20354.933%20128.431%20348.667%20121.432C342.4%20114.434%20339.124%20105.26%20339.539%2095.8754C339.954%2086.4909%20344.028%2077.642%20350.887%2071.2242C357.747%2064.8063%20366.847%2061.3297%20376.238%2061.5392C385.629%2061.7487%20394.565%2065.6275%20401.132%2072.3448C407.698%2079.0622%20411.373%2088.0839%20411.369%2097.4776Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M379.971%20100.229C377.652%20102.032%20374.412%20105.623%20375.391%20113.614C374.304%20116.716%20370.439%20122.641%20370.439%20125.475C370.439%20128.308%20365.802%20128.825%20365.287%20128.05C364.772%20127.275%20364.514%20117.488%20361.68%20115.684C358.847%20113.881%20359.362%20105.638%20359.362%20105.638C359.362%20105.638%20360.393%20102.546%20357.044%20100.485C353.695%2098.4246%20351.361%2093.5298%20354.334%2090.6961C357.301%2087.8623%20349.315%2086.0591%20348.285%2083.9983C347.847%2083.1233%20346.167%2081.1646%20344.385%2079.2118C348.239%2072.6842%20354.051%2067.5358%20360.996%2064.4971C363.628%2067.2471%20365.905%2070.7673%20365.287%2074.4666C365.39%2076.2698%20373.216%2079.1036%20369.383%2082.9666C365.545%2086.8308%20360.336%2092.2416%20369.383%2094.0438C378.425%2095.8498%20382.289%2098.4248%20379.971%20100.229Z'%20fill='%237C878F'/%3e%3cpath%20d='M400.551%2071.7629C398.624%2075.8279%20393.791%2079.1046%20391.051%2079.1046C387.96%2075.7546%20381.262%2080.3929%20380.633%2074.9829C380.267%2071.8299%20383.864%2066.9351%20386.929%2063.3906C392.04%2065.1247%20396.696%2067.986%20400.551%2071.7629Z'%20fill='%237C878F'/%3e%3cpath%20d='M411.23%20100.62C410.463%20109.516%20406.402%20117.804%20399.843%20123.862C398.653%20122.723%20397.649%20121.389%20398.004%20120.322C398.777%20118.004%20401.92%20113.109%20401.379%20110.018C400.875%20107.133%20403.538%2098.4049%20411.23%20100.62Z'%20fill='%237C878F'/%3e%3cpath%20d='M352.73%20279.206C351.579%20286.304%20349.675%20293.258%20347.048%20299.951C329.937%20343.784%20284.033%20371.243%20235.725%20363.351C209.055%20358.985%20185.21%20344.208%20169.432%20322.268C153.653%20300.327%20147.232%20273.019%20151.581%20246.347C151.802%20244.993%20152.059%20243.629%20152.328%20242.301C163.227%20188.979%20214.39%20153.349%20268.585%20162.201C284.756%20164.815%20300.052%20171.313%20313.162%20181.136C317.469%20184.352%20321.511%20187.91%20325.247%20191.775C336.342%20203.187%20344.607%20217.041%20349.38%20232.224C354.152%20247.408%20355.3%20263.498%20352.73%20279.205V279.206Z'%20fill='%236C7378'/%3e%3cpath%20d='M347.049%20299.951C327.642%20312.445%20304.724%20324.001%20279.458%20333.558C253.731%20343.283%20228.467%20349.853%20205.311%20353.294C150.898%20361.407%20108.165%20352.342%2098.5361%20326.873C89.5191%20303.085%20111.697%20270.864%20152.329%20242.301C152.06%20243.629%20151.802%20244.993%20151.581%20246.347C150.769%20251.3%20150.328%20256.307%20150.263%20261.327C126.853%20279.402%20114.67%20297.104%20119.472%20309.802C124.142%20322.147%20143.966%20327.402%20172.169%20325.912C199.74%20324.46%20235.319%20316.518%20272.559%20302.439C304.767%20290.248%20333.012%20275.429%20354.042%20260.544C382.197%20240.64%20397.467%20220.611%20392.197%20206.638C386.778%20192.294%20360.919%20187.513%20325.247%20191.776C321.511%20187.911%20317.469%20184.353%20313.162%20181.137C363.094%20175.366%20401.582%20184.797%20410.654%20208.785C420.372%20234.442%20393.868%20269.863%20347.049%20299.951Z'%20fill='%237C878F'/%3e%3c/svg%3e", pW = "data:image/svg+xml,%3csvg%20width='500'%20height='375'%20viewBox='0%200%20500%20375'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M336.843%20160.775C301.358%20160.775%20265.236%20159.333%20231.446%20149.917C198.292%20140.713%20167.852%20122.857%20140.718%20102.201C122.954%2088.7559%20106.801%2078.0675%2083.7377%2079.6793C61.1554%2080.9161%2039.571%2089.3929%2022.1784%20103.855C-7.15984%20129.304%20-2.75064%20176.935%208.99312%20210.4C26.63%20260.788%2080.3036%20295.695%20125.922%20318.514C178.621%20344.853%20236.534%20360.122%20294.574%20368.944C345.45%20376.664%20410.825%20382.305%20454.917%20349.052C495.405%20318.514%20506.513%20248.785%20496.592%20201.705C494.188%20187.784%20486.785%20175.221%20475.776%20166.374C447.328%20145.591%20404.889%20159.46%20372.922%20160.181C361.052%20160.436%20348.969%20160.733%20336.843%20160.775Z'%20fill='%23E3E8EB'/%3e%3cpath%20d='M316.176%201.62428L109.039%2029.6304C102.405%2030.5273%2097.7544%2036.6322%2098.6514%2043.266L138.821%20340.365C139.718%20346.998%20145.822%20351.649%20152.456%20350.752L359.594%20322.746C366.228%20321.849%20370.878%20315.744%20369.981%20309.11L329.812%2012.0119C328.915%205.37803%20322.81%200.727356%20316.176%201.62428Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M385.119%2044.9761H176.19C169.499%2044.9761%20164.074%2050.4137%20164.074%2057.1215V357.528C164.074%20364.236%20169.499%20369.674%20176.19%20369.674H385.119C391.811%20369.674%20397.235%20364.236%20397.235%20357.528V57.1215C397.235%2050.4137%20391.811%2044.9761%20385.119%2044.9761Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M330.835%20278.137H230.475C226.711%20278.137%20223.66%20281.22%20223.66%20285.024V285.067C223.66%20288.87%20226.711%20291.954%20230.475%20291.954H330.835C334.599%20291.954%20337.65%20288.87%20337.65%20285.067V285.024C337.65%20281.22%20334.599%20278.137%20330.835%20278.137Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M326.948%20334.268H230.912C229.77%20334.268%20228.844%20335.106%20228.844%20336.14V336.713C228.844%20337.747%20229.77%20338.585%20230.912%20338.585H326.948C328.09%20338.585%20329.016%20337.747%20329.016%20336.713V336.14C329.016%20335.106%20328.09%20334.268%20326.948%20334.268Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M351.317%20311.815H209.995C208.481%20311.815%20207.254%20312.975%20207.254%20314.406C207.254%20315.837%20208.481%20316.997%20209.995%20316.997H351.317C352.831%20316.997%20354.059%20315.837%20354.059%20314.406C354.059%20312.975%20352.831%20311.815%20351.317%20311.815Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M377.289%2055.3384H183.158C178.342%2055.3384%20174.438%2059.2399%20174.438%2064.0527V232.289C174.438%20237.102%20178.342%20241.003%20183.158%20241.003H377.289C382.105%20241.003%20386.009%20237.102%20386.009%20232.289V64.0527C386.009%2059.2399%20382.105%2055.3384%20377.289%2055.3384Z'%20fill='white'%20stroke='%237C878F'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e", AW = "data:image/svg+xml,%3csvg%20width='500'%20height='500'%20viewBox='0%200%20500%20500'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M94.0417%20226.838C94.0417%20226.838%20163.275%20224.065%20178.237%20110.26C191.523%209.1896%20308.269%2055.1931%20342.016%2095.4821C385.733%20147.673%20362.429%20237.453%20418.981%20248.794C475.533%20260.136%20438.604%20386.236%20352.761%20374.166C245.975%20359.152%20271.811%20421.552%20239.754%20447.963C216.748%20466.919%20122.414%20448.672%20119.27%20379.862C116.624%20321.959%2092.1995%20322.143%2074.8872%20315.577C49.919%20306.108%2034.1862%20237.53%2094.0417%20226.838Z'%20fill='%23E3E8EB'/%3e%3cpath%20d='M329.397%20353.227L261.377%20286.014L247.908%20299.644L315.928%20366.857L329.397%20353.227Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M355.381%20371.286L302.461%20318.994C302.167%20318.703%20301.692%20318.706%20301.401%20319.001L281.371%20339.271C281.08%20339.566%20281.083%20340.041%20281.377%20340.332L334.297%20392.624C334.592%20392.915%20335.067%20392.912%20335.358%20392.617L355.387%20372.347C355.679%20372.052%20355.676%20371.577%20355.381%20371.286Z'%20fill='%237C878F'/%3e%3cpath%20d='M201.091%20319.817C247.886%20319.817%20285.822%20281.881%20285.822%20235.085C285.822%20188.289%20247.886%20150.354%20201.091%20150.354C154.295%20150.354%20116.359%20188.289%20116.359%20235.085C116.359%20281.881%20154.295%20319.817%20201.091%20319.817Z'%20fill='%237C878F'/%3e%3cpath%20d='M201.091%20305.991C240.251%20305.991%20271.997%20274.246%20271.997%20235.085C271.997%20195.925%20240.251%20164.18%20201.091%20164.18C161.931%20164.18%20130.186%20195.925%20130.186%20235.085C130.186%20274.246%20161.931%20305.991%20201.091%20305.991Z'%20fill='%23EEF2F5'/%3e%3cpath%20d='M344.338%20158.488C324.463%20152.045%20302.985%20162.941%20296.516%20182.898C290.074%20202.773%20300.97%20224.252%20320.927%20230.72C340.884%20237.188%20362.307%20226.186%20368.75%20206.31C375.194%20186.434%20364.215%20164.93%20344.338%20158.488ZM338.341%20176.99C340.566%20177.711%20342.527%20179.077%20343.974%20180.914C345.421%20182.75%20346.291%20184.976%20346.472%20187.307C346.653%20189.639%20346.137%20191.972%20344.99%20194.01C343.843%20196.048%20342.117%20197.7%20340.03%20198.755C337.944%20199.811%20335.59%20200.223%20333.269%20199.94C330.948%20199.656%20328.763%20198.689%20326.992%20197.162C325.221%20195.635%20323.943%20193.616%20323.321%20191.362C322.698%20189.108%20322.76%20186.719%20323.497%20184.5C325.487%20178.359%20332.2%20175%20338.341%20176.99ZM323.336%20223.286C316.733%20221.157%20311.075%20216.798%20307.332%20210.957C314.336%20206.977%20321.66%20205.869%20328.285%20208.016C334.911%20210.164%20340.299%20215.302%20343.53%20222.689C337.071%20225.224%20329.933%20225.436%20323.336%20223.286Z'%20fill='%237C878F'/%3e%3cpath%20d='M178.912%20339.6C175.46%20341.362%20172.608%20344.108%20170.716%20347.492C168.825%20350.875%20167.979%20354.743%20168.286%20358.606C168.593%20362.47%20170.039%20366.156%20172.441%20369.198C174.842%20372.24%20178.092%20374.502%20181.779%20375.697C185.466%20376.892%20189.425%20376.967%20193.155%20375.912C196.884%20374.857%20200.217%20372.72%20202.733%20369.771C205.248%20366.822%20206.832%20363.193%20207.284%20359.344C207.737%20355.494%20207.038%20351.597%20205.276%20348.145C202.909%20343.52%20198.804%20340.023%20193.861%20338.421C188.919%20336.819%20183.542%20337.243%20178.912%20339.6ZM183.477%20348.542C184.552%20347.993%20185.766%20347.776%20186.965%20347.918C188.163%20348.06%20189.293%20348.555%20190.21%20349.34C191.127%20350.125%20191.791%20351.165%20192.116%20352.327C192.441%20353.49%20192.414%20354.723%20192.038%20355.87C191.661%20357.017%20190.953%20358.026%20190.002%20358.77C189.051%20359.514%20187.9%20359.958%20186.696%20360.047C185.493%20360.136%20184.289%20359.865%20183.239%20359.27C182.19%20358.674%20181.34%20357.779%20180.799%20356.7C180.083%20355.261%20179.962%20353.598%20180.463%20352.071C180.964%20350.544%20182.047%20349.276%20183.477%20348.541V348.542ZM194.897%20370.917C191.71%20372.55%20188.054%20373.024%20184.556%20372.258C185.66%20368.249%20187.928%20365.171%20191.131%20363.537C194.334%20361.902%20198.175%20361.812%20202.05%20363.328C200.618%20366.611%20198.09%20369.293%20194.897%20370.916V370.917Z'%20fill='%237C878F'/%3e%3c/svg%3e", vW = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'%20d='m13.535%206.652%203.814%203.814M4%2020l4.625-.932c.246-.05.471-.17.648-.348L19.628%208.36a1.271%201.271%200%200%200%200-1.798l-2.194-2.191a1.271%201.271%200%200%200-1.798%200L5.281%2014.735a1.271%201.271%200%200%200-.347.647L4%2020Z'%20/%3e%3c/svg%3e", bW = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20stroke='currentColor'%20d='M2%2019.778V4.222A2.222%202.222%200%200%201%204.222%202h15.556A2.222%202.222%200%200%201%2022%204.222v15.556A2.222%202.222%200%200%201%2019.778%2022H4.222A2.222%202.222%200%200%201%202%2019.778Z'/%3e%3cpath%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'%20d='M5%205.5h.913c1.679%200%202.519%200%203.177.46.656.46.988%201.28%201.65%202.916l2.522%206.248c.66%201.637.991%202.456%201.65%202.915.656.461%201.495.461%203.175.461H19m-5.25-13H19'/%3e%3c/svg%3e", yW = "data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='move'%3e%3cpath%20id='Icon'%20d='M6.80262%2014.8026L4%2012M4%2012L6.80262%209.19738M4%2012H20M17.1974%2014.8026L20%2012M20%2012L17.1974%209.19738M9.19738%206.80262L12%204M12%204L14.8026%206.80262M12%204L12%2020M9.19738%2017.1974L12%2020M12%2020L14.8026%2017.1974'%20stroke='%23262626'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/g%3e%3c/svg%3e", wW = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='%23262626'%20d='M11.5%206a.5.5%200%200%200%201%200h-1Zm1-4a.5.5%200%200%200-1%200h1Zm-1%2020a.5.5%200%200%200%201%200h-1Zm1-4a.5.5%200%200%200-1%200h1Zm5.5-6.5a.5.5%200%200%200%200%201v-1Zm4%201a.5.5%200%200%200%200-1v1Zm-20-1a.5.5%200%200%200%200%201v-1Zm4%201a.5.5%200%200%200%200-1v1Zm14-.5h-.5a7.5%207.5%200%200%201-7.5%207.5v1a8.5%208.5%200%200%200%208.5-8.5H20Zm-8%208v-.5A7.5%207.5%200%200%201%204.5%2012h-1a8.5%208.5%200%200%200%208.5%208.5V20Zm-8-8h.5A7.5%207.5%200%200%201%2012%204.5v-1A8.5%208.5%200%200%200%203.5%2012H4Zm8-8v.5a7.5%207.5%200%200%201%207.5%207.5h1A8.5%208.5%200%200%200%2012%203.5V4Zm0%202h.5V2h-1v4h.5Zm0%2016h.5v-4h-1v4h.5Zm6-10v.5h4v-1h-4v.5ZM2%2012v.5h4v-1H2v.5Zm13%200h-.5a2.5%202.5%200%200%201-2.5%202.5v1a3.5%203.5%200%200%200%203.5-3.5H15Zm-3%203v-.5A2.5%202.5%200%200%201%209.5%2012h-1a3.5%203.5%200%200%200%203.5%203.5V15Zm-3-3h.5A2.5%202.5%200%200%201%2012%209.5v-1A3.5%203.5%200%200%200%208.5%2012H9Zm3-3v.5a2.5%202.5%200%200%201%202.5%202.5h1A3.5%203.5%200%200%200%2012%208.5V9Z'/%3e%3c/svg%3e", xW = "data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='undo'%3e%3cpath%20id='Icon'%20d='M5.59961%2014.1875C6.49034%2016.9822%209.0414%2019%2012.0495%2019C15.7983%2019%2018.8373%2015.866%2018.8373%2012C18.8373%208.13401%2015.7983%205%2012.0495%205C9.537%205%207.34334%206.4077%206.16969%208.5M6.16969%208.5H9.56371M6.16969%208.5L6.16977%205'%20stroke='%23292929'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/g%3e%3c/svg%3e", _W = "data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='zoom_in'%3e%3cpath%20id='Icon'%20d='M17.0399%2016.4406C16.8414%2016.2486%2016.5249%2016.2539%2016.3329%2016.4523C16.1409%2016.6508%2016.1461%2016.9674%2016.3446%2017.1594L17.0399%2016.4406ZM19.6523%2020.3594C19.8508%2020.5514%2020.1674%2020.5461%2020.3594%2020.3477C20.5514%2020.1492%2020.5461%2019.8326%2020.3477%2019.6406L19.6523%2020.3594ZM10.9286%2014.2857C10.9286%2014.5619%2011.1524%2014.7857%2011.4286%2014.7857C11.7047%2014.7857%2011.9286%2014.5619%2011.9286%2014.2857H10.9286ZM11.9286%208.57143C11.9286%208.29529%2011.7047%208.07143%2011.4286%208.07143C11.1524%208.07143%2010.9286%208.29529%2010.9286%208.57143H11.9286ZM8.57143%2010.9286C8.29529%2010.9286%208.07143%2011.1524%208.07143%2011.4286C8.07143%2011.7047%208.29529%2011.9286%208.57143%2011.9286V10.9286ZM14.2857%2011.9286C14.5619%2011.9286%2014.7857%2011.7047%2014.7857%2011.4286C14.7857%2011.1524%2014.5619%2010.9286%2014.2857%2010.9286V11.9286ZM18.4333%2011.4667C18.4333%2015.3143%2015.3143%2018.4333%2011.4667%2018.4333V19.4333C15.8665%2019.4333%2019.4333%2015.8665%2019.4333%2011.4667H18.4333ZM11.4667%2018.4333C7.61908%2018.4333%204.5%2015.3143%204.5%2011.4667H3.5C3.5%2015.8665%207.0668%2019.4333%2011.4667%2019.4333V18.4333ZM4.5%2011.4667C4.5%207.61908%207.61908%204.5%2011.4667%204.5V3.5C7.0668%203.5%203.5%207.0668%203.5%2011.4667H4.5ZM11.4667%204.5C15.3143%204.5%2018.4333%207.61908%2018.4333%2011.4667H19.4333C19.4333%207.0668%2015.8665%203.5%2011.4667%203.5V4.5ZM16.3446%2017.1594L19.6523%2020.3594L20.3477%2019.6406L17.0399%2016.4406L16.3446%2017.1594ZM11.9286%2014.2857V11.4286H10.9286V14.2857H11.9286ZM11.9286%2011.4286V8.57143H10.9286V11.4286H11.9286ZM8.57143%2011.9286H11.4286V10.9286H8.57143V11.9286ZM11.4286%2011.9286H14.2857V10.9286H11.4286V11.9286Z'%20fill='%23262626'/%3e%3c/g%3e%3c/svg%3e", EW = "data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='zoom_out'%3e%3cpath%20id='Icon'%20d='M16.6922%2016.8L20%2020M8.57143%2011.4286H14.2857M18.9333%2011.4667C18.9333%2015.5904%2015.5904%2018.9333%2011.4667%2018.9333C7.34294%2018.9333%204%2015.5904%204%2011.4667C4%207.34294%207.34294%204%2011.4667%204C15.5904%204%2018.9333%207.34294%2018.9333%2011.4667Z'%20stroke='%23262626'%20stroke-linecap='round'/%3e%3c/g%3e%3c/svg%3e", SW = "data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='fill'%3e%3cpath%20id='Icon'%20d='M9.33333%204H5.77778C4.79594%204%204%204.79594%204%205.77778V9.33333M9.33333%2020H5.77778C4.79594%2020%204%2019.2041%204%2018.2222V14.6667M14.6667%204H18.2222C19.2041%204%2020%204.79594%2020%205.77778V9.33333M20%2014.6667V18.2222C20%2019.2041%2019.2041%2020%2018.2222%2020H14.6667'%20stroke='%23262626'%20stroke-linecap='round'/%3e%3c/g%3e%3c/svg%3e", MW = "data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='point_annotation'%3e%3cpath%20id='Icon'%20d='M11.9998%2012.0751V11.9999M19.4688%2019.4688C17.889%2021.0485%2013.2645%2018.9853%209.13958%2014.8604C5.01467%2010.7355%202.95141%206.11091%204.53116%204.53116C6.11091%202.95141%2010.7355%205.01467%2014.8604%209.13958C18.9853%2013.2645%2021.0485%2017.889%2019.4688%2019.4688ZM4.53132%2019.4688C2.95157%2017.8891%205.01483%2013.2645%209.13974%209.13963C13.2647%205.01471%2017.8892%202.95145%2019.469%204.53121C21.0487%206.11096%2018.9854%2010.7355%2014.8605%2014.8604C10.7356%2018.9853%206.11107%2021.0486%204.53132%2019.4688Z'%20stroke='%23262626'%20stroke-linecap='round'/%3e%3c/g%3e%3c/svg%3e", HW = "data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='prompt_annotation'%3e%3cpath%20id='Vector'%20d='M7.99085%203.43426C8.0336%203.22814%208.19517%203.12508%208.30047%203.12508C8.40488%203.12508%208.56644%203.22859%208.6092%203.43426C8.76851%204.19976%209.17129%205.3775%2010.1965%206.40313C11.2216%207.42876%2012.3994%207.83244%2013.1653%207.9913C13.3715%208.03405%2013.4745%208.19561%2013.4745%208.30047C13.4745%208.40533%2013.371%208.56689%2013.1653%208.61009C12.3994%208.76896%2011.2216%209.17264%2010.1965%2010.1987C9.17129%2011.2239%208.76851%2012.4003%208.60965%2013.1662C8.5669%2013.3724%208.40488%2013.4759%208.30002%2013.4759C8.19517%2013.4759%208.0336%2013.3724%207.99085%2013.1667C7.83154%2012.4007%207.42831%2011.2225%206.40313%2010.1974C5.37706%209.17129%204.19977%208.76851%203.43426%208.6092C3.22814%208.56689%203.12509%208.40578%203.12509%208.30092C3.12509%208.19606%203.22814%208.03405%203.43471%207.9913C4.20067%207.83199%205.37751%207.42876%206.40313%206.40358C7.42876%205.3775%207.83199%204.20021%207.99085%203.43426ZM8.30047%202C7.56017%202%207.01833%202.58414%206.88962%203.20564C6.75866%203.83479%206.42968%204.78526%205.60702%205.60792C4.78526%206.43013%203.83524%206.75866%203.20564%206.88962C2.5837%207.01878%201.99865%207.56152%202%208.30272C2.00135%209.04213%202.58505%209.58217%203.20564%209.71133C3.83479%209.84184%204.78526%2010.1704%205.60702%2010.9926C6.42878%2011.8148%206.75821%2012.7657%206.88962%2013.3958C7.01833%2014.0168%207.56017%2014.6009%208.30002%2014.6009C9.04033%2014.6009%209.58217%2014.0163%209.71133%2013.3949C9.84184%2012.7657%2010.1704%2011.8161%2010.9921%2010.9939C11.8143%2010.1713%2012.7648%209.84184%2013.3944%209.71133C14.0155%209.58217%2014.5996%209.04078%2014.5996%208.30047C14.5996%207.56017%2014.0155%207.01878%2013.3935%206.88962C12.7644%206.75911%2011.8139%206.43058%2010.9921%205.60792C10.1704%204.78526%209.84139%203.83479%209.71088%203.20519C9.58172%202.58414%209.04033%202%208.30047%202ZM8.97418%2015.4002V17.1886C8.97418%2017.6362%209.15198%2018.0655%209.46847%2018.382C9.78496%2018.6985%2010.2142%2018.8763%2010.6618%2018.8763H17.1873C17.6349%2018.8763%2018.0641%2018.6985%2018.3806%2018.382C18.6971%2018.0655%2018.8749%2017.6362%2018.8749%2017.1886V10.6631C18.8749%2010.2156%2018.6971%209.78631%2018.3806%209.46982C18.0641%209.15332%2017.6349%208.97552%2017.1873%208.97552H15.3989C15.4666%208.75694%2015.5006%208.5293%2015.4997%208.30047C15.4994%208.14386%2015.4848%207.99385%2015.456%207.85044H17.1873C17.9333%207.85044%2018.6487%208.14678%2019.1762%208.67426C19.7037%209.20175%2020%209.91717%2020%2010.6631V17.1886C20%2017.9346%2019.7037%2018.65%2019.1762%2019.1775C18.6487%2019.705%2017.9333%2020.0013%2017.1873%2020.0013H10.6618C9.91582%2020.0013%209.2004%2019.705%208.67291%2019.1775C8.14543%2018.65%207.84909%2017.9346%207.84909%2017.1886V15.4569C7.9931%2015.486%208.14341%2015.5007%208.30002%2015.501C8.54034%2015.501%208.76536%2015.465%208.97418%2015.4002ZM11.4494%2012.4633C11.4494%2012.1528%2011.7014%2011.9007%2012.0119%2011.9007H16.2872C16.4364%2011.9007%2016.5795%2011.96%2016.685%2012.0655C16.7905%2012.171%2016.8498%2012.3141%2016.8498%2012.4633C16.8498%2012.6125%2016.7905%2012.7556%2016.685%2012.8611C16.5795%2012.9666%2016.4364%2013.0258%2016.2872%2013.0258H12.0119C11.7014%2013.0258%2011.4494%2012.7738%2011.4494%2012.4633ZM12.0119%2014.826C11.8627%2014.826%2011.7196%2014.8852%2011.6141%2014.9907C11.5086%2015.0962%2011.4494%2015.2393%2011.4494%2015.3885C11.4494%2015.5377%2011.5086%2015.6808%2011.6141%2015.7863C11.7196%2015.8918%2011.8627%2015.951%2012.0119%2015.951H14.9371C15.0863%2015.951%2015.2294%2015.8918%2015.3349%2015.7863C15.4404%2015.6808%2015.4997%2015.5377%2015.4997%2015.3885C15.4997%2015.2393%2015.4404%2015.0962%2015.3349%2014.9907C15.2294%2014.8852%2015.0863%2014.826%2014.9371%2014.826H12.0119Z'%20fill='%23262626'/%3e%3c/g%3e%3c/svg%3e", LW = "data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='refresh'%3e%3cpath%20id='Icon'%20d='M5.5398%208C6.84798%205.60879%209.29308%204%2012.0935%204C15.2687%204%2017.9871%206.06817%2019.1095%209M5.5398%208H9.32277M5.5398%208L5.53981%204M18.5697%2016C17.2615%2018.3912%2014.8164%2020%2012.016%2020C8.84075%2020%206.12238%2017.9318%205%2015M18.5697%2016H14.7867M18.5697%2016V20'%20stroke='%23262626'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/g%3e%3c/svg%3e", BW = "data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='guidelines'%3e%3cpath%20id='Icon'%20d='M8.50031%208H14.5003M8.50031%2011H14.5003M8.50031%2014H11.5003M7.00008%204H16.0003C17.1049%204%2018.0003%204.89545%2018.0003%206.00004L18%2018C18%2019.1046%2017.1046%2020%2016%2020L6.99999%2020C5.89542%2020%204.99999%2019.1045%205%2018L5.00008%205.99999C5.00008%204.89542%205.89551%204%207.00008%204Z'%20stroke='%23262626'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/g%3e%3c/svg%3e", OW = "data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='keyboard_shortcuts'%3e%3cpath%20id='Icon'%20d='M7.5%2010.5H7.52344M10.5%2010.5H10.5234M16.4766%2010.5H16.5M13.5%2010.5H13.5234M9%2013.5H9.02344M12%2013.5H12.0234M15%2013.5H15.0234M6%2017H18C19.1046%2017%2020%2016.1046%2020%2015V9C20%207.89543%2019.1046%207%2018%207H6C4.89543%207%204%207.89543%204%209V15C4%2016.1046%204.89543%2017%206%2017Z'%20stroke='%23262626'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/g%3e%3c/svg%3e", IW = "data:image/svg+xml,%3csvg%20width='12'%20height='7'%20viewBox='0%200%2012%207'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1%201L6%206L11%201'%20stroke='black'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e", RW = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20stroke='black'%20fill='%23000'%20d='M4%2020V4h16v16H4Zm1-1h14V5H5v14Z'/%3e%3c/svg%3e", PW = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='30'%20height='30'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20stroke='black'%20fill='%23000'%20d='M12.003%2020a7.804%207.804%200%200%201-3.12-.63%208.093%208.093%200%200%201-2.542-1.71%208.079%208.079%200%200%201-1.71-2.538A7.78%207.78%200%200%201%204%2012.002c0-1.106.21-2.146.63-3.12.42-.973.989-1.82%201.708-2.54a8.049%208.049%200%200%201%202.54-1.712%207.794%207.794%200%200%201%203.12-.63c1.105%200%202.145.21%203.12.63.973.42%201.82.99%202.54%201.709a8.06%208.06%200%200%201%201.712%202.54c.42.973.63%202.013.63%203.118%200%201.106-.21%202.146-.63%203.12a8.058%208.058%200%200%201-1.71%202.542%208.112%208.112%200%200%201-2.538%201.71%207.73%207.73%200%200%201-3.12.631ZM12%2019.111c1.985%200%203.667-.689%205.044-2.067%201.378-1.377%202.067-3.059%202.067-5.044%200-1.985-.689-3.667-2.067-5.044C15.667%205.578%2013.985%204.889%2012%204.889c-1.985%200-3.667.689-5.044%202.067C5.578%208.333%204.889%2010.015%204.889%2012c0%201.985.689%203.667%202.067%205.044%201.377%201.378%203.059%202.067%205.044%202.067Z'/%3e%3c/svg%3e", DW = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='30'%20height='30'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20stroke='black'%20fill='%23000'%20d='M19.357%206.301a2.207%202.207%200%200%200-3.476.466l-1.946-.53a2.206%202.206%200%201%200-4.164.989l-2.34%202.106a2.21%202.21%200%200%200-2.779.28A2.206%202.206%200%200%200%207.61%2012.88l4.826%203.541a2.206%202.206%200%201%200%203.28-1.012l1.889-5.35a2.2%202.2%200%200%200%201.416-.364%202.206%202.206%200%200%200%20.334-3.394h.003Zm-8.411-.875a1.103%201.103%200%201%201-.238.358c.056-.134.138-.255.24-.358h-.002ZM5.43%2011.952a1.104%201.104%200%201%201%201.56-1.562%201.104%201.104%200%200%201-1.56%201.562Zm9.835%206.068a1.103%201.103%200%201%201-1.56-1.56%201.103%201.103%200%200%201%201.56%201.56Zm-.59-2.978a2.206%202.206%200%200%200-1.585.489l-4.826-3.542a2.218%202.218%200%200%200-.093-1.837l2.34-2.106a2.207%202.207%200%200%200%203.136-.746l1.943.532a2.207%202.207%200%200%200%20.973%201.861l-1.887%205.35Zm3.9-6.4a1.103%201.103%200%201%201-1.558-1.56%201.103%201.103%200%201%201%201.56%201.56h-.002Z'/%3e%3c/svg%3e", NW = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='30'%20height='30'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20stroke='%23000'%20d='M19.5%2012a7.5%207.5%200%201%201-15%200%207.5%207.5%200%200%201%2015%200Z'%20opacity='1'/%3e%3cpath%20fill='%23000'%20d='M14%2012a2%202%200%201%201-4%200%202%202%200%200%201%204%200Z'/%3e%3c/svg%3e", kW = "data:image/svg+xml,%3csvg%20width='18'%20height='9'%20viewBox='0%200%2018%209'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1%201L9%208L17%201'%20stroke='%23CCCBCB'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e", TW = "data:image/svg+xml,%3csvg%20width='151'%20height='150'%20viewBox='0%200%20151%20150'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M63.9366%2095.7666L43.1366%2074.9667C42.3533%2074.1889%2041.3949%2073.7722%2040.2616%2073.7167C39.1283%2073.6611%2038.1199%2074.0778%2037.2366%2074.9667C36.3533%2075.8555%2035.9088%2076.8389%2035.9033%2077.9167C35.8977%2078.9944%2036.3421%2079.9778%2037.2366%2080.8667L59.2199%20102.85C60.5644%20104.2%2062.1338%20104.875%2063.9283%20104.875C65.7227%20104.875%2067.2949%20104.2%2068.6449%20102.85L114.287%2057.2167C115.064%2056.4333%20115.481%2055.475%20115.537%2054.3417C115.592%2053.2083%20115.175%2052.2%20114.287%2051.3167C113.398%2050.4333%20112.414%2049.9889%20111.337%2049.9833C110.259%2049.9778%20109.275%2050.4222%20108.387%2051.3167L63.9366%2095.7666ZM75.9449%20150C65.5783%20150%2055.8283%20148.033%2046.6949%20144.1C37.5671%20140.161%2029.6255%20134.817%2022.8699%20128.067C16.1144%20121.317%2010.7671%20113.383%206.82826%20104.267C2.88937%2095.15%200.919922%2085.4028%200.919922%2075.025C0.919922%2064.6472%202.88937%2054.8972%206.82826%2045.775C10.7616%2036.6472%2016.0977%2028.7055%2022.8366%2021.95C29.5755%2015.1944%2037.5116%209.84722%2046.6449%205.90833C55.7783%201.96944%2065.5283%200%2075.8949%200C86.2616%200%2096.0116%201.96944%20105.145%205.90833C114.273%209.84167%20122.214%2015.1806%20128.97%2021.925C135.725%2028.6694%20141.073%2036.6055%20145.012%2045.7333C148.95%2054.8611%20150.92%2064.6083%20150.92%2074.975C150.92%2085.3417%20148.953%2095.0917%20145.02%20104.225C141.087%20113.358%20135.742%20121.3%20128.987%20128.05C122.231%20134.8%20114.298%20140.147%20105.187%20144.092C96.0755%20148.036%2086.3283%20150.006%2075.9449%20150Z'%20fill='%236F29A9'/%3e%3c/svg%3e", FW = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20stroke='currentColor'%20stroke-linecap='round'%20stroke-width='1.5'%20d='m16%208-8%208m8%200L8%208'/%3e%3c/svg%3e", jW = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20stroke='currentColor'%20stroke-linecap='round'%20stroke-width='1.5'%20d='M16.106%2016.2%2019%2019m-.933-7.467a6.533%206.533%200%201%201-13.067%200%206.533%206.533%200%200%201%2013.067%200Z'/%3e%3c/svg%3e", VW = "data:image/svg+xml,%3csvg%20width='500'%20height='500'%20viewBox='0%200%20500%20500'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M94.0417%20226.838C94.0417%20226.838%20163.275%20224.065%20178.237%20110.26C191.523%209.1896%20308.269%2055.1931%20342.016%2095.4821C385.733%20147.673%20362.429%20237.453%20418.981%20248.794C475.533%20260.136%20438.604%20386.236%20352.761%20374.166C245.975%20359.152%20271.811%20421.552%20239.754%20447.963C216.748%20466.919%20122.414%20448.672%20119.27%20379.862C116.624%20321.959%2092.1995%20322.143%2074.8872%20315.577C49.919%20306.108%2034.1862%20237.53%2094.0417%20226.838Z'%20fill='%23E3E8EB'/%3e%3cpath%20d='M329.397%20353.227L261.377%20286.014L247.908%20299.644L315.928%20366.857L329.397%20353.227Z'%20fill='%23A2B1BD'/%3e%3cpath%20d='M355.381%20371.286L302.461%20318.994C302.167%20318.703%20301.692%20318.706%20301.401%20319.001L281.371%20339.271C281.08%20339.566%20281.083%20340.041%20281.377%20340.332L334.297%20392.624C334.592%20392.915%20335.067%20392.912%20335.358%20392.617L355.387%20372.347C355.679%20372.052%20355.676%20371.577%20355.381%20371.286Z'%20fill='%237C878F'/%3e%3cpath%20d='M201.091%20319.817C247.886%20319.817%20285.822%20281.881%20285.822%20235.085C285.822%20188.289%20247.886%20150.354%20201.091%20150.354C154.295%20150.354%20116.359%20188.289%20116.359%20235.085C116.359%20281.881%20154.295%20319.817%20201.091%20319.817Z'%20fill='%237C878F'/%3e%3cpath%20d='M201.091%20305.991C240.251%20305.991%20271.997%20274.246%20271.997%20235.085C271.997%20195.925%20240.251%20164.18%20201.091%20164.18C161.931%20164.18%20130.186%20195.925%20130.186%20235.085C130.186%20274.246%20161.931%20305.991%20201.091%20305.991Z'%20fill='%23EEF2F5'/%3e%3cpath%20d='M344.338%20158.488C324.463%20152.045%20302.985%20162.941%20296.516%20182.898C290.074%20202.773%20300.97%20224.252%20320.927%20230.72C340.884%20237.188%20362.307%20226.186%20368.75%20206.31C375.194%20186.434%20364.215%20164.93%20344.338%20158.488ZM338.341%20176.99C340.566%20177.711%20342.527%20179.077%20343.974%20180.914C345.421%20182.75%20346.291%20184.976%20346.472%20187.307C346.653%20189.639%20346.137%20191.972%20344.99%20194.01C343.843%20196.048%20342.117%20197.7%20340.03%20198.755C337.944%20199.811%20335.59%20200.223%20333.269%20199.94C330.948%20199.656%20328.763%20198.689%20326.992%20197.162C325.221%20195.635%20323.943%20193.616%20323.321%20191.362C322.698%20189.108%20322.76%20186.719%20323.497%20184.5C325.487%20178.359%20332.2%20175%20338.341%20176.99ZM323.336%20223.286C316.733%20221.157%20311.075%20216.798%20307.332%20210.957C314.336%20206.977%20321.66%20205.869%20328.285%20208.016C334.911%20210.164%20340.299%20215.302%20343.53%20222.689C337.071%20225.224%20329.933%20225.436%20323.336%20223.286Z'%20fill='%237C878F'/%3e%3cpath%20d='M178.912%20339.6C175.46%20341.362%20172.608%20344.108%20170.716%20347.492C168.825%20350.875%20167.979%20354.743%20168.286%20358.606C168.593%20362.47%20170.039%20366.156%20172.441%20369.198C174.842%20372.24%20178.092%20374.502%20181.779%20375.697C185.466%20376.892%20189.425%20376.967%20193.155%20375.912C196.884%20374.857%20200.217%20372.72%20202.733%20369.771C205.248%20366.822%20206.832%20363.193%20207.284%20359.344C207.737%20355.494%20207.038%20351.597%20205.276%20348.145C202.909%20343.52%20198.804%20340.023%20193.861%20338.421C188.919%20336.819%20183.542%20337.243%20178.912%20339.6ZM183.477%20348.542C184.552%20347.993%20185.766%20347.776%20186.965%20347.918C188.163%20348.06%20189.293%20348.555%20190.21%20349.34C191.127%20350.125%20191.791%20351.165%20192.116%20352.327C192.441%20353.49%20192.414%20354.723%20192.038%20355.87C191.661%20357.017%20190.953%20358.026%20190.002%20358.77C189.051%20359.514%20187.9%20359.958%20186.696%20360.047C185.493%20360.136%20184.289%20359.865%20183.239%20359.27C182.19%20358.674%20181.34%20357.779%20180.799%20356.7C180.083%20355.261%20179.962%20353.598%20180.463%20352.071C180.964%20350.544%20182.047%20349.276%20183.477%20348.541V348.542ZM194.897%20370.917C191.71%20372.55%20188.054%20373.024%20184.556%20372.258C185.66%20368.249%20187.928%20365.171%20191.131%20363.537C194.334%20361.902%20198.175%20361.812%20202.05%20363.328C200.618%20366.611%20198.09%20369.293%20194.897%20370.916V370.917Z'%20fill='%237C878F'/%3e%3c/svg%3e", zW = "data:image/svg+xml,%3csvg%20width='14'%20height='12'%20viewBox='0%200%2014%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20id='Icon'%20d='M6.0472%201L1.2853%206M1.2853%206L6.0472%2011M1.2853%206L12.7139%206'%20stroke='%23292929'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e", UW = "data:image/svg+xml,%3csvg%20width='14'%20height='12'%20viewBox='0%200%2014%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20id='Icon'%20d='M7.9528%201L12.7147%206M12.7147%206L7.9528%2011M12.7147%206L1.28613%206'%20stroke='%23292929'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e", y0 = {
|
|
10880
10880
|
width: 24,
|
|
10881
10881
|
height: 24
|
|
10882
|
-
},
|
|
10882
|
+
}, n0 = {
|
|
10883
10883
|
noAnnotationGraph: {
|
|
10884
10884
|
IconComponent: JQ,
|
|
10885
10885
|
size: { width: 265, height: 265 }
|
|
@@ -11013,7 +11013,7 @@ const XQ = /* @__PURE__ */ so(qQ), HC = ({
|
|
|
11013
11013
|
children: /* @__PURE__ */ Q.jsx(
|
|
11014
11014
|
"img",
|
|
11015
11015
|
{
|
|
11016
|
-
src:
|
|
11016
|
+
src: n0.crossUrl.IconComponent,
|
|
11017
11017
|
alt: "Close",
|
|
11018
11018
|
className: s0.closeIcon
|
|
11019
11019
|
}
|
|
@@ -12279,7 +12279,7 @@ const XQ = /* @__PURE__ */ so(qQ), HC = ({
|
|
|
12279
12279
|
/* @__PURE__ */ Q.jsx(
|
|
12280
12280
|
"img",
|
|
12281
12281
|
{
|
|
12282
|
-
src:
|
|
12282
|
+
src: n0.dropDownIcon.IconComponent,
|
|
12283
12283
|
alt: "drop-down icon"
|
|
12284
12284
|
}
|
|
12285
12285
|
)
|
|
@@ -12311,7 +12311,7 @@ const XQ = /* @__PURE__ */ so(qQ), HC = ({
|
|
|
12311
12311
|
/* @__PURE__ */ Q.jsx(
|
|
12312
12312
|
"img",
|
|
12313
12313
|
{
|
|
12314
|
-
src:
|
|
12314
|
+
src: n0.dropDownIcon.IconComponent,
|
|
12315
12315
|
alt: "drop-down icon"
|
|
12316
12316
|
}
|
|
12317
12317
|
)
|
|
@@ -15152,7 +15152,7 @@ function W0e() {
|
|
|
15152
15152
|
return !0;
|
|
15153
15153
|
return !1;
|
|
15154
15154
|
}
|
|
15155
|
-
function
|
|
15155
|
+
function X1(ke, lt) {
|
|
15156
15156
|
for (var rt = -1, dn = ke == null ? 0 : ke.length, Qn = Array(dn); ++rt < dn; )
|
|
15157
15157
|
Qn[rt] = lt(ke[rt], rt, ke);
|
|
15158
15158
|
return Qn;
|
|
@@ -15250,7 +15250,7 @@ function W0e() {
|
|
|
15250
15250
|
return dn;
|
|
15251
15251
|
}
|
|
15252
15252
|
function y3(ke, lt) {
|
|
15253
|
-
return
|
|
15253
|
+
return X1(lt, function(rt) {
|
|
15254
15254
|
return [rt, ke[rt]];
|
|
15255
15255
|
});
|
|
15256
15256
|
}
|
|
@@ -15263,7 +15263,7 @@ function W0e() {
|
|
|
15263
15263
|
};
|
|
15264
15264
|
}
|
|
15265
15265
|
function k2(ke, lt) {
|
|
15266
|
-
return
|
|
15266
|
+
return X1(lt, function(rt) {
|
|
15267
15267
|
return ke[rt];
|
|
15268
15268
|
});
|
|
15269
15269
|
}
|
|
@@ -15746,7 +15746,7 @@ function W0e() {
|
|
|
15746
15746
|
var ee = -1, he = Fo, Se = !0, Oe = C.length, ze = [], Ht = y.length;
|
|
15747
15747
|
if (!Oe)
|
|
15748
15748
|
return ze;
|
|
15749
|
-
I && (y =
|
|
15749
|
+
I && (y = X1(y, o1(I))), K ? (he = ha, Se = !1) : y.length >= o && (he = Si, Se = !1, y = new Aa(y));
|
|
15750
15750
|
e:
|
|
15751
15751
|
for (; ++ee < Oe; ) {
|
|
15752
15752
|
var Lt = C[ee], Dt = I == null ? Lt : I(Lt);
|
|
@@ -15834,7 +15834,7 @@ function W0e() {
|
|
|
15834
15834
|
function tu(C, y, I) {
|
|
15835
15835
|
for (var K = I ? ha : Fo, ee = C[0].length, he = C.length, Se = he, Oe = rt(he), ze = 1 / 0, Ht = []; Se--; ) {
|
|
15836
15836
|
var Lt = C[Se];
|
|
15837
|
-
Se && y && (Lt =
|
|
15837
|
+
Se && y && (Lt = X1(Lt, o1(y))), ze = ne(Lt.length, ze), Oe[Se] = !I && (y || ee >= 120 && Lt.length >= 120) ? new Aa(Se && Lt) : n;
|
|
15838
15838
|
}
|
|
15839
15839
|
Lt = C[0];
|
|
15840
15840
|
var Dt = -1, fn = Oe[0];
|
|
@@ -16006,15 +16006,15 @@ function W0e() {
|
|
|
16006
16006
|
return y += y < 0 ? I : 0, Ti(y, I) ? C[y] : n;
|
|
16007
16007
|
}
|
|
16008
16008
|
function Jm(C, y, I) {
|
|
16009
|
-
y.length ? y =
|
|
16009
|
+
y.length ? y = X1(y, function(he) {
|
|
16010
16010
|
return Jn(he) ? function(Se) {
|
|
16011
16011
|
return ba(Se, he.length === 1 ? he[0] : he);
|
|
16012
16012
|
} : he;
|
|
16013
16013
|
}) : y = [or];
|
|
16014
16014
|
var K = -1;
|
|
16015
|
-
y =
|
|
16015
|
+
y = X1(y, o1(Un()));
|
|
16016
16016
|
var ee = Gm(C, function(he, Se, Oe) {
|
|
16017
|
-
var ze =
|
|
16017
|
+
var ze = X1(y, function(Ht) {
|
|
16018
16018
|
return Ht(he);
|
|
16019
16019
|
});
|
|
16020
16020
|
return { criteria: ze, index: ++K, value: he };
|
|
@@ -16042,7 +16042,7 @@ function W0e() {
|
|
|
16042
16042
|
}
|
|
16043
16043
|
function iu(C, y, I, K) {
|
|
16044
16044
|
var ee = K ? _i : Zo, he = -1, Se = y.length, Oe = C;
|
|
16045
|
-
for (C === y && (y = tr(y)), I && (Oe =
|
|
16045
|
+
for (C === y && (y = tr(y)), I && (Oe = X1(C, o1(I))); ++he < Se; )
|
|
16046
16046
|
for (var ze = 0, Ht = y[he], Lt = I ? I(Ht) : Ht; (ze = ee(Oe, Lt, ze, K)) > -1; )
|
|
16047
16047
|
Oe !== C && Zr.call(Oe, ze, 1), Zr.call(C, ze, 1);
|
|
16048
16048
|
return C;
|
|
@@ -16168,7 +16168,7 @@ function W0e() {
|
|
|
16168
16168
|
if (typeof C == "string")
|
|
16169
16169
|
return C;
|
|
16170
16170
|
if (Jn(C))
|
|
16171
|
-
return
|
|
16171
|
+
return X1(C, pr) + "";
|
|
16172
16172
|
if (Ar(C))
|
|
16173
16173
|
return S1 ? S1.call(C) : "";
|
|
16174
16174
|
var y = C + "";
|
|
@@ -16524,7 +16524,7 @@ function W0e() {
|
|
|
16524
16524
|
}
|
|
16525
16525
|
function Cu(C) {
|
|
16526
16526
|
return ki(function(y) {
|
|
16527
|
-
return y =
|
|
16527
|
+
return y = X1(y, o1(Un())), f1(function(I) {
|
|
16528
16528
|
var K = this;
|
|
16529
16529
|
return C(y, function(ee) {
|
|
16530
16530
|
return d0(ee, K, I);
|
|
@@ -17157,13 +17157,13 @@ function W0e() {
|
|
|
17157
17157
|
return y ? Gr(C, 0, -1) : [];
|
|
17158
17158
|
}
|
|
17159
17159
|
var qD = f1(function(C) {
|
|
17160
|
-
var y =
|
|
17160
|
+
var y = X1(C, du);
|
|
17161
17161
|
return y.length && y[0] === C[0] ? tu(y) : [];
|
|
17162
17162
|
}), XD = f1(function(C) {
|
|
17163
|
-
var y = Yr(C), I =
|
|
17163
|
+
var y = Yr(C), I = X1(C, du);
|
|
17164
17164
|
return y === Yr(I) ? y = n : I.pop(), I.length && I[0] === C[0] ? tu(I, Un(y, 2)) : [];
|
|
17165
17165
|
}), JD = f1(function(C) {
|
|
17166
|
-
var y = Yr(C), I =
|
|
17166
|
+
var y = Yr(C), I = X1(C, du);
|
|
17167
17167
|
return y = typeof y == "function" ? y : n, y && I.pop(), I.length && I[0] === C[0] ? tu(I, n, y) : [];
|
|
17168
17168
|
});
|
|
17169
17169
|
function eN(C, y) {
|
|
@@ -17195,7 +17195,7 @@ function W0e() {
|
|
|
17195
17195
|
}
|
|
17196
17196
|
var aN = ki(function(C, y) {
|
|
17197
17197
|
var I = C == null ? 0 : C.length, K = qc(C, y);
|
|
17198
|
-
return tp(C,
|
|
17198
|
+
return tp(C, X1(y, function(ee) {
|
|
17199
17199
|
return Ti(ee, I) ? +ee : ee;
|
|
17200
17200
|
}).sort(dp)), K;
|
|
17201
17201
|
});
|
|
@@ -17296,14 +17296,14 @@ function W0e() {
|
|
|
17296
17296
|
if (D0(I))
|
|
17297
17297
|
return y = Y(I.length, y), !0;
|
|
17298
17298
|
}), Ca(y, function(I) {
|
|
17299
|
-
return
|
|
17299
|
+
return X1(C, $o(I));
|
|
17300
17300
|
});
|
|
17301
17301
|
}
|
|
17302
17302
|
function Up(C, y) {
|
|
17303
17303
|
if (!(C && C.length))
|
|
17304
17304
|
return [];
|
|
17305
17305
|
var I = Su(C);
|
|
17306
|
-
return y == null ? I :
|
|
17306
|
+
return y == null ? I : X1(I, function(K) {
|
|
17307
17307
|
return d0(y, n, K);
|
|
17308
17308
|
});
|
|
17309
17309
|
}
|
|
@@ -17434,7 +17434,7 @@ function W0e() {
|
|
|
17434
17434
|
Di(C, I, y);
|
|
17435
17435
|
});
|
|
17436
17436
|
function H6(C, y) {
|
|
17437
|
-
var I = Jn(C) ?
|
|
17437
|
+
var I = Jn(C) ? X1 : Gm;
|
|
17438
17438
|
return I(C, Un(y, 3));
|
|
17439
17439
|
}
|
|
17440
17440
|
function rk(C, y, I, K) {
|
|
@@ -17624,7 +17624,7 @@ function W0e() {
|
|
|
17624
17624
|
return Wp(2, C);
|
|
17625
17625
|
}
|
|
17626
17626
|
var vk = iD(function(C, y) {
|
|
17627
|
-
y = y.length == 1 && Jn(y[0]) ?
|
|
17627
|
+
y = y.length == 1 && Jn(y[0]) ? X1(y[0], o1(Un())) : X1(C2(y, 1), o1(Un()));
|
|
17628
17628
|
var I = y.length;
|
|
17629
17629
|
return f1(function(K) {
|
|
17630
17630
|
for (var ee = -1, he = ne(K.length, I); ++ee < he; )
|
|
@@ -17967,7 +17967,7 @@ function W0e() {
|
|
|
17967
17967
|
if (C == null)
|
|
17968
17968
|
return I;
|
|
17969
17969
|
var K = !1;
|
|
17970
|
-
y =
|
|
17970
|
+
y = X1(y, function(he) {
|
|
17971
17971
|
return he = E9(he, C), K || (K = he.length > 1), he;
|
|
17972
17972
|
}), ni(C, pu(C), I), K && (I = Wr(I, h | g | m, mD));
|
|
17973
17973
|
for (var ee = y.length; ee--; )
|
|
@@ -17983,7 +17983,7 @@ function W0e() {
|
|
|
17983
17983
|
function cA(C, y) {
|
|
17984
17984
|
if (C == null)
|
|
17985
17985
|
return {};
|
|
17986
|
-
var I =
|
|
17986
|
+
var I = X1(pu(C), function(K) {
|
|
17987
17987
|
return [K];
|
|
17988
17988
|
});
|
|
17989
17989
|
return y = Un(y), ep(C, I, function(K, ee) {
|
|
@@ -18240,7 +18240,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
18240
18240
|
});
|
|
18241
18241
|
function cF(C) {
|
|
18242
18242
|
var y = C == null ? 0 : C.length, I = Un();
|
|
18243
|
-
return C = y ?
|
|
18243
|
+
return C = y ? X1(C, function(K) {
|
|
18244
18244
|
if (typeof K[1] != "function")
|
|
18245
18245
|
throw new H0(a);
|
|
18246
18246
|
return [I(K[0]), K[1]];
|
|
@@ -18311,7 +18311,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
18311
18311
|
return Xm(y, C);
|
|
18312
18312
|
});
|
|
18313
18313
|
}
|
|
18314
|
-
var bF = Cu(
|
|
18314
|
+
var bF = Cu(X1), yF = Cu(To), wF = Cu(Vo);
|
|
18315
18315
|
function mA(C) {
|
|
18316
18316
|
return yu(C) ? $o(ri(C)) : XP(C);
|
|
18317
18317
|
}
|
|
@@ -18346,7 +18346,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
18346
18346
|
return ee;
|
|
18347
18347
|
}
|
|
18348
18348
|
function BF(C) {
|
|
18349
|
-
return Jn(C) ?
|
|
18349
|
+
return Jn(C) ? X1(C, ri) : Ar(C) ? [C] : tr(Np(K1(C)));
|
|
18350
18350
|
}
|
|
18351
18351
|
function OF(C) {
|
|
18352
18352
|
var y = ++G5;
|
|
@@ -18868,7 +18868,7 @@ if (typeof window < "u") {
|
|
|
18868
18868
|
const e = window.hotkeys;
|
|
18869
18869
|
ro.noConflict = (t) => (t && window.hotkeys === ro && (window.hotkeys = e), ro), window.hotkeys = ro;
|
|
18870
18870
|
}
|
|
18871
|
-
class
|
|
18871
|
+
class J1 extends Ae.Component {
|
|
18872
18872
|
constructor(t) {
|
|
18873
18873
|
super(t), this.isKeyDown = !1, this.handle = void 0, this.onKeyDown = this.onKeyDown.bind(this), this.onKeyUp = this.onKeyUp.bind(this), this.handleKeyUpEvent = this.handleKeyUpEvent.bind(this), this.handle = {};
|
|
18874
18874
|
}
|
|
@@ -18906,13 +18906,13 @@ class e0 extends Ae.Component {
|
|
|
18906
18906
|
return this.props.children || null;
|
|
18907
18907
|
}
|
|
18908
18908
|
}
|
|
18909
|
-
|
|
18909
|
+
J1.defaultProps = {
|
|
18910
18910
|
filter(e) {
|
|
18911
18911
|
var t = e.target || e.srcElement, n = t.tagName;
|
|
18912
18912
|
return !(t.isContentEditable || n === "INPUT" || n === "SELECT" || n === "TEXTAREA");
|
|
18913
18913
|
}
|
|
18914
18914
|
};
|
|
18915
|
-
|
|
18915
|
+
J1.propTypes = {
|
|
18916
18916
|
keyName: D3.string,
|
|
18917
18917
|
filter: D3.func,
|
|
18918
18918
|
onKeyDown: D3.func,
|
|
@@ -19561,7 +19561,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
19561
19561
|
case "send_to_sam":
|
|
19562
19562
|
if (U)
|
|
19563
19563
|
return V != "SAM" && g(), b();
|
|
19564
|
-
|
|
19564
|
+
e0.error("SAM is not allowed");
|
|
19565
19565
|
return;
|
|
19566
19566
|
case "edit_mode":
|
|
19567
19567
|
if (x) return x();
|
|
@@ -19608,7 +19608,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
19608
19608
|
// { enableOnTags: ['INPUT', 'TEXTAREA'] } // Optional: Ignore input and textarea fields
|
|
19609
19609
|
), /* @__PURE__ */ Q.jsxs(Q.Fragment, { children: [
|
|
19610
19610
|
/* @__PURE__ */ Q.jsx(
|
|
19611
|
-
|
|
19611
|
+
J1,
|
|
19612
19612
|
{
|
|
19613
19613
|
allowRepeat: !0,
|
|
19614
19614
|
keyName: "t",
|
|
@@ -19616,7 +19616,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
19616
19616
|
}
|
|
19617
19617
|
),
|
|
19618
19618
|
/* @__PURE__ */ Q.jsx(
|
|
19619
|
-
|
|
19619
|
+
J1,
|
|
19620
19620
|
{
|
|
19621
19621
|
allowRepeat: !0,
|
|
19622
19622
|
keyName: "u",
|
|
@@ -19624,7 +19624,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
19624
19624
|
}
|
|
19625
19625
|
),
|
|
19626
19626
|
/* @__PURE__ */ Q.jsx(
|
|
19627
|
-
|
|
19627
|
+
J1,
|
|
19628
19628
|
{
|
|
19629
19629
|
allowRepeat: !1,
|
|
19630
19630
|
keyName: "l",
|
|
@@ -19632,7 +19632,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
19632
19632
|
}
|
|
19633
19633
|
),
|
|
19634
19634
|
/* @__PURE__ */ Q.jsx(
|
|
19635
|
-
|
|
19635
|
+
J1,
|
|
19636
19636
|
{
|
|
19637
19637
|
allowRepeat: !0,
|
|
19638
19638
|
keyName: "left",
|
|
@@ -19640,7 +19640,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
19640
19640
|
}
|
|
19641
19641
|
),
|
|
19642
19642
|
/* @__PURE__ */ Q.jsx(
|
|
19643
|
-
|
|
19643
|
+
J1,
|
|
19644
19644
|
{
|
|
19645
19645
|
allowRepeat: !0,
|
|
19646
19646
|
keyName: "right",
|
|
@@ -19648,7 +19648,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
19648
19648
|
}
|
|
19649
19649
|
),
|
|
19650
19650
|
/* @__PURE__ */ Q.jsx(
|
|
19651
|
-
|
|
19651
|
+
J1,
|
|
19652
19652
|
{
|
|
19653
19653
|
allowRepeat: !0,
|
|
19654
19654
|
keyName: "up",
|
|
@@ -19656,7 +19656,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
19656
19656
|
}
|
|
19657
19657
|
),
|
|
19658
19658
|
/* @__PURE__ */ Q.jsx(
|
|
19659
|
-
|
|
19659
|
+
J1,
|
|
19660
19660
|
{
|
|
19661
19661
|
allowRepeat: !0,
|
|
19662
19662
|
keyName: "down",
|
|
@@ -19664,7 +19664,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
19664
19664
|
}
|
|
19665
19665
|
),
|
|
19666
19666
|
/* @__PURE__ */ Q.jsx(
|
|
19667
|
-
|
|
19667
|
+
J1,
|
|
19668
19668
|
{
|
|
19669
19669
|
allowRepeat: !0,
|
|
19670
19670
|
keyName: "i",
|
|
@@ -19672,7 +19672,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
19672
19672
|
}
|
|
19673
19673
|
),
|
|
19674
19674
|
/* @__PURE__ */ Q.jsx(
|
|
19675
|
-
|
|
19675
|
+
J1,
|
|
19676
19676
|
{
|
|
19677
19677
|
allowRepeat: !0,
|
|
19678
19678
|
keyName: "o",
|
|
@@ -19680,63 +19680,63 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
19680
19680
|
}
|
|
19681
19681
|
),
|
|
19682
19682
|
/* @__PURE__ */ Q.jsx(
|
|
19683
|
-
|
|
19683
|
+
J1,
|
|
19684
19684
|
{
|
|
19685
19685
|
keyName: "enter",
|
|
19686
19686
|
onKeyDown: () => z("complete")
|
|
19687
19687
|
}
|
|
19688
19688
|
),
|
|
19689
19689
|
/* @__PURE__ */ Q.jsx(
|
|
19690
|
-
|
|
19690
|
+
J1,
|
|
19691
19691
|
{
|
|
19692
19692
|
keyName: "ctrl+z",
|
|
19693
19693
|
onKeyDown: () => z("undo")
|
|
19694
19694
|
}
|
|
19695
19695
|
),
|
|
19696
19696
|
/* @__PURE__ */ Q.jsx(
|
|
19697
|
-
|
|
19697
|
+
J1,
|
|
19698
19698
|
{
|
|
19699
19699
|
keyName: "r",
|
|
19700
19700
|
onKeyDown: () => z("reload")
|
|
19701
19701
|
}
|
|
19702
19702
|
),
|
|
19703
19703
|
/* @__PURE__ */ Q.jsx(
|
|
19704
|
-
|
|
19704
|
+
J1,
|
|
19705
19705
|
{
|
|
19706
19706
|
keyName: "h",
|
|
19707
19707
|
onKeyDown: () => z("toggle_pagination")
|
|
19708
19708
|
}
|
|
19709
19709
|
),
|
|
19710
19710
|
/* @__PURE__ */ Q.jsx(
|
|
19711
|
-
|
|
19711
|
+
J1,
|
|
19712
19712
|
{
|
|
19713
19713
|
keyName: "f",
|
|
19714
19714
|
onKeyDown: () => z("fullscreen")
|
|
19715
19715
|
}
|
|
19716
19716
|
),
|
|
19717
19717
|
/* @__PURE__ */ Q.jsx(
|
|
19718
|
-
|
|
19718
|
+
J1,
|
|
19719
19719
|
{
|
|
19720
19720
|
keyName: "s",
|
|
19721
19721
|
onKeyDown: () => z("auto_annotations")
|
|
19722
19722
|
}
|
|
19723
19723
|
),
|
|
19724
19724
|
/* @__PURE__ */ Q.jsx(
|
|
19725
|
-
|
|
19725
|
+
J1,
|
|
19726
19726
|
{
|
|
19727
19727
|
keyName: "v",
|
|
19728
19728
|
onKeyDown: () => z("open_shortcut_details")
|
|
19729
19729
|
}
|
|
19730
19730
|
),
|
|
19731
19731
|
/* @__PURE__ */ Q.jsx(
|
|
19732
|
-
|
|
19732
|
+
J1,
|
|
19733
19733
|
{
|
|
19734
19734
|
keyName: "alt+r",
|
|
19735
19735
|
onKeyDown: () => z("recent_verified")
|
|
19736
19736
|
}
|
|
19737
19737
|
),
|
|
19738
19738
|
U && /* @__PURE__ */ Q.jsx(
|
|
19739
|
-
|
|
19739
|
+
J1,
|
|
19740
19740
|
{
|
|
19741
19741
|
keyName: "x",
|
|
19742
19742
|
onKeyDown: () => z("send_to_sam")
|
|
@@ -19744,14 +19744,14 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
19744
19744
|
),
|
|
19745
19745
|
q && /* @__PURE__ */ Q.jsxs(Q.Fragment, { children: [
|
|
19746
19746
|
/* @__PURE__ */ Q.jsx(
|
|
19747
|
-
|
|
19747
|
+
J1,
|
|
19748
19748
|
{
|
|
19749
19749
|
keyName: "e",
|
|
19750
19750
|
onKeyDown: () => z("edit_mode")
|
|
19751
19751
|
}
|
|
19752
19752
|
),
|
|
19753
19753
|
/* @__PURE__ */ Q.jsx(
|
|
19754
|
-
|
|
19754
|
+
J1,
|
|
19755
19755
|
{
|
|
19756
19756
|
keyName: "q",
|
|
19757
19757
|
onKeyDown: () => z("create_mode")
|
|
@@ -19759,49 +19759,49 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
19759
19759
|
)
|
|
19760
19760
|
] }),
|
|
19761
19761
|
/* @__PURE__ */ Q.jsx(
|
|
19762
|
-
|
|
19762
|
+
J1,
|
|
19763
19763
|
{
|
|
19764
19764
|
keyName: "d",
|
|
19765
19765
|
onKeyDown: () => z("next_image")
|
|
19766
19766
|
}
|
|
19767
19767
|
),
|
|
19768
19768
|
/* @__PURE__ */ Q.jsx(
|
|
19769
|
-
|
|
19769
|
+
J1,
|
|
19770
19770
|
{
|
|
19771
19771
|
keyName: "a",
|
|
19772
19772
|
onKeyDown: () => z("prev_image")
|
|
19773
19773
|
}
|
|
19774
19774
|
),
|
|
19775
19775
|
M.userObj.awi_level === "awi_verifier" && /* @__PURE__ */ Q.jsx(
|
|
19776
|
-
|
|
19776
|
+
J1,
|
|
19777
19777
|
{
|
|
19778
19778
|
keyName: "p",
|
|
19779
19779
|
onKeyDown: () => z("pending_annotations")
|
|
19780
19780
|
}
|
|
19781
19781
|
),
|
|
19782
19782
|
/* @__PURE__ */ Q.jsx(
|
|
19783
|
-
|
|
19783
|
+
J1,
|
|
19784
19784
|
{
|
|
19785
19785
|
keyName: "ctrl+c",
|
|
19786
19786
|
onKeyDown: () => z("copy")
|
|
19787
19787
|
}
|
|
19788
19788
|
),
|
|
19789
19789
|
/* @__PURE__ */ Q.jsx(
|
|
19790
|
-
|
|
19790
|
+
J1,
|
|
19791
19791
|
{
|
|
19792
19792
|
keyName: "ctrl+v",
|
|
19793
19793
|
onKeyDown: () => z("paste")
|
|
19794
19794
|
}
|
|
19795
19795
|
),
|
|
19796
19796
|
/* @__PURE__ */ Q.jsx(
|
|
19797
|
-
|
|
19797
|
+
J1,
|
|
19798
19798
|
{
|
|
19799
19799
|
keyName: "m",
|
|
19800
19800
|
onKeyDown: () => z("pan_mode")
|
|
19801
19801
|
}
|
|
19802
19802
|
),
|
|
19803
19803
|
/* @__PURE__ */ Q.jsx(
|
|
19804
|
-
|
|
19804
|
+
J1,
|
|
19805
19805
|
{
|
|
19806
19806
|
keyName: "w",
|
|
19807
19807
|
onKeyDown: () => z("cross_hair")
|
|
@@ -19859,15 +19859,15 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
19859
19859
|
}, Q2e = 10, W2e = 12, lb = (e) => {
|
|
19860
19860
|
switch (e) {
|
|
19861
19861
|
case "rectangle":
|
|
19862
|
-
return
|
|
19862
|
+
return n0.rectangleIcon.IconComponent;
|
|
19863
19863
|
case "circle":
|
|
19864
|
-
return
|
|
19864
|
+
return n0.circleIcon.IconComponent;
|
|
19865
19865
|
case "polygon":
|
|
19866
|
-
return
|
|
19866
|
+
return n0.polygonIcon.IconComponent;
|
|
19867
19867
|
case "dot":
|
|
19868
|
-
return
|
|
19868
|
+
return n0.dotIcon.IconComponent;
|
|
19869
19869
|
default:
|
|
19870
|
-
return
|
|
19870
|
+
return n0.rectangleIcon.IconComponent;
|
|
19871
19871
|
}
|
|
19872
19872
|
}, ld = ({
|
|
19873
19873
|
isEditing: e,
|
|
@@ -20130,7 +20130,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
20130
20130
|
children: /* @__PURE__ */ Q.jsx(
|
|
20131
20131
|
"img",
|
|
20132
20132
|
{
|
|
20133
|
-
src:
|
|
20133
|
+
src: n0.editIcon.IconComponent,
|
|
20134
20134
|
alt: "Edit",
|
|
20135
20135
|
className: Hn.annotationIcon
|
|
20136
20136
|
}
|
|
@@ -20152,7 +20152,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
20152
20152
|
children: /* @__PURE__ */ Q.jsx(
|
|
20153
20153
|
"img",
|
|
20154
20154
|
{
|
|
20155
|
-
src:
|
|
20155
|
+
src: n0.controlIcon.IconComponent,
|
|
20156
20156
|
alt: "Control",
|
|
20157
20157
|
className: Hn.annotationIcon
|
|
20158
20158
|
}
|
|
@@ -20172,7 +20172,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
20172
20172
|
children: /* @__PURE__ */ Q.jsx(
|
|
20173
20173
|
"img",
|
|
20174
20174
|
{
|
|
20175
|
-
src:
|
|
20175
|
+
src: n0.moveIcon.IconComponent,
|
|
20176
20176
|
alt: "Alt",
|
|
20177
20177
|
className: Hn.annotationIcon
|
|
20178
20178
|
}
|
|
@@ -20192,7 +20192,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
20192
20192
|
children: /* @__PURE__ */ Q.jsx(
|
|
20193
20193
|
"img",
|
|
20194
20194
|
{
|
|
20195
|
-
src:
|
|
20195
|
+
src: n0.crosshairIcon.IconComponent,
|
|
20196
20196
|
alt: "Cross Hair",
|
|
20197
20197
|
className: Hn.annotationIcon
|
|
20198
20198
|
}
|
|
@@ -20213,7 +20213,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
20213
20213
|
children: /* @__PURE__ */ Q.jsx(
|
|
20214
20214
|
"img",
|
|
20215
20215
|
{
|
|
20216
|
-
src:
|
|
20216
|
+
src: n0.filledTickIcon.IconComponent,
|
|
20217
20217
|
className: Hn.annotationIcon
|
|
20218
20218
|
}
|
|
20219
20219
|
)
|
|
@@ -20237,7 +20237,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
20237
20237
|
children: /* @__PURE__ */ Q.jsx(
|
|
20238
20238
|
"img",
|
|
20239
20239
|
{
|
|
20240
|
-
src:
|
|
20240
|
+
src: n0.filledTickIcon.IconComponent,
|
|
20241
20241
|
className: e1(
|
|
20242
20242
|
Hn.annotationIcon,
|
|
20243
20243
|
"not-allowed-pointer"
|
|
@@ -20275,7 +20275,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
20275
20275
|
/* @__PURE__ */ Q.jsx(
|
|
20276
20276
|
"img",
|
|
20277
20277
|
{
|
|
20278
|
-
src:
|
|
20278
|
+
src: n0.undoAnnotationIcon.IconComponent,
|
|
20279
20279
|
alt: "Undo",
|
|
20280
20280
|
style: {
|
|
20281
20281
|
width: "100%",
|
|
@@ -20293,7 +20293,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
20293
20293
|
"img",
|
|
20294
20294
|
{
|
|
20295
20295
|
onClick: u,
|
|
20296
|
-
src:
|
|
20296
|
+
src: n0.zoomInIcon.IconComponent,
|
|
20297
20297
|
className: `cursor-pointer ${d.scale === W2e ? "cursor-pointer-disable" : ""} ${Hn.annotationIcon}`,
|
|
20298
20298
|
title: "Zoom in - Keyboard(I)"
|
|
20299
20299
|
}
|
|
@@ -20318,7 +20318,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
20318
20318
|
"img",
|
|
20319
20319
|
{
|
|
20320
20320
|
onClick: g,
|
|
20321
|
-
src:
|
|
20321
|
+
src: n0.zoomOutIcon.IconComponent,
|
|
20322
20322
|
className: `cursor-pointer ${d.scale === 1 ? "cursor-pointer-disable" : ""} ${Hn.annotationIcon}`,
|
|
20323
20323
|
title: "Zoom out - Keyboard(O)"
|
|
20324
20324
|
}
|
|
@@ -20338,7 +20338,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
20338
20338
|
children: /* @__PURE__ */ Q.jsx(
|
|
20339
20339
|
"img",
|
|
20340
20340
|
{
|
|
20341
|
-
src:
|
|
20341
|
+
src: n0.toggleFullscreenIcon.IconComponent,
|
|
20342
20342
|
className: Hn.annotationIcon
|
|
20343
20343
|
}
|
|
20344
20344
|
)
|
|
@@ -20423,7 +20423,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
20423
20423
|
children: /* @__PURE__ */ Q.jsx(
|
|
20424
20424
|
"img",
|
|
20425
20425
|
{
|
|
20426
|
-
src:
|
|
20426
|
+
src: n0.pointAnnotationIcon.IconComponent,
|
|
20427
20427
|
title: "Mark some points and then click here and get the power of AI auto annotation",
|
|
20428
20428
|
className: Hn.annotationIcon
|
|
20429
20429
|
}
|
|
@@ -20446,7 +20446,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
20446
20446
|
children: /* @__PURE__ */ Q.jsx(
|
|
20447
20447
|
"img",
|
|
20448
20448
|
{
|
|
20449
|
-
src:
|
|
20449
|
+
src: n0.promptAnnotationIcon.IconComponent,
|
|
20450
20450
|
title: "auto annotation prompt - keyboard(X)",
|
|
20451
20451
|
className: Hn.annotationIcon
|
|
20452
20452
|
}
|
|
@@ -20465,7 +20465,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
20465
20465
|
children: /* @__PURE__ */ Q.jsx(
|
|
20466
20466
|
"img",
|
|
20467
20467
|
{
|
|
20468
|
-
src:
|
|
20468
|
+
src: n0.refetchAnnotationIcon.IconComponent,
|
|
20469
20469
|
title: "Refetch annotations (Hard Reset) - keyboard(R)",
|
|
20470
20470
|
className: Hn.annotationIcon
|
|
20471
20471
|
}
|
|
@@ -20502,7 +20502,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
20502
20502
|
children: /* @__PURE__ */ Q.jsx(
|
|
20503
20503
|
"img",
|
|
20504
20504
|
{
|
|
20505
|
-
src:
|
|
20505
|
+
src: n0.guidelinesIcon.IconComponent,
|
|
20506
20506
|
alt: "info",
|
|
20507
20507
|
style: {
|
|
20508
20508
|
height: "30px !important",
|
|
@@ -20523,7 +20523,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
20523
20523
|
children: /* @__PURE__ */ Q.jsx("div", { children: /* @__PURE__ */ Q.jsx(
|
|
20524
20524
|
"img",
|
|
20525
20525
|
{
|
|
20526
|
-
src:
|
|
20526
|
+
src: n0.keyboardShortcutsIcon.IconComponent,
|
|
20527
20527
|
title: "See short-cut keys",
|
|
20528
20528
|
className: "cursor-pointer",
|
|
20529
20529
|
width: "30px",
|
|
@@ -20540,7 +20540,7 @@ const w2e = "_table_q0jcp_1", x2e = "_table__header_q0jcp_18", _2e = "_table__he
|
|
|
20540
20540
|
children: /* @__PURE__ */ Q.jsx("div", { onClick: k, children: /* @__PURE__ */ Q.jsx(
|
|
20541
20541
|
"img",
|
|
20542
20542
|
{
|
|
20543
|
-
src:
|
|
20543
|
+
src: n0.transparentBlackIcon.IconComponent,
|
|
20544
20544
|
style: { height: "24px", width: " 24px", cursor: "pointer" },
|
|
20545
20545
|
alt: "Previous",
|
|
20546
20546
|
title: G ? "Hide Pagination" : "Show Pagination"
|
|
@@ -21176,12 +21176,12 @@ const wre = (e, t) => {
|
|
|
21176
21176
|
NOT_SELECT: 500
|
|
21177
21177
|
}, [b0, Fr] = Ft(""), To = window.devicePixelRatio, [z1, Fo] = Ft(
|
|
21178
21178
|
window.innerWidth < 768 * To
|
|
21179
|
-
), [ha,
|
|
21179
|
+
), [ha, X1] = Ft(
|
|
21180
21180
|
window.innerWidth < 1200 * To
|
|
21181
21181
|
), f2 = Et(null), jo = Et(null), [b3, Vo] = Ft(!1);
|
|
21182
21182
|
kt(() => {
|
|
21183
21183
|
const me = () => {
|
|
21184
|
-
Fo(window.innerWidth < 768 * To),
|
|
21184
|
+
Fo(window.innerWidth < 768 * To), X1(window.innerWidth < 1200 * To);
|
|
21185
21185
|
};
|
|
21186
21186
|
return window.addEventListener("resize", me), () => window.removeEventListener("resize", me);
|
|
21187
21187
|
}, []), kt(() => {
|
|
@@ -21269,7 +21269,7 @@ const wre = (e, t) => {
|
|
|
21269
21269
|
}, [bn]), kt(() => {
|
|
21270
21270
|
u !== "-1" ? typeof h == "function" && (ue == null ? void 0 : ue.awi_request_for) !== "outline" && h("edit") : x1([]), Fn && typeof h == "function" && hn("-1"), hn(u || "-1");
|
|
21271
21271
|
}, [u]), kt(() => {
|
|
21272
|
-
A || x == 0 && Fn !== void 0 && (Fn ?
|
|
21272
|
+
A || x == 0 && Fn !== void 0 && (Fn ? e0.success("Switched to Auto Annotation mode") : ue != null && ue.awi_annotation_type && e0.success(
|
|
21273
21273
|
`Switched to ${ue == null ? void 0 : ue.awi_annotation_type} Annotation mode`
|
|
21274
21274
|
));
|
|
21275
21275
|
}, [Fn]), kt(() => {
|
|
@@ -21333,7 +21333,7 @@ const wre = (e, t) => {
|
|
|
21333
21333
|
)
|
|
21334
21334
|
// How much more can move down
|
|
21335
21335
|
});
|
|
21336
|
-
}, _i =
|
|
21336
|
+
}, _i = o0(() => {
|
|
21337
21337
|
const me = (wn == null ? void 0 : wn.result) || [];
|
|
21338
21338
|
if (me.length > 0 && Tt !== "-1") {
|
|
21339
21339
|
let fe = null, xe = null;
|
|
@@ -21360,7 +21360,7 @@ const wre = (e, t) => {
|
|
|
21360
21360
|
const me = Tt == "-1" ? v3.NOT_SELECT : v3.SELECT;
|
|
21361
21361
|
N2 && clearTimeout(N2);
|
|
21362
21362
|
const fe = setTimeout(() => {
|
|
21363
|
-
l && Zn != "-1" && Tt != Zn && (Tt == "-1" && An ? $o() : typeof d == "function" && (d(Zn),
|
|
21363
|
+
l && Zn != "-1" && Tt != Zn && (Tt == "-1" && An ? $o() : typeof d == "function" && (d(Zn), e0.success(
|
|
21364
21364
|
"Annotation selected successfully",
|
|
21365
21365
|
Zn
|
|
21366
21366
|
)));
|
|
@@ -22058,9 +22058,9 @@ const wre = (e, t) => {
|
|
|
22058
22058
|
const xe = [];
|
|
22059
22059
|
for (let Ie = 0; Ie < me.length; Ie++)
|
|
22060
22060
|
Ie != fe && xe.push(me[Ie]);
|
|
22061
|
-
fe == 0 && (xe[xe.length - 1] = xe[0]), zt(xe), (xe == null ? void 0 : xe.length) > 3 ? (P1(xe), typeof o == "function" && f0(xe) && !p && (
|
|
22061
|
+
fe == 0 && (xe[xe.length - 1] = xe[0]), zt(xe), (xe == null ? void 0 : xe.length) > 3 ? (P1(xe), typeof o == "function" && f0(xe) && !p && (e0.success("Point deleted successfully"), o(xe, u, () => {
|
|
22062
22062
|
x2();
|
|
22063
|
-
}))) :
|
|
22063
|
+
}))) : e0.error(
|
|
22064
22064
|
"Point can not be deleted, as polygon need minimum of three points"
|
|
22065
22065
|
), No(-1), h9(null);
|
|
22066
22066
|
};
|
|
@@ -22087,12 +22087,12 @@ const wre = (e, t) => {
|
|
|
22087
22087
|
console.log("We can remove this"), (fe == null ? void 0 : fe.length) > 3 && (h9(fe), F1.POLYGON_POINT_REMOVE_CONFIRM_PROMPT ? No(xt) : K0(fe, xt));
|
|
22088
22088
|
else {
|
|
22089
22089
|
if (tn < se)
|
|
22090
|
-
|
|
22090
|
+
e0.error(
|
|
22091
22091
|
"Press CTRL and then click to prompt for point deletion"
|
|
22092
22092
|
);
|
|
22093
22093
|
else {
|
|
22094
22094
|
const g0 = (tn * 100).toFixed(1);
|
|
22095
|
-
|
|
22095
|
+
e0.error(
|
|
22096
22096
|
"Very close point to draw " + g0 + " it should be more than " + qt * 100
|
|
22097
22097
|
);
|
|
22098
22098
|
}
|
|
@@ -22272,11 +22272,11 @@ const wre = (e, t) => {
|
|
|
22272
22272
|
x2();
|
|
22273
22273
|
});
|
|
22274
22274
|
} else {
|
|
22275
|
-
|
|
22275
|
+
e0.error("Polygon requires minimum of three coordinates");
|
|
22276
22276
|
return;
|
|
22277
22277
|
}
|
|
22278
22278
|
else
|
|
22279
|
-
|
|
22279
|
+
e0.error(
|
|
22280
22280
|
"Invalid coordinates, please create valid coordinates"
|
|
22281
22281
|
);
|
|
22282
22282
|
}
|
|
@@ -22436,18 +22436,18 @@ const wre = (e, t) => {
|
|
|
22436
22436
|
return null;
|
|
22437
22437
|
const mo = () => {
|
|
22438
22438
|
if (an) {
|
|
22439
|
-
|
|
22439
|
+
e0.error("Request already in progress");
|
|
22440
22440
|
return;
|
|
22441
22441
|
}
|
|
22442
22442
|
if (!(Xe != null && Xe.length)) {
|
|
22443
|
-
|
|
22443
|
+
e0.error("No points to send");
|
|
22444
22444
|
return;
|
|
22445
22445
|
}
|
|
22446
22446
|
const me = {};
|
|
22447
22447
|
me.image_url = e, me.coords = Xe, console.log("Sent to SAM", me), Bi(), typeof h == "function" && h("annotate");
|
|
22448
22448
|
}, d1 = () => {
|
|
22449
22449
|
if (D2 ? zn(!1) : D2 || zn(!0), an) {
|
|
22450
|
-
|
|
22450
|
+
e0.error("Request already in progress");
|
|
22451
22451
|
return;
|
|
22452
22452
|
}
|
|
22453
22453
|
typeof h == "function" && h("annotate");
|
|
@@ -22455,7 +22455,7 @@ const wre = (e, t) => {
|
|
|
22455
22455
|
console.log("Submitted data from SAMModal:", me), po(me), typeof h == "function" && h("annotate");
|
|
22456
22456
|
}, po = (me) => {
|
|
22457
22457
|
if (!Uo || !(Uo != null && Uo.mutate)) {
|
|
22458
|
-
|
|
22458
|
+
e0.error("SAM Prompt is not available");
|
|
22459
22459
|
return;
|
|
22460
22460
|
}
|
|
22461
22461
|
console.log("getSAMAnnotationsPrompt");
|
|
@@ -22485,14 +22485,14 @@ const wre = (e, t) => {
|
|
|
22485
22485
|
onSuccess: (mn) => {
|
|
22486
22486
|
var ct, Yt, S1, se, g0;
|
|
22487
22487
|
if ($t(!1), !mn.success)
|
|
22488
|
-
|
|
22488
|
+
e0.error(mn.message);
|
|
22489
22489
|
else {
|
|
22490
22490
|
zn(!1);
|
|
22491
22491
|
const P0 = ((S1 = (Yt = (ct = mn.data) == null ? void 0 : ct[0]) == null ? void 0 : Yt.contours) == null ? void 0 : S1[0]) ?? null;
|
|
22492
22492
|
if (P0) {
|
|
22493
22493
|
const A1 = P0.coordinates;
|
|
22494
22494
|
if ((A1 == null ? void 0 : A1.length) == 0 || !((g0 = (se = A1[0]) == null ? void 0 : se.box) != null && g0.length))
|
|
22495
|
-
|
|
22495
|
+
e0.error("No auto annotation is possible to create");
|
|
22496
22496
|
else {
|
|
22497
22497
|
const ln = [];
|
|
22498
22498
|
(ue == null ? void 0 : ue.awi_annotation_type) == "polygon" ? (console.log("coordinates", A1), A1.forEach((L0) => {
|
|
@@ -22535,16 +22535,16 @@ const wre = (e, t) => {
|
|
|
22535
22535
|
}), Qn(ln), typeof E == "function" && E("Normal");
|
|
22536
22536
|
}
|
|
22537
22537
|
} else
|
|
22538
|
-
|
|
22538
|
+
e0.error("No Auto Annotation found");
|
|
22539
22539
|
}
|
|
22540
22540
|
},
|
|
22541
22541
|
onError: (mn) => {
|
|
22542
|
-
|
|
22542
|
+
e0.exception(mn), $t(!1);
|
|
22543
22543
|
}
|
|
22544
22544
|
});
|
|
22545
22545
|
}, Bi = () => {
|
|
22546
22546
|
if (!zo || !(zo != null && zo.mutate)) {
|
|
22547
|
-
|
|
22547
|
+
e0.error("SAM is not available");
|
|
22548
22548
|
return;
|
|
22549
22549
|
}
|
|
22550
22550
|
const me = dt.generateImageUrl(
|
|
@@ -22558,7 +22558,7 @@ const wre = (e, t) => {
|
|
|
22558
22558
|
onSuccess: (Be) => {
|
|
22559
22559
|
var st;
|
|
22560
22560
|
if ($t(!1), !Be.success)
|
|
22561
|
-
|
|
22561
|
+
e0.error(Be.message);
|
|
22562
22562
|
else if (console.log("this is the SAM data", Be), ((st = Be == null ? void 0 : Be.data) == null ? void 0 : st.length) > 0) {
|
|
22563
22563
|
const xt = [];
|
|
22564
22564
|
(ue == null ? void 0 : ue.awi_annotation_type) == "polygon" ? Be.data.forEach((tn) => {
|
|
@@ -22599,22 +22599,22 @@ const wre = (e, t) => {
|
|
|
22599
22599
|
xt.push(ct);
|
|
22600
22600
|
}), Qn(xt);
|
|
22601
22601
|
} else
|
|
22602
|
-
|
|
22602
|
+
e0.error("No annotations found from SAM");
|
|
22603
22603
|
},
|
|
22604
22604
|
onError: (Be) => {
|
|
22605
|
-
|
|
22605
|
+
e0.exception(Be), $t(!1);
|
|
22606
22606
|
}
|
|
22607
22607
|
});
|
|
22608
22608
|
}, A9 = async () => {
|
|
22609
22609
|
if (et && typeof et == "function") {
|
|
22610
|
-
|
|
22610
|
+
e0.success("Loading Annotations...");
|
|
22611
22611
|
const me = await et();
|
|
22612
22612
|
console.log(
|
|
22613
22613
|
"cacheRemoveAnnotationResponse ",
|
|
22614
22614
|
me
|
|
22615
|
-
), me != null && me.success ? (
|
|
22615
|
+
), me != null && me.success ? (e0.success(
|
|
22616
22616
|
(me == null ? void 0 : me.message) + " and now loading final annotations..."
|
|
22617
|
-
), Qo(!0)) :
|
|
22617
|
+
), Qo(!0)) : e0.error(me == null ? void 0 : me.message);
|
|
22618
22618
|
}
|
|
22619
22619
|
}, v9 = () => {
|
|
22620
22620
|
var fe;
|
|
@@ -22979,7 +22979,7 @@ const wre = (e, t) => {
|
|
|
22979
22979
|
typeof w == "function" && w((me) => !me);
|
|
22980
22980
|
}, pa = () => {
|
|
22981
22981
|
if (!u || u == "-1") {
|
|
22982
|
-
|
|
22982
|
+
e0.error(
|
|
22983
22983
|
"Control copy will be work only when you have a selected annotation"
|
|
22984
22984
|
);
|
|
22985
22985
|
return;
|
|
@@ -23854,7 +23854,7 @@ const wre = (e, t) => {
|
|
|
23854
23854
|
s && (s == null ? void 0 : s.length) > 0 && /* @__PURE__ */ Q.jsx(
|
|
23855
23855
|
"img",
|
|
23856
23856
|
{
|
|
23857
|
-
src: (l =
|
|
23857
|
+
src: (l = n0[s]) == null ? void 0 : l.IconComponent,
|
|
23858
23858
|
className: yr.message__container__icon
|
|
23859
23859
|
}
|
|
23860
23860
|
),
|
|
@@ -23882,7 +23882,7 @@ const wre = (e, t) => {
|
|
|
23882
23882
|
/* @__PURE__ */ Q.jsx(
|
|
23883
23883
|
"img",
|
|
23884
23884
|
{
|
|
23885
|
-
src: (u =
|
|
23885
|
+
src: (u = n0[s]) == null ? void 0 : u.IconComponent,
|
|
23886
23886
|
className: yr.message__container__icon
|
|
23887
23887
|
}
|
|
23888
23888
|
),
|
|
@@ -24304,7 +24304,7 @@ const wre = (e, t) => {
|
|
|
24304
24304
|
s && /* @__PURE__ */ Q.jsx(
|
|
24305
24305
|
"img",
|
|
24306
24306
|
{
|
|
24307
|
-
src:
|
|
24307
|
+
src: n0.searchUrl.IconComponent,
|
|
24308
24308
|
alt: a,
|
|
24309
24309
|
className: e1(
|
|
24310
24310
|
ir.btnIcon,
|
|
@@ -24401,7 +24401,7 @@ const wre = (e, t) => {
|
|
|
24401
24401
|
/* @__PURE__ */ Q.jsx(
|
|
24402
24402
|
"img",
|
|
24403
24403
|
{
|
|
24404
|
-
src:
|
|
24404
|
+
src: n0.backArrow.IconComponent,
|
|
24405
24405
|
onClick: () => e > 1 && n(e - 1),
|
|
24406
24406
|
style: { cursor: e > 1 ? "pointer" : "not-allowed" },
|
|
24407
24407
|
className: p2.nextPrevArrow,
|
|
@@ -24411,7 +24411,7 @@ const wre = (e, t) => {
|
|
|
24411
24411
|
/* @__PURE__ */ Q.jsx(
|
|
24412
24412
|
"img",
|
|
24413
24413
|
{
|
|
24414
|
-
src:
|
|
24414
|
+
src: n0.forwardArrow.IconComponent,
|
|
24415
24415
|
onClick: () => e < t && n(e + 1),
|
|
24416
24416
|
style: {
|
|
24417
24417
|
cursor: e < t ? "pointer" : "not-allowed"
|
|
@@ -24966,7 +24966,7 @@ const Coe = /* @__PURE__ */ (() => {
|
|
|
24966
24966
|
let e = 0;
|
|
24967
24967
|
return () => e++;
|
|
24968
24968
|
})();
|
|
24969
|
-
function
|
|
24969
|
+
function q1(e) {
|
|
24970
24970
|
return e == null;
|
|
24971
24971
|
}
|
|
24972
24972
|
function W0(e) {
|
|
@@ -24992,7 +24992,7 @@ function m0(e, t, n) {
|
|
|
24992
24992
|
if (e && typeof e.call == "function")
|
|
24993
24993
|
return e.apply(n, t);
|
|
24994
24994
|
}
|
|
24995
|
-
function
|
|
24995
|
+
function r0(e, t, n, r) {
|
|
24996
24996
|
let o, i, a;
|
|
24997
24997
|
if (W0(e))
|
|
24998
24998
|
for (i = e.length, o = 0; o < i; o++)
|
|
@@ -25283,7 +25283,7 @@ function Doe(e, t, n) {
|
|
|
25283
25283
|
// @ts-expect-error Need to fix types on _lookupByKey
|
|
25284
25284
|
n ? r : Ta(t, d, a.getPixelForValue(h)).lo
|
|
25285
25285
|
), u) {
|
|
25286
|
-
const b = l.slice(0, o + 1).reverse().findIndex((p) => !
|
|
25286
|
+
const b = l.slice(0, o + 1).reverse().findIndex((p) => !q1(p[s.axis]));
|
|
25287
25287
|
o -= Math.max(0, b);
|
|
25288
25288
|
}
|
|
25289
25289
|
o = O2(o, 0, r - 1);
|
|
@@ -25296,7 +25296,7 @@ function Doe(e, t, n) {
|
|
|
25296
25296
|
n ? 0 : Ta(t, d, a.getPixelForValue(g), !0).hi + 1
|
|
25297
25297
|
);
|
|
25298
25298
|
if (u) {
|
|
25299
|
-
const p = l.slice(b - 1).findIndex((_) => !
|
|
25299
|
+
const p = l.slice(b - 1).findIndex((_) => !q1(_[s.axis]));
|
|
25300
25300
|
b += Math.max(0, p);
|
|
25301
25301
|
}
|
|
25302
25302
|
i = O2(b, o, r) - o;
|
|
@@ -25660,7 +25660,7 @@ var j0 = /* @__PURE__ */ new Zoe({
|
|
|
25660
25660
|
Uoe
|
|
25661
25661
|
]);
|
|
25662
25662
|
function $oe(e) {
|
|
25663
|
-
return !e ||
|
|
25663
|
+
return !e || q1(e.size) || q1(e.family) ? null : (e.style ? e.style + " " : "") + (e.weight ? e.weight + " " : "") + e.size + "px " + e.family;
|
|
25664
25664
|
}
|
|
25665
25665
|
function _b(e, t, n, r, o) {
|
|
25666
25666
|
let i = t[o];
|
|
@@ -25752,7 +25752,7 @@ function Qoe(e, t, n, r) {
|
|
|
25752
25752
|
e.bezierCurveTo(r ? t.cp1x : t.cp2x, r ? t.cp1y : t.cp2y, r ? n.cp2x : n.cp1x, r ? n.cp2y : n.cp1y, n.x, n.y);
|
|
25753
25753
|
}
|
|
25754
25754
|
function Woe(e, t) {
|
|
25755
|
-
t.translation && e.translate(t.translation[0], t.translation[1]),
|
|
25755
|
+
t.translation && e.translate(t.translation[0], t.translation[1]), q1(t.rotation) || e.rotate(t.rotation), t.color && (e.fillStyle = t.color), t.textAlign && (e.textAlign = t.textAlign), t.textBaseline && (e.textBaseline = t.textBaseline);
|
|
25756
25756
|
}
|
|
25757
25757
|
function Goe(e, t, n, r, o) {
|
|
25758
25758
|
if (o.strikethrough || o.underline) {
|
|
@@ -25770,7 +25770,7 @@ function c7(e, t, n, r, o, i = {}) {
|
|
|
25770
25770
|
], s = i.strokeWidth > 0 && i.strokeColor !== "";
|
|
25771
25771
|
let l, u;
|
|
25772
25772
|
for (e.save(), e.font = o.string, Woe(e, i), l = 0; l < a.length; ++l)
|
|
25773
|
-
u = a[l], i.backdrop && Yoe(e, i.backdrop), s && (i.strokeColor && (e.strokeStyle = i.strokeColor),
|
|
25773
|
+
u = a[l], i.backdrop && Yoe(e, i.backdrop), s && (i.strokeColor && (e.strokeStyle = i.strokeColor), q1(i.strokeWidth) || (e.lineWidth = i.strokeWidth), e.strokeText(u, n, r, i.maxWidth)), e.fillText(u, n, r, i.maxWidth), Goe(e, n, r, u, i), r += Number(o.lineHeight);
|
|
25774
25774
|
e.restore();
|
|
25775
25775
|
}
|
|
25776
25776
|
function u7(e, t) {
|
|
@@ -27306,7 +27306,7 @@ function qie(e) {
|
|
|
27306
27306
|
function Xie(e, t, n, r) {
|
|
27307
27307
|
const o = n.barThickness;
|
|
27308
27308
|
let i, a;
|
|
27309
|
-
return
|
|
27309
|
+
return q1(o) ? (i = t.min * n.categoryPercentage, a = n.barPercentage) : (i = o * r, a = 1), {
|
|
27310
27310
|
chunk: i / r,
|
|
27311
27311
|
ratio: a,
|
|
27312
27312
|
start: t.pixels[e] - i / 2
|
|
@@ -27434,7 +27434,7 @@ class A8 extends Za {
|
|
|
27434
27434
|
updateElements(t, n, r, o) {
|
|
27435
27435
|
const i = o === "reset", { index: a, _cachedMeta: { vScale: s } } = this, l = s.getBasePixel(), u = s.isHorizontal(), d = this._getRuler(), { sharedOptions: h, includeOptions: g } = this._getSharedOptions(n, o);
|
|
27436
27436
|
for (let m = n; m < n + r; m++) {
|
|
27437
|
-
const A = this.getParsed(m), b = i ||
|
|
27437
|
+
const A = this.getParsed(m), b = i || q1(A[s.axis]) ? {
|
|
27438
27438
|
base: l,
|
|
27439
27439
|
head: l
|
|
27440
27440
|
} : this._calculateBarValuePixels(m), p = this._calculateBarIndexPixels(m, d), _ = (A._stacks || {})[s.axis], x = {
|
|
@@ -27454,7 +27454,7 @@ class A8 extends Za {
|
|
|
27454
27454
|
_getStacks(t, n) {
|
|
27455
27455
|
const { iScale: r } = this._cachedMeta, o = r.getMatchingVisibleMetas(this._type).filter((d) => d.controller.options.grouped), i = r.options.stacked, a = [], s = this._cachedMeta.controller.getParsed(n), l = s && s[r.axis], u = (d) => {
|
|
27456
27456
|
const h = d._parsed.find((m) => m[r.axis] === l), g = h && h[d.vScale.axis];
|
|
27457
|
-
if (
|
|
27457
|
+
if (q1(g) || isNaN(g))
|
|
27458
27458
|
return !0;
|
|
27459
27459
|
};
|
|
27460
27460
|
for (const d of o)
|
|
@@ -27490,7 +27490,7 @@ class A8 extends Za {
|
|
|
27490
27490
|
const { _cachedMeta: { vScale: n, _stacked: r, index: o }, options: { base: i, minBarLength: a } } = this, s = i || 0, l = this.getParsed(t), u = l._custom, d = Ad(u);
|
|
27491
27491
|
let h = l[n.axis], g = 0, m = r ? this.applyStack(n, l, r) : h, A, b;
|
|
27492
27492
|
m !== h && (g = m - h, m = h), d && (h = u.barStart, m = u.barEnd - u.barStart, h !== 0 && gi(h) !== gi(u.barEnd) && (g = 0), g += h);
|
|
27493
|
-
const p = !
|
|
27493
|
+
const p = !q1(i) && !d ? i : g;
|
|
27494
27494
|
let _ = n.getPixelForValue(p);
|
|
27495
27495
|
if (this.chart.getDataVisibility(t) ? A = n.getPixelForValue(g + m) : A = _, b = A - _, Math.abs(b) < a) {
|
|
27496
27496
|
b = t9e(b, n, s) * a, h === s && (_ -= b / 2);
|
|
@@ -27787,7 +27787,7 @@ class v8 extends Za {
|
|
|
27787
27787
|
H.skip = !0;
|
|
27788
27788
|
continue;
|
|
27789
27789
|
}
|
|
27790
|
-
const O = this.getParsed(S), R =
|
|
27790
|
+
const O = this.getParsed(S), R = q1(O[m]), P = H[g] = a.getPixelForValue(O[g], S), D = H[m] = i || R ? s.getBasePixel() : s.getPixelForValue(l ? this.applyStack(s, O, l) : O[m], S);
|
|
27791
27791
|
H.skip = isNaN(P) || isNaN(D) || R, H.stop = S > 0 && Math.abs(O[g] - E[g]) > p, b && (H.parsed = O, H.raw = u.data[S]), h && (H.options = d || this.resolveDataElementOptions(S, M.active ? "active" : o)), _ || this.updateElement(M, S, H, o), E = O;
|
|
27792
27792
|
}
|
|
27793
27793
|
}
|
|
@@ -27893,9 +27893,9 @@ function l9e(e, t, n, r) {
|
|
|
27893
27893
|
} else {
|
|
27894
27894
|
const d = u(i, t, n);
|
|
27895
27895
|
if (l) {
|
|
27896
|
-
const { vScale: h } = o._cachedMeta, { _parsed: g } = e, m = g.slice(0, d.lo + 1).reverse().findIndex((b) => !
|
|
27896
|
+
const { vScale: h } = o._cachedMeta, { _parsed: g } = e, m = g.slice(0, d.lo + 1).reverse().findIndex((b) => !q1(b[h.axis]));
|
|
27897
27897
|
d.lo -= Math.max(0, m);
|
|
27898
|
-
const A = g.slice(d.hi).findIndex((b) => !
|
|
27898
|
+
const A = g.slice(d.hi).findIndex((b) => !q1(b[h.axis]));
|
|
27899
27899
|
d.hi += Math.max(0, A);
|
|
27900
27900
|
}
|
|
27901
27901
|
return d;
|
|
@@ -28219,7 +28219,7 @@ var V9 = {
|
|
|
28219
28219
|
if (!e)
|
|
28220
28220
|
return;
|
|
28221
28221
|
const o = Io(e.options.layout.padding), i = Math.max(t - o.width, 0), a = Math.max(n - o.height, 0), s = m9e(e.boxes), l = s.vertical, u = s.horizontal;
|
|
28222
|
-
|
|
28222
|
+
r0(e.boxes, (b) => {
|
|
28223
28223
|
typeof b.beforeLayout == "function" && b.beforeLayout();
|
|
28224
28224
|
});
|
|
28225
28225
|
const d = l.reduce((b, p) => p.box.options && p.box.options.display === !1 ? b : b + 1, 0) || 1, h = Object.freeze({
|
|
@@ -28246,7 +28246,7 @@ var V9 = {
|
|
|
28246
28246
|
bottom: m.top + m.h,
|
|
28247
28247
|
height: m.h,
|
|
28248
28248
|
width: m.w
|
|
28249
|
-
},
|
|
28249
|
+
}, r0(s.chartArea, (b) => {
|
|
28250
28250
|
const p = b.box;
|
|
28251
28251
|
Object.assign(p, e.chartArea), p.update(m.w, m.h, {
|
|
28252
28252
|
left: 0,
|
|
@@ -28425,7 +28425,7 @@ class I9e extends LM {
|
|
|
28425
28425
|
"width"
|
|
28426
28426
|
].forEach((i) => {
|
|
28427
28427
|
const a = r[i];
|
|
28428
|
-
|
|
28428
|
+
q1(a) ? n.removeAttribute(i) : n.setAttribute(i, a);
|
|
28429
28429
|
});
|
|
28430
28430
|
const o = r.style || {};
|
|
28431
28431
|
return Object.keys(o).forEach((i) => {
|
|
@@ -28505,9 +28505,9 @@ function P9e(e, t) {
|
|
|
28505
28505
|
if (a > 0) {
|
|
28506
28506
|
let h, g;
|
|
28507
28507
|
const m = a > 1 ? Math.round((l - s) / (a - 1)) : null;
|
|
28508
|
-
for (tl(t, u, d,
|
|
28508
|
+
for (tl(t, u, d, q1(m) ? 0 : s - m, s), h = 0, g = a - 1; h < g; h++)
|
|
28509
28509
|
tl(t, u, d, i[h], i[h + 1]);
|
|
28510
|
-
return tl(t, u, d, l,
|
|
28510
|
+
return tl(t, u, d, l, q1(m) ? t.length : l + m), u;
|
|
28511
28511
|
}
|
|
28512
28512
|
return tl(t, u, d), u;
|
|
28513
28513
|
}
|
|
@@ -28572,7 +28572,7 @@ function V9e(e, t, n) {
|
|
|
28572
28572
|
return l;
|
|
28573
28573
|
}
|
|
28574
28574
|
function z9e(e, t) {
|
|
28575
|
-
|
|
28575
|
+
r0(e, (n) => {
|
|
28576
28576
|
const r = n.gc, o = r.length / 2;
|
|
28577
28577
|
let i;
|
|
28578
28578
|
if (o > t) {
|
|
@@ -28850,7 +28850,7 @@ class O5 extends sa {
|
|
|
28850
28850
|
this.beforeTickToLabelConversion(), this.generateTickLabels(t);
|
|
28851
28851
|
let n, r;
|
|
28852
28852
|
for (n = 0, r = t.length; n < r; n++)
|
|
28853
|
-
|
|
28853
|
+
q1(t[n].label) && (t.splice(n, 1), r--, n--);
|
|
28854
28854
|
this.afterTickToLabelConversion();
|
|
28855
28855
|
}
|
|
28856
28856
|
_getLabelSizes() {
|
|
@@ -28869,11 +28869,11 @@ class O5 extends sa {
|
|
|
28869
28869
|
if (A = t[h].label, b = this._resolveTickFontOptions(h), o.font = p = b.string, _ = i[p] = i[p] || {
|
|
28870
28870
|
data: {},
|
|
28871
28871
|
gc: []
|
|
28872
|
-
}, x = b.lineHeight, w = E = 0, !
|
|
28872
|
+
}, x = b.lineHeight, w = E = 0, !q1(A) && !W0(A))
|
|
28873
28873
|
w = _b(o, _.data, _.gc, w, A), E = x;
|
|
28874
28874
|
else if (W0(A))
|
|
28875
28875
|
for (g = 0, m = A.length; g < m; ++g)
|
|
28876
|
-
S = A[g], !
|
|
28876
|
+
S = A[g], !q1(S) && !W0(S) && (w = _b(o, _.data, _.gc, w, S), E += x);
|
|
28877
28877
|
a.push(w), s.push(E), u = Math.max(w, u), d = Math.max(E, d);
|
|
28878
28878
|
}
|
|
28879
28879
|
z9e(i, n);
|
|
@@ -29342,7 +29342,7 @@ class Y9e {
|
|
|
29342
29342
|
...n
|
|
29343
29343
|
].forEach((o) => {
|
|
29344
29344
|
const i = r || this._getRegistryForType(o);
|
|
29345
|
-
r || i.isForType(o) || i === this.plugins && o.id ? this._exec(t, i, o) :
|
|
29345
|
+
r || i.isForType(o) || i === this.plugins && o.id ? this._exec(t, i, o) : r0(o, (a) => {
|
|
29346
29346
|
const s = r || this._getRegistryForType(a);
|
|
29347
29347
|
this._exec(t, s, a);
|
|
29348
29348
|
});
|
|
@@ -29391,7 +29391,7 @@ class q9e {
|
|
|
29391
29391
|
return !0;
|
|
29392
29392
|
}
|
|
29393
29393
|
invalidate() {
|
|
29394
|
-
|
|
29394
|
+
q1(this._cache) || (this._oldCache = this._cache, this._cache = void 0);
|
|
29395
29395
|
}
|
|
29396
29396
|
_descriptors(t) {
|
|
29397
29397
|
if (this._cache)
|
|
@@ -29769,7 +29769,7 @@ let I5 = (R9 = class {
|
|
|
29769
29769
|
}
|
|
29770
29770
|
get aspectRatio() {
|
|
29771
29771
|
const { options: { aspectRatio: t, maintainAspectRatio: n }, width: r, height: o, _aspectRatio: i } = this;
|
|
29772
|
-
return
|
|
29772
|
+
return q1(t) ? n && i ? i : o ? r / o : null : t;
|
|
29773
29773
|
}
|
|
29774
29774
|
get data() {
|
|
29775
29775
|
return this.config.data;
|
|
@@ -29812,7 +29812,7 @@ let I5 = (R9 = class {
|
|
|
29812
29812
|
}
|
|
29813
29813
|
ensureScalesHaveIDs() {
|
|
29814
29814
|
const n = this.options.scales || {};
|
|
29815
|
-
|
|
29815
|
+
r0(n, (r, o) => {
|
|
29816
29816
|
r.id = o;
|
|
29817
29817
|
});
|
|
29818
29818
|
}
|
|
@@ -29826,7 +29826,7 @@ let I5 = (R9 = class {
|
|
|
29826
29826
|
dposition: u ? "chartArea" : d ? "bottom" : "left",
|
|
29827
29827
|
dtype: u ? "radialLinear" : d ? "category" : "linear"
|
|
29828
29828
|
};
|
|
29829
|
-
}))),
|
|
29829
|
+
}))), r0(i, (a) => {
|
|
29830
29830
|
const s = a.options, l = s.id, u = Uf(l, s), d = p1(s.type, a.dtype);
|
|
29831
29831
|
(s.position === void 0 || ny(s.position, u) !== ny(a.dposition)) && (s.position = a.dposition), o[l] = !0;
|
|
29832
29832
|
let h = null;
|
|
@@ -29842,9 +29842,9 @@ let I5 = (R9 = class {
|
|
|
29842
29842
|
}), r[h.id] = h;
|
|
29843
29843
|
}
|
|
29844
29844
|
h.init(s, t);
|
|
29845
|
-
}),
|
|
29845
|
+
}), r0(o, (a, s) => {
|
|
29846
29846
|
a || delete r[s];
|
|
29847
|
-
}),
|
|
29847
|
+
}), r0(r, (a) => {
|
|
29848
29848
|
V9.configure(this, a, a.options), V9.addBox(this, a);
|
|
29849
29849
|
});
|
|
29850
29850
|
}
|
|
@@ -29883,7 +29883,7 @@ let I5 = (R9 = class {
|
|
|
29883
29883
|
return this._updateMetasets(), t;
|
|
29884
29884
|
}
|
|
29885
29885
|
_resetElements() {
|
|
29886
|
-
|
|
29886
|
+
r0(this.data.datasets, (t, n) => {
|
|
29887
29887
|
this.getDatasetMeta(n).controller.reset();
|
|
29888
29888
|
}, this);
|
|
29889
29889
|
}
|
|
@@ -29906,7 +29906,7 @@ let I5 = (R9 = class {
|
|
|
29906
29906
|
const { controller: h } = this.getDatasetMeta(u), g = !o && i.indexOf(h) === -1;
|
|
29907
29907
|
h.buildOrUpdateElements(g), a = Math.max(+h.getMaxOverflow(), a);
|
|
29908
29908
|
}
|
|
29909
|
-
a = this._minPadding = r.layout.autoPadding ? a : 0, this._updateLayout(a), o ||
|
|
29909
|
+
a = this._minPadding = r.layout.autoPadding ? a : 0, this._updateLayout(a), o || r0(i, (u) => {
|
|
29910
29910
|
u.reset();
|
|
29911
29911
|
}), this._updateDatasets(t), this.notifyPlugins("afterUpdate", {
|
|
29912
29912
|
mode: t
|
|
@@ -29915,7 +29915,7 @@ let I5 = (R9 = class {
|
|
|
29915
29915
|
l ? this._eventHandler(l, !0) : s.length && this._updateHoverStyles(s, s, !0), this.render();
|
|
29916
29916
|
}
|
|
29917
29917
|
_updateScales() {
|
|
29918
|
-
|
|
29918
|
+
r0(this.scales, (t) => {
|
|
29919
29919
|
V9.removeBox(this, t);
|
|
29920
29920
|
}), this.ensureScalesHaveIDs(), this.buildOrUpdateScales();
|
|
29921
29921
|
}
|
|
@@ -29952,7 +29952,7 @@ let I5 = (R9 = class {
|
|
|
29952
29952
|
return;
|
|
29953
29953
|
V9.update(this, this.width, this.height, t);
|
|
29954
29954
|
const n = this.chartArea, r = n.width <= 0 || n.height <= 0;
|
|
29955
|
-
this._layers = [],
|
|
29955
|
+
this._layers = [], r0(this.boxes, (o) => {
|
|
29956
29956
|
r && o.position === "chartArea" || (o.configure && o.configure(), this._layers.push(...o._layers()));
|
|
29957
29957
|
}, this), this._layers.forEach((o, i) => {
|
|
29958
29958
|
o._idx = i;
|
|
@@ -30126,7 +30126,7 @@ let I5 = (R9 = class {
|
|
|
30126
30126
|
}, o = (i, a, s) => {
|
|
30127
30127
|
i.offsetX = a, i.offsetY = s, this._eventHandler(i);
|
|
30128
30128
|
};
|
|
30129
|
-
|
|
30129
|
+
r0(this.options.events, (i) => r(i, o));
|
|
30130
30130
|
}
|
|
30131
30131
|
bindResponsiveEvents() {
|
|
30132
30132
|
this._responsiveListeners || (this._responsiveListeners = {});
|
|
@@ -30146,9 +30146,9 @@ let I5 = (R9 = class {
|
|
|
30146
30146
|
}, n.isAttached(this.canvas) ? s() : a();
|
|
30147
30147
|
}
|
|
30148
30148
|
unbindEvents() {
|
|
30149
|
-
|
|
30149
|
+
r0(this._listeners, (t, n) => {
|
|
30150
30150
|
this.platform.removeEventListener(this, n, t);
|
|
30151
|
-
}), this._listeners = {},
|
|
30151
|
+
}), this._listeners = {}, r0(this._responsiveListeners, (t, n) => {
|
|
30152
30152
|
this.platform.removeEventListener(this, n, t);
|
|
30153
30153
|
}), this._responsiveListeners = void 0;
|
|
30154
30154
|
}
|
|
@@ -30223,7 +30223,7 @@ let I5 = (R9 = class {
|
|
|
30223
30223
|
}
|
|
30224
30224
|
}, Sn(R9, "defaults", j0), Sn(R9, "instances", y8), Sn(R9, "overrides", Wa), Sn(R9, "registry", ci), Sn(R9, "version", dae), Sn(R9, "getChart", iy), R9);
|
|
30225
30225
|
function ay() {
|
|
30226
|
-
return
|
|
30226
|
+
return r0(I5.instances, (e) => e._plugins.invalidate());
|
|
30227
30227
|
}
|
|
30228
30228
|
function mae(e, t, n) {
|
|
30229
30229
|
const { startAngle: r, pixelMargin: o, x: i, y: a, outerRadius: s, innerRadius: l } = t;
|
|
@@ -31498,9 +31498,9 @@ function gy(e, t) {
|
|
|
31498
31498
|
const w = function(E) {
|
|
31499
31499
|
p = Math.max(p, n.measureText(E).width + x);
|
|
31500
31500
|
};
|
|
31501
|
-
return n.save(), n.font = u.string,
|
|
31502
|
-
|
|
31503
|
-
}), x = 0, n.font = d.string,
|
|
31501
|
+
return n.save(), n.font = u.string, r0(e.title, w), n.font = l.string, r0(e.beforeBody.concat(e.afterBody), w), x = t.displayColors ? a + 2 + t.boxPadding : 0, r0(r, (E) => {
|
|
31502
|
+
r0(E.before, w), r0(E.lines, w), r0(E.after, w);
|
|
31503
|
+
}), x = 0, n.font = d.string, r0(e.footer, w), n.restore(), p += A.width, {
|
|
31504
31504
|
width: p,
|
|
31505
31505
|
height: b
|
|
31506
31506
|
};
|
|
@@ -31584,7 +31584,7 @@ const zM = {
|
|
|
31584
31584
|
let t = e.dataset.label || "";
|
|
31585
31585
|
t && (t += ": ");
|
|
31586
31586
|
const n = e.formattedValue;
|
|
31587
|
-
return
|
|
31587
|
+
return q1(n) || (t += n), t;
|
|
31588
31588
|
},
|
|
31589
31589
|
labelColor(e) {
|
|
31590
31590
|
const n = e.chart.getDatasetMeta(e.datasetIndex).controller.getStyle(e.dataIndex);
|
|
@@ -31645,7 +31645,7 @@ let by = (_f = class extends sa {
|
|
|
31645
31645
|
}
|
|
31646
31646
|
getBody(t, n) {
|
|
31647
31647
|
const { callbacks: r } = n, o = [];
|
|
31648
|
-
return
|
|
31648
|
+
return r0(t, (i) => {
|
|
31649
31649
|
const a = {
|
|
31650
31650
|
before: [],
|
|
31651
31651
|
lines: [],
|
|
@@ -31667,7 +31667,7 @@ let by = (_f = class extends sa {
|
|
|
31667
31667
|
let s = [], l, u;
|
|
31668
31668
|
for (l = 0, u = n.length; l < u; ++l)
|
|
31669
31669
|
s.push(a3e(this.chart, n[l]));
|
|
31670
|
-
return t.filter && (s = s.filter((d, h, g) => t.filter(d, h, g, r))), t.itemSort && (s = s.sort((d, h) => t.itemSort(d, h, r))),
|
|
31670
|
+
return t.filter && (s = s.filter((d, h, g) => t.filter(d, h, g, r))), t.itemSort && (s = s.sort((d, h) => t.itemSort(d, h, r))), r0(s, (d) => {
|
|
31671
31671
|
const h = vy(t.callbacks, d);
|
|
31672
31672
|
o.push(ar(h, "labelColor", this, d)), i.push(ar(h, "labelPointStyle", this, d)), a.push(ar(h, "labelTextColor", this, d));
|
|
31673
31673
|
}), this.labelColors = o, this.labelPointStyles = i, this.labelTextColors = a, this.dataPoints = s, s;
|
|
@@ -31760,12 +31760,12 @@ let by = (_f = class extends sa {
|
|
|
31760
31760
|
n.fillText(O, A.x(t.x + m), t.y + g / 2), t.y += g + i;
|
|
31761
31761
|
}, p = A.textAlign(a);
|
|
31762
31762
|
let _, x, w, E, S, M, H;
|
|
31763
|
-
for (n.textAlign = a, n.textBaseline = "middle", n.font = h.string, t.x = ol(this, p, r), n.fillStyle = r.bodyColor,
|
|
31764
|
-
for (_ = o[E], x = this.labelTextColors[E], n.fillStyle = x,
|
|
31763
|
+
for (n.textAlign = a, n.textBaseline = "middle", n.font = h.string, t.x = ol(this, p, r), n.fillStyle = r.bodyColor, r0(this.beforeBody, b), m = s && p !== "right" ? a === "center" ? u / 2 + d : u + 2 + d : 0, E = 0, M = o.length; E < M; ++E) {
|
|
31764
|
+
for (_ = o[E], x = this.labelTextColors[E], n.fillStyle = x, r0(_.before, b), w = _.lines, s && w.length && (this._drawColorBox(n, t, E, A, r), g = Math.max(h.lineHeight, l)), S = 0, H = w.length; S < H; ++S)
|
|
31765
31765
|
b(w[S]), g = h.lineHeight;
|
|
31766
|
-
|
|
31766
|
+
r0(_.after, b);
|
|
31767
31767
|
}
|
|
31768
|
-
m = 0, g = h.lineHeight,
|
|
31768
|
+
m = 0, g = h.lineHeight, r0(this.afterBody, b), t.y -= i;
|
|
31769
31769
|
}
|
|
31770
31770
|
drawFooter(t, n, r) {
|
|
31771
31771
|
const o = this.footer, i = o.length;
|
|
@@ -31997,7 +31997,7 @@ class C7 extends O5 {
|
|
|
31997
31997
|
super.init(t);
|
|
31998
31998
|
}
|
|
31999
31999
|
parse(t, n) {
|
|
32000
|
-
if (
|
|
32000
|
+
if (q1(t))
|
|
32001
32001
|
return null;
|
|
32002
32002
|
const r = this.getLabels();
|
|
32003
32003
|
return n = isFinite(n) && r[n] === t ? n : C3e(r, t, p1(n, t), this._addedLabels), g3e(n, r.length - 1);
|
|
@@ -32043,7 +32043,7 @@ Sn(C7, "id", "category"), Sn(C7, "defaults", {
|
|
|
32043
32043
|
}
|
|
32044
32044
|
});
|
|
32045
32045
|
function m3e(e, t) {
|
|
32046
|
-
const n = [], { bounds: o, step: i, min: a, max: s, precision: l, count: u, maxTicks: d, maxDigits: h, includeBounds: g } = e, m = i || 1, A = d - 1, { min: b, max: p } = t, _ = !
|
|
32046
|
+
const n = [], { bounds: o, step: i, min: a, max: s, precision: l, count: u, maxTicks: d, maxDigits: h, includeBounds: g } = e, m = i || 1, A = d - 1, { min: b, max: p } = t, _ = !q1(a), x = !q1(s), w = !q1(u), E = (p - b) / (h + 1);
|
|
32047
32047
|
let S = pb((p - b) / A / m) * m, M, H, O, R;
|
|
32048
32048
|
if (S < 1e-14 && !_ && !x)
|
|
32049
32049
|
return [
|
|
@@ -32054,9 +32054,9 @@ function m3e(e, t) {
|
|
|
32054
32054
|
value: p
|
|
32055
32055
|
}
|
|
32056
32056
|
];
|
|
32057
|
-
R = Math.ceil(p / S) - Math.floor(b / S), R > A && (S = pb(R * S / A / m) * m),
|
|
32057
|
+
R = Math.ceil(p / S) - Math.floor(b / S), R > A && (S = pb(R * S / A / m) * m), q1(l) || (M = Math.pow(10, l), S = Math.ceil(S * M) / M), o === "ticks" ? (H = Math.floor(b / S) * S, O = Math.ceil(p / S) * S) : (H = b, O = p), _ && x && i && Eoe((s - a) / i, S / 1e3) ? (R = Math.round(Math.min((s - a) / S, d)), S = (s - a) / R, H = a, O = s) : w ? (H = _ ? a : H, O = x ? s : O, R = u - 1, S = (O - H) / R) : (R = (O - H) / S, $4(R, Math.round(R), S / 1e3) ? R = Math.round(R) : R = Math.ceil(R));
|
|
32058
32058
|
const P = Math.max(Ab(S), Ab(H));
|
|
32059
|
-
M = Math.pow(10,
|
|
32059
|
+
M = Math.pow(10, q1(l) ? P : l), H = Math.round(H * M) / M, O = Math.round(O * M) / M;
|
|
32060
32060
|
let D = 0;
|
|
32061
32061
|
for (_ && (g && H !== a ? (n.push({
|
|
32062
32062
|
value: a
|
|
@@ -32083,7 +32083,7 @@ class p3e extends O5 {
|
|
|
32083
32083
|
super(t), this.start = void 0, this.end = void 0, this._startValue = void 0, this._endValue = void 0, this._valueRange = 0;
|
|
32084
32084
|
}
|
|
32085
32085
|
parse(t, n) {
|
|
32086
|
-
return
|
|
32086
|
+
return q1(t) || (typeof t == "number" || t instanceof Number) && !isFinite(+t) ? null : +t;
|
|
32087
32087
|
}
|
|
32088
32088
|
handleTickRangeOptions() {
|
|
32089
32089
|
const { beginAtZero: t } = this.options, { minDefined: n, maxDefined: r } = this.getUserBounds();
|
|
@@ -32210,7 +32210,7 @@ function xy(e, t) {
|
|
|
32210
32210
|
return e - t;
|
|
32211
32211
|
}
|
|
32212
32212
|
function _y(e, t) {
|
|
32213
|
-
if (
|
|
32213
|
+
if (q1(t))
|
|
32214
32214
|
return null;
|
|
32215
32215
|
const n = e._adapter, { parser: r, round: o, isoWeekday: i } = e._parseOpts;
|
|
32216
32216
|
let a = t;
|
|
@@ -40109,12 +40109,12 @@ var OL = function(t) {
|
|
|
40109
40109
|
}, Rle = function(t, n) {
|
|
40110
40110
|
var r = Z1(t, {
|
|
40111
40111
|
value: n
|
|
40112
|
-
}), o = ve(r, 2), i = o[0], a = o[1], s =
|
|
40112
|
+
}), o = ve(r, 2), i = o[0], a = o[1], s = o0(function() {
|
|
40113
40113
|
return n5(i);
|
|
40114
40114
|
}, [i]);
|
|
40115
40115
|
return [s, a];
|
|
40116
40116
|
}, Ple = function(t) {
|
|
40117
|
-
var n = t.colors, r = t.children, o = t.direction, i = o === void 0 ? "to right" : o, a = t.type, s = t.prefixCls, l =
|
|
40117
|
+
var n = t.colors, r = t.children, o = t.direction, i = o === void 0 ? "to right" : o, a = t.type, s = t.prefixCls, l = o0(function() {
|
|
40118
40118
|
return n.map(function(u, d) {
|
|
40119
40119
|
var h = n5(u);
|
|
40120
40120
|
return a === "alpha" && d === n.length - 1 && (h = new l9(h.setA(1))), h.toRgbString();
|
|
@@ -40215,7 +40215,7 @@ var kle = [{
|
|
|
40215
40215
|
color: "rgb(255, 0, 0)",
|
|
40216
40216
|
percent: 100
|
|
40217
40217
|
}], Tle = /* @__PURE__ */ Ve(function(e, t) {
|
|
40218
|
-
var n = e.value, r = e.defaultValue, o = e.prefixCls, i = o === void 0 ? Hle : o, a = e.onChange, s = e.onChangeComplete, l = e.className, u = e.style, d = e.panelRender, h = e.disabledAlpha, g = h === void 0 ? !1 : h, m = e.disabled, A = m === void 0 ? !1 : m, b = e.components, p = Nle(b), _ = ve(p, 1), x = _[0], w = Rle(r || Lle, n), E = ve(w, 2), S = E[0], M = E[1], H =
|
|
40218
|
+
var n = e.value, r = e.defaultValue, o = e.prefixCls, i = o === void 0 ? Hle : o, a = e.onChange, s = e.onChangeComplete, l = e.className, u = e.style, d = e.panelRender, h = e.disabledAlpha, g = h === void 0 ? !1 : h, m = e.disabled, A = m === void 0 ? !1 : m, b = e.components, p = Nle(b), _ = ve(p, 1), x = _[0], w = Rle(r || Lle, n), E = ve(w, 2), S = E[0], M = E[1], H = o0(function() {
|
|
40219
40219
|
return S.setA(1).toRgbString();
|
|
40220
40220
|
}, [S]), O = function(q, $) {
|
|
40221
40221
|
n || M(q), a == null || a(q, $);
|
|
@@ -41537,7 +41537,7 @@ const Q8e = {
|
|
|
41537
41537
|
style: R = {},
|
|
41538
41538
|
autoInsertSpace: P,
|
|
41539
41539
|
autoFocus: D
|
|
41540
|
-
} = e, N = $8e(e, ["loading", "prefixCls", "color", "variant", "type", "danger", "shape", "size", "styles", "disabled", "className", "rootClassName", "children", "icon", "iconPosition", "ghost", "block", "htmlType", "classNames", "style", "autoInsertSpace", "autoFocus"]), F = d || "default", [V, T] =
|
|
41540
|
+
} = e, N = $8e(e, ["loading", "prefixCls", "color", "variant", "type", "danger", "shape", "size", "styles", "disabled", "className", "rootClassName", "children", "icon", "iconPosition", "ghost", "block", "htmlType", "classNames", "style", "autoInsertSpace", "autoFocus"]), F = d || "default", [V, T] = o0(() => {
|
|
41541
41541
|
if (l && u)
|
|
41542
41542
|
return [l, u];
|
|
41543
41543
|
const Fe = Q8e[F] || [];
|
|
@@ -41546,7 +41546,7 @@ const Q8e = {
|
|
|
41546
41546
|
getPrefixCls: U,
|
|
41547
41547
|
direction: q,
|
|
41548
41548
|
button: $
|
|
41549
|
-
} = H1(kn), z = (n = P ?? ($ == null ? void 0 : $.autoInsertSpace)) !== null && n !== void 0 ? n : !0, W = U("btn", s), [X, G, J] = k8e(W), re = H1(Or), ce = b ?? re, ae = H1(SL), ye =
|
|
41549
|
+
} = H1(kn), z = (n = P ?? ($ == null ? void 0 : $.autoInsertSpace)) !== null && n !== void 0 ? n : !0, W = U("btn", s), [X, G, J] = k8e(W), re = H1(Or), ce = b ?? re, ae = H1(SL), ye = o0(() => K8e(a), [a]), [be, Ce] = Ft(ye.loading), [de, ie] = Ft(!1), oe = Et(null), pe = la(t, oe), Me = YF.count(x) === 1 && !w && !ml(T), He = Et(!0);
|
|
41550
41550
|
Ae.useEffect(() => (He.current = !1, () => {
|
|
41551
41551
|
He.current = !0;
|
|
41552
41552
|
}), []), kt(() => {
|
|
@@ -41969,7 +41969,7 @@ var o7e = {
|
|
|
41969
41969
|
}, /* @__PURE__ */ Ae.createElement("div", {
|
|
41970
41970
|
className: "".concat(n, "-title"),
|
|
41971
41971
|
id: a
|
|
41972
|
-
}, i)) : null, k =
|
|
41972
|
+
}, i)) : null, k = o0(function() {
|
|
41973
41973
|
return nn(l) === "object" && l !== null ? l : l ? {
|
|
41974
41974
|
closeIcon: u ?? /* @__PURE__ */ Ae.createElement("span", {
|
|
41975
41975
|
className: "".concat(n, "-close-x")
|
|
@@ -44193,7 +44193,7 @@ function ece() {
|
|
|
44193
44193
|
t[n] = arguments[n];
|
|
44194
44194
|
var r = t[0], o = t[1], i = o === void 0 ? {} : o, a = l7e(i) ? {
|
|
44195
44195
|
form: i
|
|
44196
|
-
} : i, s = a.form, l = Ft(), u = ve(l, 2), d = u[0], h = u[1], g =
|
|
44196
|
+
} : i, s = a.form, l = Ft(), u = ve(l, 2), d = u[0], h = u[1], g = o0(function() {
|
|
44197
44197
|
return Xw(d);
|
|
44198
44198
|
}, [d]), m = Et(g);
|
|
44199
44199
|
m.current = g;
|
|
@@ -46908,10 +46908,10 @@ function Due(e) {
|
|
|
46908
46908
|
function Nue(e, t) {
|
|
46909
46909
|
var n = e.prefixCls, r = n === void 0 ? "rc-overflow" : n, o = e.data, i = o === void 0 ? [] : o, a = e.renderItem, s = e.renderRawItem, l = e.itemKey, u = e.itemWidth, d = u === void 0 ? 10 : u, h = e.ssr, g = e.style, m = e.className, A = e.maxCount, b = e.renderRest, p = e.renderRawRest, _ = e.suffix, x = e.component, w = x === void 0 ? "div" : x, E = e.itemComponent, S = e.onVisibleChange, M = Ln(e, Pue), H = h === "full", O = Lue(), R = x4(O, null), P = ve(R, 2), D = P[0], N = P[1], F = D || 0, V = x4(O, /* @__PURE__ */ new Map()), T = ve(V, 2), k = T[0], Z = T[1], U = x4(O, 0), q = ve(U, 2), $ = q[0], z = q[1], W = x4(O, 0), X = ve(W, 2), G = X[0], J = X[1], re = x4(O, 0), ce = ve(re, 2), ae = ce[0], ye = ce[1], be = Ft(null), Ce = ve(be, 2), de = Ce[0], ie = Ce[1], oe = Ft(null), pe = ve(oe, 2), Me = pe[0], He = pe[1], ue = c.useMemo(function() {
|
|
46910
46910
|
return Me === null && H ? Number.MAX_SAFE_INTEGER : Me || 0;
|
|
46911
|
-
}, [Me, D]), Ye = Ft(!1), et = ve(Ye, 2), Ee = et[0], Re = et[1], De = "".concat(r, "-item"), Ge = Math.max($, G), qe = A === SB, ut = i.length && qe, ot = A === MB, St = ut || typeof A == "number" && i.length > A, dt =
|
|
46911
|
+
}, [Me, D]), Ye = Ft(!1), et = ve(Ye, 2), Ee = et[0], Re = et[1], De = "".concat(r, "-item"), Ge = Math.max($, G), qe = A === SB, ut = i.length && qe, ot = A === MB, St = ut || typeof A == "number" && i.length > A, dt = o0(function() {
|
|
46912
46912
|
var Rt = i;
|
|
46913
46913
|
return ut ? D === null && H ? Rt = i : Rt = i.slice(0, Math.min(i.length, F / d)) : typeof A == "number" && (Rt = i.slice(0, A)), Rt;
|
|
46914
|
-
}, [i, d, D, A, ut]), $e =
|
|
46914
|
+
}, [i, d, D, A, ut]), $e = o0(function() {
|
|
46915
46915
|
return ut ? i.slice(ue + 1) : i.slice(dt.length);
|
|
46916
46916
|
}, [i, dt, ut, ue]), Te = p0(function(Rt, Bt) {
|
|
46917
46917
|
var _t;
|
|
@@ -49740,7 +49740,7 @@ const VB = () => {
|
|
|
49740
49740
|
borderColor: a,
|
|
49741
49741
|
shadowColor: s,
|
|
49742
49742
|
contentColor: l
|
|
49743
|
-
} =
|
|
49743
|
+
} = o0(() => ({
|
|
49744
49744
|
borderColor: new h1(n).onBackground(i).toHexString(),
|
|
49745
49745
|
shadowColor: new h1(r).onBackground(i).toHexString(),
|
|
49746
49746
|
contentColor: new h1(o).onBackground(i).toHexString()
|
|
@@ -52272,7 +52272,7 @@ function Qfe(e) {
|
|
|
52272
52272
|
}, [t]);
|
|
52273
52273
|
}
|
|
52274
52274
|
var Wfe = /* @__PURE__ */ Ve(function(e, t) {
|
|
52275
|
-
var n = e.overlay, r = e.arrow, o = e.prefixCls, i =
|
|
52275
|
+
var n = e.overlay, r = e.arrow, o = e.prefixCls, i = o0(function() {
|
|
52276
52276
|
var s;
|
|
52277
52277
|
return typeof n == "function" ? s = n() : s = n, s;
|
|
52278
52278
|
}, [n]), a = lo(t, c3(i));
|
|
@@ -62814,7 +62814,7 @@ const Dme = (e) => {
|
|
|
62814
62814
|
[`${i}-sm`]: e.size === "small",
|
|
62815
62815
|
[`${i}-compact`]: e.compact,
|
|
62816
62816
|
[`${i}-rtl`]: n === "rtl"
|
|
62817
|
-
}, l, o), d = H1(dr), h =
|
|
62817
|
+
}, l, o), d = H1(dr), h = o0(() => Object.assign(Object.assign({}, d), {
|
|
62818
62818
|
isFormItemInput: !1
|
|
62819
62819
|
}), [d]);
|
|
62820
62820
|
return process.env.NODE_ENV !== "production" && V1("Input.Group").deprecated(!1, "Input.Group", "Space.Compact"), s(/* @__PURE__ */ c.createElement("span", {
|
|
@@ -63669,7 +63669,7 @@ const [mpe, ppe] = ["week", "WeekPicker"], [Ape, vpe] = ["month", "MonthPicker"]
|
|
|
63669
63669
|
type: "primary"
|
|
63670
63670
|
}, e));
|
|
63671
63671
|
function kI(e) {
|
|
63672
|
-
return
|
|
63672
|
+
return o0(() => Object.assign({
|
|
63673
63673
|
button: _pe
|
|
63674
63674
|
}, e), [e]);
|
|
63675
63675
|
}
|
|
@@ -65061,7 +65061,7 @@ const Upe = (e) => {
|
|
|
65061
65061
|
return [qpe(t)];
|
|
65062
65062
|
}, ZI);
|
|
65063
65063
|
function u_(e) {
|
|
65064
|
-
return
|
|
65064
|
+
return o0(() => typeof e == "boolean" ? [e, {}] : e && typeof e == "object" ? [!0, e] : [void 0, void 0], [e]);
|
|
65065
65065
|
}
|
|
65066
65066
|
var Jpe = function(e, t) {
|
|
65067
65067
|
var n = {};
|
|
@@ -66864,7 +66864,7 @@ function yR(e) {
|
|
|
66864
66864
|
}
|
|
66865
66865
|
var _ve = ["className", "noData", "columns", "flattenColumns", "colWidths", "columCount", "stickyOffsets", "direction", "fixHeader", "stickyTopOffset", "stickyBottomOffset", "stickyClassName", "onScroll", "maxContentScroll", "children"];
|
|
66866
66866
|
function Eve(e, t) {
|
|
66867
|
-
return
|
|
66867
|
+
return o0(function() {
|
|
66868
66868
|
for (var n = [], r = 0; r < t; r += 1) {
|
|
66869
66869
|
var o = e[r];
|
|
66870
66870
|
if (o !== void 0)
|
|
@@ -66908,11 +66908,11 @@ var wR = /* @__PURE__ */ c.forwardRef(function(e, t) {
|
|
|
66908
66908
|
className: "".concat(w, "-cell-scrollbar")
|
|
66909
66909
|
};
|
|
66910
66910
|
}
|
|
66911
|
-
}, V =
|
|
66911
|
+
}, V = o0(function() {
|
|
66912
66912
|
return O ? [].concat(at(o), [F]) : o;
|
|
66913
|
-
}, [O, o]), T =
|
|
66913
|
+
}, [O, o]), T = o0(function() {
|
|
66914
66914
|
return O ? [].concat(at(i), [F]) : i;
|
|
66915
|
-
}, [O, i]), k =
|
|
66915
|
+
}, [O, i]), k = o0(function() {
|
|
66916
66916
|
var U = l.right, q = l.left;
|
|
66917
66917
|
return le(le({}, l), {}, {
|
|
66918
66918
|
left: u === "rtl" ? [].concat(at(q.map(function($) {
|
|
@@ -67272,7 +67272,7 @@ function kve(e, t) {
|
|
|
67272
67272
|
}, [g, l, o, a, t, h]);
|
|
67273
67273
|
}
|
|
67274
67274
|
function Tve(e, t, n) {
|
|
67275
|
-
var r =
|
|
67275
|
+
var r = o0(function() {
|
|
67276
67276
|
var o = t.length, i = function(u, d, h) {
|
|
67277
67277
|
for (var g = [], m = 0, A = u; A !== d; A += h)
|
|
67278
67278
|
g.push(m), t[A].fixed && (m += e[A] || 0);
|
|
@@ -68364,9 +68364,9 @@ const li = {}, dC = "SELECT_ALL", fC = "SELECT_INVERT", hC = "SELECT_NONE", E_ =
|
|
|
68364
68364
|
c.useEffect(() => {
|
|
68365
68365
|
U(T);
|
|
68366
68366
|
}, [T]);
|
|
68367
|
-
const q =
|
|
68367
|
+
const q = o0(() => RR(R, S), [R, S]), {
|
|
68368
68368
|
keyEntities: $
|
|
68369
|
-
} =
|
|
68369
|
+
} = o0(() => {
|
|
68370
68370
|
if (x)
|
|
68371
68371
|
return {
|
|
68372
68372
|
keyEntities: null
|
|
@@ -68383,7 +68383,7 @@ const li = {}, dC = "SELECT_ALL", fC = "SELECT_INVERT", hC = "SELECT_NONE", E_ =
|
|
|
68383
68383
|
externalGetKey: H,
|
|
68384
68384
|
childrenPropName: R
|
|
68385
68385
|
});
|
|
68386
|
-
}, [E, H, x, R, n, q]), z =
|
|
68386
|
+
}, [E, H, x, R, n, q]), z = o0(() => {
|
|
68387
68387
|
const Ce = /* @__PURE__ */ new Map();
|
|
68388
68388
|
return q.forEach((de, ie) => {
|
|
68389
68389
|
const oe = H(de, ie), pe = (i ? i(de) : null) || {};
|
|
@@ -68392,7 +68392,7 @@ const li = {}, dC = "SELECT_ALL", fC = "SELECT_INVERT", hC = "SELECT_NONE", E_ =
|
|
|
68392
68392
|
}, [q, H, i]), W = p0((Ce) => {
|
|
68393
68393
|
var de;
|
|
68394
68394
|
return !!(!((de = z.get(H(Ce))) === null || de === void 0) && de.disabled);
|
|
68395
|
-
}, [z, H]), [X, G] =
|
|
68395
|
+
}, [z, H]), [X, G] = o0(() => {
|
|
68396
68396
|
if (x)
|
|
68397
68397
|
return [T || [], []];
|
|
68398
68398
|
const {
|
|
@@ -68400,10 +68400,10 @@ const li = {}, dC = "SELECT_ALL", fC = "SELECT_INVERT", hC = "SELECT_NONE", E_ =
|
|
|
68400
68400
|
halfCheckedKeys: de
|
|
68401
68401
|
} = i5(T, !0, $, W);
|
|
68402
68402
|
return [Ce || [], de];
|
|
68403
|
-
}, [T, x, $, W]), J =
|
|
68403
|
+
}, [T, x, $, W]), J = o0(() => {
|
|
68404
68404
|
const Ce = m === "radio" ? X.slice(0, 1) : X;
|
|
68405
68405
|
return new Set(Ce);
|
|
68406
|
-
}, [X, m]), re =
|
|
68406
|
+
}, [X, m]), re = o0(() => m === "radio" ? /* @__PURE__ */ new Set() : new Set(G), [G, m]);
|
|
68407
68407
|
c.useEffect(() => {
|
|
68408
68408
|
t || k(E_);
|
|
68409
68409
|
}, [!!t]);
|
|
@@ -68421,7 +68421,7 @@ const li = {}, dC = "SELECT_ALL", fC = "SELECT_INVERT", hC = "SELECT_NONE", E_ =
|
|
|
68421
68421
|
s(M(Ce), de, pe, oe);
|
|
68422
68422
|
}
|
|
68423
68423
|
ce(ie, "single");
|
|
68424
|
-
}, [s, M, ce]), ye =
|
|
68424
|
+
}, [s, M, ce]), ye = o0(() => !A || _ ? null : (A === !0 ? [dC, fC, hC] : A).map((de) => de === dC ? {
|
|
68425
68425
|
key: "all",
|
|
68426
68426
|
text: P.selectionAll,
|
|
68427
68427
|
onSelect() {
|
|
@@ -73778,7 +73778,7 @@ const TLe = (e) => WR[e], Hl = [
|
|
|
73778
73778
|
"--c_surface_border": m,
|
|
73779
73779
|
"--c_surface": g
|
|
73780
73780
|
},
|
|
73781
|
-
className: `date-range-picker ${n}
|
|
73781
|
+
className: `date-range-picker ${n} h_${s}`
|
|
73782
73782
|
}
|
|
73783
73783
|
);
|
|
73784
73784
|
};
|
|
@@ -76869,7 +76869,7 @@ function KLe() {
|
|
|
76869
76869
|
polygonCenter: z1,
|
|
76870
76870
|
centroid: Fo
|
|
76871
76871
|
};
|
|
76872
|
-
function
|
|
76872
|
+
function X1(f, v) {
|
|
76873
76873
|
if (!v || !f.length)
|
|
76874
76874
|
return f.slice();
|
|
76875
76875
|
var B = v * v;
|
|
@@ -76963,7 +76963,7 @@ function KLe() {
|
|
|
76963
76963
|
}
|
|
76964
76964
|
var Ko = {
|
|
76965
76965
|
__proto__: null,
|
|
76966
|
-
simplify:
|
|
76966
|
+
simplify: X1,
|
|
76967
76967
|
pointToSegmentDistance: f2,
|
|
76968
76968
|
closestPointOnSegment: jo,
|
|
76969
76969
|
clipSegment: Uo,
|
|
@@ -77919,7 +77919,7 @@ function KLe() {
|
|
|
77919
77919
|
// simplify each clipped part of the polyline for performance
|
|
77920
77920
|
_simplifyPoints: function() {
|
|
77921
77921
|
for (var f = this._parts, v = this.options.smoothFactor, B = 0, j = f.length; B < j; B++)
|
|
77922
|
-
f[B] =
|
|
77922
|
+
f[B] = X1(f[B], v);
|
|
77923
77923
|
},
|
|
77924
77924
|
_update: function() {
|
|
77925
77925
|
this._map && (this._clipPoints(), this._simplifyPoints(), this._updatePath());
|
|
@@ -80705,23 +80705,20 @@ const rP = /* @__PURE__ */ Ve(aBe), oP = nP(function({ position: t, ...n }, r) {
|
|
|
80705
80705
|
kt(() => {
|
|
80706
80706
|
b(!0);
|
|
80707
80707
|
}, []);
|
|
80708
|
-
const E =
|
|
80709
|
-
()
|
|
80710
|
-
|
|
80711
|
-
|
|
80712
|
-
}),
|
|
80713
|
-
[e]
|
|
80714
|
-
), S = [
|
|
80708
|
+
const E = {
|
|
80709
|
+
width: (e == null ? void 0 : e.imageWidth) ?? 1e3,
|
|
80710
|
+
height: (e == null ? void 0 : e.imageHeight) ?? 1e3
|
|
80711
|
+
}, S = [
|
|
80715
80712
|
[0, 0],
|
|
80716
80713
|
[E == null ? void 0 : E.height, E == null ? void 0 : E.width]
|
|
80717
|
-
], M =
|
|
80714
|
+
], M = o0(
|
|
80718
80715
|
() => t == null ? void 0 : t[w],
|
|
80719
80716
|
[t, w]
|
|
80720
80717
|
), H = Et(null), O = Et({});
|
|
80721
80718
|
kt(() => {
|
|
80722
80719
|
if (!A) return;
|
|
80723
80720
|
const T = requestAnimationFrame(() => {
|
|
80724
|
-
H.current = O.current[w] || null, Object.values(O.current).forEach((k) => {
|
|
80721
|
+
H.current = O.current[w] || null, (o || i) && Object.values(O.current).forEach((k) => {
|
|
80725
80722
|
k == null || k.openPopup();
|
|
80726
80723
|
});
|
|
80727
80724
|
});
|
|
@@ -80791,18 +80788,18 @@ const rP = /* @__PURE__ */ Ve(aBe), oP = nP(function({ position: t, ...n }, r) {
|
|
|
80791
80788
|
x && m ? m(k) : _(k);
|
|
80792
80789
|
}
|
|
80793
80790
|
},
|
|
80794
|
-
children: /* @__PURE__ */ Q.jsx(
|
|
80791
|
+
children: o || i ? /* @__PURE__ */ Q.jsx(
|
|
80795
80792
|
iP,
|
|
80796
80793
|
{
|
|
80797
80794
|
closeButton: !1,
|
|
80798
80795
|
autoPan: !1,
|
|
80799
80796
|
autoClose: !1,
|
|
80800
80797
|
closeOnClick: !1,
|
|
80801
|
-
className: U ? "card_popup" : "count_popup",
|
|
80798
|
+
className: U && o ? "card_popup" : i ? "count_popup" : "",
|
|
80802
80799
|
children: U && o && (T != null && T.element) ? T == null ? void 0 : T.element : i && (T != null && T.count) ? /* @__PURE__ */ Q.jsx("p", { onClick: l, children: T == null ? void 0 : T.count }) : null
|
|
80803
80800
|
},
|
|
80804
80801
|
U ? `focused-${k}` : `count-${k}`
|
|
80805
|
-
)
|
|
80802
|
+
) : /* @__PURE__ */ Q.jsx(Q.Fragment, {})
|
|
80806
80803
|
},
|
|
80807
80804
|
k
|
|
80808
80805
|
);
|
|
@@ -81735,14 +81732,14 @@ const NBe = (e, t, n) => {
|
|
|
81735
81732
|
}, S = () => {
|
|
81736
81733
|
const F = (w + 1) % (t == null ? void 0 : t.length);
|
|
81737
81734
|
x && m ? m(F) : _(F);
|
|
81738
|
-
}, M =
|
|
81735
|
+
}, M = o0(
|
|
81739
81736
|
() => t == null ? void 0 : t[w],
|
|
81740
81737
|
[t, w]
|
|
81741
81738
|
), H = Et(null), O = Et({});
|
|
81742
81739
|
kt(() => {
|
|
81743
81740
|
if (!A) return;
|
|
81744
81741
|
const F = requestAnimationFrame(() => {
|
|
81745
|
-
H.current = O.current[w] || null, Object.values(O.current).forEach((V) => {
|
|
81742
|
+
H.current = O.current[w] || null, (o || i) && Object.values(O.current).forEach((V) => {
|
|
81746
81743
|
V == null || V.openPopup();
|
|
81747
81744
|
});
|
|
81748
81745
|
});
|
|
@@ -81800,18 +81797,18 @@ const NBe = (e, t, n) => {
|
|
|
81800
81797
|
}
|
|
81801
81798
|
},
|
|
81802
81799
|
src: (F == null ? void 0 : F.icon) ?? "",
|
|
81803
|
-
children: /* @__PURE__ */ Q.jsx(
|
|
81800
|
+
children: o || i ? /* @__PURE__ */ Q.jsx(
|
|
81804
81801
|
iP,
|
|
81805
81802
|
{
|
|
81806
81803
|
closeButton: !1,
|
|
81807
81804
|
autoPan: !1,
|
|
81808
81805
|
autoClose: !1,
|
|
81809
81806
|
closeOnClick: !1,
|
|
81810
|
-
className: T ? "card_popup" : "count_popup",
|
|
81807
|
+
className: T && o ? "card_popup" : i ? "count_popup" : "",
|
|
81811
81808
|
children: T && o && (F != null && F.element) ? F.element : i && (F != null && F.count) ? /* @__PURE__ */ Q.jsx("p", { onClick: l, children: F.count }) : null
|
|
81812
81809
|
},
|
|
81813
81810
|
T ? `focused-${V}` : `count-${V}`
|
|
81814
|
-
)
|
|
81811
|
+
) : /* @__PURE__ */ Q.jsx(Q.Fragment, {})
|
|
81815
81812
|
},
|
|
81816
81813
|
V
|
|
81817
81814
|
);
|
|
@@ -82300,9 +82297,9 @@ const NBe = (e, t, n) => {
|
|
|
82300
82297
|
const e = Et(!1), t = Et(!1);
|
|
82301
82298
|
return kt(() => {
|
|
82302
82299
|
const o = (l) => {
|
|
82303
|
-
l.key === "Control" && (e.current = !0,
|
|
82300
|
+
l.key === "Control" && (e.current = !0, e0.success(
|
|
82304
82301
|
"Control pressed, Handling control press events"
|
|
82305
|
-
)), l.key === "Alt" && (t.current = !0,
|
|
82302
|
+
)), l.key === "Alt" && (t.current = !0, e0.success("Alt pressed, Handling alt press events")), l.key === "Command" && (e.current = !0, e0.success(
|
|
82306
82303
|
"Command pressed, Handling command press events"
|
|
82307
82304
|
));
|
|
82308
82305
|
}, i = (l) => {
|
|
@@ -82423,7 +82420,7 @@ export {
|
|
|
82423
82420
|
$2e as AwiTableHeaders,
|
|
82424
82421
|
z2e as AwiTableInfinite,
|
|
82425
82422
|
ZS as AwiTableRow,
|
|
82426
|
-
|
|
82423
|
+
e0 as AwiToastMessage,
|
|
82427
82424
|
J_ as AwiUseKeyChecker,
|
|
82428
82425
|
TQ as Backdrop,
|
|
82429
82426
|
rOe as Badge,
|