mas-server 1.0.3 → 2.0.0
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/.temp/a.ts +4 -0
- package/.temp/as.ts +1 -0
- package/.temp/b.ts +3 -0
- package/{src/index.js → .temp/i.js} +3 -3
- package/.temp/test.ts +2 -0
- package/.temp/validType copy.ts +149 -0
- package/.temp/validType.ts +96 -0
- package/.temp/validTypeOptimize.ts +98 -0
- package/.vscode/settings.json +0 -109
- package/dist/index.js +136 -0
- package/dist/masmysql/checkSqlkey.js +67 -0
- package/dist/masmysql/createSqlForm.js +44 -0
- package/dist/masmysql/esaysql.js +53 -0
- package/dist/masmysql/index.js +111 -0
- package/dist/masmysql/masSql.js +741 -0
- package/dist/masmysql/state.js +5 -0
- package/dist/masmysql/type.js +2 -0
- package/dist/masmysql/utils.js +12 -0
- package/dist/state.js +4 -0
- package/dist/typings/index.js +2 -0
- package/dist/utils/apiDoc.js +18 -0
- package/dist/utils/getLog.js +18 -0
- package/dist/utils/getRouteByApiSrc.js +54 -0
- package/dist/utils/masUtils.js +12 -0
- package/dist/utils/meaToken.js +57 -0
- package/dist/utils/quickSend.js +32 -0
- package/dist/utils/readApi.js +50 -0
- package/dist/utils/validRouteData.js +37 -0
- package/dist/utils/validToken.js +24 -0
- package/dist/utils/validType.js +101 -0
- package/package.json +34 -15
- package/src/apiDoc/assets/empty-907982e4.js +1 -0
- package/src/apiDoc/assets/index-b56e6bc6.js +1414 -0
- package/src/apiDoc/assets/index-bb16d834.css +6 -0
- package/src/{public/doc/img/jsoneditor-icons.256e3abc.svg → apiDoc/assets/jsoneditor-icons-45c98bf0.svg} +213 -357
- package/src/apiDoc/favicon.ico +0 -0
- package/src/apiDoc/index.html +15 -0
- package/src/index.ts +132 -0
- package/src/masmysql/checkSqlkey.ts +55 -0
- package/src/masmysql/createSqlForm.ts +37 -0
- package/src/masmysql/esaysql.ts +44 -0
- package/src/masmysql/index.ts +68 -0
- package/src/masmysql/masSql.ts +736 -0
- package/src/masmysql/state.ts +5 -0
- package/src/masmysql/type.ts +34 -0
- package/src/masmysql/utils.ts +8 -0
- package/src/state.ts +1 -0
- package/src/typings/index.ts +114 -0
- package/src/utils/apiDoc.ts +18 -0
- package/src/utils/getLog.ts +20 -0
- package/src/utils/getRouteByApiSrc.ts +55 -0
- package/src/utils/mas-encrypt.min.js +1 -0
- package/src/utils/masUtils.ts +8 -0
- package/src/utils/meaToken.ts +56 -0
- package/src/utils/quickSend.ts +19 -0
- package/src/utils/readApi.ts +30 -0
- package/src/utils/validRouteData.ts +46 -0
- package/src/utils/validToken.ts +22 -0
- package/src/utils/validType.ts +98 -0
- package/test/apiTemplate/api.temp.ts +6 -0
- package/test/apiTemplate/curd/del.ts +9 -0
- package/test/apiTemplate/curd/get.ts +9 -0
- package/test/apiTemplate/curd/set.ts +9 -0
- package/test/config/api.config.ts +3 -0
- package/test/config/api.key.ts +14 -0
- package/test/config/config.ts +30 -0
- package/test/config/createSqlFormData.ts +14 -0
- package/test/logs/.keep +0 -0
- package/test/main.ts +25 -0
- package/test/scripts/beforeCreated.ts +67 -0
- package/test/scripts/createApiFile.ts +27 -0
- package/test/scripts/createApis.ts +109 -0
- package/test/scripts/createSqlForm.ts +5 -0
- package/test/scripts/getSqlFormType.ts +34 -0
- package/test/scripts/run.ts +4 -0
- package/test/scripts/updateRouter.ts +46 -0
- package/test/src/api/curd/student/del.ts +9 -0
- package/test/src/api/curd/student/get.ts +9 -0
- package/test/src/api/curd/student/set.ts +9 -0
- package/test/src/api/index.ts +4 -0
- package/test/src/api/per.ts +6 -0
- package/test/src/api/person/del.ts +4 -0
- package/test/src/api/person/get.ts +4 -0
- package/test/src/api/person/set.ts +4 -0
- package/test/src/api/test.ts +7 -0
- package/test/src/api/validtest/boolArr.ts +4 -0
- package/test/src/debug.ts +56 -0
- package/test/src/masState.ts +4 -0
- package/test/src/sql/selectStudent.ts +7 -0
- package/test/src/sqlform.json +1 -0
- package/test/test.ts +13 -0
- package/test/typings/.keep +0 -0
- package/test/typings/studentSF.ts +6 -0
- package/test/typings/test11SF.ts +1 -0
- package/test/typings/test22SF.ts +1 -0
- package/test/typings/testformSF.ts +1 -0
- package/test//345/276/205/345/274/200/345/217/221.md +12 -0
- package/tsconfig.json +23 -0
- package/tsconfigschema.json +1263 -0
- package/src/config/api.res.json +0 -1
- package/src/config/api.tree.json +0 -1
- package/src/config/apiModules/del.module +0 -6
- package/src/config/apiModules/get.module +0 -6
- package/src/config/apiModules/set.module +0 -6
- package/src/config/config.schema.js +0 -41
- package/src/public/doc/css/app.722f60c4.css +0 -1
- package/src/public/doc/css/chunk-287b9965.80548a4b.css +0 -1
- package/src/public/doc/css/chunk-vendors.a16c4353.css +0 -1
- package/src/public/doc/favicon.ico +0 -0
- package/src/public/doc/fonts/element-icons.535877f5.woff +0 -0
- package/src/public/doc/fonts/element-icons.732389de.ttf +0 -0
- package/src/public/doc/index.html +0 -1
- package/src/public/doc/js/app.9ce10690.js +0 -2
- package/src/public/doc/js/app.9ce10690.js.map +0 -1
- package/src/public/doc/js/chunk-287b9965.77cfd27f.js +0 -32
- package/src/public/doc/js/chunk-287b9965.77cfd27f.js.map +0 -1
- package/src/public/doc/js/chunk-vendors.7c84e9a7.js +0 -35
- package/src/public/doc/js/chunk-vendors.7c84e9a7.js.map +0 -1
- package/src/public/index.html +0 -15
- package/src/state.js +0 -6
- package/src/utils/DataVerified.js +0 -35
- package/src/utils/beforeCreate.js +0 -19
- package/src/utils/createApi.js +0 -34
- package/src/utils/createApiFile.js +0 -40
- package/src/utils/createSqlForm.js +0 -7
- package/src/utils/encrypt.js +0 -1
- package/src/utils/getDir.js +0 -60
- package/src/utils/logs.js +0 -16
- package/src/utils/masDoc.js +0 -37
- package/src/utils/masRoute.js +0 -29
- package/src/utils/quickSend.js +0 -18
- package/src/utils/token.js +0 -57
- package/test/.utils/api.js +0 -4
- package/test/.utils/apis.js +0 -5
- package/test/.utils/beforeIndex.js +0 -4
- package/test/.utils/createForm.js +0 -4
- package/test/config/api.config.json +0 -7
- package/test/config/api.config.k.json +0 -1
- package/test/config/config.js +0 -22
- package/test/config/sqlform.config.js +0 -23
- package/test/index.js +0 -12
- package/test/public/1.txt +0 -1
- package/test/serverLogs/2022-10-29.log +0 -6
- package/test/serverLogs/2022-10-30.log +0 -58
- package/test/src/$form.js +0 -1
- package/test/src/api/index.js +0 -3
- package/test/src/api/test.js +0 -9
- package/test/src/api/vip/del.js +0 -6
- package/test/src/api/vip/get.js +0 -6
- package/test/src/api/vip/set.js +0 -6
- package/test/src/api/vip666.js +0 -4
- package/test/src/debug.js +0 -2
- /package/{old → .temp/logs/.keep} +0 -0
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
xmlns="http://www.w3.org/2000/svg"
|
|
8
8
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
9
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
-
width="
|
|
10
|
+
width="240"
|
|
11
11
|
height="144"
|
|
12
12
|
id="svg4136"
|
|
13
13
|
version="1.1"
|
|
14
|
-
inkscape:version="0.91
|
|
14
|
+
inkscape:version="0.91 r13725"
|
|
15
15
|
sodipodi:docname="jsoneditor-icons.svg">
|
|
16
16
|
<title
|
|
17
17
|
id="title6512">JSON Editor Icons</title>
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
<defs
|
|
31
31
|
id="defs4146" />
|
|
32
32
|
<sodipodi:namedview
|
|
33
|
-
pagecolor="#
|
|
33
|
+
pagecolor="#ff63ff"
|
|
34
34
|
bordercolor="#666666"
|
|
35
35
|
borderopacity="1"
|
|
36
36
|
objecttolerance="10"
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
inkscape:pageopacity="0"
|
|
40
40
|
inkscape:pageshadow="2"
|
|
41
41
|
inkscape:window-width="1920"
|
|
42
|
-
inkscape:window-height="
|
|
42
|
+
inkscape:window-height="1026"
|
|
43
43
|
id="namedview4144"
|
|
44
44
|
showgrid="true"
|
|
45
45
|
inkscape:zoom="4"
|
|
46
|
-
inkscape:cx="
|
|
47
|
-
inkscape:cy="
|
|
46
|
+
inkscape:cx="13.229181"
|
|
47
|
+
inkscape:cy="119.82429"
|
|
48
48
|
inkscape:window-x="0"
|
|
49
49
|
inkscape:window-y="0"
|
|
50
50
|
inkscape:window-maximized="1"
|
|
@@ -59,439 +59,219 @@
|
|
|
59
59
|
empspacing="24" />
|
|
60
60
|
</sodipodi:namedview>
|
|
61
61
|
<!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->
|
|
62
|
-
<g
|
|
63
|
-
id="g4394">
|
|
64
|
-
<rect
|
|
65
|
-
x="4"
|
|
66
|
-
y="4"
|
|
67
|
-
width="16"
|
|
68
|
-
height="16"
|
|
69
|
-
id="svg_1"
|
|
70
|
-
style="fill:#1aae1c;fill-opacity:1;stroke:none;stroke-width:0" />
|
|
71
|
-
<rect
|
|
72
|
-
style="fill:#ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0"
|
|
73
|
-
x="28.000006"
|
|
74
|
-
y="3.999995"
|
|
75
|
-
width="16"
|
|
76
|
-
height="16"
|
|
77
|
-
id="svg_1-7" />
|
|
78
|
-
<rect
|
|
79
|
-
id="rect4165"
|
|
80
|
-
height="16"
|
|
81
|
-
width="16"
|
|
82
|
-
y="3.999995"
|
|
83
|
-
x="52.000004"
|
|
84
|
-
style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0" />
|
|
85
|
-
<rect
|
|
86
|
-
style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0"
|
|
87
|
-
x="172.00002"
|
|
88
|
-
y="3.9999852"
|
|
89
|
-
width="16"
|
|
90
|
-
height="16"
|
|
91
|
-
id="rect4175" />
|
|
92
|
-
<rect
|
|
93
|
-
style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0"
|
|
94
|
-
x="196"
|
|
95
|
-
y="3.999995"
|
|
96
|
-
width="16"
|
|
97
|
-
height="16"
|
|
98
|
-
id="rect4175-3" />
|
|
99
|
-
<g
|
|
100
|
-
style="stroke:none"
|
|
101
|
-
id="g4299">
|
|
102
|
-
<rect
|
|
103
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0"
|
|
104
|
-
id="svg_1-1"
|
|
105
|
-
height="1.9999986"
|
|
106
|
-
width="9.9999924"
|
|
107
|
-
y="10.999998"
|
|
108
|
-
x="7.0000048" />
|
|
109
|
-
<rect
|
|
110
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0"
|
|
111
|
-
id="svg_1-1-1"
|
|
112
|
-
height="9.9999838"
|
|
113
|
-
width="1.9999955"
|
|
114
|
-
y="7.0000114"
|
|
115
|
-
x="11.000005" />
|
|
116
|
-
</g>
|
|
117
|
-
<g
|
|
118
|
-
style="stroke:none"
|
|
119
|
-
transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)"
|
|
120
|
-
id="g4299-3">
|
|
121
|
-
<rect
|
|
122
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0"
|
|
123
|
-
id="svg_1-1-0"
|
|
124
|
-
height="1.9999986"
|
|
125
|
-
width="9.9999924"
|
|
126
|
-
y="10.999998"
|
|
127
|
-
x="7.0000048" />
|
|
128
|
-
<rect
|
|
129
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0"
|
|
130
|
-
id="svg_1-1-1-9"
|
|
131
|
-
height="9.9999838"
|
|
132
|
-
width="1.9999955"
|
|
133
|
-
y="7.0000114"
|
|
134
|
-
x="11.000005" />
|
|
135
|
-
</g>
|
|
136
|
-
<rect
|
|
137
|
-
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
|
|
138
|
-
x="55.000004"
|
|
139
|
-
y="7.0000048"
|
|
140
|
-
width="6.9999909"
|
|
141
|
-
height="6.9999905"
|
|
142
|
-
id="svg_1-7-5" />
|
|
143
|
-
<rect
|
|
144
|
-
id="rect4354"
|
|
145
|
-
height="6.9999905"
|
|
146
|
-
width="6.9999909"
|
|
147
|
-
y="10.00001"
|
|
148
|
-
x="58"
|
|
149
|
-
style="fill:#ffffff;fill-opacity:1;stroke:#4c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
|
150
|
-
<rect
|
|
151
|
-
style="fill:#ffffff;fill-opacity:1;stroke:#3c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647"
|
|
152
|
-
x="58.000004"
|
|
153
|
-
y="10.000005"
|
|
154
|
-
width="6.9999909"
|
|
155
|
-
height="6.9999905"
|
|
156
|
-
id="svg_1-7-5-7" />
|
|
157
|
-
<g
|
|
158
|
-
id="g4378">
|
|
159
|
-
<rect
|
|
160
|
-
id="svg_1-7-5-3"
|
|
161
|
-
height="1.9999965"
|
|
162
|
-
width="7.9999909"
|
|
163
|
-
y="10.999999"
|
|
164
|
-
x="198"
|
|
165
|
-
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
|
|
166
|
-
<rect
|
|
167
|
-
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
|
|
168
|
-
x="198"
|
|
169
|
-
y="7.0000005"
|
|
170
|
-
width="11.999995"
|
|
171
|
-
height="1.9999946"
|
|
172
|
-
id="rect4374" />
|
|
173
|
-
<rect
|
|
174
|
-
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
|
|
175
|
-
x="198"
|
|
176
|
-
y="14.999996"
|
|
177
|
-
width="3.9999928"
|
|
178
|
-
height="1.9999995"
|
|
179
|
-
id="rect4376" />
|
|
180
|
-
</g>
|
|
181
|
-
<g
|
|
182
|
-
id="g4383"
|
|
183
|
-
transform="matrix(1,0,0,-1,-23.999995,23.999995)">
|
|
184
|
-
<rect
|
|
185
|
-
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
|
|
186
|
-
x="198"
|
|
187
|
-
y="10.999999"
|
|
188
|
-
width="7.9999909"
|
|
189
|
-
height="1.9999965"
|
|
190
|
-
id="rect4385" />
|
|
191
|
-
<rect
|
|
192
|
-
id="rect4387"
|
|
193
|
-
height="1.9999946"
|
|
194
|
-
width="11.999995"
|
|
195
|
-
y="7.0000005"
|
|
196
|
-
x="198"
|
|
197
|
-
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
|
|
198
|
-
<rect
|
|
199
|
-
id="rect4389"
|
|
200
|
-
height="1.9999995"
|
|
201
|
-
width="3.9999928"
|
|
202
|
-
y="14.999996"
|
|
203
|
-
x="198"
|
|
204
|
-
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
|
|
205
|
-
</g>
|
|
206
|
-
<rect
|
|
207
|
-
y="3.9999199"
|
|
208
|
-
x="76"
|
|
209
|
-
height="16"
|
|
210
|
-
width="16"
|
|
211
|
-
id="rect3754-4"
|
|
212
|
-
style="fill:#4c4c4c;fill-opacity:1;stroke:none" />
|
|
213
|
-
<path
|
|
214
|
-
sodipodi:nodetypes="cccccccc"
|
|
215
|
-
inkscape:connector-curvature="0"
|
|
216
|
-
id="path4351"
|
|
217
|
-
d="m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z"
|
|
218
|
-
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
|
219
|
-
<path
|
|
220
|
-
sodipodi:nodetypes="cccccccc"
|
|
221
|
-
inkscape:connector-curvature="0"
|
|
222
|
-
id="path4351-9"
|
|
223
|
-
d="m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z"
|
|
224
|
-
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
|
225
|
-
<rect
|
|
226
|
-
y="3.9999199"
|
|
227
|
-
x="100"
|
|
228
|
-
height="16"
|
|
229
|
-
width="16"
|
|
230
|
-
id="rect3754-25"
|
|
231
|
-
style="fill:#4c4c4c;fill-opacity:1;stroke:none" />
|
|
232
|
-
<path
|
|
233
|
-
inkscape:connector-curvature="0"
|
|
234
|
-
id="path2987"
|
|
235
|
-
d="m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z"
|
|
236
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
|
237
|
-
<path
|
|
238
|
-
inkscape:connector-curvature="0"
|
|
239
|
-
id="path2987-1"
|
|
240
|
-
d="m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z"
|
|
241
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
|
242
|
-
<rect
|
|
243
|
-
y="3.9999199"
|
|
244
|
-
x="124"
|
|
245
|
-
height="16"
|
|
246
|
-
width="16"
|
|
247
|
-
id="rect3754-73"
|
|
248
|
-
style="fill:#4c4c4c;fill-opacity:1;stroke:none" />
|
|
249
|
-
<path
|
|
250
|
-
sodipodi:nodetypes="ccccccccc"
|
|
251
|
-
inkscape:connector-curvature="0"
|
|
252
|
-
id="path3780"
|
|
253
|
-
d="m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z"
|
|
254
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
|
255
|
-
<path
|
|
256
|
-
inkscape:connector-curvature="0"
|
|
257
|
-
id="path3782"
|
|
258
|
-
d="m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z"
|
|
259
|
-
style="fill:#4c4c4c;fill-opacity:1;stroke:none" />
|
|
260
|
-
<rect
|
|
261
|
-
y="3.9999199"
|
|
262
|
-
x="148"
|
|
263
|
-
height="16"
|
|
264
|
-
width="16"
|
|
265
|
-
id="rect3754-35"
|
|
266
|
-
style="fill:#4c4c4c;fill-opacity:1;stroke:none" />
|
|
267
|
-
<path
|
|
268
|
-
sodipodi:nodetypes="ccccccc"
|
|
269
|
-
inkscape:connector-curvature="0"
|
|
270
|
-
id="path5008-2"
|
|
271
|
-
d="m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z"
|
|
272
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
|
273
|
-
<path
|
|
274
|
-
sodipodi:nodetypes="ccccccc"
|
|
275
|
-
inkscape:connector-curvature="0"
|
|
276
|
-
id="path5008-2-8"
|
|
277
|
-
d="m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z"
|
|
278
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
|
279
|
-
</g>
|
|
280
62
|
<rect
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
width="16"
|
|
63
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0"
|
|
64
|
+
id="svg_1"
|
|
284
65
|
height="16"
|
|
285
|
-
id="rect4432"
|
|
286
|
-
style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0" />
|
|
287
|
-
<rect
|
|
288
|
-
style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0"
|
|
289
|
-
x="28.000006"
|
|
290
|
-
y="27.99999"
|
|
291
66
|
width="16"
|
|
292
|
-
|
|
293
|
-
|
|
67
|
+
y="4"
|
|
68
|
+
x="4" />
|
|
294
69
|
<rect
|
|
295
|
-
id="
|
|
70
|
+
id="svg_1-7"
|
|
296
71
|
height="16"
|
|
297
72
|
width="16"
|
|
298
|
-
y="
|
|
299
|
-
x="
|
|
300
|
-
style="fill:#
|
|
73
|
+
y="3.999995"
|
|
74
|
+
x="28.000006"
|
|
75
|
+
style="fill:#ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0" />
|
|
301
76
|
<rect
|
|
302
|
-
style="fill:#
|
|
303
|
-
x="
|
|
304
|
-
y="
|
|
77
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0"
|
|
78
|
+
x="52.000004"
|
|
79
|
+
y="3.999995"
|
|
305
80
|
width="16"
|
|
306
81
|
height="16"
|
|
307
|
-
id="
|
|
82
|
+
id="rect4165" />
|
|
308
83
|
<rect
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
y="27.99999"
|
|
84
|
+
id="rect4175"
|
|
85
|
+
height="16"
|
|
312
86
|
width="16"
|
|
87
|
+
y="3.9999852"
|
|
88
|
+
x="172.00002"
|
|
89
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0" />
|
|
90
|
+
<rect
|
|
91
|
+
id="rect4175-3"
|
|
313
92
|
height="16"
|
|
314
|
-
|
|
93
|
+
width="16"
|
|
94
|
+
y="3.999995"
|
|
95
|
+
x="196"
|
|
96
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0" />
|
|
315
97
|
<g
|
|
316
|
-
id="
|
|
317
|
-
style="stroke:none"
|
|
318
|
-
transform="translate(0,23.999995)">
|
|
98
|
+
id="g4299"
|
|
99
|
+
style="stroke:none">
|
|
319
100
|
<rect
|
|
320
|
-
|
|
321
|
-
id="rect4468"
|
|
322
|
-
height="1.9999986"
|
|
323
|
-
width="9.9999924"
|
|
101
|
+
x="7.0000048"
|
|
324
102
|
y="10.999998"
|
|
325
|
-
|
|
103
|
+
width="9.9999924"
|
|
104
|
+
height="1.9999986"
|
|
105
|
+
id="svg_1-1"
|
|
106
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0" />
|
|
326
107
|
<rect
|
|
327
|
-
|
|
328
|
-
id="rect4470"
|
|
329
|
-
height="9.9999838"
|
|
330
|
-
width="1.9999955"
|
|
108
|
+
x="11.000005"
|
|
331
109
|
y="7.0000114"
|
|
332
|
-
|
|
110
|
+
width="1.9999955"
|
|
111
|
+
height="9.9999838"
|
|
112
|
+
id="svg_1-1-1"
|
|
113
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0" />
|
|
333
114
|
</g>
|
|
334
115
|
<g
|
|
335
|
-
|
|
336
|
-
|
|
116
|
+
id="g4299-3"
|
|
117
|
+
transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)"
|
|
337
118
|
style="stroke:none">
|
|
338
119
|
<rect
|
|
339
|
-
|
|
340
|
-
id="rect4474"
|
|
341
|
-
height="1.9999986"
|
|
342
|
-
width="9.9999924"
|
|
120
|
+
x="7.0000048"
|
|
343
121
|
y="10.999998"
|
|
344
|
-
|
|
122
|
+
width="9.9999924"
|
|
123
|
+
height="1.9999986"
|
|
124
|
+
id="svg_1-1-0"
|
|
125
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0" />
|
|
345
126
|
<rect
|
|
346
|
-
|
|
347
|
-
id="rect4476"
|
|
348
|
-
height="9.9999838"
|
|
349
|
-
width="1.9999955"
|
|
127
|
+
x="11.000005"
|
|
350
128
|
y="7.0000114"
|
|
351
|
-
|
|
129
|
+
width="1.9999955"
|
|
130
|
+
height="9.9999838"
|
|
131
|
+
id="svg_1-1-1-9"
|
|
132
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0" />
|
|
352
133
|
</g>
|
|
353
134
|
<rect
|
|
354
|
-
|
|
135
|
+
id="svg_1-7-5"
|
|
136
|
+
height="6.9999905"
|
|
137
|
+
width="6.9999909"
|
|
138
|
+
y="7.0000048"
|
|
355
139
|
x="55.000004"
|
|
356
|
-
|
|
140
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
|
|
141
|
+
<rect
|
|
142
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#4c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
143
|
+
x="58"
|
|
144
|
+
y="10.00001"
|
|
357
145
|
width="6.9999909"
|
|
358
146
|
height="6.9999905"
|
|
359
|
-
id="
|
|
147
|
+
id="rect4354" />
|
|
360
148
|
<rect
|
|
361
|
-
id="
|
|
149
|
+
id="svg_1-7-5-7"
|
|
362
150
|
height="6.9999905"
|
|
363
151
|
width="6.9999909"
|
|
364
|
-
y="
|
|
365
|
-
x="58"
|
|
366
|
-
style="fill:#ffffff;fill-opacity:1;stroke:#d3d3d3;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none" />
|
|
367
|
-
<rect
|
|
368
|
-
style="fill:#ffffff;fill-opacity:1;stroke:#d3d3d3;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
|
|
152
|
+
y="10.000005"
|
|
369
153
|
x="58.000004"
|
|
370
|
-
|
|
371
|
-
width="6.9999909"
|
|
372
|
-
height="6.9999905"
|
|
373
|
-
id="rect4482" />
|
|
374
|
-
<g
|
|
375
|
-
id="g4484"
|
|
376
|
-
transform="translate(0,23.999995)">
|
|
377
|
-
<rect
|
|
378
|
-
id="rect4486"
|
|
379
|
-
height="1.9999965"
|
|
380
|
-
width="7.9999909"
|
|
381
|
-
y="10.999999"
|
|
382
|
-
x="198"
|
|
383
|
-
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
|
|
384
|
-
<rect
|
|
385
|
-
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
|
|
386
|
-
x="198"
|
|
387
|
-
y="7.0000005"
|
|
388
|
-
width="11.999995"
|
|
389
|
-
height="1.9999946"
|
|
390
|
-
id="rect4488" />
|
|
391
|
-
<rect
|
|
392
|
-
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
|
|
393
|
-
x="198"
|
|
394
|
-
y="14.999996"
|
|
395
|
-
width="3.9999928"
|
|
396
|
-
height="1.9999995"
|
|
397
|
-
id="rect4490" />
|
|
398
|
-
</g>
|
|
154
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#3c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647" />
|
|
399
155
|
<g
|
|
400
|
-
id="
|
|
401
|
-
transform="matrix(1,0,0,-1,-23.999995,47.99999)">
|
|
156
|
+
id="g4378">
|
|
402
157
|
<rect
|
|
403
158
|
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
|
|
404
159
|
x="198"
|
|
405
160
|
y="10.999999"
|
|
406
161
|
width="7.9999909"
|
|
407
162
|
height="1.9999965"
|
|
408
|
-
id="
|
|
163
|
+
id="svg_1-7-5-3" />
|
|
409
164
|
<rect
|
|
410
|
-
id="
|
|
165
|
+
id="rect4374"
|
|
411
166
|
height="1.9999946"
|
|
412
167
|
width="11.999995"
|
|
413
168
|
y="7.0000005"
|
|
414
169
|
x="198"
|
|
415
170
|
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
|
|
416
171
|
<rect
|
|
417
|
-
id="
|
|
172
|
+
id="rect4376"
|
|
418
173
|
height="1.9999995"
|
|
419
174
|
width="3.9999928"
|
|
420
175
|
y="14.999996"
|
|
421
176
|
x="198"
|
|
422
177
|
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
|
|
423
178
|
</g>
|
|
179
|
+
<g
|
|
180
|
+
transform="matrix(1,0,0,-1,-23.999995,23.999995)"
|
|
181
|
+
id="g4383">
|
|
182
|
+
<rect
|
|
183
|
+
id="rect4385"
|
|
184
|
+
height="1.9999965"
|
|
185
|
+
width="7.9999909"
|
|
186
|
+
y="10.999999"
|
|
187
|
+
x="198"
|
|
188
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
|
|
189
|
+
<rect
|
|
190
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
|
|
191
|
+
x="198"
|
|
192
|
+
y="7.0000005"
|
|
193
|
+
width="11.999995"
|
|
194
|
+
height="1.9999946"
|
|
195
|
+
id="rect4387" />
|
|
196
|
+
<rect
|
|
197
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
|
|
198
|
+
x="198"
|
|
199
|
+
y="14.999996"
|
|
200
|
+
width="3.9999928"
|
|
201
|
+
height="1.9999995"
|
|
202
|
+
id="rect4389" />
|
|
203
|
+
</g>
|
|
424
204
|
<rect
|
|
425
|
-
style="fill:#
|
|
426
|
-
id="rect3754-
|
|
205
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none"
|
|
206
|
+
id="rect3754-4"
|
|
427
207
|
width="16"
|
|
428
208
|
height="16"
|
|
429
209
|
x="76"
|
|
430
|
-
y="
|
|
210
|
+
y="3.9999199" />
|
|
431
211
|
<path
|
|
432
212
|
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
433
|
-
d="m 85.
|
|
434
|
-
id="path4351
|
|
213
|
+
d="m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z"
|
|
214
|
+
id="path4351"
|
|
435
215
|
inkscape:connector-curvature="0"
|
|
436
216
|
sodipodi:nodetypes="cccccccc" />
|
|
437
217
|
<path
|
|
438
218
|
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
439
|
-
d="m 82.
|
|
440
|
-
id="path4351-9
|
|
219
|
+
d="m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z"
|
|
220
|
+
id="path4351-9"
|
|
441
221
|
inkscape:connector-curvature="0"
|
|
442
222
|
sodipodi:nodetypes="cccccccc" />
|
|
443
223
|
<rect
|
|
444
|
-
style="fill:#
|
|
445
|
-
id="rect3754-
|
|
224
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none"
|
|
225
|
+
id="rect3754-25"
|
|
446
226
|
width="16"
|
|
447
227
|
height="16"
|
|
448
228
|
x="100"
|
|
449
|
-
y="
|
|
229
|
+
y="3.9999199" />
|
|
450
230
|
<path
|
|
451
231
|
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
|
452
|
-
d="m 103.719,
|
|
453
|
-
id="path2987
|
|
232
|
+
d="m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z"
|
|
233
|
+
id="path2987"
|
|
454
234
|
inkscape:connector-curvature="0" />
|
|
455
235
|
<path
|
|
456
236
|
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
|
457
|
-
d="m 112.2185,
|
|
458
|
-
id="path2987-1
|
|
237
|
+
d="m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z"
|
|
238
|
+
id="path2987-1"
|
|
459
239
|
inkscape:connector-curvature="0" />
|
|
460
240
|
<rect
|
|
461
|
-
style="fill:#
|
|
462
|
-
id="rect3754-
|
|
241
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none"
|
|
242
|
+
id="rect3754-73"
|
|
463
243
|
width="16"
|
|
464
244
|
height="16"
|
|
465
245
|
x="124"
|
|
466
|
-
y="
|
|
246
|
+
y="3.9999199" />
|
|
467
247
|
<path
|
|
468
248
|
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
|
469
|
-
d="m 126.2824,
|
|
470
|
-
id="path3780
|
|
249
|
+
d="m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z"
|
|
250
|
+
id="path3780"
|
|
471
251
|
inkscape:connector-curvature="0"
|
|
472
252
|
sodipodi:nodetypes="ccccccccc" />
|
|
473
253
|
<path
|
|
474
|
-
style="fill:#
|
|
475
|
-
d="m 129.72704,
|
|
476
|
-
id="path3782
|
|
254
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none"
|
|
255
|
+
d="m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z"
|
|
256
|
+
id="path3782"
|
|
477
257
|
inkscape:connector-curvature="0" />
|
|
478
258
|
<rect
|
|
479
|
-
style="fill:#
|
|
480
|
-
id="rect3754-
|
|
259
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none"
|
|
260
|
+
id="rect3754-35"
|
|
481
261
|
width="16"
|
|
482
262
|
height="16"
|
|
483
263
|
x="148"
|
|
484
|
-
y="
|
|
264
|
+
y="3.9999199" />
|
|
485
265
|
<path
|
|
486
266
|
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
|
487
|
-
d="m 156.
|
|
488
|
-
id="path5008-2
|
|
267
|
+
d="m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z"
|
|
268
|
+
id="path5008-2"
|
|
489
269
|
inkscape:connector-curvature="0"
|
|
490
270
|
sodipodi:nodetypes="ccccccc" />
|
|
491
271
|
<path
|
|
492
272
|
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
|
493
|
-
d="m 152.
|
|
494
|
-
id="path5008-2-8
|
|
273
|
+
d="m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z"
|
|
274
|
+
id="path5008-2-8"
|
|
495
275
|
inkscape:connector-curvature="0"
|
|
496
276
|
sodipodi:nodetypes="ccccccc" />
|
|
497
277
|
<rect
|
|
@@ -710,49 +490,49 @@
|
|
|
710
490
|
width="15.99999"
|
|
711
491
|
y="101"
|
|
712
492
|
x="76.000008"
|
|
713
|
-
style="fill:#ffffff;fill-opacity:0.
|
|
493
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
|
|
714
494
|
<rect
|
|
715
495
|
id="rect4761-0"
|
|
716
496
|
height="1.9999945"
|
|
717
497
|
width="15.99999"
|
|
718
498
|
y="105"
|
|
719
499
|
x="76.000008"
|
|
720
|
-
style="fill:#ffffff;fill-opacity:0.
|
|
500
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
|
|
721
501
|
<rect
|
|
722
502
|
id="rect4761-7"
|
|
723
503
|
height="1.9999945"
|
|
724
504
|
width="9"
|
|
725
505
|
y="109"
|
|
726
506
|
x="76.000008"
|
|
727
|
-
style="fill:#ffffff;fill-opacity:0.
|
|
507
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
|
|
728
508
|
<rect
|
|
729
509
|
id="rect4761-1-1"
|
|
730
510
|
height="1.9999945"
|
|
731
511
|
width="12"
|
|
732
512
|
y="125"
|
|
733
513
|
x="76.000008"
|
|
734
|
-
style="fill:#ffffff;fill-opacity:0.
|
|
514
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
|
|
735
515
|
<rect
|
|
736
516
|
id="rect4761-1-1-4"
|
|
737
517
|
height="1.9999945"
|
|
738
518
|
width="10"
|
|
739
519
|
y="137"
|
|
740
520
|
x="76.000008"
|
|
741
|
-
style="fill:#ffffff;fill-opacity:0.
|
|
521
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
|
|
742
522
|
<rect
|
|
743
523
|
id="rect4761-1-1-4-4"
|
|
744
524
|
height="1.9999945"
|
|
745
525
|
width="10"
|
|
746
526
|
y="129"
|
|
747
527
|
x="82"
|
|
748
|
-
style="fill:#ffffff;fill-opacity:0.
|
|
528
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
|
|
749
529
|
<rect
|
|
750
530
|
id="rect4761-1-1-4-4-3"
|
|
751
531
|
height="1.9999945"
|
|
752
532
|
width="9"
|
|
753
533
|
y="133"
|
|
754
534
|
x="82"
|
|
755
|
-
style="fill:#ffffff;fill-opacity:0.
|
|
535
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
|
|
756
536
|
<path
|
|
757
537
|
inkscape:connector-curvature="0"
|
|
758
538
|
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
|
@@ -765,17 +545,17 @@
|
|
|
765
545
|
id="path4138-1" />
|
|
766
546
|
<path
|
|
767
547
|
inkscape:connector-curvature="0"
|
|
768
|
-
style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.
|
|
548
|
+
style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none"
|
|
769
549
|
d="m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z"
|
|
770
550
|
id="path3055-0-77" />
|
|
771
551
|
<path
|
|
772
|
-
style="opacity:0.8;fill:none;stroke:#ffffff;stroke-width:1.
|
|
552
|
+
style="opacity:0.8;fill:none;stroke:#ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
773
553
|
d="m 4.9850574,108.015 14.0298856,-0.03"
|
|
774
554
|
id="path5244-5-0-5"
|
|
775
555
|
inkscape:connector-curvature="0"
|
|
776
556
|
sodipodi:nodetypes="cc" />
|
|
777
557
|
<path
|
|
778
|
-
style="opacity:0.8;fill:none;stroke:#ffffff;stroke-width:1.
|
|
558
|
+
style="opacity:0.8;fill:none;stroke:#ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
779
559
|
d="m 4.9849874,132.015 14.0298866,-0.03"
|
|
780
560
|
id="path5244-5-0-5-8"
|
|
781
561
|
inkscape:connector-curvature="0"
|
|
@@ -793,17 +573,17 @@
|
|
|
793
573
|
<path
|
|
794
574
|
id="path6191"
|
|
795
575
|
d="m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z"
|
|
796
|
-
style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.
|
|
576
|
+
style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none"
|
|
797
577
|
inkscape:connector-curvature="0" />
|
|
798
578
|
<path
|
|
799
579
|
inkscape:connector-curvature="0"
|
|
800
|
-
style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.
|
|
580
|
+
style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none"
|
|
801
581
|
d="m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z"
|
|
802
582
|
id="path6193" />
|
|
803
583
|
<path
|
|
804
584
|
id="path6195"
|
|
805
585
|
d="m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z"
|
|
806
|
-
style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.
|
|
586
|
+
style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none"
|
|
807
587
|
inkscape:connector-curvature="0" />
|
|
808
588
|
<path
|
|
809
589
|
sodipodi:type="star"
|
|
@@ -890,4 +670,80 @@
|
|
|
890
670
|
id="path4300-6"
|
|
891
671
|
inkscape:connector-curvature="0"
|
|
892
672
|
sodipodi:nodetypes="cccc" />
|
|
673
|
+
<path
|
|
674
|
+
style="fill:#ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8"
|
|
675
|
+
d="M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z"
|
|
676
|
+
id="path4268"
|
|
677
|
+
inkscape:connector-curvature="0"
|
|
678
|
+
sodipodi:nodetypes="ccccccccccccccc" />
|
|
679
|
+
<rect
|
|
680
|
+
id="rect4175-3-5"
|
|
681
|
+
height="16"
|
|
682
|
+
width="16"
|
|
683
|
+
y="4"
|
|
684
|
+
x="220"
|
|
685
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0" />
|
|
686
|
+
<path
|
|
687
|
+
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
688
|
+
d="m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2"
|
|
689
|
+
id="path3546"
|
|
690
|
+
inkscape:connector-curvature="0"
|
|
691
|
+
sodipodi:nodetypes="cccccccc" />
|
|
692
|
+
<g
|
|
693
|
+
transform="matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)"
|
|
694
|
+
id="g4383-6">
|
|
695
|
+
<rect
|
|
696
|
+
id="rect4385-2"
|
|
697
|
+
height="1.2499905"
|
|
698
|
+
width="5.9999924"
|
|
699
|
+
y="12.625005"
|
|
700
|
+
x="198.00002"
|
|
701
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:#000000;stroke-width:0" />
|
|
702
|
+
<rect
|
|
703
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:#000000;stroke-width:0"
|
|
704
|
+
x="198.00002"
|
|
705
|
+
y="15.125007"
|
|
706
|
+
width="7.4999928"
|
|
707
|
+
height="1.2499949"
|
|
708
|
+
id="rect4387-9" />
|
|
709
|
+
<rect
|
|
710
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:#000000;stroke-width:0"
|
|
711
|
+
x="198.00002"
|
|
712
|
+
y="7.6250024"
|
|
713
|
+
width="2.9999909"
|
|
714
|
+
height="1.2499905"
|
|
715
|
+
id="rect4389-1-0" />
|
|
716
|
+
<rect
|
|
717
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:#000000;stroke-width:0"
|
|
718
|
+
x="198.00002"
|
|
719
|
+
y="10.125004"
|
|
720
|
+
width="4.4999919"
|
|
721
|
+
height="1.2499905"
|
|
722
|
+
id="rect4389-1-9" />
|
|
723
|
+
<path
|
|
724
|
+
style="fill:#ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
725
|
+
d="m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0"
|
|
726
|
+
id="path4402"
|
|
727
|
+
inkscape:connector-curvature="0"
|
|
728
|
+
sodipodi:nodetypes="cccccccc" />
|
|
729
|
+
</g>
|
|
730
|
+
<path
|
|
731
|
+
style="fill:#ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
732
|
+
d="m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3"
|
|
733
|
+
id="path3546-2-2"
|
|
734
|
+
inkscape:connector-curvature="0"
|
|
735
|
+
sodipodi:nodetypes="cccccccc" />
|
|
736
|
+
<rect
|
|
737
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0"
|
|
738
|
+
id="svg_1-3"
|
|
739
|
+
height="16"
|
|
740
|
+
width="16"
|
|
741
|
+
y="28"
|
|
742
|
+
x="4" />
|
|
743
|
+
<path
|
|
744
|
+
sodipodi:nodetypes="ccccccccc"
|
|
745
|
+
inkscape:connector-curvature="0"
|
|
746
|
+
id="path4402-5-7"
|
|
747
|
+
d="m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9"
|
|
748
|
+
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
|
893
749
|
</svg>
|