@availity/mui-empty-state 0.1.1 → 0.1.2
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/CHANGELOG.md +7 -0
- package/dist/index.js +599 -19
- package/dist/index.mjs +604 -24
- package/package.json +1 -1
- package/src/assets/404-Page-Not-Found_Gray.tsx +44 -0
- package/src/assets/{Content-Loading_Gray.svg → Content-Loading_Gray.tsx} +36 -18
- package/src/assets/{Error_Gray.svg → Error_Gray.tsx} +67 -31
- package/src/assets/{No-Data_Gray.svg → No-Data_Gray.tsx} +42 -21
- package/{dist/No-Search-Found_Gray-4OSPRMF4.svg → src/assets/No-Search-Found_Gray.tsx} +52 -25
- package/src/lib/EmptyState.test.tsx +2 -2
- package/src/lib/EmptyStateImage.test.tsx +2 -2
- package/src/lib/EmptyStateImage.tsx +14 -12
- package/dist/404-Page-Not-Found_Gray-COTPFMFP.svg +0 -25
- package/dist/Content-Loading_Gray-AGUNV3ID.svg +0 -94
- package/dist/Error_Gray-H3D5B6BV.svg +0 -258
- package/dist/No-Data_Gray-JVSMIDTK.svg +0 -215
- package/src/assets/404-Page-Not-Found_Gray.svg +0 -25
- package/src/assets/No-Search-Found_Gray.svg +0 -238
- package/src/assets/custom.d.ts +0 -5
package/dist/index.mjs
CHANGED
|
@@ -8,29 +8,611 @@ import { forwardRef } from "react";
|
|
|
8
8
|
import { styled } from "@mui/material";
|
|
9
9
|
import { Box } from "@availity/mui-layout";
|
|
10
10
|
|
|
11
|
-
// src/assets/404-Page-Not-Found_Gray.
|
|
12
|
-
|
|
11
|
+
// src/assets/404-Page-Not-Found_Gray.tsx
|
|
12
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
13
|
+
var PageNotFound = () => {
|
|
14
|
+
return /* @__PURE__ */ jsxs("svg", {
|
|
15
|
+
id: "Layer_1",
|
|
16
|
+
"data-name": "Layer 1",
|
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
+
viewBox: "0 0 144 144",
|
|
19
|
+
"aria-label": "Page Not Found",
|
|
20
|
+
"aria-hidden": "true",
|
|
21
|
+
children: [
|
|
22
|
+
/* @__PURE__ */ jsx("defs", {
|
|
23
|
+
children: /* @__PURE__ */ jsx("style", {
|
|
24
|
+
children: `.cls-1 {
|
|
25
|
+
fill: #fff;
|
|
26
|
+
stroke: #d7dae0;
|
|
27
|
+
stroke-linecap: round;
|
|
28
|
+
stroke-linejoin: round;
|
|
29
|
+
stroke-width: 4px;
|
|
30
|
+
}
|
|
13
31
|
|
|
14
|
-
|
|
15
|
-
|
|
32
|
+
.cls-2 {
|
|
33
|
+
fill: #d7dae0;
|
|
34
|
+
stroke-width: 0px;
|
|
35
|
+
}`
|
|
36
|
+
})
|
|
37
|
+
}),
|
|
38
|
+
/* @__PURE__ */ jsx("circle", {
|
|
39
|
+
className: "cls-1",
|
|
40
|
+
cx: "72",
|
|
41
|
+
cy: "72",
|
|
42
|
+
r: "65.36"
|
|
43
|
+
}),
|
|
44
|
+
/* @__PURE__ */ jsxs("g", {
|
|
45
|
+
children: [
|
|
46
|
+
/* @__PURE__ */ jsx("path", {
|
|
47
|
+
className: "cls-2",
|
|
48
|
+
d: "m41.45,81.06h-15.96v-5.15l16.54-22.52h7.28v21.63h5.1v6.03h-5.1v6.97h-7.85v-6.97Zm-4.37-6.03h4.47v-11.39h-.1l-8.16,11.54c.73-.1,2.08-.16,3.8-.16Z"
|
|
49
|
+
}),
|
|
50
|
+
/* @__PURE__ */ jsx("path", {
|
|
51
|
+
className: "cls-2",
|
|
52
|
+
d: "m57.62,70.71c0-9.2,3.85-17.94,14.3-17.94s14.46,8.79,14.46,17.94-4.11,17.94-14.4,17.94-14.35-8.79-14.35-17.94Zm20.23,0c0-7.59-1.66-11.7-5.88-11.7s-5.88,4.11-5.88,11.7,1.61,11.7,5.82,11.7,5.93-4.11,5.93-11.7Z"
|
|
53
|
+
}),
|
|
54
|
+
/* @__PURE__ */ jsx("path", {
|
|
55
|
+
className: "cls-2",
|
|
56
|
+
d: "m105.25,81.06h-15.96v-5.15l16.54-22.52h7.28v21.63h5.1v6.03h-5.1v6.97h-7.85v-6.97Zm-4.37-6.03h4.47v-11.39h-.1l-8.16,11.54c.73-.1,2.08-.16,3.8-.16Z"
|
|
57
|
+
})
|
|
58
|
+
]
|
|
59
|
+
})
|
|
60
|
+
]
|
|
61
|
+
});
|
|
62
|
+
};
|
|
16
63
|
|
|
17
|
-
// src/assets/
|
|
18
|
-
|
|
64
|
+
// src/assets/Content-Loading_Gray.tsx
|
|
65
|
+
import { jsx as jsx2, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
66
|
+
var ContentLoading = () => {
|
|
67
|
+
return /* @__PURE__ */ jsxs2("svg", {
|
|
68
|
+
version: "1.1",
|
|
69
|
+
id: "Layer_1",
|
|
70
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
71
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
72
|
+
x: "0px",
|
|
73
|
+
y: "0px",
|
|
74
|
+
viewBox: "0 0 144 144",
|
|
75
|
+
xmlSpace: "preserve",
|
|
76
|
+
"aria-label": "Content Loading",
|
|
77
|
+
"aria-hidden": "true",
|
|
78
|
+
children: [
|
|
79
|
+
/* @__PURE__ */ jsx2("style", {
|
|
80
|
+
type: "text/css",
|
|
81
|
+
children: `.st0{fill:#FFFFFF;stroke:#BBD6EB;stroke-miterlimit:10;}
|
|
82
|
+
.st1{fill:#FFFFFF;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
83
|
+
.st2{fill:#FFFFFF;}
|
|
84
|
+
.st3{fill:#BBD6EB;}
|
|
85
|
+
.st4{fill:#EEEFF2;}
|
|
86
|
+
.st5{fill:#5E616E;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
87
|
+
.st6{fill:#F3F5F7;}
|
|
88
|
+
.st7{fill:url(#SVGID_1_);stroke:url(#SVGID_00000176006543863496528330000000462417252228913081_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
89
|
+
.st8{fill:url(#SVGID_00000015319362321215657120000016772862876214577086_);stroke:url(#SVGID_00000152244241508843639740000001401911986524829082_);stroke-miterlimit:10;}
|
|
90
|
+
.st9{clip-path:url(#SVGID_00000049900885975040311480000014641288987660230562_);}
|
|
91
|
+
.st10{fill:url(#SVGID_00000117642988714045540050000010885684402881936041_);}
|
|
92
|
+
.st11{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
|
|
93
|
+
.st12{fill:url(#SVGID_00000125604309478716627940000018438234177356556952_);}
|
|
94
|
+
.st13{fill:url(#SVGID_00000132069462677027178960000008382514955351358372_);}
|
|
95
|
+
.st14{fill:#FFFFFF;stroke:url(#SVGID_00000062162616124260765010000008526522228635748258_);stroke-miterlimit:10;}
|
|
96
|
+
.st15{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
97
|
+
.st16{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:5.6708,0.5671,1.7012,5.6708;}
|
|
98
|
+
.st17{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.5671,1.7012,5.6708,0.5671,1.7012,5.6708;}
|
|
99
|
+
.st18{fill:url(#SVGID_00000009588382626512182630000000417519188469437843_);stroke:url(#SVGID_00000177477496586111945870000014100075475962833048_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
100
|
+
.st19{opacity:0.25;fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
101
|
+
.st20{fill:#838795;}
|
|
102
|
+
.st21{fill:url(#SVGID_00000174597297320001511960000013670959614116761004_);stroke:url(#SVGID_00000129897832550043709990000008027305424274603908_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
103
|
+
.st22{fill:url(#SVGID_00000116205277842798810240000009364400178635883163_);stroke:url(#SVGID_00000129892993543544801990000014396413855114576553_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
104
|
+
.st23{fill:url(#SVGID_00000001655279822551144730000000584856484495896194_);stroke:url(#SVGID_00000176759401495530291270000008812844235826319793_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
105
|
+
.st24{fill:url(#SVGID_00000112612076613591032760000007552966830535813506_);stroke:url(#SVGID_00000173150333541769424900000012311132872344659600_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
106
|
+
.st25{fill:url(#SVGID_00000167377518250360958600000012024494647277307549_);stroke:url(#SVGID_00000090996303758899480520000013700931798889907845_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
107
|
+
.st26{fill:url(#SVGID_00000113313898878532870900000009697633909400558239_);stroke:url(#SVGID_00000016054001392529010580000017933611116152550037_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
108
|
+
.st27{fill:url(#SVGID_00000182501328966094517510000009557348055514095285_);stroke:url(#SVGID_00000097499898606210172760000007265246509046394272_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
109
|
+
.st28{fill:url(#SVGID_00000093163986554319382470000004512425758303507857_);stroke:url(#SVGID_00000160156627061281780260000003073387267248993668_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
110
|
+
.st29{fill:url(#SVGID_00000039852445104329141810000017113637726105273514_);}
|
|
111
|
+
.st30{fill:url(#SVGID_00000145768861874340769480000010417490475065406911_);}
|
|
112
|
+
.st31{fill:url(#SVGID_00000021826105673988720180000005850849167490308257_);}
|
|
113
|
+
.st32{fill:url(#SVGID_00000113328152725663388370000008623716012898754729_);}
|
|
114
|
+
.st33{fill:url(#SVGID_00000049936574387004280930000008737136302325751473_);}
|
|
115
|
+
.st34{fill:url(#SVGID_00000078012326262918990240000017969369491322853013_);}
|
|
116
|
+
.st35{fill:url(#SVGID_00000043439220213444529320000017110188194410216598_);}
|
|
117
|
+
.st36{fill:url(#SVGID_00000085959914259548507610000014528726628465756551_);}
|
|
118
|
+
.st37{fill:url(#SVGID_00000054235207827654170530000000636417226058331053_);}
|
|
119
|
+
.st38{fill:url(#SVGID_00000119090649786998115210000016229875856120458910_);}
|
|
120
|
+
.st39{fill:url(#SVGID_00000180344741544846243260000000406405291685112501_);}
|
|
121
|
+
.st40{fill:url(#SVGID_00000160876487737500528740000004641259659555639953_);}
|
|
122
|
+
.st41{fill:url(#SVGID_00000183216786247456001250000006062446311022170247_);}
|
|
123
|
+
.st42{fill:#FFFFFF;stroke:url(#SVGID_00000096770547822523386280000004746499526238330758_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
124
|
+
.st43{fill:#FFFFFF;stroke:url(#SVGID_00000023239991958481634540000016184330221425931140_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
125
|
+
.st44{fill:url(#SVGID_00000029739142259141600010000016570484130670398361_);stroke:url(#SVGID_00000029020370880654741350000007090455394063577530_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
126
|
+
.st45{fill:#D7DAE0;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
127
|
+
.st46{fill:#5E616E;stroke:#5E616E;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
128
|
+
.st47{fill:#FFFFFF;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
129
|
+
.st48{fill:none;stroke:#D7DAE0;stroke-width:8;stroke-miterlimit:10;stroke-dasharray:2.0076,4.0153;}
|
|
130
|
+
.st49{fill:#838795;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
131
|
+
.st50{fill:#838795;stroke:#5E616E;stroke-width:1.5;stroke-miterlimit:10;}
|
|
132
|
+
.st51{fill:#D7DAE0;}
|
|
133
|
+
.st52{fill:none;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
134
|
+
.st53{fill:none;stroke:#D7DAE0;stroke-width:8;stroke-miterlimit:10;stroke-dasharray:2.0038,4.0077;}
|
|
135
|
+
.st54{clip-path:url(#SVGID_00000026133832652177936590000006036523222373779113_);}
|
|
136
|
+
.st55{fill:none;stroke:#FFFFFF;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;}
|
|
137
|
+
.st56{fill:none;stroke:#FFFFFF;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6.6455,0.6645,1.9936,6.6455;}
|
|
138
|
+
.st57{fill:none;stroke:#FFFFFF;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.6645,1.9936,6.6455,0.6645,1.9936,6.6455;}
|
|
139
|
+
.st58{fill:none;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1,3,10,5;}
|
|
140
|
+
.st59{fill:#FFFFFF;stroke:#5E616E;stroke-width:1.5;stroke-miterlimit:10;}
|
|
141
|
+
.st60{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;}
|
|
142
|
+
.st61{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:7.0238,0.7024,2.1072,7.0238;}
|
|
143
|
+
.st62{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:0.7024,2.1072,7.0238,0.7024,2.1072,7.0238;}
|
|
144
|
+
.st63{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-miterlimit:10;}
|
|
145
|
+
.st64{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:5.7263,0.5726,1.7179,5.7263;}
|
|
146
|
+
.st65{fill:none;stroke:#5E616E;stroke-width:1.5;stroke-miterlimit:10;}
|
|
147
|
+
.st66{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1,3,10,5;}
|
|
148
|
+
.st67{fill:none;stroke:#5E616E;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
149
|
+
.st68{fill:none;stroke:#838795;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1,3,10,5;}
|
|
150
|
+
.st69{fill:#5E616E;}
|
|
151
|
+
.st70{clip-path:url(#SVGID_00000069382423800612514740000015580195284870920623_);}
|
|
152
|
+
.st71{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
153
|
+
.st72{fill:none;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
154
|
+
.st73{fill:#FFFFFF;stroke:#1A74CC;stroke-miterlimit:10;}
|
|
155
|
+
.st74{fill:#E5E5E5;}
|
|
156
|
+
.st75{fill:#BBD6EB;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
157
|
+
.st76{fill:#FFFFFF;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:8,5;}`
|
|
158
|
+
}),
|
|
159
|
+
/* @__PURE__ */ jsxs2("g", {
|
|
160
|
+
children: [
|
|
161
|
+
/* @__PURE__ */ jsx2("path", {
|
|
162
|
+
className: "st4",
|
|
163
|
+
d: "M118.7,52c0.5-2.3,0.8-4.7,0.8-7.1c0-17.6-14.3-31.9-31.9-31.9c-13,0-24.2,7.8-29.1,18.9\n c-3.7-2.1-7.9-3.3-12.4-3.3c-13.8,0-24.9,11.2-24.9,24.9c0,0,0,0.1,0,0.1C11.3,56.7,4,65.9,4,76.8C4,90.2,14.9,101,28.2,101h87.1\n c13.6,0,24.6-11,24.6-24.6C140,64,130.7,53.7,118.7,52z"
|
|
164
|
+
}),
|
|
165
|
+
/* @__PURE__ */ jsx2("g", {
|
|
166
|
+
children: /* @__PURE__ */ jsx2("circle", {
|
|
167
|
+
className: "st71",
|
|
168
|
+
cx: "72",
|
|
169
|
+
cy: "101",
|
|
170
|
+
r: "30"
|
|
171
|
+
})
|
|
172
|
+
}),
|
|
173
|
+
/* @__PURE__ */ jsx2("path", {
|
|
174
|
+
className: "st51",
|
|
175
|
+
d: "M86.9,100.3c-1.4-1.4-3.7-1.4-5.1,0l-6.2,6.2V81.7h-7.2v24.8l-6.2-6.2c-1.4-1.4-3.7-1.4-5.1,0\n c-1.4,1.4-1.4,3.7,0,5.1l15,15l15-15C88.3,104,88.3,101.7,86.9,100.3z"
|
|
176
|
+
})
|
|
177
|
+
]
|
|
178
|
+
})
|
|
179
|
+
]
|
|
180
|
+
});
|
|
181
|
+
};
|
|
19
182
|
|
|
20
|
-
// src/assets/
|
|
21
|
-
|
|
183
|
+
// src/assets/Error_Gray.tsx
|
|
184
|
+
import { jsx as jsx3, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
185
|
+
var Error = () => {
|
|
186
|
+
return /* @__PURE__ */ jsxs3("svg", {
|
|
187
|
+
version: "1.1",
|
|
188
|
+
id: "Layer_1",
|
|
189
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
190
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
191
|
+
x: "0px",
|
|
192
|
+
y: "0px",
|
|
193
|
+
viewBox: "0 0 144 144",
|
|
194
|
+
xmlSpace: "preserve",
|
|
195
|
+
"aria-label": "Error",
|
|
196
|
+
"aria-hidden": "true",
|
|
197
|
+
children: [
|
|
198
|
+
/* @__PURE__ */ jsx3("style", {
|
|
199
|
+
type: "text/css",
|
|
200
|
+
children: `.st0{fill:#FFFFFF;stroke:#BBD6EB;stroke-miterlimit:10;}
|
|
201
|
+
.st1{fill:#FFFFFF;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
202
|
+
.st2{fill:#FFFFFF;}
|
|
203
|
+
.st3{fill:#BBD6EB;}
|
|
204
|
+
.st4{fill:#EEEFF2;}
|
|
205
|
+
.st5{fill:#5E616E;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
206
|
+
.st6{fill:#F3F5F7;}
|
|
207
|
+
.st7{fill:url(#SVGID_1_);stroke:url(#SVGID_00000081621619034247821850000015378210896463229074_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
208
|
+
.st8{fill:url(#SVGID_00000181779896255103810390000008732235659620714386_);stroke:url(#SVGID_00000092457065743335288950000011131082234239464350_);stroke-miterlimit:10;}
|
|
209
|
+
.st9{clip-path:url(#SVGID_00000148657775648362423020000002106990097565054365_);}
|
|
210
|
+
.st10{fill:url(#SVGID_00000075878825758085664610000004732739117575711109_);}
|
|
211
|
+
.st11{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
|
|
212
|
+
.st12{fill:url(#SVGID_00000028292982692467166870000005354204768560777128_);}
|
|
213
|
+
.st13{fill:url(#SVGID_00000093140215807884005590000016364529275189682819_);}
|
|
214
|
+
.st14{fill:#FFFFFF;stroke:url(#SVGID_00000075857794690949354180000014957395813856022146_);stroke-miterlimit:10;}
|
|
215
|
+
.st15{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
216
|
+
.st16{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:5.6708,0.5671,1.7012,5.6708;}
|
|
217
|
+
.st17{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.5671,1.7012,5.6708,0.5671,1.7012,5.6708;}
|
|
218
|
+
.st18{fill:url(#SVGID_00000166665362821216335340000000283824702714187452_);stroke:url(#SVGID_00000085227033995333242340000001218083077546277006_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
219
|
+
.st19{opacity:0.25;fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
220
|
+
.st20{fill:#838795;}
|
|
221
|
+
.st21{fill:url(#SVGID_00000053540416273434793660000012111559354482474386_);stroke:url(#SVGID_00000177476474652206454140000002878752723534682009_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
222
|
+
.st22{fill:url(#SVGID_00000000190647400832170360000006373822822014518668_);stroke:url(#SVGID_00000148629645957404713100000016975086185673440444_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
223
|
+
.st23{fill:url(#SVGID_00000114754495004653504560000004483596478050235809_);stroke:url(#SVGID_00000027602220130363832190000011818887372045710987_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
224
|
+
.st24{fill:url(#SVGID_00000173850724057714779520000003057332381175431359_);stroke:url(#SVGID_00000098211761943341143030000018445750973872267399_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
225
|
+
.st25{fill:url(#SVGID_00000028319134450378088810000002794438197279633301_);stroke:url(#SVGID_00000093885479364327475910000008446188518519788938_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
226
|
+
.st26{fill:url(#SVGID_00000160876822339485330830000015962852868562795175_);stroke:url(#SVGID_00000031167412886066197450000008540230004745342604_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
227
|
+
.st27{fill:url(#SVGID_00000107589952593659498640000011731312053919307923_);stroke:url(#SVGID_00000022554931582644243250000009528257873710955920_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
228
|
+
.st28{fill:url(#SVGID_00000113339290823565001230000003077454992305403055_);stroke:url(#SVGID_00000016773202001571073830000008925456201890166713_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
229
|
+
.st29{fill:url(#SVGID_00000145766210129843654280000008414182394574235550_);}
|
|
230
|
+
.st30{fill:url(#SVGID_00000100382717418572927390000001456604383761115837_);}
|
|
231
|
+
.st31{fill:url(#SVGID_00000129190673782059888730000005128643732321181317_);}
|
|
232
|
+
.st32{fill:url(#SVGID_00000143593989322258433510000001027744132546664080_);}
|
|
233
|
+
.st33{fill:url(#SVGID_00000092446195201986279060000014703002936100233865_);}
|
|
234
|
+
.st34{fill:url(#SVGID_00000015322734036828561840000010982677526076386488_);}
|
|
235
|
+
.st35{fill:url(#SVGID_00000031178431916965205230000013541038271019598489_);}
|
|
236
|
+
.st36{fill:url(#SVGID_00000083086449413050641470000002906279532911557032_);}
|
|
237
|
+
.st37{fill:url(#SVGID_00000176011318519293958280000013215060127979682459_);}
|
|
238
|
+
.st38{fill:url(#SVGID_00000152263718683210670010000016423744641718109091_);}
|
|
239
|
+
.st39{fill:url(#SVGID_00000172432462335848256480000018122774921226754463_);}
|
|
240
|
+
.st40{fill:url(#SVGID_00000177484263586452984900000015023565108868573603_);}
|
|
241
|
+
.st41{fill:url(#SVGID_00000081643703363059330020000003866302213042182555_);}
|
|
242
|
+
.st42{fill:#FFFFFF;stroke:url(#SVGID_00000094589977852170688340000006610920947367408782_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
243
|
+
.st43{fill:#FFFFFF;stroke:url(#SVGID_00000137105342308290949850000004490561321975999901_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
244
|
+
.st44{fill:url(#SVGID_00000080909412108563139410000005232479692686201742_);stroke:url(#SVGID_00000143584794993791310560000012387335668481375167_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
245
|
+
.st45{fill:#D7DAE0;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
246
|
+
.st46{fill:#5E616E;stroke:#5E616E;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
247
|
+
.st47{fill:#FFFFFF;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
248
|
+
.st48{fill:none;stroke:#D7DAE0;stroke-width:8;stroke-miterlimit:10;stroke-dasharray:2.0076,4.0153;}
|
|
249
|
+
.st49{fill:#838795;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
250
|
+
.st50{fill:#838795;stroke:#5E616E;stroke-width:1.5;stroke-miterlimit:10;}
|
|
251
|
+
.st51{fill:#D7DAE0;}
|
|
252
|
+
.st52{fill:none;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
253
|
+
.st53{fill:none;stroke:#D7DAE0;stroke-width:8;stroke-miterlimit:10;stroke-dasharray:2.0038,4.0077;}
|
|
254
|
+
.st54{clip-path:url(#SVGID_00000136401751887824621280000003695729859886128790_);}
|
|
255
|
+
.st55{fill:none;stroke:#FFFFFF;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;}
|
|
256
|
+
.st56{fill:none;stroke:#FFFFFF;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6.6455,0.6645,1.9936,6.6455;}
|
|
257
|
+
.st57{fill:none;stroke:#FFFFFF;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.6645,1.9936,6.6455,0.6645,1.9936,6.6455;}
|
|
258
|
+
.st58{fill:none;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1,3,10,5;}
|
|
259
|
+
.st59{fill:#FFFFFF;stroke:#5E616E;stroke-width:1.5;stroke-miterlimit:10;}
|
|
260
|
+
.st60{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;}
|
|
261
|
+
.st61{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:7.0238,0.7024,2.1072,7.0238;}
|
|
262
|
+
.st62{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:0.7024,2.1072,7.0238,0.7024,2.1072,7.0238;}
|
|
263
|
+
.st63{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-miterlimit:10;}
|
|
264
|
+
.st64{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:5.7263,0.5726,1.7179,5.7263;}
|
|
265
|
+
.st65{fill:none;stroke:#5E616E;stroke-width:1.5;stroke-miterlimit:10;}
|
|
266
|
+
.st66{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1,3,10,5;}
|
|
267
|
+
.st67{fill:none;stroke:#5E616E;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
268
|
+
.st68{fill:none;stroke:#838795;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1,3,10,5;}
|
|
269
|
+
.st69{fill:#5E616E;}
|
|
270
|
+
.st70{clip-path:url(#SVGID_00000100348009751521439460000000287595225089103793_);}
|
|
271
|
+
.st71{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
272
|
+
.st72{fill:none;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
273
|
+
.st73{fill:#FFFFFF;stroke:#1A74CC;stroke-miterlimit:10;}
|
|
274
|
+
.st74{fill:#E5E5E5;}
|
|
275
|
+
.st75{fill:#BBD6EB;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
276
|
+
.st76{fill:#FFFFFF;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:8,5;}`
|
|
277
|
+
}),
|
|
278
|
+
/* @__PURE__ */ jsx3("rect", {
|
|
279
|
+
x: "21",
|
|
280
|
+
y: "34.2",
|
|
281
|
+
className: "st2",
|
|
282
|
+
width: "101.9",
|
|
283
|
+
height: "57.1"
|
|
284
|
+
}),
|
|
285
|
+
/* @__PURE__ */ jsx3("path", {
|
|
286
|
+
className: "st4",
|
|
287
|
+
d: "M23.4,36.6h97.2v37.1h5.1V33.6c0-1.2-1-2.2-2.2-2.2H20.5c-1.2,0-2.2,1-2.2,2.2v40.1h5.1V36.6z"
|
|
288
|
+
}),
|
|
289
|
+
/* @__PURE__ */ jsx3("path", {
|
|
290
|
+
className: "st4",
|
|
291
|
+
d: "M126.1,97.3H17.9L4,126.4H140L126.1,97.3z M58.5,122.6L61,115H83l2.4,7.6H58.5z M24.3,111.2l4.7-10.1H115\n l4.7,10.1H24.3z"
|
|
292
|
+
}),
|
|
293
|
+
/* @__PURE__ */ jsx3("polygon", {
|
|
294
|
+
className: "st2",
|
|
295
|
+
points: "61,115 58.5,122.6 85.5,122.6 83,115 "
|
|
296
|
+
}),
|
|
297
|
+
/* @__PURE__ */ jsx3("polygon", {
|
|
298
|
+
className: "st2",
|
|
299
|
+
points: "29,101.2 24.3,111.2 119.7,111.2 115,101.2 "
|
|
300
|
+
}),
|
|
301
|
+
/* @__PURE__ */ jsx3("path", {
|
|
302
|
+
className: "st4",
|
|
303
|
+
d: "M135.3,131.7H8.7c-0.9,0-1.9-0.4-2.5-1.1L4,128.2H140l-2.2,2.5C137.2,131.3,136.3,131.7,135.3,131.7z"
|
|
304
|
+
}),
|
|
305
|
+
/* @__PURE__ */ jsxs3("g", {
|
|
306
|
+
children: [
|
|
307
|
+
/* @__PURE__ */ jsx3("path", {
|
|
308
|
+
className: "st2",
|
|
309
|
+
d: "M32.3,16.3v74.3c0,2.5,1.8,1.7,4.1,1.7h71.3c2.3,0,4.1,0.8,4.1-1.7V16.3c0-2.5-1.8-4.6-4.1-4.6H36.4\n C34.1,11.7,32.3,13.8,32.3,16.3z"
|
|
310
|
+
}),
|
|
311
|
+
/* @__PURE__ */ jsx3("path", {
|
|
312
|
+
className: "st4",
|
|
313
|
+
d: "M94.6,11.7h-8c-0.6,0-1,0.4-1,1c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1C95.6,12.2,95.2,11.7,94.6,11.7L94.6,11.7z\n M81.6,11.7h-8c-0.6,0-1,0.4-1,1c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1C82.6,12.2,82.2,11.7,81.6,11.7L81.6,11.7z M68.6,11.7h-8\n c-0.6,0-1,0.4-1,1c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1C69.6,12.2,69.2,11.7,68.6,11.7L68.6,11.7z M55.6,11.7h-8c-0.6,0-1,0.4-1,1\n c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1C56.6,12.2,56.2,11.7,55.6,11.7L55.6,11.7z M42.6,11.7h-6.3l0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.2,0.1-0.4,0.1-0.6,0.2c-0.5,0.2-0.7,0.8-0.4,1.3\n c0.2,0.3,0.5,0.5,0.9,0.5c0.2,0,0.3,0,0.4-0.1c0.2-0.1,0.5-0.2,0.8-0.2h6.3c0.6,0,1-0.4,1-1C43.6,12.2,43.2,11.7,42.6,11.7\n L42.6,11.7z M33.3,15.2c-0.5,0-1,0.4-1,1c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0v7.9c0,0.6,0.4,1,1,1s1-0.4,1-1v-7.9l0-0.1C34.3,15.7,33.8,15.2,33.3,15.2\n C33.3,15.2,33.3,15.2,33.3,15.2L33.3,15.2z M33.3,28.2c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8\n C34.3,28.7,33.8,28.2,33.3,28.2L33.3,28.2z M33.3,41.2c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8\n C34.3,41.7,33.8,41.2,33.3,41.2L33.3,41.2z M33.3,54.2c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8\n C34.3,54.7,33.8,54.2,33.3,54.2L33.3,54.2z M33.3,67.2c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8\n C34.3,67.7,33.8,67.2,33.3,67.2L33.3,67.2z M33.3,80.2c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8\n C34.3,80.7,33.8,80.2,33.3,80.2L33.3,80.2z M42.6,90.3h-6.3c-0.6,0-1.1,0-1.5,0.1l-0.4,0c-0.6,0-1,0.5-0.9,1.1c0,0.5,0.5,0.9,1,0.9\n c0,0,0,0,0.1,0c0.2,0,0.5,0,0.7-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0h0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0s0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0l0,0h6.3c0.6,0,1-0.4,1-1S43.2,90.3,42.6,90.3L42.6,90.3z M55.6,90.3h-8c-0.6,0-1,0.4-1,1s0.4,1,1,1h8\n c0.6,0,1-0.4,1-1S56.2,90.3,55.6,90.3L55.6,90.3z M68.6,90.3h-8c-0.6,0-1,0.4-1,1s0.4,1,1,1h8c0.6,0,1-0.4,1-1S69.2,90.3,68.6,90.3\n L68.6,90.3z M81.6,90.3h-8c-0.6,0-1,0.4-1,1s0.4,1,1,1h8c0.6,0,1-0.4,1-1S82.2,90.3,81.6,90.3L81.6,90.3z M94.6,90.3h-8\n c-0.6,0-1,0.4-1,1s0.4,1,1,1h8c0.6,0,1-0.4,1-1S95.2,90.3,94.6,90.3L94.6,90.3z M107.6,90.3h-8c-0.6,0-1,0.4-1,1s0.4,1,1,1h8\n c0.6,0,1-0.4,1-1S108.2,90.3,107.6,90.3L107.6,90.3z M110.7,82c-0.6,0-1,0.4-1,1v7.7c0,0.1,0,0.1,0,0.2c0,0.6,0.4,1,0.9,1.1\n c0,0,0.1,0,0.1,0c0.5,0,1-0.4,1-0.9c0-0.1,0-0.1,0-0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0v0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0V83C111.7,82.4,111.3,82,110.7,82L110.7,82z M110.7,69c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8\n C111.7,69.4,111.3,69,110.7,69L110.7,69z M110.7,56c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8C111.7,56.4,111.3,56,110.7,56\n L110.7,56z M110.7,43c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8C111.7,43.4,111.3,43,110.7,43L110.7,43z M110.7,30\n c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8C111.7,30.4,111.3,30,110.7,30L110.7,30z M110.7,17c-0.6,0-1,0.4-1,1v8\n c0,0.6,0.4,1,1,1s1-0.4,1-1v-8C111.7,17.4,111.3,17,110.7,17L110.7,17z M107.6,11.7h-8c-0.6,0-1,0.4-1,1c0,0.6,0.4,1,1,1h8l0,0\n c0.7,0,1.2,0.5,1.5,0.8c0.2,0.2,0.5,0.4,0.8,0.4c0.2,0,0.4-0.1,0.6-0.2c0.4-0.3,0.5-1,0.1-1.4c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0v0\n c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0-0.1,0v0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0-0.1,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0\n c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0v0c0,0,0,0-0.1,0l0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0l0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7\n C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7\n C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7\n C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7\n C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7\n C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7\n C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7\n C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7C107.6,11.7,107.6,11.7,107.6,11.7\n C107.6,11.7,107.6,11.7,107.6,11.7C107.6,11.7,107.6,11.7,107.6,11.7C107.6,11.7,107.6,11.7,107.6,11.7\n C107.6,11.7,107.6,11.7,107.6,11.7C107.6,11.7,107.6,11.7,107.6,11.7L107.6,11.7L107.6,11.7z"
|
|
314
|
+
})
|
|
315
|
+
]
|
|
316
|
+
}),
|
|
317
|
+
/* @__PURE__ */ jsxs3("g", {
|
|
318
|
+
children: [
|
|
319
|
+
/* @__PURE__ */ jsx3("path", {
|
|
320
|
+
className: "st71",
|
|
321
|
+
d: "M70.5,28.3L46.2,70.4c-0.7,1.1,0.2,2.6,1.5,2.6h48.7c1.3,0,2.1-1.4,1.5-2.6L73.5,28.3\n C72.8,27.2,71.2,27.2,70.5,28.3L46.2,70.4c-0.7,1.1,0.2,2.6,1.5,2.6h48.7c1.3,0,2.1-1.4,1.5-2.6L73.5,28.3\n C72.8,27.2,71.2,27.2,70.5,28.3z"
|
|
322
|
+
}),
|
|
323
|
+
/* @__PURE__ */ jsx3("g", {
|
|
324
|
+
children: /* @__PURE__ */ jsx3("path", {
|
|
325
|
+
className: "st51",
|
|
326
|
+
d: "M69.2,62.3c0-1.5,1.2-2.7,2.8-2.7c1.6,0,2.8,1.2,2.8,2.7c0,1.5-1.2,2.7-2.8,2.7\n C70.4,65.1,69.2,63.8,69.2,62.3z M69.4,42.8h5.1l-0.8,14.5h-3.5L69.4,42.8z"
|
|
327
|
+
})
|
|
328
|
+
})
|
|
329
|
+
]
|
|
330
|
+
}),
|
|
331
|
+
/* @__PURE__ */ jsx3("polygon", {
|
|
332
|
+
className: "st4",
|
|
333
|
+
points: "120.6,73.7 120.6,89.3 23.4,89.3 23.4,73.7 18.3,73.7 18.3,95.5 125.7,95.5 125.7,73.7 "
|
|
334
|
+
})
|
|
335
|
+
]
|
|
336
|
+
});
|
|
337
|
+
};
|
|
338
|
+
|
|
339
|
+
// src/assets/No-Data_Gray.tsx
|
|
340
|
+
import { jsx as jsx4, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
341
|
+
var NoData = () => {
|
|
342
|
+
return /* @__PURE__ */ jsxs4("svg", {
|
|
343
|
+
version: "1.1",
|
|
344
|
+
id: "Layer_1",
|
|
345
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
346
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
347
|
+
x: "0px",
|
|
348
|
+
y: "0px",
|
|
349
|
+
viewBox: "0 0 144 144",
|
|
350
|
+
xmlSpace: "preserve",
|
|
351
|
+
"aria-label": "No Data",
|
|
352
|
+
"aria-hidden": "true",
|
|
353
|
+
children: [
|
|
354
|
+
/* @__PURE__ */ jsx4("style", {
|
|
355
|
+
type: "text/css",
|
|
356
|
+
children: `.st0{fill:#FFFFFF;stroke:#BBD6EB;stroke-miterlimit:10;}
|
|
357
|
+
.st1{fill:#FFFFFF;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
358
|
+
.st2{fill:#FFFFFF;}
|
|
359
|
+
.st3{fill:#BBD6EB;}
|
|
360
|
+
.st4{fill:#EEEFF2;}
|
|
361
|
+
.st5{fill:#5E616E;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
362
|
+
.st6{fill:#F3F5F7;}
|
|
363
|
+
.st7{fill:url(#SVGID_1_);stroke:url(#SVGID_00000006704332593454663440000005954843594819861146_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
364
|
+
.st8{fill:url(#SVGID_00000106143224745968664660000015545644386663402369_);stroke:url(#SVGID_00000060000323524700952150000009443098968243775633_);stroke-miterlimit:10;}
|
|
365
|
+
.st9{clip-path:url(#SVGID_00000072254873707258048500000002202334732706801583_);}
|
|
366
|
+
.st10{fill:url(#SVGID_00000160906424440706072010000010651418766052893828_);}
|
|
367
|
+
.st11{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
|
|
368
|
+
.st12{fill:url(#SVGID_00000166653025240627689170000010166316195966771112_);}
|
|
369
|
+
.st13{fill:url(#SVGID_00000124858390285803908180000004272456810311541930_);}
|
|
370
|
+
.st14{fill:#FFFFFF;stroke:url(#SVGID_00000039812618264638845780000015754501534824760994_);stroke-miterlimit:10;}
|
|
371
|
+
.st15{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
372
|
+
.st16{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:5.6708,0.5671,1.7012,5.6708;}
|
|
373
|
+
.st17{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.5671,1.7012,5.6708,0.5671,1.7012,5.6708;}
|
|
374
|
+
.st18{fill:url(#SVGID_00000114785120267784282100000003782019601038459024_);stroke:url(#SVGID_00000017485853486535587300000008133827704572529074_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
375
|
+
.st19{opacity:0.25;fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
376
|
+
.st20{fill:#838795;}
|
|
377
|
+
.st21{fill:url(#SVGID_00000005227838299657014020000002405157770383428270_);stroke:url(#SVGID_00000179628980782306761590000016732882584549759379_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
378
|
+
.st22{fill:url(#SVGID_00000082336348223447261170000007350259516740736661_);stroke:url(#SVGID_00000127747985854115216880000015324684558685072513_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
379
|
+
.st23{fill:url(#SVGID_00000143614735348896238450000017950618178258863778_);stroke:url(#SVGID_00000149350154152619398350000009011244753699295625_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
380
|
+
.st24{fill:url(#SVGID_00000165932059201675521870000010177836230110158249_);stroke:url(#SVGID_00000116200938490381802900000013099948937685753014_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
381
|
+
.st25{fill:url(#SVGID_00000170970391019326246130000003386635648620799153_);stroke:url(#SVGID_00000078042507857241115240000000783729399282428860_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
382
|
+
.st26{fill:url(#SVGID_00000165954344476300240070000016062413915397158530_);stroke:url(#SVGID_00000065072852963065815490000017635043911515709835_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
383
|
+
.st27{fill:url(#SVGID_00000149340045453916345050000003530030559855249543_);stroke:url(#SVGID_00000145764715395966068490000016906432215648834203_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
384
|
+
.st28{fill:url(#SVGID_00000060741309953631294510000012219950461900646033_);stroke:url(#SVGID_00000181064779950116991740000008672142294875886516_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
385
|
+
.st29{fill:url(#SVGID_00000066499000593153989830000001583623978092939154_);}
|
|
386
|
+
.st30{fill:url(#SVGID_00000060019588447761887410000006983974920953117348_);}
|
|
387
|
+
.st31{fill:url(#SVGID_00000147204935348505892770000008330411938665552551_);}
|
|
388
|
+
.st32{fill:url(#SVGID_00000093168809162800931530000013939932709540720810_);}
|
|
389
|
+
.st33{fill:url(#SVGID_00000110471321633624848760000002315469972124581509_);}
|
|
390
|
+
.st34{fill:url(#SVGID_00000090266667587978863940000009656000683829817007_);}
|
|
391
|
+
.st35{fill:url(#SVGID_00000044173117623488082010000002617541745592796836_);}
|
|
392
|
+
.st36{fill:url(#SVGID_00000062168671952687747160000014794920210185369251_);}
|
|
393
|
+
.st37{fill:url(#SVGID_00000046331582614306738040000011525566693084220813_);}
|
|
394
|
+
.st38{fill:url(#SVGID_00000104706002140217962550000011073050277708869268_);}
|
|
395
|
+
.st39{fill:url(#SVGID_00000132080076872910327460000016661199490817898375_);}
|
|
396
|
+
.st40{fill:url(#SVGID_00000047770168658054061260000004285069631651636665_);}
|
|
397
|
+
.st41{fill:url(#SVGID_00000119827730405595953390000013203674573805203845_);}
|
|
398
|
+
.st42{fill:#FFFFFF;stroke:url(#SVGID_00000134222642667733017300000013198702810135296641_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
399
|
+
.st43{fill:#FFFFFF;stroke:url(#SVGID_00000087387630545677661850000017120137950369778836_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
400
|
+
.st44{fill:url(#SVGID_00000057859342634657166460000015569615135577116037_);stroke:url(#SVGID_00000170978618175865133470000008438944922137589134_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
401
|
+
.st45{fill:#D7DAE0;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
402
|
+
.st46{fill:#5E616E;stroke:#5E616E;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
403
|
+
.st47{fill:#FFFFFF;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
404
|
+
.st48{fill:none;stroke:#D7DAE0;stroke-width:8;stroke-miterlimit:10;stroke-dasharray:2.0076,4.0153;}
|
|
405
|
+
.st49{fill:#838795;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
406
|
+
.st50{fill:#838795;stroke:#5E616E;stroke-width:1.5;stroke-miterlimit:10;}
|
|
407
|
+
.st51{fill:#D7DAE0;}
|
|
408
|
+
.st52{fill:none;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
409
|
+
.st53{fill:none;stroke:#D7DAE0;stroke-width:8;stroke-miterlimit:10;stroke-dasharray:2.0038,4.0077;}
|
|
410
|
+
.st54{clip-path:url(#SVGID_00000124865040314443218350000012560582582247641745_);}
|
|
411
|
+
.st55{fill:none;stroke:#FFFFFF;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;}
|
|
412
|
+
.st56{fill:none;stroke:#FFFFFF;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6.6455,0.6645,1.9936,6.6455;}
|
|
413
|
+
.st57{fill:none;stroke:#FFFFFF;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.6645,1.9936,6.6455,0.6645,1.9936,6.6455;}
|
|
414
|
+
.st58{fill:none;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1,3,10,5;}
|
|
415
|
+
.st59{fill:#FFFFFF;stroke:#5E616E;stroke-width:1.5;stroke-miterlimit:10;}
|
|
416
|
+
.st60{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;}
|
|
417
|
+
.st61{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:7.0238,0.7024,2.1072,7.0238;}
|
|
418
|
+
.st62{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:0.7024,2.1072,7.0238,0.7024,2.1072,7.0238;}
|
|
419
|
+
.st63{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-miterlimit:10;}
|
|
420
|
+
.st64{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:5.7263,0.5726,1.7179,5.7263;}
|
|
421
|
+
.st65{fill:none;stroke:#5E616E;stroke-width:1.5;stroke-miterlimit:10;}
|
|
422
|
+
.st66{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1,3,10,5;}
|
|
423
|
+
.st67{fill:none;stroke:#5E616E;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
424
|
+
.st68{fill:none;stroke:#838795;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1,3,10,5;}
|
|
425
|
+
.st69{fill:#5E616E;}
|
|
426
|
+
.st70{clip-path:url(#SVGID_00000083788480783082887770000000257071326861215674_);}
|
|
427
|
+
.st71{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
428
|
+
.st72{fill:none;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
429
|
+
.st73{fill:#FFFFFF;stroke:#1A74CC;stroke-miterlimit:10;}
|
|
430
|
+
.st74{fill:#E5E5E5;}
|
|
431
|
+
.st75{fill:#BBD6EB;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
432
|
+
.st76{fill:#FFFFFF;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:8,5;}`
|
|
433
|
+
}),
|
|
434
|
+
/* @__PURE__ */ jsxs4("g", {
|
|
435
|
+
children: [
|
|
436
|
+
/* @__PURE__ */ jsx4("path", {
|
|
437
|
+
className: "st2",
|
|
438
|
+
d: "M124,12.9H20c-2.8,0-5.1,2-5.1,4.4v82.2h114.1V17.3C129.1,14.9,126.8,12.9,124,12.9z"
|
|
439
|
+
}),
|
|
440
|
+
/* @__PURE__ */ jsx4("path", {
|
|
441
|
+
className: "st4",
|
|
442
|
+
d: "M111,12.9h-8c-0.6,0-1,0.4-1,1c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1C112,13.4,111.5,12.9,111,12.9L111,12.9z\n M98,12.9h-8c-0.6,0-1,0.4-1,1c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1C99,13.4,98.5,12.9,98,12.9L98,12.9z M85,12.9h-8\n c-0.6,0-1,0.4-1,1c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1C86,13.4,85.5,12.9,85,12.9L85,12.9z M72,12.9h-8c-0.6,0-1,0.4-1,1\n c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1C73,13.4,72.5,12.9,72,12.9L72,12.9z M59,12.9h-8c-0.6,0-1,0.4-1,1c0,0.6,0.4,1,1,1h8\n c0.6,0,1-0.4,1-1C60,13.4,59.5,12.9,59,12.9L59,12.9z M46,12.9h-8c-0.6,0-1,0.4-1,1c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1\n C47,13.4,46.5,12.9,46,12.9L46,12.9z M33,12.9h-8c-0.6,0-1,0.4-1,1c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1C34,13.4,33.5,12.9,33,12.9\n L33,12.9z M20,12.9C20,12.9,20,12.9,20,12.9c-2,0-3.8,1.1-4.6,2.6v0c0,0,0,0,0,0v0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0v0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0v0c0,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0v0.6c0,0.6,0.4,1,1,1s1-0.4,1-1v-0.6c0-1.3,1.4-2.4,3-2.4\n c0.6,0,1-0.5,1-1C21,13.4,20.5,12.9,20,12.9L20,12.9z M15.9,21.9c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8\n C16.9,22.4,16.5,21.9,15.9,21.9L15.9,21.9z M15.9,34.9c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8\n C16.9,35.4,16.5,34.9,15.9,34.9L15.9,34.9z M15.9,47.9c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8\n C16.9,48.4,16.5,47.9,15.9,47.9L15.9,47.9z M15.9,60.9c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8\n C16.9,61.4,16.5,60.9,15.9,60.9L15.9,60.9z M15.9,73.9c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8\n C16.9,74.4,16.5,73.9,15.9,73.9L15.9,73.9z M15.9,86.9c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8\n C16.9,87.4,16.5,86.9,15.9,86.9L15.9,86.9z M24.4,97.5h-8c-0.6,0-1,0.4-1,1s0.4,1,1,1h8c0.6,0,1-0.4,1-1S25,97.5,24.4,97.5\n L24.4,97.5z M37.4,97.5h-8c-0.6,0-1,0.4-1,1s0.4,1,1,1h8c0.6,0,1-0.4,1-1S38,97.5,37.4,97.5L37.4,97.5z M50.4,97.5h-8\n c-0.6,0-1,0.4-1,1s0.4,1,1,1h8c0.6,0,1-0.4,1-1S51,97.5,50.4,97.5L50.4,97.5z M63.4,97.5h-8c-0.6,0-1,0.4-1,1s0.4,1,1,1h8\n c0.6,0,1-0.4,1-1S64,97.5,63.4,97.5L63.4,97.5z M76.4,97.5h-8c-0.6,0-1,0.4-1,1s0.4,1,1,1h8c0.6,0,1-0.4,1-1S77,97.5,76.4,97.5\n L76.4,97.5z M89.4,97.5h-8c-0.6,0-1,0.4-1,1s0.4,1,1,1h8c0.6,0,1-0.4,1-1S90,97.5,89.4,97.5L89.4,97.5z M102.4,97.5h-8\n c-0.6,0-1,0.4-1,1s0.4,1,1,1h8c0.6,0,1-0.4,1-1S103,97.5,102.4,97.5L102.4,97.5z M115.4,97.5h-8c-0.6,0-1,0.4-1,1s0.4,1,1,1h8\n c0.6,0,1-0.4,1-1S116,97.5,115.4,97.5L115.4,97.5z M128.4,97.5h-8c-0.6,0-1,0.4-1,1s0.4,1,1,1h8c0.2,0,0.5-0.1,0.6-0.2v-1.5\n C128.9,97.6,128.7,97.5,128.4,97.5L128.4,97.5z M128.1,86.1c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8\n C129.1,86.6,128.6,86.1,128.1,86.1L128.1,86.1z M128.1,73.1c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8\n C129.1,73.6,128.6,73.1,128.1,73.1L128.1,73.1z M128.1,60.1c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8\n C129.1,60.6,128.6,60.1,128.1,60.1L128.1,60.1z M128.1,47.1c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8\n C129.1,47.6,128.6,47.1,128.1,47.1L128.1,47.1z M128.1,34.1c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8\n C129.1,34.6,128.6,34.1,128.1,34.1L128.1,34.1z M128.1,21.1c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8\n C129.1,21.6,128.6,21.1,128.1,21.1L128.1,21.1z M124,12.9h-8c-0.6,0-1,0.4-1,1c0,0.6,0.4,1,1,1h8l0,0c1.6,0,3,1,3.1,2.3\n c0,0.5,0.5,0.9,1,0.9c0,0,0,0,0.1,0c0.6,0,1-0.5,0.9-1.1c0-0.7-0.3-1.4-0.7-2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0l0,0c0,0,0,0,0,0v0c0,0-0.1-0.1-0.1-0.1v0c0,0,0,0,0,0v0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n l0,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.6-0.7-1.5-1.2-2.5-1.4l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.1,0-0.2,0\n c0,0,0,0,0,0c0,0,0,0,0,0v0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0\n C124.1,12.9,124.1,12.9,124,12.9C124.1,12.9,124.1,12.9,124,12.9C124.1,12.9,124,12.9,124,12.9C124,12.9,124,12.9,124,12.9\n C124,12.9,124,12.9,124,12.9C124,12.9,124,12.9,124,12.9C124,12.9,124,12.9,124,12.9C124,12.9,124,12.9,124,12.9\n C124,12.9,124,12.9,124,12.9C124,12.9,124,12.9,124,12.9C124,12.9,124,12.9,124,12.9C124,12.9,124,12.9,124,12.9\n C124,12.9,124,12.9,124,12.9C124,12.9,124,12.9,124,12.9C124,12.9,124,12.9,124,12.9C124,12.9,124,12.9,124,12.9\n C124,12.9,124,12.9,124,12.9C124,12.9,124,12.9,124,12.9C124,12.9,124,12.9,124,12.9C124,12.9,124,12.9,124,12.9\n C124,12.9,124,12.9,124,12.9C124,12.9,124,12.9,124,12.9C124,12.9,124,12.9,124,12.9C124,12.9,124,12.9,124,12.9L124,12.9z"
|
|
443
|
+
})
|
|
444
|
+
]
|
|
445
|
+
}),
|
|
446
|
+
/* @__PURE__ */ jsx4("path", {
|
|
447
|
+
className: "st4",
|
|
448
|
+
d: "M80.8,30.1L66,44.9H9c-3,0-5.3,2.6-4.8,5.6l8.5,58c0.2,1.3,1.3,2.3,2.7,2.3h111.3c1.4,0,2.5-1,2.7-2.3\n l10.6-72.9c0.4-3-1.9-5.6-4.8-5.6H80.8z"
|
|
449
|
+
}),
|
|
450
|
+
/* @__PURE__ */ jsxs4("g", {
|
|
451
|
+
children: [
|
|
452
|
+
/* @__PURE__ */ jsx4("circle", {
|
|
453
|
+
className: "st71",
|
|
454
|
+
cx: "107.4",
|
|
455
|
+
cy: "99.4",
|
|
456
|
+
r: "30.5"
|
|
457
|
+
}),
|
|
458
|
+
/* @__PURE__ */ jsx4("polygon", {
|
|
459
|
+
className: "st51",
|
|
460
|
+
points: "124.8,88 118.7,81.9 107.3,93.3 95.8,81.9 89.7,88 101.2,99.5 89.7,110.9 95.8,117 107.3,105.6\n 118.7,117 124.8,110.9 113.4,99.5 "
|
|
461
|
+
})
|
|
462
|
+
]
|
|
463
|
+
})
|
|
464
|
+
]
|
|
465
|
+
});
|
|
466
|
+
};
|
|
22
467
|
|
|
23
|
-
// src/assets/No-Search-Found_Gray.
|
|
24
|
-
|
|
468
|
+
// src/assets/No-Search-Found_Gray.tsx
|
|
469
|
+
import { jsx as jsx5, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
470
|
+
var NoSearchFound = () => {
|
|
471
|
+
return /* @__PURE__ */ jsxs5("svg", {
|
|
472
|
+
version: "1.1",
|
|
473
|
+
id: "Layer_1",
|
|
474
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
475
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
476
|
+
x: "0px",
|
|
477
|
+
y: "0px",
|
|
478
|
+
viewBox: "0 0 144 144",
|
|
479
|
+
xmlSpace: "preserve",
|
|
480
|
+
"aria-label": "No Search Found",
|
|
481
|
+
"aria-hidden": "true",
|
|
482
|
+
children: [
|
|
483
|
+
/* @__PURE__ */ jsx5("style", {
|
|
484
|
+
type: "text/css",
|
|
485
|
+
children: `.st0{fill:#FFFFFF;stroke:#BBD6EB;stroke-miterlimit:10;}
|
|
486
|
+
.st1{fill:#FFFFFF;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
487
|
+
.st2{fill:#FFFFFF;}
|
|
488
|
+
.st3{fill:#BBD6EB;}
|
|
489
|
+
.st4{fill:#EEEFF2;}
|
|
490
|
+
.st5{fill:#5E616E;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
491
|
+
.st6{fill:#F3F5F7;}
|
|
492
|
+
.st7{fill:url(#SVGID_1_);stroke:url(#SVGID_00000094609187903788932600000003545639467833409428_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
493
|
+
.st8{fill:url(#SVGID_00000161589915407589535500000009372234131896836539_);stroke:url(#SVGID_00000067934452502483355280000008339464748571244981_);stroke-miterlimit:10;}
|
|
494
|
+
.st9{clip-path:url(#SVGID_00000162331202596614018110000016194356013507311530_);}
|
|
495
|
+
.st10{fill:url(#SVGID_00000037655740272919924040000017535965237825787818_);}
|
|
496
|
+
.st11{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
|
|
497
|
+
.st12{fill:url(#SVGID_00000110466472750432826220000004538896309817856650_);}
|
|
498
|
+
.st13{fill:url(#SVGID_00000072251738502527140120000007480513520010799289_);}
|
|
499
|
+
.st14{fill:#FFFFFF;stroke:url(#SVGID_00000109737291097771010450000016905642024503382463_);stroke-miterlimit:10;}
|
|
500
|
+
.st15{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
501
|
+
.st16{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:5.6708,0.5671,1.7012,5.6708;}
|
|
502
|
+
.st17{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.5671,1.7012,5.6708,0.5671,1.7012,5.6708;}
|
|
503
|
+
.st18{fill:url(#SVGID_00000071560644066883387500000008702215066501077438_);stroke:url(#SVGID_00000041260937465794957220000003204765592288801447_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
504
|
+
.st19{opacity:0.25;fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
505
|
+
.st20{fill:#838795;}
|
|
506
|
+
.st21{fill:url(#SVGID_00000044171222418013926150000001626571882860076948_);stroke:url(#SVGID_00000119091168009985137720000015280234206461506194_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
507
|
+
.st22{fill:url(#SVGID_00000145049749931436758180000006214419598200721338_);stroke:url(#SVGID_00000034770130942227623730000006943851382756295815_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
508
|
+
.st23{fill:url(#SVGID_00000034086188455595214650000000106235625568093359_);stroke:url(#SVGID_00000119809059463002379890000001328156446606476436_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
509
|
+
.st24{fill:url(#SVGID_00000084525421725677028100000002342331043522091695_);stroke:url(#SVGID_00000170259873083608309310000002663339479637381251_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
510
|
+
.st25{fill:url(#SVGID_00000090257117363107863130000001530954146672511645_);stroke:url(#SVGID_00000005983905713641276000000006361808052854576564_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
511
|
+
.st26{fill:url(#SVGID_00000035529088551174812540000016129695222616890014_);stroke:url(#SVGID_00000090991212463957472540000015583168092279454350_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
512
|
+
.st27{fill:url(#SVGID_00000181081539637647825220000010251441254353580164_);stroke:url(#SVGID_00000169559947521487949140000014229010861957120905_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
513
|
+
.st28{fill:url(#SVGID_00000145037676760478490520000016224395349366602409_);stroke:url(#SVGID_00000149355959681865523270000006600740656262230688_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
514
|
+
.st29{fill:url(#SVGID_00000159471051151717654030000009358683532371293109_);}
|
|
515
|
+
.st30{fill:url(#SVGID_00000145749459581369053590000010997582527071904702_);}
|
|
516
|
+
.st31{fill:url(#SVGID_00000135684608842164379260000005278990163368478358_);}
|
|
517
|
+
.st32{fill:url(#SVGID_00000105399242326203901220000015629138222770619280_);}
|
|
518
|
+
.st33{fill:url(#SVGID_00000083780951955360727220000009574561854206514859_);}
|
|
519
|
+
.st34{fill:url(#SVGID_00000173121002280365140170000005472776760760630681_);}
|
|
520
|
+
.st35{fill:url(#SVGID_00000030471428930957756860000011347861550533136280_);}
|
|
521
|
+
.st36{fill:url(#SVGID_00000005958223121467814920000004524103582282804151_);}
|
|
522
|
+
.st37{fill:url(#SVGID_00000016054360315145193850000009377640636026127291_);}
|
|
523
|
+
.st38{fill:url(#SVGID_00000076568430624743085750000011985954460562833283_);}
|
|
524
|
+
.st39{fill:url(#SVGID_00000121962263570211620080000012551758957791307142_);}
|
|
525
|
+
.st40{fill:url(#SVGID_00000102510317207207755260000001757161550764590240_);}
|
|
526
|
+
.st41{fill:url(#SVGID_00000066489273327868503790000000367217513764259223_);}
|
|
527
|
+
.st42{fill:#FFFFFF;stroke:url(#SVGID_00000029749451120302070210000013010458254936366480_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
528
|
+
.st43{fill:#FFFFFF;stroke:url(#SVGID_00000016052460888614745100000012076935114936558769_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
529
|
+
.st44{fill:url(#SVGID_00000062908384524755920690000016121043276677890472_);stroke:url(#SVGID_00000182508529787751778560000002519442964791851401_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
530
|
+
.st45{fill:#D7DAE0;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
531
|
+
.st46{fill:#5E616E;stroke:#5E616E;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
532
|
+
.st47{fill:#FFFFFF;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
533
|
+
.st48{fill:none;stroke:#D7DAE0;stroke-width:8;stroke-miterlimit:10;stroke-dasharray:2.0076,4.0153;}
|
|
534
|
+
.st49{fill:#838795;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
535
|
+
.st50{fill:#838795;stroke:#5E616E;stroke-width:1.5;stroke-miterlimit:10;}
|
|
536
|
+
.st51{fill:#D7DAE0;}
|
|
537
|
+
.st52{fill:none;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
538
|
+
.st53{fill:none;stroke:#D7DAE0;stroke-width:8;stroke-miterlimit:10;stroke-dasharray:2.0038,4.0077;}
|
|
539
|
+
.st54{clip-path:url(#SVGID_00000136405785613528362800000007147594551438276777_);}
|
|
540
|
+
.st55{fill:none;stroke:#FFFFFF;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;}
|
|
541
|
+
.st56{fill:none;stroke:#FFFFFF;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6.6455,0.6645,1.9936,6.6455;}
|
|
542
|
+
.st57{fill:none;stroke:#FFFFFF;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.6645,1.9936,6.6455,0.6645,1.9936,6.6455;}
|
|
543
|
+
.st58{fill:none;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1,3,10,5;}
|
|
544
|
+
.st59{fill:#FFFFFF;stroke:#5E616E;stroke-width:1.5;stroke-miterlimit:10;}
|
|
545
|
+
.st60{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;}
|
|
546
|
+
.st61{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:7.0238,0.7024,2.1072,7.0238;}
|
|
547
|
+
.st62{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:0.7024,2.1072,7.0238,0.7024,2.1072,7.0238;}
|
|
548
|
+
.st63{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-miterlimit:10;}
|
|
549
|
+
.st64{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:5.7263,0.5726,1.7179,5.7263;}
|
|
550
|
+
.st65{fill:none;stroke:#5E616E;stroke-width:1.5;stroke-miterlimit:10;}
|
|
551
|
+
.st66{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1,3,10,5;}
|
|
552
|
+
.st67{fill:none;stroke:#5E616E;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
553
|
+
.st68{fill:none;stroke:#838795;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1,3,10,5;}
|
|
554
|
+
.st69{fill:#5E616E;}
|
|
555
|
+
.st70{clip-path:url(#SVGID_00000079469741068815528770000010706338362003342259_);}
|
|
556
|
+
.st71{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
557
|
+
.st72{fill:none;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
558
|
+
.st73{fill:#FFFFFF;stroke:#1A74CC;stroke-miterlimit:10;}
|
|
559
|
+
.st74{fill:#E5E5E5;}
|
|
560
|
+
.st75{fill:#BBD6EB;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
561
|
+
.st76{fill:#FFFFFF;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:8,5;}`
|
|
562
|
+
}),
|
|
563
|
+
/* @__PURE__ */ jsxs5("g", {
|
|
564
|
+
children: [
|
|
565
|
+
/* @__PURE__ */ jsx5("path", {
|
|
566
|
+
className: "st2",
|
|
567
|
+
d: "M63.6,17.8c-2-0.5-4.1,0.8-4.6,2.8L43.4,84.3l-3.2,13.1l-4.9,20c-0.5,2,0.8,4.1,2.8,4.6l72.9,17.8\n c2,0.5,4.1-0.8,4.6-2.8l4.9-20l3.2-13.1l15.6-63.8c0.5-2-0.8-4.1-2.8-4.6L63.6,17.8z"
|
|
568
|
+
}),
|
|
569
|
+
/* @__PURE__ */ jsx5("path", {
|
|
570
|
+
className: "st4",
|
|
571
|
+
d: "M62.7,17.7c-1.7,0-3.3,1.2-3.7,2.9l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0\n c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0\n l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l-0.6,2.6c-0.1,0.5,0.2,1.1,0.7,1.2c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8L61,21\n c0.2-0.8,0.9-1.4,1.8-1.4c0.2,0,0.3,0,0.5-0.1c0.1,0.1,0.3,0.3,0.5,0.3l7.8,1.9c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8\n c0.1-0.5-0.2-1.1-0.7-1.2c0,0-4.6-1.1-6.7-1.7l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l-1-0.2\n c-0.1,0-0.2,0-0.2,0c-0.2,0-0.3,0-0.5,0.1C63.3,17.8,63,17.7,62.7,17.7L62.7,17.7L62.7,17.7z M58.1,27.5c-0.5,0-0.9,0.3-1,0.8\n c0,0-0.3,1.1-0.6,2.5l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0\n c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l-1.2,5c-0.1,0.5,0.2,1.1,0.7,1.2\n c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8l1.9-7.8c0.1-0.5-0.2-1.1-0.7-1.2C58.3,27.5,58.2,27.5,58.1,27.5L58.1,27.5z M55,40.1\n c-0.5,0-0.9,0.3-1,0.8c0,0-0.4,1.5-0.8,3.2l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0\n l-1.1,4.4c-0.1,0.5,0.2,1.1,0.7,1.2c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8l1.9-7.8c0.1-0.5-0.2-1.1-0.7-1.2\n C55.2,40.2,55.1,40.1,55,40.1L55,40.1z M51.9,52.8c-0.5,0-0.9,0.3-1,0.8c0,0-0.2,1-0.5,2.2l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0\n c0,0,0,0,0,0l-1.3,5.5c-0.1,0.5,0.2,1.1,0.7,1.2c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8l1.9-7.8c0.1-0.5-0.2-1.1-0.7-1.2\n C52.1,52.8,52,52.8,51.9,52.8L51.9,52.8z M48.8,65.4c-0.5,0-0.9,0.3-1,0.8c0,0-0.2,0.7-0.4,1.7l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0\n l0,0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0L46,73.9c-0.1,0.5,0.2,1.1,0.7,1.2c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8l1.9-7.8\n c0.1-0.5-0.2-1.1-0.7-1.2C49,65.4,48.9,65.4,48.8,65.4L48.8,65.4z M45.8,78c-0.5,0-0.9,0.3-1,0.8v0c0,0,0,0,0,0v0c0,0,0,0,0,0l0,0\n c0,0,0,0,0,0v0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0v0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0v0\n c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0.1,0,0.1l0,0c0,0,0,0,0,0l0,0\n c0,0,0,0.1,0,0.1l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0.1l0,0c0,0,0,0,0,0l0,0\n c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0\n l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0\n c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0\n l0,0c0,0.1,0,0.2-0.1,0.3l0,0c0,0.1-0.1,0.3-0.1,0.4l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0\n c0,0.1-0.1,0.3-0.1,0.4l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0.1,0,0.1l0,0c0,0,0,0.1,0,0.1l0,0c0,0,0,0,0,0l0,0\n c0,0,0,0,0,0.1l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0\n c0,0,0,0,0,0.1l0,0c0,0,0,0,0,0.1l0,0c0,0,0,0.1,0,0.1l0,0c-0.1,0.3-0.1,0.5-0.2,0.8l0,0c0,0.2-0.1,0.3-0.1,0.5l0,0\n c0,0.1-0.1,0.3-0.1,0.4l0,0c-0.1,0.3-0.1,0.5-0.2,0.6v0c0,0.2-0.1,0.2-0.1,0.2l0,0l0,0l-0.5,2.2c-0.1,0.5,0.2,1.1,0.7,1.2\n c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8l0.5-2.2l1.4-5.5c0.1-0.5-0.2-1.1-0.7-1.2C45.9,78,45.8,78,45.8,78L45.8,78z M42.7,90.7\n c-0.4,0-0.9,0.3-1,0.8l-1.4,5.8v0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0\n c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0\n l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0v0c0,0,0,0,0,0v0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0l0,0l-0.4,1.8\n c-0.1,0.5,0.2,1.1,0.7,1.2c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8l0.4-1.8l1.5-6c0.1-0.5-0.2-1.1-0.7-1.2\n C42.8,90.7,42.7,90.7,42.7,90.7L42.7,90.7z M39.6,103.3c-0.4,0-0.9,0.3-1,0.8l-1.9,7.8c-0.1,0.5,0.2,1.1,0.7,1.2c0.1,0,0.2,0,0.2,0\n c0.5,0,0.9-0.3,1-0.8l1.9-7.8c0.1-0.5-0.2-1.1-0.7-1.2C39.7,103.3,39.7,103.3,39.6,103.3L39.6,103.3z M36.5,115.9\n c-0.5,0-0.9,0.3-1,0.8c0,0-0.2,0.7-0.2,0.7v0c0,0.1,0,0.1,0,0.2c-0.2,0.8-0.1,1.5,0.2,2.2c0.2,0.5,0.6,1,1,1.4c0,0,0,0,0,0\n c0,0,0,0,0,0c0.3,0.3,0.7,0.5,1.1,0.7c0,0,0.1,0,0.1,0c0.1,0,0.2,0.1,0.3,0.1l1.2,0.3c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8\n c0.1-0.5-0.2-1.1-0.7-1.2l-1.2-0.3c-0.5-0.1-0.9-0.4-1.1-0.8c-0.3-0.4-0.3-0.9-0.2-1.4l0.2-0.7c0.1-0.5-0.2-1.1-0.7-1.2\n C36.6,115.9,36.6,115.9,36.5,115.9L36.5,115.9z M44.4,121.5c-0.5,0-0.9,0.3-1,0.8c-0.1,0.5,0.2,1.1,0.7,1.2l4,1c0,0,0,0,0,0l0,0\n c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c1.9,0.5,3.7,0.9,3.7,0.9c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8\n c0.1-0.5-0.2-1.1-0.7-1.2l-7.8-1.9C44.6,121.5,44.5,121.5,44.4,121.5L44.4,121.5z M57.1,124.6c-0.5,0-0.9,0.3-1,0.8\n c-0.1,0.5,0.2,1.1,0.7,1.2l3.7,0.9c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0.1,0,0.1,0l0,0c1.9,0.5,3.9,1,3.9,1\n c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8c0.1-0.5-0.2-1.1-0.7-1.2l-7.8-1.9C57.2,124.6,57.1,124.6,57.1,124.6L57.1,124.6z\n M69.7,127.7c-0.5,0-0.9,0.3-1,0.8c-0.1,0.5,0.2,1.1,0.7,1.2l3.3,0.8c0,0,0,0,0,0l0.1,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0\n c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c2.1,0.5,4.3,1.1,4.3,1.1c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8\n c0.1-0.5-0.2-1.1-0.7-1.2l-7.8-1.9C69.8,127.7,69.8,127.7,69.7,127.7L69.7,127.7z M82.3,130.8c-0.5,0-0.9,0.3-1,0.8\n c-0.1,0.5,0.2,1.1,0.7,1.2l3,0.7c0,0,0,0,0,0l0.1,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0\n l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c2.2,0.5,4.6,1.1,4.6,1.1c0.1,0,0.2,0,0.2,0\n c0.5,0,0.9-0.3,1-0.8c0.1-0.5-0.2-1.1-0.7-1.2l-7.8-1.9C82.5,130.8,82.4,130.8,82.3,130.8L82.3,130.8z M94.9,133.9\n c-0.5,0-0.9,0.3-1,0.8c-0.1,0.5,0.2,1.1,0.7,1.2l7.8,1.9c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8c0.1-0.5-0.2-1.1-0.7-1.2l-7.8-1.9\n C95.1,133.9,95,133.9,94.9,133.9L94.9,133.9z M107.6,137c-0.5,0-0.9,0.3-1,0.8c-0.1,0.5,0.2,1.1,0.7,1.2l3.7,0.9\n c0.3,0.1,0.6,0.1,0.9,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0.4-0.2,0.8-0.5,1.1-0.9c0.4-0.4,0.3-1-0.1-1.4\n c-0.2-0.2-0.4-0.2-0.7-0.2c-0.3,0-0.6,0.1-0.8,0.3c-0.3,0.4-0.8,0.6-1.4,0.6c-0.1,0-0.3,0-0.4-0.1l-3.7-0.9\n C107.7,137,107.7,137,107.6,137L107.6,137z M117.3,125c-0.5,0-0.9,0.3-1,0.8l-1.9,7.8c-0.1,0.5,0.2,1.1,0.7,1.2c0.1,0,0.2,0,0.2,0\n c0.4,0,0.9-0.3,1-0.8l1.9-7.8c0.1-0.5-0.2-1.1-0.7-1.2C117.5,125,117.4,125,117.3,125L117.3,125z M120.4,112.3\n c-0.5,0-0.9,0.3-1,0.8l-0.9,3.5l-1,4.3c-0.1,0.5,0.2,1.1,0.7,1.2c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8l1-4.3c0,0,0,0,0,0l0,0\n c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0.8-3.4c0.1-0.5-0.2-1.1-0.7-1.2\n C120.6,112.3,120.5,112.3,120.4,112.3L120.4,112.3z M123.5,99.7c-0.5,0-0.9,0.3-1,0.8l-0.7,3l-1.2,4.7c-0.1,0.5,0.2,1.1,0.7,1.2\n c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8l1.2-4.7l0.7-3c0.1-0.5-0.2-1.1-0.7-1.2C123.7,99.7,123.6,99.7,123.5,99.7L123.5,99.7z\n M126.6,87.1c-0.5,0-0.9,0.3-1,0.8l-1.9,7.8c-0.1,0.5,0.2,1.1,0.7,1.2c0.1,0,0.2,0,0.2,0c0.4,0,0.9-0.3,1-0.8l1.9-7.8\n c0.1-0.5-0.2-1.1-0.7-1.2C126.8,87.1,126.7,87.1,126.6,87.1L126.6,87.1z M129.7,74.4c-0.5,0-0.9,0.3-1,0.8l-1.9,7.8\n c-0.1,0.5,0.2,1.1,0.7,1.2c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8l1.9-7.8c0.1-0.5-0.2-1.1-0.7-1.2\n C129.9,74.5,129.8,74.4,129.7,74.4L129.7,74.4z M132.8,61.8c-0.5,0-0.9,0.3-1,0.8l-1.9,7.8c-0.1,0.5,0.2,1.1,0.7,1.2\n c0.1,0,0.2,0,0.2,0c0.4,0,0.9-0.3,1-0.8l1.9-7.8c0.1-0.5-0.2-1.1-0.7-1.2C132.9,61.8,132.9,61.8,132.8,61.8L132.8,61.8z\n M135.9,49.2c-0.5,0-0.9,0.3-1,0.8l-1.9,7.8c-0.1,0.5,0.2,1.1,0.7,1.2c0.1,0,0.2,0,0.2,0c0.4,0,0.9-0.3,1-0.8l1.9-7.8\n c0.1-0.5-0.2-1.1-0.7-1.2C136,49.2,136,49.2,135.9,49.2L135.9,49.2z M138.2,37.2c-0.1,0-0.3,0-0.4,0.1c-0.5,0.2-0.7,0.8-0.5,1.3\n c0.1,0.3,0.2,0.7,0.1,1.2l-1.3,5.4c-0.1,0.5,0.2,1.1,0.7,1.2c0.1,0,0.2,0,0.2,0c0.4,0,0.9-0.3,1-0.8l1.2-5c0,0,0,0,0,0l0,0\n c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0\n l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0-0.1,0-0.2,0-0.2v0l0,0l0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0v0c0.2-0.8,0.1-1.6-0.2-2.4C139,37.4,138.6,37.2,138.2,37.2L138.2,37.2z\n M127.1,33.3c-0.4,0-0.9,0.3-1,0.8c-0.1,0.5,0.2,1.1,0.7,1.2l7.8,1.9c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8\n c0.1-0.5-0.2-1.1-0.7-1.2c0,0-2.9-0.7-5.1-1.3l0,0c0,0-0.1,0-0.1,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l-2.5-0.6\n C127.2,33.3,127.2,33.3,127.1,33.3L127.1,33.3z M114.4,30.2c-0.5,0-0.9,0.3-1,0.8c-0.1,0.5,0.2,1.1,0.7,1.2l7.8,1.9\n c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8c0.1-0.5-0.2-1.1-0.7-1.2c0,0-2.7-0.7-4.9-1.2l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0\n c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l-2.7-0.7\n C114.6,30.2,114.5,30.2,114.4,30.2L114.4,30.2z M101.8,27.2c-0.5,0-0.9,0.3-1,0.8c-0.1,0.5,0.2,1.1,0.7,1.2l7.8,1.9\n c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8c0.1-0.5-0.2-1.1-0.7-1.2c0,0-5.7-1.4-7.4-1.8l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0\n c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0\n l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l-0.3-0.1C102,27.2,101.9,27.2,101.8,27.2L101.8,27.2z M89.2,24.1\n c-0.5,0-0.9,0.3-1,0.8c-0.1,0.5,0.2,1.1,0.7,1.2l7.8,1.9c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8c0.1-0.5-0.2-1.1-0.7-1.2\n c0,0-5.1-1.3-7-1.7l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0\n c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0\n l0,0c0,0,0,0,0,0l-0.1,0l0,0l-0.5-0.1C89.4,24.1,89.3,24.1,89.2,24.1L89.2,24.1z M76.6,21c-0.5,0-0.9,0.3-1,0.8\n c-0.1,0.5,0.2,1.1,0.7,1.2l7.8,1.9c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8c0.1-0.5-0.2-1.1-0.7-1.2c0,0-4.3-1.1-6.5-1.6l0,0\n c0,0,0,0,0,0l0,0c0,0,0,0,0,0l-0.1,0l0,0l-0.1,0c0,0,0,0,0,0L76.8,21C76.7,21,76.6,21,76.6,21L76.6,21z"
|
|
572
|
+
})
|
|
573
|
+
]
|
|
574
|
+
}),
|
|
575
|
+
/* @__PURE__ */ jsx5("path", {
|
|
576
|
+
className: "st4",
|
|
577
|
+
d: "M7,18.3c-2.1,0.4-3.4,2.4-3,4.5l12.5,64.9l2.6,13.3l3.9,20.4c0.4,2.1,2.4,3.4,4.5,3l74.2-14.3\n c2.1-0.4,3.4-2.4,3-4.5l-3.9-20.4l-2.6-13.3L85.8,7c-0.4-2.1-2.4-3.4-4.5-3L7,18.3z"
|
|
578
|
+
}),
|
|
579
|
+
/* @__PURE__ */ jsxs5("g", {
|
|
580
|
+
children: [
|
|
581
|
+
/* @__PURE__ */ jsx5("path", {
|
|
582
|
+
className: "st51",
|
|
583
|
+
d: "M113.3,108.9l-4.5,4.5c-1.2,1.2-3.2,1.2-4.4,0L80.3,89.2c-1.2-1.2-1.2-3.2,0-4.4l4.5-4.5\n c1.2-1.2,3.2-1.2,4.4,0l24.1,24.1C114.5,105.7,114.5,107.7,113.3,108.9z"
|
|
584
|
+
}),
|
|
585
|
+
/* @__PURE__ */ jsx5("circle", {
|
|
586
|
+
className: "st71",
|
|
587
|
+
cx: "58.3",
|
|
588
|
+
cy: "58.3",
|
|
589
|
+
r: "28.5"
|
|
590
|
+
}),
|
|
591
|
+
/* @__PURE__ */ jsx5("polygon", {
|
|
592
|
+
className: "st51",
|
|
593
|
+
points: "74.7,47.7 68.9,41.9 58.2,52.6 47.5,41.9 41.8,47.7 52.5,58.4 41.8,69.1 47.5,74.8 58.2,64.1\n 68.9,74.8 74.7,69.1 63.9,58.4 "
|
|
594
|
+
})
|
|
595
|
+
]
|
|
596
|
+
}),
|
|
597
|
+
/* @__PURE__ */ jsx5("line", {
|
|
598
|
+
className: "st72",
|
|
599
|
+
x1: "78.5",
|
|
600
|
+
y1: "78.4",
|
|
601
|
+
x2: "90.2",
|
|
602
|
+
y2: "90.1"
|
|
603
|
+
})
|
|
604
|
+
]
|
|
605
|
+
});
|
|
606
|
+
};
|
|
25
607
|
|
|
26
608
|
// src/lib/EmptyStateImage.tsx
|
|
27
|
-
import { jsx } from "react/jsx-runtime";
|
|
609
|
+
import { jsx as jsx6 } from "react/jsx-runtime";
|
|
28
610
|
var EmptyStateImages = {
|
|
29
|
-
PageNotFound
|
|
30
|
-
ContentLoading
|
|
31
|
-
Error
|
|
32
|
-
NoData
|
|
33
|
-
NoSearchFound
|
|
611
|
+
PageNotFound,
|
|
612
|
+
ContentLoading,
|
|
613
|
+
Error,
|
|
614
|
+
NoData,
|
|
615
|
+
NoSearchFound
|
|
34
616
|
};
|
|
35
617
|
var EmptyStateImageContainer = styled(Box, {
|
|
36
618
|
name: "AvEmptyState",
|
|
@@ -39,19 +621,17 @@ var EmptyStateImageContainer = styled(Box, {
|
|
|
39
621
|
})({ fontSize: "112px" });
|
|
40
622
|
var EmptyStateImage = forwardRef((props, ref) => {
|
|
41
623
|
const { variant = "NoSearchFound", ...rest } = props;
|
|
42
|
-
|
|
624
|
+
const Image = EmptyStateImages[variant];
|
|
625
|
+
return /* @__PURE__ */ jsx6(EmptyStateImageContainer, {
|
|
43
626
|
ref,
|
|
44
627
|
"aria-hidden": true,
|
|
45
628
|
...rest,
|
|
46
|
-
children: /* @__PURE__ */
|
|
47
|
-
src: EmptyStateImages[variant].src,
|
|
48
|
-
alt: EmptyStateImages[variant].alt
|
|
49
|
-
})
|
|
629
|
+
children: /* @__PURE__ */ jsx6(Image, {})
|
|
50
630
|
});
|
|
51
631
|
});
|
|
52
632
|
|
|
53
633
|
// src/lib/EmptyState.tsx
|
|
54
|
-
import { jsx as
|
|
634
|
+
import { jsx as jsx7, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
55
635
|
var EmptyStateContainer = styled2(Stack, {
|
|
56
636
|
name: "AvEmptyState",
|
|
57
637
|
slot: "root",
|
|
@@ -68,7 +648,7 @@ var EmptyState = React.forwardRef((props, ref) => {
|
|
|
68
648
|
padding = "1rem",
|
|
69
649
|
...containerProps
|
|
70
650
|
} = props;
|
|
71
|
-
return /* @__PURE__ */
|
|
651
|
+
return /* @__PURE__ */ jsxs6(EmptyStateContainer, {
|
|
72
652
|
className: "AvEmptyState-root",
|
|
73
653
|
spacing,
|
|
74
654
|
alignItems,
|
|
@@ -78,7 +658,7 @@ var EmptyState = React.forwardRef((props, ref) => {
|
|
|
78
658
|
...containerProps,
|
|
79
659
|
ref,
|
|
80
660
|
children: [
|
|
81
|
-
variant ? /* @__PURE__ */
|
|
661
|
+
variant ? /* @__PURE__ */ jsx7(EmptyStateImage, {
|
|
82
662
|
variant
|
|
83
663
|
}) : null,
|
|
84
664
|
children
|