easy-admin-rails 0.1.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.
Files changed (203) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +28 -0
  4. data/Rakefile +8 -0
  5. data/app/assets/builds/easy_admin.base.js +43505 -0
  6. data/app/assets/builds/easy_admin.base.js.map +7 -0
  7. data/app/assets/builds/easy_admin.css +6141 -0
  8. data/app/assets/config/easy_admin_manifest.js +1 -0
  9. data/app/assets/images/jsoneditor-icons.svg +749 -0
  10. data/app/assets/stylesheets/easy_admin/application.tailwind.css +390 -0
  11. data/app/components/easy_admin/base_component.rb +35 -0
  12. data/app/components/easy_admin/batch_action_bar_component.rb +125 -0
  13. data/app/components/easy_admin/batch_action_form_component.rb +124 -0
  14. data/app/components/easy_admin/combined_filters_component.rb +232 -0
  15. data/app/components/easy_admin/confirmation_modal_component.rb +61 -0
  16. data/app/components/easy_admin/context_menu_component.rb +161 -0
  17. data/app/components/easy_admin/dashboards/base_card_component.rb +152 -0
  18. data/app/components/easy_admin/dashboards/card_error_component.rb +23 -0
  19. data/app/components/easy_admin/dashboards/card_factory.rb +90 -0
  20. data/app/components/easy_admin/dashboards/card_stream_component.rb +22 -0
  21. data/app/components/easy_admin/dashboards/cards/base_card_component.rb +54 -0
  22. data/app/components/easy_admin/dashboards/cards/chart_card_component.rb +175 -0
  23. data/app/components/easy_admin/dashboards/cards/custom_card_component.rb +50 -0
  24. data/app/components/easy_admin/dashboards/cards/metric_card_component.rb +164 -0
  25. data/app/components/easy_admin/dashboards/cards/table_card_component.rb +148 -0
  26. data/app/components/easy_admin/dashboards/chart_card_component.rb +44 -0
  27. data/app/components/easy_admin/dashboards/metric_card_component.rb +56 -0
  28. data/app/components/easy_admin/dashboards/refresh_stream_component.rb +279 -0
  29. data/app/components/easy_admin/dashboards/show_component.rb +163 -0
  30. data/app/components/easy_admin/dashboards/table_card_component.rb +52 -0
  31. data/app/components/easy_admin/date_picker_component.rb +188 -0
  32. data/app/components/easy_admin/fields/base_component.rb +101 -0
  33. data/app/components/easy_admin/fields/belongs_to_edit_modal_component.rb +117 -0
  34. data/app/components/easy_admin/fields/form/belongs_to_component.rb +82 -0
  35. data/app/components/easy_admin/fields/form/boolean_component.rb +100 -0
  36. data/app/components/easy_admin/fields/form/date_component.rb +55 -0
  37. data/app/components/easy_admin/fields/form/datetime_component.rb +55 -0
  38. data/app/components/easy_admin/fields/form/email_component.rb +55 -0
  39. data/app/components/easy_admin/fields/form/file_component.rb +190 -0
  40. data/app/components/easy_admin/fields/form/has_many_component.rb +416 -0
  41. data/app/components/easy_admin/fields/form/json_component.rb +81 -0
  42. data/app/components/easy_admin/fields/form/number_component.rb +55 -0
  43. data/app/components/easy_admin/fields/form/select_component.rb +326 -0
  44. data/app/components/easy_admin/fields/form/text_component.rb +55 -0
  45. data/app/components/easy_admin/fields/form/textarea_component.rb +54 -0
  46. data/app/components/easy_admin/fields/index/belongs_to_component.rb +93 -0
  47. data/app/components/easy_admin/fields/index/boolean_component.rb +29 -0
  48. data/app/components/easy_admin/fields/index/date_component.rb +13 -0
  49. data/app/components/easy_admin/fields/index/datetime_component.rb +13 -0
  50. data/app/components/easy_admin/fields/index/email_component.rb +24 -0
  51. data/app/components/easy_admin/fields/index/filters/base_component.rb +48 -0
  52. data/app/components/easy_admin/fields/index/filters/boolean_component.rb +96 -0
  53. data/app/components/easy_admin/fields/index/filters/date_component.rb +182 -0
  54. data/app/components/easy_admin/fields/index/filters/number_component.rb +30 -0
  55. data/app/components/easy_admin/fields/index/filters/select_component.rb +101 -0
  56. data/app/components/easy_admin/fields/index/filters/string_component.rb +32 -0
  57. data/app/components/easy_admin/fields/index/json_component.rb +23 -0
  58. data/app/components/easy_admin/fields/index/number_component.rb +20 -0
  59. data/app/components/easy_admin/fields/index/select_component.rb +25 -0
  60. data/app/components/easy_admin/fields/index/text_component.rb +20 -0
  61. data/app/components/easy_admin/fields/inline_edit_modal_component.rb +135 -0
  62. data/app/components/easy_admin/fields/inline_edit_trigger_component.rb +144 -0
  63. data/app/components/easy_admin/fields/show/belongs_to_component.rb +93 -0
  64. data/app/components/easy_admin/fields/show/boolean_component.rb +21 -0
  65. data/app/components/easy_admin/fields/show/date_component.rb +13 -0
  66. data/app/components/easy_admin/fields/show/datetime_component.rb +13 -0
  67. data/app/components/easy_admin/fields/show/email_component.rb +19 -0
  68. data/app/components/easy_admin/fields/show/file_component.rb +304 -0
  69. data/app/components/easy_admin/fields/show/has_many_component.rb +192 -0
  70. data/app/components/easy_admin/fields/show/json_component.rb +45 -0
  71. data/app/components/easy_admin/fields/show/number_component.rb +20 -0
  72. data/app/components/easy_admin/fields/show/select_component.rb +25 -0
  73. data/app/components/easy_admin/fields/show/text_component.rb +17 -0
  74. data/app/components/easy_admin/fields/show/textarea_component.rb +26 -0
  75. data/app/components/easy_admin/filters_component.rb +120 -0
  76. data/app/components/easy_admin/form_tabs_component.rb +166 -0
  77. data/app/components/easy_admin/infinite_scroll_component.rb +82 -0
  78. data/app/components/easy_admin/lazy_chart_card_component.rb +128 -0
  79. data/app/components/easy_admin/lazy_metric_card_component.rb +76 -0
  80. data/app/components/easy_admin/modal_frame_component.rb +26 -0
  81. data/app/components/easy_admin/navbar_component.rb +226 -0
  82. data/app/components/easy_admin/notification_component.rb +83 -0
  83. data/app/components/easy_admin/pagination_component.rb +188 -0
  84. data/app/components/easy_admin/quick_filters_component.rb +65 -0
  85. data/app/components/easy_admin/resource_pagination_component.rb +14 -0
  86. data/app/components/easy_admin/resources/index_component.rb +211 -0
  87. data/app/components/easy_admin/resources/index_frame_component.rb +88 -0
  88. data/app/components/easy_admin/resources/show_page_actions_component.rb +324 -0
  89. data/app/components/easy_admin/resources/table_cell_component.rb +145 -0
  90. data/app/components/easy_admin/resources/table_component.rb +206 -0
  91. data/app/components/easy_admin/resources/table_row_component.rb +160 -0
  92. data/app/components/easy_admin/row_action_form_component.rb +127 -0
  93. data/app/components/easy_admin/scopes_component.rb +224 -0
  94. data/app/components/easy_admin/settings_sidebar_component.rb +140 -0
  95. data/app/components/easy_admin/show_layout_component.rb +600 -0
  96. data/app/components/easy_admin/sidebar_component.rb +174 -0
  97. data/app/components/easy_admin/turbo/response_component.rb +40 -0
  98. data/app/components/easy_admin/turbo/stream_component.rb +28 -0
  99. data/app/controllers/easy_admin/application_controller.rb +66 -0
  100. data/app/controllers/easy_admin/batch_actions_controller.rb +166 -0
  101. data/app/controllers/easy_admin/confirmation_modal_controller.rb +20 -0
  102. data/app/controllers/easy_admin/dashboard_controller.rb +6 -0
  103. data/app/controllers/easy_admin/dashboards_controller.rb +123 -0
  104. data/app/controllers/easy_admin/passwords_controller.rb +15 -0
  105. data/app/controllers/easy_admin/registrations_controller.rb +52 -0
  106. data/app/controllers/easy_admin/resources_controller.rb +907 -0
  107. data/app/controllers/easy_admin/row_actions_controller.rb +216 -0
  108. data/app/controllers/easy_admin/sessions_controller.rb +32 -0
  109. data/app/controllers/easy_admin/settings_controller.rb +94 -0
  110. data/app/helpers/easy_admin/application_helper.rb +4 -0
  111. data/app/helpers/easy_admin/dashboards_helper.rb +121 -0
  112. data/app/helpers/easy_admin/fields_helper.rb +27 -0
  113. data/app/helpers/easy_admin/pagy_helper.rb +30 -0
  114. data/app/helpers/easy_admin/resources_helper.rb +39 -0
  115. data/app/javascript/easy_admin/application.js +12 -0
  116. data/app/javascript/easy_admin/controllers/batch_modal_controller.js +66 -0
  117. data/app/javascript/easy_admin/controllers/batch_selection_controller.js +223 -0
  118. data/app/javascript/easy_admin/controllers/chart_controller.js +216 -0
  119. data/app/javascript/easy_admin/controllers/collapsible_filters_controller.js +118 -0
  120. data/app/javascript/easy_admin/controllers/confirmation_modal_controller.js +64 -0
  121. data/app/javascript/easy_admin/controllers/context_menu_controller.js +227 -0
  122. data/app/javascript/easy_admin/controllers/date_picker_controller.js +309 -0
  123. data/app/javascript/easy_admin/controllers/dropdown_controller.js +63 -0
  124. data/app/javascript/easy_admin/controllers/event_emitter_controller.js +19 -0
  125. data/app/javascript/easy_admin/controllers/file_controller.js +121 -0
  126. data/app/javascript/easy_admin/controllers/form_tabs_controller.js +100 -0
  127. data/app/javascript/easy_admin/controllers/has_many_search_controller.js +76 -0
  128. data/app/javascript/easy_admin/controllers/infinite_scroll_controller.js +174 -0
  129. data/app/javascript/easy_admin/controllers/ios_alert_controller.js +195 -0
  130. data/app/javascript/easy_admin/controllers/jsoneditor_controller.js +88 -0
  131. data/app/javascript/easy_admin/controllers/modal_controller.js +75 -0
  132. data/app/javascript/easy_admin/controllers/navbar_scroll_controller.js +76 -0
  133. data/app/javascript/easy_admin/controllers/notification_controller.js +48 -0
  134. data/app/javascript/easy_admin/controllers/row_action_controller.js +124 -0
  135. data/app/javascript/easy_admin/controllers/row_modal_controller.js +59 -0
  136. data/app/javascript/easy_admin/controllers/select_field_controller.js +618 -0
  137. data/app/javascript/easy_admin/controllers/settings_button_controller.js +8 -0
  138. data/app/javascript/easy_admin/controllers/settings_sidebar_controller.js +186 -0
  139. data/app/javascript/easy_admin/controllers/sidebar_controller.js +102 -0
  140. data/app/javascript/easy_admin/controllers/sidebar_mobile_controller.js +23 -0
  141. data/app/javascript/easy_admin/controllers/sidebar_nav_controller.js +96 -0
  142. data/app/javascript/easy_admin/controllers/table_controller.js +28 -0
  143. data/app/javascript/easy_admin/controllers/table_row_controller.js +16 -0
  144. data/app/javascript/easy_admin/controllers/toggle_switch_controller.js +22 -0
  145. data/app/javascript/easy_admin/controllers/turbo_stream_redirect.js +9 -0
  146. data/app/javascript/easy_admin/controllers.js +54 -0
  147. data/app/javascript/easy_admin.base.js +4 -0
  148. data/app/models/easy_admin/admin_user.rb +53 -0
  149. data/app/models/easy_admin/application_record.rb +5 -0
  150. data/app/views/easy_admin/dashboard/index.html.erb +3 -0
  151. data/app/views/easy_admin/dashboards/show.html.erb +7 -0
  152. data/app/views/easy_admin/passwords/edit.html.erb +42 -0
  153. data/app/views/easy_admin/passwords/new.html.erb +41 -0
  154. data/app/views/easy_admin/registrations/new.html.erb +65 -0
  155. data/app/views/easy_admin/resources/_redirect.turbo_stream.erb +3 -0
  156. data/app/views/easy_admin/resources/_table_rows.html.erb +46 -0
  157. data/app/views/easy_admin/resources/edit.html.erb +151 -0
  158. data/app/views/easy_admin/resources/index.html.erb +12 -0
  159. data/app/views/easy_admin/resources/index.turbo_stream.erb +139 -0
  160. data/app/views/easy_admin/resources/index_frame.html.erb +142 -0
  161. data/app/views/easy_admin/resources/new.html.erb +100 -0
  162. data/app/views/easy_admin/resources/show.html.erb +31 -0
  163. data/app/views/easy_admin/sessions/new.html.erb +55 -0
  164. data/app/views/easy_admin/settings/_form.html.erb +51 -0
  165. data/app/views/easy_admin/settings/index.html.erb +53 -0
  166. data/app/views/layouts/easy_admin/application.html.erb +48 -0
  167. data/app/views/layouts/easy_admin/auth.html.erb +34 -0
  168. data/config/initializers/easy_admin_card_factory.rb +27 -0
  169. data/config/initializers/pagy.rb +15 -0
  170. data/config/initializers/rack_mini_profiler.rb +67 -0
  171. data/config/routes.rb +70 -0
  172. data/db/migrate/20250101000001_create_easy_admin_admin_users.rb +45 -0
  173. data/lib/easy-admin.rb +32 -0
  174. data/lib/easy_admin/action.rb +159 -0
  175. data/lib/easy_admin/batch_action.rb +134 -0
  176. data/lib/easy_admin/configuration.rb +75 -0
  177. data/lib/easy_admin/dashboard.rb +110 -0
  178. data/lib/easy_admin/dashboard_registry.rb +30 -0
  179. data/lib/easy_admin/delete_action.rb +22 -0
  180. data/lib/easy_admin/engine.rb +54 -0
  181. data/lib/easy_admin/field.rb +118 -0
  182. data/lib/easy_admin/resource.rb +806 -0
  183. data/lib/easy_admin/resource_registry.rb +22 -0
  184. data/lib/easy_admin/types/json_type.rb +25 -0
  185. data/lib/easy_admin/version.rb +3 -0
  186. data/lib/generators/easy_admin/auth_generator.rb +69 -0
  187. data/lib/generators/easy_admin/card/card_generator.rb +94 -0
  188. data/lib/generators/easy_admin/card/templates/card_component.rb.erb +127 -0
  189. data/lib/generators/easy_admin/card/templates/card_component_spec.rb.erb +122 -0
  190. data/lib/generators/easy_admin/install/templates/easy_admin.rb +31 -0
  191. data/lib/generators/easy_admin/install_generator.rb +25 -0
  192. data/lib/generators/easy_admin/rbac/rbac_generator.rb +244 -0
  193. data/lib/generators/easy_admin/rbac/templates/add_rbac_to_admin_users.rb +23 -0
  194. data/lib/generators/easy_admin/rbac/templates/super_admin.rb +34 -0
  195. data/lib/generators/easy_admin/resource_generator.rb +43 -0
  196. data/lib/generators/easy_admin/templates/AUTH_README +35 -0
  197. data/lib/generators/easy_admin/templates/README +27 -0
  198. data/lib/generators/easy_admin/templates/create_easy_admin_admin_users.rb +45 -0
  199. data/lib/generators/easy_admin/templates/devise.rb +267 -0
  200. data/lib/generators/easy_admin/templates/easy_admin.rb +24 -0
  201. data/lib/generators/easy_admin/templates/resource.rb +29 -0
  202. data/lib/tasks/easy_admin_tasks.rake +4 -0
  203. metadata +445 -0
@@ -0,0 +1,749 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ width="240"
11
+ height="144"
12
+ id="svg4136"
13
+ version="1.1"
14
+ inkscape:version="0.91 r13725"
15
+ sodipodi:docname="jsoneditor-icons.svg">
16
+ <title
17
+ id="title6512">JSON Editor Icons</title>
18
+ <metadata
19
+ id="metadata4148">
20
+ <rdf:RDF>
21
+ <cc:Work
22
+ rdf:about="">
23
+ <dc:format>image/svg+xml</dc:format>
24
+ <dc:type
25
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
26
+ <dc:title>JSON Editor Icons</dc:title>
27
+ </cc:Work>
28
+ </rdf:RDF>
29
+ </metadata>
30
+ <defs
31
+ id="defs4146" />
32
+ <sodipodi:namedview
33
+ pagecolor="#ff63ff"
34
+ bordercolor="#666666"
35
+ borderopacity="1"
36
+ objecttolerance="10"
37
+ gridtolerance="10"
38
+ guidetolerance="10"
39
+ inkscape:pageopacity="0"
40
+ inkscape:pageshadow="2"
41
+ inkscape:window-width="1920"
42
+ inkscape:window-height="1026"
43
+ id="namedview4144"
44
+ showgrid="true"
45
+ inkscape:zoom="4"
46
+ inkscape:cx="13.229181"
47
+ inkscape:cy="119.82429"
48
+ inkscape:window-x="0"
49
+ inkscape:window-y="0"
50
+ inkscape:window-maximized="1"
51
+ inkscape:current-layer="svg4136"
52
+ showguides="false"
53
+ borderlayer="false"
54
+ inkscape:showpageshadow="true"
55
+ showborder="true">
56
+ <inkscape:grid
57
+ type="xygrid"
58
+ id="grid4640"
59
+ empspacing="24" />
60
+ </sodipodi:namedview>
61
+ <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->
62
+ <rect
63
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0"
64
+ id="svg_1"
65
+ height="16"
66
+ width="16"
67
+ y="4"
68
+ x="4" />
69
+ <rect
70
+ id="svg_1-7"
71
+ height="16"
72
+ width="16"
73
+ y="3.999995"
74
+ x="28.000006"
75
+ style="fill:#ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0" />
76
+ <rect
77
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0"
78
+ x="52.000004"
79
+ y="3.999995"
80
+ width="16"
81
+ height="16"
82
+ id="rect4165" />
83
+ <rect
84
+ id="rect4175"
85
+ height="16"
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"
92
+ height="16"
93
+ width="16"
94
+ y="3.999995"
95
+ x="196"
96
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0" />
97
+ <g
98
+ id="g4299"
99
+ style="stroke:none">
100
+ <rect
101
+ x="7.0000048"
102
+ y="10.999998"
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" />
107
+ <rect
108
+ x="11.000005"
109
+ y="7.0000114"
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" />
114
+ </g>
115
+ <g
116
+ id="g4299-3"
117
+ transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)"
118
+ style="stroke:none">
119
+ <rect
120
+ x="7.0000048"
121
+ y="10.999998"
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" />
126
+ <rect
127
+ x="11.000005"
128
+ y="7.0000114"
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" />
133
+ </g>
134
+ <rect
135
+ id="svg_1-7-5"
136
+ height="6.9999905"
137
+ width="6.9999909"
138
+ y="7.0000048"
139
+ x="55.000004"
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"
145
+ width="6.9999909"
146
+ height="6.9999905"
147
+ id="rect4354" />
148
+ <rect
149
+ id="svg_1-7-5-7"
150
+ height="6.9999905"
151
+ width="6.9999909"
152
+ y="10.000005"
153
+ x="58.000004"
154
+ style="fill:#ffffff;fill-opacity:1;stroke:#3c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647" />
155
+ <g
156
+ id="g4378">
157
+ <rect
158
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
159
+ x="198"
160
+ y="10.999999"
161
+ width="7.9999909"
162
+ height="1.9999965"
163
+ id="svg_1-7-5-3" />
164
+ <rect
165
+ id="rect4374"
166
+ height="1.9999946"
167
+ width="11.999995"
168
+ y="7.0000005"
169
+ x="198"
170
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
171
+ <rect
172
+ id="rect4376"
173
+ height="1.9999995"
174
+ width="3.9999928"
175
+ y="14.999996"
176
+ x="198"
177
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
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>
204
+ <rect
205
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none"
206
+ id="rect3754-4"
207
+ width="16"
208
+ height="16"
209
+ x="76"
210
+ y="3.9999199" />
211
+ <path
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"
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"
215
+ inkscape:connector-curvature="0"
216
+ sodipodi:nodetypes="cccccccc" />
217
+ <path
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
+ 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"
221
+ inkscape:connector-curvature="0"
222
+ sodipodi:nodetypes="cccccccc" />
223
+ <rect
224
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none"
225
+ id="rect3754-25"
226
+ width="16"
227
+ height="16"
228
+ x="100"
229
+ y="3.9999199" />
230
+ <path
231
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
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"
234
+ inkscape:connector-curvature="0" />
235
+ <path
236
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
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"
239
+ inkscape:connector-curvature="0" />
240
+ <rect
241
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none"
242
+ id="rect3754-73"
243
+ width="16"
244
+ height="16"
245
+ x="124"
246
+ y="3.9999199" />
247
+ <path
248
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
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"
251
+ inkscape:connector-curvature="0"
252
+ sodipodi:nodetypes="ccccccccc" />
253
+ <path
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"
257
+ inkscape:connector-curvature="0" />
258
+ <rect
259
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none"
260
+ id="rect3754-35"
261
+ width="16"
262
+ height="16"
263
+ x="148"
264
+ y="3.9999199" />
265
+ <path
266
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
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"
269
+ inkscape:connector-curvature="0"
270
+ sodipodi:nodetypes="ccccccc" />
271
+ <path
272
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
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"
275
+ inkscape:connector-curvature="0"
276
+ sodipodi:nodetypes="ccccccc" />
277
+ <rect
278
+ id="svg_1-7-2"
279
+ height="1.9999961"
280
+ width="11.999996"
281
+ y="64"
282
+ x="54"
283
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0" />
284
+ <rect
285
+ id="svg_1-7-2-2"
286
+ height="2.9999905"
287
+ width="2.9999907"
288
+ y="52"
289
+ x="80.000008"
290
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0" />
291
+ <rect
292
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0"
293
+ x="85.000008"
294
+ y="52"
295
+ width="2.9999907"
296
+ height="2.9999905"
297
+ id="rect4561" />
298
+ <rect
299
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0"
300
+ x="80.000008"
301
+ y="58"
302
+ width="2.9999907"
303
+ height="2.9999905"
304
+ id="rect4563" />
305
+ <rect
306
+ id="rect4565"
307
+ height="2.9999905"
308
+ width="2.9999907"
309
+ y="58"
310
+ x="85.000008"
311
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0" />
312
+ <rect
313
+ id="rect4567"
314
+ height="2.9999905"
315
+ width="2.9999907"
316
+ y="64"
317
+ x="80.000008"
318
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0" />
319
+ <rect
320
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0"
321
+ x="85.000008"
322
+ y="64"
323
+ width="2.9999907"
324
+ height="2.9999905"
325
+ id="rect4569" />
326
+ <circle
327
+ style="opacity:1;fill:none;fill-opacity:1;stroke:#4c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
328
+ id="path4571"
329
+ cx="110.06081"
330
+ cy="57.939209"
331
+ r="4.7438836" />
332
+ <rect
333
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0"
334
+ x="116.64566"
335
+ y="-31.79752"
336
+ width="4.229713"
337
+ height="6.4053884"
338
+ id="rect4563-2"
339
+ transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" />
340
+ <path
341
+ style="fill:#4c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
342
+ d="M 125,56 138.77027,56.095 132,64 Z"
343
+ id="path4613"
344
+ inkscape:connector-curvature="0"
345
+ sodipodi:nodetypes="cccc" />
346
+ <path
347
+ sodipodi:nodetypes="cccc"
348
+ inkscape:connector-curvature="0"
349
+ id="path4615"
350
+ d="M 149,64 162.77027,63.905 156,56 Z"
351
+ style="fill:#4c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
352
+ <rect
353
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0"
354
+ x="54"
355
+ y="53"
356
+ width="11.999996"
357
+ height="1.9999961"
358
+ id="rect4638" />
359
+ <rect
360
+ id="svg_1-7-2-24"
361
+ height="1.9999957"
362
+ width="12.99999"
363
+ y="-56"
364
+ x="53"
365
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0"
366
+ transform="matrix(0,1,-1,0,0,0)" />
367
+ <rect
368
+ transform="matrix(0,1,-1,0,0,0)"
369
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0"
370
+ x="53"
371
+ y="-66"
372
+ width="12.99999"
373
+ height="1.9999957"
374
+ id="rect4657" />
375
+ <rect
376
+ id="rect4659"
377
+ height="0.99999291"
378
+ width="11.999999"
379
+ y="57"
380
+ x="54"
381
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0" />
382
+ <rect
383
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1"
384
+ x="54"
385
+ y="88.000122"
386
+ width="11.999996"
387
+ height="1.9999961"
388
+ id="rect4661" />
389
+ <rect
390
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1"
391
+ x="80.000008"
392
+ y="76.000122"
393
+ width="2.9999907"
394
+ height="2.9999905"
395
+ id="rect4663" />
396
+ <rect
397
+ id="rect4665"
398
+ height="2.9999905"
399
+ width="2.9999907"
400
+ y="76.000122"
401
+ x="85.000008"
402
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1" />
403
+ <rect
404
+ id="rect4667"
405
+ height="2.9999905"
406
+ width="2.9999907"
407
+ y="82.000122"
408
+ x="80.000008"
409
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1" />
410
+ <rect
411
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1"
412
+ x="85.000008"
413
+ y="82.000122"
414
+ width="2.9999907"
415
+ height="2.9999905"
416
+ id="rect4669" />
417
+ <rect
418
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1"
419
+ x="80.000008"
420
+ y="88.000122"
421
+ width="2.9999907"
422
+ height="2.9999905"
423
+ id="rect4671" />
424
+ <rect
425
+ id="rect4673"
426
+ height="2.9999905"
427
+ width="2.9999907"
428
+ y="88.000122"
429
+ x="85.000008"
430
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1" />
431
+ <circle
432
+ r="4.7438836"
433
+ cy="81.939331"
434
+ cx="110.06081"
435
+ id="circle4675"
436
+ style="opacity:1;fill:none;fill-opacity:1;stroke:#d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
437
+ <rect
438
+ transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)"
439
+ id="rect4677"
440
+ height="6.4053884"
441
+ width="4.229713"
442
+ y="-14.826816"
443
+ x="133.6163"
444
+ style="fill:#d3d3d3;fill-opacity:1;stroke:#d3d3d3;stroke-width:0;stroke-opacity:1" />
445
+ <path
446
+ sodipodi:nodetypes="cccc"
447
+ inkscape:connector-curvature="0"
448
+ id="path4679"
449
+ d="m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z"
450
+ style="fill:#d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:#d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
451
+ <path
452
+ style="fill:#d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:#d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
453
+ d="M 149,88.0002 162.77027,87.9052 156,80.0002 Z"
454
+ id="path4681"
455
+ inkscape:connector-curvature="0"
456
+ sodipodi:nodetypes="cccc" />
457
+ <rect
458
+ id="rect4683"
459
+ height="1.9999961"
460
+ width="11.999996"
461
+ y="77.000122"
462
+ x="54"
463
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1" />
464
+ <rect
465
+ transform="matrix(0,1,-1,0,0,0)"
466
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1"
467
+ x="77.000122"
468
+ y="-56"
469
+ width="12.99999"
470
+ height="1.9999957"
471
+ id="rect4685" />
472
+ <rect
473
+ id="rect4687"
474
+ height="1.9999957"
475
+ width="12.99999"
476
+ y="-66"
477
+ x="77.000122"
478
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1"
479
+ transform="matrix(0,1,-1,0,0,0)" />
480
+ <rect
481
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1"
482
+ x="54"
483
+ y="81.000122"
484
+ width="11.999999"
485
+ height="0.99999291"
486
+ id="rect4689" />
487
+ <rect
488
+ id="rect4761-1"
489
+ height="1.9999945"
490
+ width="15.99999"
491
+ y="101"
492
+ x="76.000008"
493
+ style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
494
+ <rect
495
+ id="rect4761-0"
496
+ height="1.9999945"
497
+ width="15.99999"
498
+ y="105"
499
+ x="76.000008"
500
+ style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
501
+ <rect
502
+ id="rect4761-7"
503
+ height="1.9999945"
504
+ width="9"
505
+ y="109"
506
+ x="76.000008"
507
+ style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
508
+ <rect
509
+ id="rect4761-1-1"
510
+ height="1.9999945"
511
+ width="12"
512
+ y="125"
513
+ x="76.000008"
514
+ style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
515
+ <rect
516
+ id="rect4761-1-1-4"
517
+ height="1.9999945"
518
+ width="10"
519
+ y="137"
520
+ x="76.000008"
521
+ style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
522
+ <rect
523
+ id="rect4761-1-1-4-4"
524
+ height="1.9999945"
525
+ width="10"
526
+ y="129"
527
+ x="82"
528
+ style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
529
+ <rect
530
+ id="rect4761-1-1-4-4-3"
531
+ height="1.9999945"
532
+ width="9"
533
+ y="133"
534
+ x="82"
535
+ style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
536
+ <path
537
+ inkscape:connector-curvature="0"
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"
539
+ d="m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z"
540
+ id="path4138" />
541
+ <path
542
+ inkscape:connector-curvature="0"
543
+ 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"
544
+ d="m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z"
545
+ id="path4138-1" />
546
+ <path
547
+ inkscape:connector-curvature="0"
548
+ style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none"
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"
550
+ id="path3055-0-77" />
551
+ <path
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"
553
+ d="m 4.9850574,108.015 14.0298856,-0.03"
554
+ id="path5244-5-0-5"
555
+ inkscape:connector-curvature="0"
556
+ sodipodi:nodetypes="cc" />
557
+ <path
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"
559
+ d="m 4.9849874,132.015 14.0298866,-0.03"
560
+ id="path5244-5-0-5-8"
561
+ inkscape:connector-curvature="0"
562
+ sodipodi:nodetypes="cc" />
563
+ <path
564
+ inkscape:connector-curvature="0"
565
+ 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.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;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"
566
+ d="m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z"
567
+ id="path4138-12" />
568
+ <path
569
+ inkscape:connector-curvature="0"
570
+ 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.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;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"
571
+ d="m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z"
572
+ id="path4138-1-3" />
573
+ <path
574
+ id="path6191"
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"
576
+ style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none"
577
+ inkscape:connector-curvature="0" />
578
+ <path
579
+ inkscape:connector-curvature="0"
580
+ style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none"
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"
582
+ id="path6193" />
583
+ <path
584
+ id="path6195"
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"
586
+ style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none"
587
+ inkscape:connector-curvature="0" />
588
+ <path
589
+ sodipodi:type="star"
590
+ style="fill:#4d4d4d;fill-opacity:0.90196078;stroke:#d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
591
+ id="path4500"
592
+ sodipodi:sides="3"
593
+ sodipodi:cx="11.55581"
594
+ sodipodi:cy="60.073242"
595
+ sodipodi:r1="5.1116104"
596
+ sodipodi:r2="2.5558052"
597
+ sodipodi:arg1="0"
598
+ sodipodi:arg2="1.0471976"
599
+ inkscape:flatsided="false"
600
+ inkscape:rounded="0"
601
+ inkscape:randomized="0"
602
+ d="m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z"
603
+ inkscape:transform-center-x="-1.2779026" />
604
+ <path
605
+ inkscape:transform-center-x="1.277902"
606
+ d="m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z"
607
+ inkscape:randomized="0"
608
+ inkscape:rounded="0"
609
+ inkscape:flatsided="false"
610
+ sodipodi:arg2="1.0471976"
611
+ sodipodi:arg1="0"
612
+ sodipodi:r2="2.5558052"
613
+ sodipodi:r1="5.1116104"
614
+ sodipodi:cy="60.073242"
615
+ sodipodi:cx="-36.611614"
616
+ sodipodi:sides="3"
617
+ id="path4502"
618
+ style="fill:#4d4d4d;fill-opacity:0.90196078;stroke:#d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
619
+ sodipodi:type="star"
620
+ transform="scale(-1,1)" />
621
+ <path
622
+ d="m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z"
623
+ inkscape:randomized="0"
624
+ inkscape:rounded="0"
625
+ inkscape:flatsided="false"
626
+ sodipodi:arg2="1.0471976"
627
+ sodipodi:arg1="0"
628
+ sodipodi:r2="2.5558052"
629
+ sodipodi:r1="5.1116104"
630
+ sodipodi:cy="60.073212"
631
+ sodipodi:cx="11.55581"
632
+ sodipodi:sides="3"
633
+ id="path4504"
634
+ style="fill:#4d4d4d;fill-opacity:0.90196078;stroke:#d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
635
+ sodipodi:type="star"
636
+ transform="matrix(0,1,-1,0,72.0074,71.7877)"
637
+ inkscape:transform-center-y="1.2779029" />
638
+ <path
639
+ inkscape:transform-center-y="-1.2779026"
640
+ transform="matrix(0,-1,-1,0,96,96)"
641
+ sodipodi:type="star"
642
+ style="fill:#4d4d4d;fill-opacity:0.90196078;stroke:#d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
643
+ id="path4506"
644
+ sodipodi:sides="3"
645
+ sodipodi:cx="11.55581"
646
+ sodipodi:cy="60.073212"
647
+ sodipodi:r1="5.1116104"
648
+ sodipodi:r2="2.5558052"
649
+ sodipodi:arg1="0"
650
+ sodipodi:arg2="1.0471976"
651
+ inkscape:flatsided="false"
652
+ inkscape:rounded="0"
653
+ inkscape:randomized="0"
654
+ d="m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z" />
655
+ <path
656
+ sodipodi:nodetypes="cccc"
657
+ inkscape:connector-curvature="0"
658
+ id="path4615-5"
659
+ d="m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z"
660
+ style="fill:#fbb917;fill-opacity:1;fill-rule:evenodd;stroke:#fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
661
+ <path
662
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
663
+ d="m 179,55 0,6 2,0 0,-6"
664
+ id="path4300"
665
+ inkscape:connector-curvature="0"
666
+ sodipodi:nodetypes="cccc" />
667
+ <path
668
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
669
+ d="m 179,62 0,2 2,0 0,-2"
670
+ id="path4300-6"
671
+ inkscape:connector-curvature="0"
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" />
749
+ </svg>