glebtv-ckeditor 4.5.10.3 → 4.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (295) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/ckeditor/config.js.erb +1 -1
  3. data/lib/ckeditor.rb +1 -0
  4. data/lib/ckeditor/version.rb +2 -2
  5. data/lib/generators/ckeditor/templates/active_record/carrierwave/migration.rb +1 -1
  6. data/lib/generators/ckeditor/templates/active_record/dragonfly/migration.rb +1 -1
  7. data/lib/generators/ckeditor/templates/active_record/paperclip/migration.rb +1 -1
  8. data/lib/generators/ckeditor/templates/active_record/refile/migration.rb +1 -1
  9. data/vendor/assets/javascripts/ckeditor/LICENSE.md +2 -2
  10. data/vendor/assets/javascripts/ckeditor/adapters/jquery.js +1 -1
  11. data/vendor/assets/javascripts/ckeditor/build-config.js +26 -26
  12. data/vendor/assets/javascripts/ckeditor/ckeditor.js +605 -576
  13. data/vendor/assets/javascripts/ckeditor/lang/en.js +2 -2
  14. data/vendor/assets/javascripts/ckeditor/lang/ru.js +2 -2
  15. data/vendor/assets/javascripts/ckeditor/plugins/CKCss/css/styles.css +9 -0
  16. data/vendor/assets/javascripts/ckeditor/plugins/CKCss/dialogs/ckcss.js +2 -1
  17. data/vendor/assets/javascripts/ckeditor/plugins/CKCss/plugin.js +3 -1
  18. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +6 -6
  19. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/en.js +3 -4
  20. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js +4 -4
  21. data/vendor/assets/javascripts/ckeditor/plugins/about/dialogs/about.js +4 -3
  22. data/vendor/assets/javascripts/ckeditor/plugins/clipboard/dialogs/paste.js +1 -1
  23. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/LICENSE.md +21 -0
  24. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/css/codemirror.ckeditor.css +183 -0
  25. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/css/codemirror.css +341 -0
  26. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/css/codemirror.min.css +1 -1
  27. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/comment/comment.js +206 -0
  28. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/comment/continuecomment.js +85 -0
  29. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/dialog/dialog.css +32 -0
  30. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/dialog/dialog.js +157 -0
  31. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/edit/closebrackets.js +202 -0
  32. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/edit/closetag.js +169 -0
  33. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/edit/continuelist.js +51 -0
  34. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/edit/matchbrackets.js +122 -0
  35. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/edit/matchtags.js +66 -0
  36. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/edit/trailingspace.js +27 -0
  37. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/fold/brace-fold.js +105 -0
  38. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/fold/comment-fold.js +59 -0
  39. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/fold/foldcode.js +150 -0
  40. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/fold/foldgutter.css +20 -0
  41. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/fold/foldgutter.js +146 -0
  42. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/fold/indent-fold.js +44 -0
  43. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/fold/markdown-fold.js +49 -0
  44. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/fold/xml-fold.js +182 -0
  45. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/format/autoFormatAll.js +43 -0
  46. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/format/formatting.js +226 -0
  47. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/hint/anyword-hint.js +41 -0
  48. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/hint/css-hint.js +60 -0
  49. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/hint/html-hint.js +348 -0
  50. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/hint/javascript-hint.js +155 -0
  51. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/hint/show-hint.css +36 -0
  52. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/hint/show-hint.js +438 -0
  53. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/hint/sql-hint.js +271 -0
  54. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/hint/xml-hint.js +110 -0
  55. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/mode/loadmode.js +64 -0
  56. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/mode/multiplex.js +123 -0
  57. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/mode/multiplex_test.js +33 -0
  58. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/mode/overlay.js +85 -0
  59. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/mode/simple.js +213 -0
  60. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/search/jump-to-line.js +49 -0
  61. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/search/match-highlighter.js +165 -0
  62. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/search/matchesonscrollbar.css +8 -0
  63. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/search/matchesonscrollbar.js +97 -0
  64. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/search/search.js +252 -0
  65. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/search/searchcursor.js +189 -0
  66. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/selection/active-line.js +74 -0
  67. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/selection/mark-selection.js +118 -0
  68. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/addon/selection/selection-pointer.js +98 -0
  69. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/beautify-html.js +952 -0
  70. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/beautify.js +2087 -0
  71. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/codemirror.addons.min.js +1 -1
  72. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/codemirror.addons.search.min.js +1 -1
  73. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/codemirror.js +9109 -0
  74. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/codemirror.min.js +1 -1
  75. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/codemirror.mode.htmlmixed.min.js +1 -1
  76. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/codemirror.mode.javascript.min.js +1 -1
  77. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/codemirror.mode.php.min.js +1 -1
  78. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/bbcode/bbcode.js +137 -0
  79. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/bbcode/index.html +73 -0
  80. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/bbcodemixed/bbcodemixed.js +161 -0
  81. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/bbcodemixed/index.html +128 -0
  82. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/clike/clike.js +785 -0
  83. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/clike/index.html +360 -0
  84. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/clike/scala.html +767 -0
  85. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/clike/test.js +55 -0
  86. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/css/css.js +825 -0
  87. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/css/gss.html +103 -0
  88. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/css/gss_test.js +17 -0
  89. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/css/index.html +75 -0
  90. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/css/less.html +152 -0
  91. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/css/less_test.js +54 -0
  92. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/css/scss.html +157 -0
  93. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/css/scss_test.js +110 -0
  94. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/css/test.js +200 -0
  95. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/htmlembedded/htmlembedded.js +28 -0
  96. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/htmlembedded/index.html +60 -0
  97. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/htmlmixed/htmlmixed.js +152 -0
  98. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/htmlmixed/index.html +89 -0
  99. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/javascript/index.html +114 -0
  100. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/javascript/javascript.js +784 -0
  101. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/javascript/json-ld.html +72 -0
  102. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/javascript/test.js +247 -0
  103. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/javascript/typescript.html +61 -0
  104. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/php/index.html +64 -0
  105. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/php/php.js +234 -0
  106. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/php/test.js +154 -0
  107. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/xml/index.html +61 -0
  108. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/xml/test.js +51 -0
  109. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/mode/xml/xml.js +394 -0
  110. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/plugin.js +30 -24
  111. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/theme/dracula.css +1 -1
  112. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/theme/duotone-dark.css +35 -0
  113. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/theme/duotone-light.css +36 -0
  114. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/theme/panda-syntax.css +85 -0
  115. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/theme/pastel-on-dark.css +0 -1
  116. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/theme/solarized.css +21 -15
  117. data/vendor/assets/javascripts/ckeditor/plugins/colordialog/dialogs/colordialog.css +1 -1
  118. data/vendor/assets/javascripts/ckeditor/plugins/colordialog/dialogs/colordialog.js +1 -1
  119. data/vendor/assets/javascripts/ckeditor/plugins/dialog/dialogDefinition.js +1 -1
  120. data/vendor/assets/javascripts/ckeditor/plugins/find/dialogs/find.js +9 -9
  121. data/vendor/assets/javascripts/ckeditor/plugins/flash/dialogs/flash.js +12 -12
  122. data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/button.js +1 -1
  123. data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/checkbox.js +1 -1
  124. data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/form.js +1 -1
  125. data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/hiddenfield.js +1 -1
  126. data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/radio.js +1 -1
  127. data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/select.js +11 -11
  128. data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/textarea.js +1 -1
  129. data/vendor/assets/javascripts/ckeditor/plugins/forms/dialogs/textfield.js +1 -1
  130. data/vendor/assets/javascripts/ckeditor/plugins/icons.png +0 -0
  131. data/vendor/assets/javascripts/ckeditor/plugins/icons_hidpi.png +0 -0
  132. data/vendor/assets/javascripts/ckeditor/plugins/iframe/dialogs/iframe.js +1 -1
  133. data/vendor/assets/javascripts/ckeditor/plugins/iframedialog/plugin.js +1 -1
  134. data/vendor/assets/javascripts/ckeditor/plugins/image/dialogs/image.js +28 -28
  135. data/vendor/assets/javascripts/ckeditor/plugins/lineheight/LICENSE +0 -0
  136. data/vendor/assets/javascripts/ckeditor/plugins/lineheight/README.md +0 -0
  137. data/vendor/assets/javascripts/ckeditor/plugins/lineheight/lang/LANG.js +3 -0
  138. data/vendor/assets/javascripts/ckeditor/plugins/lineheight/lang/en.js +0 -0
  139. data/vendor/assets/javascripts/ckeditor/plugins/lineheight/lang/ru.js +3 -3
  140. data/vendor/assets/javascripts/ckeditor/plugins/lineheight/plugin.js +1 -1
  141. data/vendor/assets/javascripts/ckeditor/plugins/lineheight/readme.txt +0 -0
  142. data/vendor/assets/javascripts/ckeditor/plugins/link/dialogs/anchor.js +1 -1
  143. data/vendor/assets/javascripts/ckeditor/plugins/link/dialogs/link.js +25 -23
  144. data/vendor/assets/javascripts/ckeditor/plugins/link/images/anchor.png +0 -0
  145. data/vendor/assets/javascripts/ckeditor/plugins/link/images/hidpi/anchor.png +0 -0
  146. data/vendor/assets/javascripts/ckeditor/plugins/liststyle/dialogs/liststyle.js +1 -1
  147. data/vendor/assets/javascripts/ckeditor/plugins/notification/lang/en.js +1 -1
  148. data/vendor/assets/javascripts/ckeditor/plugins/notification/lang/ru.js +1 -1
  149. data/vendor/assets/javascripts/ckeditor/plugins/notification/plugin.js +2 -2
  150. data/vendor/assets/javascripts/ckeditor/plugins/pastefromword/filter/default.js +40 -29
  151. data/vendor/assets/javascripts/ckeditor/plugins/scayt/dialogs/options.js +19 -19
  152. data/vendor/assets/javascripts/ckeditor/plugins/scayt/skins/moono-lisa/scayt.css +20 -0
  153. data/vendor/assets/javascripts/ckeditor/plugins/smiley/dialogs/smiley.js +1 -1
  154. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/en.js +2 -2
  155. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/ru.js +1 -1
  156. data/vendor/assets/javascripts/ckeditor/plugins/specialchar/dialogs/specialchar.js +1 -1
  157. data/vendor/assets/javascripts/ckeditor/plugins/stylesheetparser/plugin.js +1 -1
  158. data/vendor/assets/javascripts/ckeditor/plugins/stylesheetparser/samples/assets/sample.css +70 -0
  159. data/vendor/assets/javascripts/ckeditor/plugins/stylesheetparser/samples/stylesheetparser.html +85 -0
  160. data/vendor/assets/javascripts/ckeditor/plugins/table/dialogs/table.js +1 -1
  161. data/vendor/assets/javascripts/ckeditor/plugins/tabletools/dialogs/tableCell.js +1 -1
  162. data/vendor/assets/javascripts/ckeditor/plugins/templates/dialogs/templates.css +1 -1
  163. data/vendor/assets/javascripts/ckeditor/plugins/templates/dialogs/templates.js +1 -1
  164. data/vendor/assets/javascripts/ckeditor/plugins/templates/templates/default.js +2 -2
  165. data/vendor/assets/javascripts/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
  166. data/vendor/assets/javascripts/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
  167. data/vendor/assets/javascripts/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
  168. data/vendor/assets/javascripts/ckeditor/plugins/wordcount/css/wordcount.css +0 -0
  169. data/vendor/assets/javascripts/ckeditor/plugins/wordcount/lang/en.js +1 -1
  170. data/vendor/assets/javascripts/ckeditor/plugins/wordcount/lang/ru.js +1 -1
  171. data/vendor/assets/javascripts/ckeditor/plugins/wordcount/plugin.js +60 -13
  172. data/vendor/assets/javascripts/ckeditor/plugins/wordcount/samples/wordcount.html +61 -0
  173. data/vendor/assets/javascripts/ckeditor/plugins/wordcount/samples/wordcountWithMaxCount.html +110 -0
  174. data/vendor/assets/javascripts/ckeditor/plugins/wsc/dialogs/wsc.js +9 -9
  175. data/vendor/assets/javascripts/ckeditor/plugins/wsc/skins/moono-lisa/wsc.css +43 -0
  176. data/vendor/assets/javascripts/ckeditor/plugins/youtube/LICENSE.md +15 -0
  177. data/vendor/assets/javascripts/ckeditor/plugins/youtube/images/icon.png +0 -0
  178. data/vendor/assets/javascripts/ckeditor/plugins/youtube/lang/en.js +3 -1
  179. data/vendor/assets/javascripts/ckeditor/plugins/youtube/lang/ru.js +1 -0
  180. data/vendor/assets/javascripts/ckeditor/plugins/youtube/plugin.js +448 -388
  181. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/dev/icons16.png +0 -0
  182. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/dev/icons16.svg +175 -0
  183. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/dev/icons32.png +0 -0
  184. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/dev/icons32.svg +167 -0
  185. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/dev/locations.json +145 -0
  186. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/dialog.css +5 -0
  187. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/dialog_ie.css +5 -0
  188. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/dialog_ie8.css +5 -0
  189. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/dialog_iequirks.css +5 -0
  190. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/editor.css +5 -0
  191. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/editor_gecko.css +5 -0
  192. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/editor_ie.css +5 -0
  193. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/editor_ie8.css +5 -0
  194. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/editor_iequirks.css +5 -0
  195. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/arrow.png +0 -0
  196. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/close.png +0 -0
  197. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/hidpi/close.png +0 -0
  198. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png +0 -0
  199. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/hidpi/lock.png +0 -0
  200. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/hidpi/refresh.png +0 -0
  201. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/lock-open.png +0 -0
  202. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/lock.png +0 -0
  203. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/refresh.png +0 -0
  204. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/images/spinner.gif +0 -0
  205. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/readme.md +46 -0
  206. data/vendor/assets/javascripts/ckeditor/skins/moono-lisa/skin.js +7 -0
  207. data/vendor/assets/javascripts/ckeditor/skins/moono/dialog.css +1 -1
  208. data/vendor/assets/javascripts/ckeditor/skins/moono/dialog_ie.css +1 -1
  209. data/vendor/assets/javascripts/ckeditor/skins/moono/dialog_ie7.css +1 -1
  210. data/vendor/assets/javascripts/ckeditor/skins/moono/dialog_ie8.css +1 -1
  211. data/vendor/assets/javascripts/ckeditor/skins/moono/dialog_iequirks.css +1 -1
  212. data/vendor/assets/javascripts/ckeditor/skins/moono/editor.css +2 -2
  213. data/vendor/assets/javascripts/ckeditor/skins/moono/editor_gecko.css +2 -2
  214. data/vendor/assets/javascripts/ckeditor/skins/moono/editor_ie.css +2 -2
  215. data/vendor/assets/javascripts/ckeditor/skins/moono/editor_ie7.css +2 -2
  216. data/vendor/assets/javascripts/ckeditor/skins/moono/editor_ie8.css +2 -2
  217. data/vendor/assets/javascripts/ckeditor/skins/moono/editor_iequirks.css +2 -2
  218. data/vendor/assets/javascripts/ckeditor/skins/moono/icons.png +0 -0
  219. data/vendor/assets/javascripts/ckeditor/skins/moono/icons_hidpi.png +0 -0
  220. data/vendor/assets/javascripts/ckeditor/skins/moono/images/anchor.png +0 -0
  221. data/vendor/assets/javascripts/ckeditor/skins/moono/images/close.png +0 -0
  222. data/vendor/assets/javascripts/ckeditor/skins/moono/images/hidpi/anchor.png +0 -0
  223. data/vendor/assets/javascripts/ckeditor/skins/moono/images/hidpi/close.png +0 -0
  224. data/vendor/assets/javascripts/ckeditor/skins/moono/images/hidpi/lock-open.png +0 -0
  225. data/vendor/assets/javascripts/ckeditor/skins/moono/images/hidpi/lock.png +0 -0
  226. data/vendor/assets/javascripts/ckeditor/skins/moono/images/hidpi/refresh.png +0 -0
  227. data/vendor/assets/javascripts/ckeditor/skins/moono/images/lock-open.png +0 -0
  228. data/vendor/assets/javascripts/ckeditor/skins/moono/images/lock.png +0 -0
  229. data/vendor/assets/javascripts/ckeditor/skins/moono/images/refresh.png +0 -0
  230. data/vendor/assets/javascripts/ckeditor/skins/moono/readme.md +3 -3
  231. data/vendor/assets/javascripts/ckeditor/styles.js +42 -16
  232. metadata +161 -105
  233. data/app/assets/javascripts/ckeditor/config_orig.js +0 -58
  234. data/vendor/assets/javascripts/ckeditor/README.md +0 -39
  235. data/vendor/assets/javascripts/ckeditor/config.js +0 -10
  236. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/af.js +0 -12
  237. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/ar.js +0 -12
  238. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/bg.js +0 -12
  239. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/bn.js +0 -12
  240. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/bs.js +0 -12
  241. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/ca.js +0 -12
  242. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/cs.js +0 -12
  243. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/cy.js +0 -12
  244. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/da.js +0 -12
  245. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/de.js +0 -12
  246. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/el.js +0 -12
  247. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/en-au.js +0 -12
  248. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/en-ca.js +0 -12
  249. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/en-gb.js +0 -12
  250. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/eo.js +0 -12
  251. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/es.js +0 -12
  252. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/et.js +0 -12
  253. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/eu.js +0 -12
  254. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/fa.js +0 -12
  255. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/fi.js +0 -12
  256. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/fo.js +0 -12
  257. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/fr-ca.js +0 -12
  258. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/fr.js +0 -12
  259. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/gl.js +0 -12
  260. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/gu.js +0 -12
  261. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/he.js +0 -12
  262. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/hi.js +0 -12
  263. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/hr.js +0 -12
  264. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/hu.js +0 -12
  265. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/is.js +0 -12
  266. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/it.js +0 -12
  267. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/ja.js +0 -12
  268. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/ka.js +0 -12
  269. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/km.js +0 -12
  270. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/ko.js +0 -12
  271. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/ku.js +0 -12
  272. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/lt.js +0 -12
  273. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/lv.js +0 -12
  274. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/mk.js +0 -12
  275. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/mn.js +0 -12
  276. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/ms.js +0 -12
  277. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/nb.js +0 -12
  278. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/nl.js +0 -12
  279. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/no.js +0 -12
  280. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/pl.js +0 -12
  281. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/pt-br.js +0 -12
  282. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/pt.js +0 -12
  283. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/ro.js +0 -12
  284. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/sk.js +0 -12
  285. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/sl.js +0 -12
  286. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/sr-latn.js +0 -12
  287. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/sr.js +0 -12
  288. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/sv.js +0 -12
  289. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/th.js +0 -12
  290. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/tr.js +0 -12
  291. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/ug.js +0 -12
  292. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/uk.js +0 -12
  293. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/vi.js +0 -12
  294. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/zh-cn.js +0 -12
  295. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/lang/zh.js +0 -12
@@ -0,0 +1,175 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg width="493px" height="367px" viewBox="0 0 493 367" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 40.3 (33839) - http://www.bohemiancoding.com/sketch -->
4
+ <title>mona-lisa-icons16</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <defs>
7
+ <linearGradient x1="43.3218607%" y1="-9.99305234%" x2="43.3218607%" y2="99.4083836%" id="linearGradient-1">
8
+ <stop stop-color="#666666" offset="0%"></stop>
9
+ <stop stop-color="#424242" offset="100%"></stop>
10
+ </linearGradient>
11
+ <linearGradient x1="519.845%" y1="-13.4304121%" x2="519.845%" y2="99.3898186%" id="linearGradient-2">
12
+ <stop stop-color="#666666" offset="0%"></stop>
13
+ <stop stop-color="#424242" offset="100%"></stop>
14
+ </linearGradient>
15
+ <linearGradient x1="86.8217498%" y1="40.3912573%" x2="12.9063701%" y2="40.6933503%" id="linearGradient-3">
16
+ <stop stop-color="#FF4141" stop-opacity="0" offset="0%"></stop>
17
+ <stop stop-color="#FF4141" stop-opacity="0.78823529" offset="24.227905%"></stop>
18
+ <stop stop-color="#FF4141" stop-opacity="0" offset="73.632693%"></stop>
19
+ <stop stop-color="#FF4141" offset="100%"></stop>
20
+ </linearGradient>
21
+ </defs>
22
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
23
+ <g id="mona-lisa-icons16">
24
+ <g id="Page-1">
25
+ <g id="layer1">
26
+ <rect id="rect4452" fill="#CCCCCC" x="67" y="320.000046" width="8" height="14.00004"></rect>
27
+ <rect id="rect4367" fill="#CCCCCC" x="65" y="322.000046" width="12" height="10.000055"></rect>
28
+ <g id="g4363" transform="translate(68.000000, 322.000048)" stroke="#FFFFFF" stroke-width="2" fill="#676767">
29
+ <path d="M2.006423,6.43503 L3.998186,6.43503 C5.835512,6.43503 7.014695,5.13245 7.014695,3.10316 C7.014695,1.1013 5.876646,0.00439 3.792515,0.00439 L0.001738,0.00439 L0.001738,10 L2.006423,10 L2.006423,6.43503 M2.006423,4.72111 L2.006423,1.71831 L3.35375,1.71831 C4.450661,1.71831 4.957984,2.19821 4.957984,3.22657 C4.957984,4.24121 4.450661,4.72111 3.35375,4.72111 L2.006423,4.72111" id="path4365"></path>
30
+ </g>
31
+ <path d="M5.5,352.593786 C4.70925,352.602786 3.89969,352.934116 3,353.968786 L3,360.968786 L3,361.218786 L3,361.968786 L3,361.999986 C3.22508,361.746316 3.43768,361.548516 3.65625,361.374986 C3.8436,361.226246 4.03556,361.097056 4.21875,360.999986 C4.28115,360.966886 4.34426,360.933786 4.40625,360.906286 C4.48945,360.871286 4.57363,360.838386 4.65625,360.812586 C4.68765,360.802086 4.71865,360.790486 4.74995,360.781386 C4.83235,360.758586 4.91841,360.734386 4.99995,360.718886 C5.00895,360.719886 5.02215,360.717886 5.03115,360.718886 C5.20799,360.687286 5.38824,360.653386 5.5624,360.656386 C6.93159,360.679986 8.23589,361.656336 9.59365,362.031386 C9.79438,362.086786 9.98348,362.132986 10.1874,362.156386 C10.2526,362.163386 10.30936,362.184086 10.3749,362.187586 C10.434,362.190586 10.50298,362.187896 10.5624,362.187586 C10.5904,362.191586 10.6276,362.188406 10.6561,362.187586 C10.7093,362.185586 10.75936,362.163186 10.81235,362.156386 C10.85385,362.151386 10.89525,362.161386 10.93735,362.156386 C10.96745,362.152386 11.00095,362.161386 11.03105,362.156386 C11.12715,362.140286 11.2151,362.089886 11.3123,362.062686 C11.48072,362.015386 11.64036,361.960106 11.8123,361.875186 C11.8421,361.861086 11.876,361.859686 11.906,361.843986 C11.921,361.835986 11.9235,361.824286 11.9372,361.812786 C11.951,361.801186 11.9533,361.789886 11.9684,361.781586 C12.13076,361.690186 12.30245,361.599406 12.4684,361.469086 C12.4793,361.460086 12.4887,361.446586 12.4996,361.437886 C12.66762,361.305056 12.82773,361.178196 12.9996,361.000386 L12.9996,360.969186 L12.9996,359.969186 L12.9996,353.969186 L12.9996,352.969186 C12.84558,353.133196 12.68224,353.283276 12.53085,353.406686 C12.51995,353.415686 12.51055,353.429086 12.49965,353.437886 C12.3607,353.548646 12.23078,353.634266 12.0934,353.719136 C12.0567,353.741836 12.005,353.760836 11.9684,353.781636 C11.63519,353.971226 11.32313,354.075316 10.99965,354.125386 C9.05879,354.425826 7.27885,352.572716 5.49965,352.594136 L5.5,352.593786 L5.5,352.593786 Z M1,353.000036 L1,366.000036 L2,366.000036 L2,353.000036 L1,353.000036 L1,353.000036 L1,353.000036 Z" id="path3613" stroke="#FFFFFF" stroke-width="2" fill="url(#linearGradient-1)"></path>
32
+ <polygon id="rect6534" fill="#B8B8B8" points="63 63.0000372 63 78.0000372 68 78.0000372 68 76.8461912 68 75.6923452 68 74.0000372 73 73.8461912 73 75.0000372 78 75.0000372 78 63.0000372"></polygon>
33
+ <path d="M69.53125,31.0000372 C69.236645,31.0000372 69,31.2366772 69,31.5312872 L69,32.0000372 L68.53125,32.0000372 C68.236645,32.0000372 68,32.2366772 68,32.5312872 L68,33.4687872 C68,33.7633872 68.236645,34.0000372 68.53125,34.0000372 L69.53125,34.0000372 L72.46875,34.0000372 L73.46875,34.0000372 C73.763355,34.0000372 74,33.7633872 74,33.4687872 L74,32.5312872 C74,32.2366772 73.763355,32.0000372 73.46875,32.0000372 L73,32.0000372 L73,31.5312872 C73,31.2366772 72.763355,31.0000372 72.46875,31.0000372 L69.53125,31.0000372 L69.53125,31.0000372 L69.53125,31.0000372 Z M67,32.0000372 C65.909296,32.0000372 65,32.9093372 65,34.0000372 L65,43.0000372 C65,44.0907372 65.909296,45.0000372 67,45.0000372 L68,45.0000372 L68,44.0000372 L67,44.0000372 C66.445999,44.0000372 66,43.5540372 66,43.0000372 L66,34.0000372 C66,33.4460372 66.445999,33.0000372 67,33.0000372 L67,32.5312872 C67,32.3477072 67.0316,32.1646772 67.09375,32.0000372 L67,32.0000372 L67,32.0000372 L67,32.0000372 Z M74.90625,32.0000372 C74.9684,32.1646872 75,32.3477072 75,32.5312872 L75,33.0000372 C75.554001,33.0000372 76,33.4460372 76,34.0000372 L76,36.0000372 L77,36.0000372 L77,34.0000372 C77,32.9093372 76.090704,32.0000372 75,32.0000372 L74.90625,32.0000372 L74.90625,32.0000372 L74.90625,32.0000372 Z M70,37.0000372 C69.446,37.0000372 69,37.4460372 69,38.0000372 L69,45.0000372 C69,45.5540372 69.446,46.0000372 70,46.0000372 L77,46.0000372 C77.554,46.0000372 78,45.5540372 78,45.0000372 L78,38.0000372 C78,37.4460372 77.554,37.0000372 77,37.0000372 L70,37.0000372 L70,37.0000372 L70,37.0000372 Z M70,38.0000372 L77,38.0000372 L77,45.0000372 L70,45.0000372 L70,38.0000372 L70,38.0000372 L70,38.0000372 Z M71,39.0000372 L71,40.0000372 L76,40.0000372 L76,39.0000372 L71,39.0000372 L71,39.0000372 L71,39.0000372 Z M71,41.0000372 L71,42.0000372 L76,42.0000372 L76,41.0000372 L71,41.0000372 L71,41.0000372 L71,41.0000372 Z M71,43.0000372 L71,44.0000372 L76,44.0000372 L76,43.0000372 L71,43.0000372 L71,43.0000372 L71,43.0000372 Z" id="path3624" fill="#484848"></path>
34
+ <path d="M161,3.76500001e-05 L161,14.0000372 L169.8125,14.0000372 L168.8125,13.0000372 L167.5,13.0000372 L166,13.0000372 L163,13.0000372 L162,13.0000372 L162,1.00003765 L167.5,1.00003765 L171,4.50003765 L171,5.71878765 C171.61468,6.48867765 172,7.44757765 172,8.50003765 L172,5.00003765 L172,4.00003765 L168,3.76500001e-05 L167,3.76500001e-05 L161,3.76500001e-05 L161,3.76500001e-05 L161,3.76500001e-05 Z M172,8.50003765 C172,8.98322715 171.79923,9.36279715 171.65625,9.78128715 L172,10.1250372 L172,8.50003765 L172,8.50003765 L172,8.50003765 Z M167.5,5.00003765 C165.57885,5.00003765 164,6.57887765 164,8.50003765 C164,10.4211872 165.57885,12.0000372 167.5,12.0000372 C167.99539,12.0000372 168.44633,11.8762972 168.875,11.6875372 L171.21875,14.0312872 L172.84375,12.4062872 L170.5625,10.1250372 C170.829,9.63218715 171,9.09543715 171,8.50003765 C171,6.57887765 169.42115,5.00003765 167.5,5.00003765 L167.5,5.00003765 L167.5,5.00003765 Z M167.4688,6.00003765 C168.84951,6.00003765 169.9688,7.11932765 169.9688,8.50003765 C169.9688,9.88074715 168.84951,11.0000372 167.4688,11.0000372 C166.08809,11.0000372 164.9688,9.88074715 164.9688,8.50003765 C164.9688,7.11932765 166.08809,6.00003765 167.4688,6.00003765 L167.4688,6.00003765 L167.4688,6.00003765 Z" id="path4583" fill="#484848"></path>
35
+ <path d="M165.53125,31.0000372 C165.23664,31.0000372 165,31.2366772 165,31.5312872 L165,32.0000372 L164.53125,32.0000372 C164.23664,32.0000372 164,32.2366772 164,32.5312872 L164,33.4687872 C164,33.7633872 164.23664,34.0000372 164.53125,34.0000372 L165.53125,34.0000372 L168.46875,34.0000372 L169.46875,34.0000372 C169.76336,34.0000372 170,33.7633872 170,33.4687872 L170,32.5312872 C170,32.2366772 169.76336,32.0000372 169.46875,32.0000372 L169,32.0000372 L169,31.5312872 C169,31.2366772 168.76336,31.0000372 168.46875,31.0000372 L165.53125,31.0000372 L165.53125,31.0000372 L165.53125,31.0000372 Z M163,32.0000372 C161.9093,32.0000372 161,32.9093372 161,34.0000372 L161,43.0000372 C161,44.0907372 161.9093,45.0000372 163,45.0000372 L164,45.0000372 L164,44.0000372 L163,44.0000372 C162.446,44.0000372 162,43.5540372 162,43.0000372 L162,34.0000372 C162,33.4460372 162.446,33.0000372 163,33.0000372 L163,32.5312872 C163,32.3477072 163.0317,32.1646772 163.0937,32.0000372 L163,32.0000372 L163,32.0000372 L163,32.0000372 Z M170.90625,32.0000372 C170.96845,32.1646872 170.99995,32.3477072 170.99995,32.5312872 L170.99995,33.0000372 C171.55395,33.0000372 171.99995,33.4460372 171.99995,34.0000372 L171.99995,36.0000372 L172.99995,36.0000372 L172.99995,34.0000372 C172.99995,32.9093372 172.09065,32.0000372 170.99995,32.0000372 L170.90625,32.0000372 L170.90625,32.0000372 L170.90625,32.0000372 Z M166,37.0000372 C165.446,37.0000372 165,37.4460372 165,38.0000372 L165,45.0000372 C165,45.5540372 165.446,46.0000372 166,46.0000372 L173,46.0000372 C173.554,46.0000372 174,45.5540372 174,45.0000372 L174,38.0000372 C174,37.4460372 173.554,37.0000372 173,37.0000372 L166,37.0000372 L166,37.0000372 L166,37.0000372 Z M166,38.0000372 L173,38.0000372 L173,45.0000372 L166,45.0000372 L166,38.0000372 L166,38.0000372 L166,38.0000372 Z M167,39.0000372 L167,40.0000372 L167,44.0000372 L168,44.0000372 L169,43.0000372 L170,43.0000372 L171,44.0000372 L172,44.0000372 L172,40.0000372 L172,39.0000372 L171,39.0000372 L171,42.0000372 L170.75,42.0000372 L170,42.0000372 L170,41.0000372 L169,41.0000372 L169,42.0000372 L168.25,42.0000372 L168,42.0000372 L168,39.0000372 L167,39.0000372 L167,39.0000372 L167,39.0000372 Z" id="path4585" fill="#484848"></path>
36
+ <path d="M31,63.0000372 L31,71.0000372 L33,71.0000372 L35,71.0000372 L35,70.0000372 L33,70.0000372 L33,67.0000372 L35,67.0000372 L35,66.0000372 L33,66.0000372 L33,63.0000372 L31,63.0000372 L31,63.0000372 Z M35,67.0000372 L35,70.0000372 L36,70.0000372 L36,67.0000372 L35,67.0000372 L35,67.0000372 Z M41,65.0000372 L38,66.9375372 L41,68.9375372 L41,67.6250372 C43.26799,67.6259172 44.4435,69.0755472 45,69.9375372 C44.944,67.9072972 43.25866,66.2513372 41,66.2500372 L41,65.0000372 L41,65.0000372 Z M41,71.0000372 L41,72.0000372 L44,72.0000372 L44,74.0000372 L41,74.0000372 L41,75.0000372 L44,75.0000372 L44,78.0000372 L41,78.0000372 L41,79.0000372 L44,79.0000372 L46,79.0000372 L46,72.0000372 L45,72.0000372 L45,71.0000372 L41,71.0000372 L41,71.0000372 Z M42,78.0000372 L42,75.0000372 L40,75.0000372 L40,78.0000372 L42,78.0000372 L42,78.0000372 Z M32,73.0000372 C32.056,75.0302772 33.74134,76.6862472 36,76.6875372 L36,77.9375372 L39,76.0000372 L36,74.0000372 L36,75.3125372 C33.73201,75.3116672 32.5565,73.8620272 32,73.0000372 L32,73.0000372 L32,73.0000372 Z" id="path4589" fill="#484848"></path>
37
+ <path d="M97,65.0000372 L97,66.0000372 L99,66.0000372 L99,65.0000372 L97,65.0000372 L97,65.0000372 L97,65.0000372 Z M99,66.0000372 L99,69.0000372 L97,69.0000372 L97,66.0000372 L96,66.0000372 L96,72.0000372 L97,72.0000372 L97,70.0000372 L99,70.0000372 L99,72.0000372 L100,72.0000372 L100,66.0000372 L99,66.0000372 L99,66.0000372 L99,66.0000372 Z M101,65.0000372 L101,72.0000372 L102,72.0000372 L104,72.0000372 L104,71.0000372 L102,71.0000372 L102,69.0000372 L104,69.0000372 L104,68.0000372 L102,68.0000372 L102,66.0000372 L104,66.0000372 L104,65.0000372 L102,65.0000372 L101,65.0000372 L101,65.0000372 L101,65.0000372 Z M104,66.0000372 L104,68.0000372 L105,68.0000372 L105,66.0000372 L104,66.0000372 L104,66.0000372 L104,66.0000372 Z M104,69.0000372 L104,71.0000372 L105,71.0000372 L105,69.0000372 L104,69.0000372 L104,69.0000372 L104,69.0000372 Z M107,65.0000372 L107,66.0000372 L110,66.0000372 L110,65.0000372 L107,65.0000372 L107,65.0000372 L107,65.0000372 Z M107,66.0000372 L106,66.0000372 L106,69.0000372 L106,70.8437872 L106,71.0000372 L107,71.0000372 L107,69.8437872 L107,69.0000372 L107,66.0000372 L107,66.0000372 L107,66.0000372 Z M107,71.0000372 L107,71.2500372 C106.57292,71.6771272 106.14585,72.1042072 105.71875,72.5312872 L102,76.2812872 L99.875,74.1562872 L98.46875,75.5625372 L100.59375,77.6875372 L102,79.0937872 L103.40625,77.6875372 L108.625,72.4375372 C108.48854,72.2933772 108.35624,72.1440572 108.21875,72.0000372 L109.59375,72.0000372 L110,72.0000372 L110,71.0000372 L108.625,71.0000372 L107.25,71.0000372 L107,71.0000372 L107,71.0000372 L107,71.0000372 Z" id="path4591" fill="#484848"></path>
38
+ <path d="M35,98.0000472 C33.9093,98.0000472 33,98.9093362 33,100.000046 L33,107.000046 C33,108.090746 33.9093,109.000046 35,109.000046 L43,109.000046 C44.0907,109.000046 45,108.090746 45,107.000046 L45,100.000046 C45,98.9093362 44.0907,98.0000472 43,98.0000472 L35,98.0000472 L35,98.0000472 L35,98.0000472 Z M35,99.0000462 L43,99.0000462 C43.554,99.0000462 44,99.4460362 44,100.000046 L44,107.000046 C44,107.554046 43.554,108.000046 43,108.000046 L35,108.000046 C34.446,108.000046 34,107.554046 34,107.000046 L34,100.000046 C34,99.4460362 34.446,99.0000462 35,99.0000462 L35,99.0000462 L35,99.0000462 Z M41.59375,100.593796 L38,104.187546 L36.59375,102.750046 L35.15625,104.156296 L36.59375,105.593796 L38,107.000046 L43,102.000046 L41.59375,100.593796 L41.59375,100.593796 L41.59375,100.593796 Z" id="path4593" fill="#484848"></path>
39
+ <path d="M97,98.0000472 C95.9093,98.0000472 95,98.9093362 95,100.000046 L95,107.000046 C95,108.090746 95.9093,109.000046 97,109.000046 L109,109.000046 C110.0907,109.000046 111,108.090746 111,107.000046 L111,100.000046 C111,98.9093362 110.0907,98.0000472 109,98.0000472 L97,98.0000472 L97,98.0000472 Z M97,99.0000462 L109,99.0000462 C109.554,99.0000462 110,99.4460362 110,100.000046 L110,107.000046 C110,107.554046 109.554,108.000046 109,108.000046 L97,108.000046 C96.446,108.000046 96,107.554046 96,107.000046 L96,100.000046 C96,99.4460362 96.446,99.0000462 97,99.0000462 L97,99.0000462 L97,99.0000462 Z M98.5,100.000046 C98.223,100.000046 98,100.223036 98,100.500046 C98.0807,101.077076 98.3111,100.996286 99,101.000046 L99,106.000046 L98.5,106.000046 C98.223,106.000046 98,106.223036 98,106.500046 C98,106.777046 98.223,107.000046 98.5,107.000046 L100.5,107.000046 C100.777,107.000046 101,106.777046 101,106.500046 C101,106.223036 100.88079,106.000046 100.5,106.000046 L100,106.000046 L100,101.000046 L100.5,101.000046 C100.777,101.000046 101,100.777046 101,100.500046 C101,100.223036 100.777,100.000046 100.5,100.000046 L98.5,100.000046 L98.5,100.000046 Z" id="path4595" fill="#484848"></path>
40
+ <path d="M332,95.0000472 L331,97.0000472 L329,97.0000472 L329,98.0000472 L330.5,98.0000472 L326,107.000046 L325,107.000046 L321,107.000046 C320.446,107.000046 320,106.554046 320,106.000046 L320,99.0000462 C320,98.4460372 320.446,98.0000472 321,98.0000472 L325,98.0000472 L329,98.0000472 L329,97.0000472 L321,97.0000472 C319.9093,97.0000472 319,97.9093472 319,99.0000462 L319,106.000046 C319,107.090736 319.9093,108.000046 321,108.000046 L325.5,108.000046 L324,111.000046 L326,111.000046 L327.5,108.000046 L329,108.000046 L329,107.000046 L328,107.000046 L332.5,98.0000472 L333,98.0000472 L333,97.0000472 L334,95.0000472 L332,95.0000472 L332,95.0000472 Z M334,97.2812972 L334,98.0000472 L334.71875,98.0000472 C334.5419,97.6977172 334.30232,97.4581472 334,97.2812972 L334,97.2812972 L334,97.2812972 Z M334,99.0000462 L334,100.000046 L335,100.000046 L335,99.0000462 L334,99.0000462 L334,99.0000462 Z M334,101.000046 L334,102.000046 L335,102.000046 L335,101.000046 L334,101.000046 L334,101.000046 Z M334,103.000046 L334,104.000046 L335,104.000046 L335,103.000046 L334,103.000046 L334,103.000046 Z M334,105.000046 L334,106.000046 L335,106.000046 L335,105.000046 L334,105.000046 L334,105.000046 Z M330,107.000046 L330,108.000046 L331,108.000046 L331,107.000046 L330,107.000046 L330,107.000046 Z M332,107.000046 L332,108.000046 L333,108.000046 L333,107.000046 L332,107.000046 L332,107.000046 Z M334,107.000046 L334,107.718796 C334.30232,107.541936 334.5419,107.302366 334.71875,107.000046 L334,107.000046 L334,107.000046 Z" id="path4597" fill="#484848"></path>
41
+ <path d="M1.0000001,98.0000472 C0.4460001,98.0000472 1.00000001e-07,98.4460472 1.00000001e-07,99.0000462 L1.00000001e-07,108.000046 C1.00000001e-07,108.554036 0.4460001,109.000046 1.0000001,109.000046 L13,109.000046 C13.554,109.000046 14,108.554036 14,108.000046 L14,99.0000462 C14,98.4460472 13.554,98.0000472 13,98.0000472 L1.0000001,98.0000472 L1.0000001,98.0000472 L1.0000001,98.0000472 Z M1.0000001,101.000046 L13,101.000046 L13,108.000046 L1.0000001,108.000046 L1.0000001,101.000046 L1.0000001,101.000046 L1.0000001,101.000046 Z M2.0000001,102.000046 L2.0000001,103.000046 L5.0000001,103.000046 L5.0000001,102.000046 L2.0000001,102.000046 L2.0000001,102.000046 L2.0000001,102.000046 Z M7,102.000046 L7,104.000046 L12,104.000046 L12,102.000046 L7,102.000046 L7,102.000046 L7,102.000046 Z M2.0000001,105.000046 L2.0000001,106.000046 L5.0000001,106.000046 L5.0000001,105.000046 L2.0000001,105.000046 L2.0000001,105.000046 L2.0000001,105.000046 Z M7,105.000046 L7,107.000046 L12,107.000046 L12,105.000046 L7,105.000046 L7,105.000046 L7,105.000046 Z" id="path4600" fill="#484848"></path>
42
+ <path d="M35,195.000036 C33.35351,195.000036 32,196.353536 32,198.000036 L32,199.000036 C32,200.646526 33.35351,202.000036 35,202.000036 L38,202.000036 L38.6875,201.312536 L38.15625,200.750036 L38.8125,200.031286 L39.8125,199.000036 L35.5,199.000036 C35.223,199.000036 35,198.777036 35,198.500036 C35,198.223026 35.223,198.000036 35.5,198.000036 L42.5,198.000036 C42.777,198.000036 43,198.223026 43,198.500036 C43,198.777036 42.777,199.000036 42.5,199.000036 L41.3125,199.000036 L42.3125,200.000036 L43,200.000036 C43.0353,200.000036 43.0594,199.972336 43.0937,199.968836 L43.9687,199.093836 C43.9727,199.059436 43.9999,199.035336 43.9999,199.000036 L43.9999,198.000036 C43.9999,197.446026 43.5539,197.000036 42.9999,197.000036 L39.9999,197.000036 L39.9999,196.000036 L42.9999,196.000036 C44.0906,196.000036 44.9999,196.909326 44.9999,198.000036 L44.9999,198.437536 L45.53115,198.968786 L45.96865,199.406286 C45.98765,199.270806 45.99985,199.140436 45.99985,199.000036 L45.99985,198.000036 C45.99985,196.353536 44.64634,195.000036 42.99985,195.000036 L39.99985,195.000036 L38.99985,196.000036 L37.99985,195.000036 L34.99985,195.000036 L35,195.000036 L35,195.000036 Z M35,196.000036 L38,196.000036 L38,197.000036 L35,197.000036 C34.446,197.000036 34,197.446026 34,198.000036 L34,199.000036 C34,199.554036 34.446,200.000036 35,200.000036 L38,200.000036 L38,201.000036 L35,201.000036 C33.9093,201.000036 33,200.090736 33,199.000036 L33,198.000036 C33,196.909326 33.9093,196.000036 35,196.000036 L35,196.000036 L35,196.000036 Z" id="path4604" fill="#484848"></path>
43
+ <path d="M3.0000001,195.000046 C1.3535101,195.000046 1.00000002e-07,196.353546 1.00000002e-07,198.000046 L1.00000002e-07,199.000046 C1.00000002e-07,200.646536 1.3535101,202.000046 3.0000001,202.000046 L6.0000001,202.000046 L7,201.000046 L8,202.000046 L11,202.000046 C12.64649,202.000046 14,200.646536 14,199.000046 L14,198.000046 C14,196.353546 12.64649,195.000046 11,195.000046 L8,195.000046 L7,196.000046 L6.0000001,195.000046 L3.0000001,195.000046 L3.0000001,195.000046 Z M3.0000001,196.000046 L6.0000001,196.000046 L6.0000001,197.000046 L3.0000001,197.000046 C2.4460001,197.000046 2.0000001,197.446036 2.0000001,198.000046 L2.0000001,199.000046 C2.0000001,199.554046 2.4460001,200.000046 3.0000001,200.000046 L6.0000001,200.000046 L6.0000001,201.000046 L3.0000001,201.000046 C1.9093001,201.000046 1.0000001,200.090746 1.0000001,199.000046 L1.0000001,198.000046 C1.0000001,196.909336 1.9093001,196.000046 3.0000001,196.000046 L3.0000001,196.000046 L3.0000001,196.000046 Z M8,196.000046 L11,196.000046 C12.0907,196.000046 13,196.909336 13,198.000046 L13,199.000046 C13,200.090746 12.0907,201.000046 11,201.000046 L8,201.000046 L8,200.000046 L11,200.000046 C11.554,200.000046 12,199.554046 12,199.000046 L12,198.000046 C12,197.446036 11.554,197.000046 11,197.000046 L8,197.000046 L8,196.000046 L8,196.000046 Z M3.5000001,198.000046 L10.5,198.000046 C10.777,198.000046 11,198.223036 11,198.500046 C11,198.777046 10.777,199.000046 10.5,199.000046 L3.5000001,199.000046 C3.2230001,199.000046 3.0000001,198.777046 3.0000001,198.500046 C3.0000001,198.223036 3.2230001,198.000046 3.5000001,198.000046 L3.5000001,198.000046 L3.5000001,198.000046 Z" id="path4606" fill="#484848"></path>
44
+ <path d="M67,128.968796 L67,135.468796 C67,136.150596 67.0818,136.756996 67.21875,137.312546 C67.35569,137.868086 67.57761,138.358636 67.90625,138.750046 C68.2349,139.141446 68.67101,139.441646 69.21875,139.656296 C69.78019,139.858306 70.45962,139.937546 71.28125,139.937546 C72.11655,139.937546 72.81356,139.858346 73.375,139.656296 C73.93643,139.441646 74.40765,139.141446 74.75,138.750046 C75.09233,138.358636 75.3318,137.868086 75.46875,137.312546 C75.60572,136.756996 75.65624,136.150596 75.65625,135.468796 L75.65625,128.968796 L73.15625,128.968796 L73.15625,135.281296 C73.15614,135.773706 73.11725,136.190396 73.06255,136.531296 C73.00775,136.859576 72.91823,137.129146 72.7813,137.343796 C72.64435,137.545806 72.45159,137.692906 72.2188,137.781296 C71.98601,137.869696 71.69984,137.937546 71.3438,137.937546 C70.98776,137.937546 70.67033,137.869646 70.43755,137.781296 C70.20475,137.692896 70.04324,137.545806 69.9063,137.343796 C69.78305,137.141776 69.67982,136.890826 69.62505,136.562546 C69.57025,136.221646 69.56255,135.804956 69.56255,135.312546 L69.56255,128.968796 L67.00005,128.968796 L67,128.968796 L67,128.968796 Z M66.5,141.000046 C66.223,141.000046 66,141.223036 66,141.500046 C66,141.777046 66.223,142.000046 66.5,142.000046 L76.5,142.000046 C76.777,142.000046 77,141.777046 77,141.500046 C77,141.223036 76.777,141.000046 76.5,141.000046 L66.5,141.000046 L66.5,141.000046 L66.5,141.000046 Z" id="path4608" fill="#484848"></path>
45
+ <path d="M290,160.000036 L290,167.000036 L291,167.000036 L293,167.000036 L293,166.000036 L291,166.000036 L291,161.000036 L293,161.000036 L293,160.000036 L291,160.000036 L290,160.000036 L290,160.000036 Z M293,161.000036 L293,164.000036 L293,166.000036 L294,166.000036 L294,164.000036 L294,161.000036 L293,161.000036 L293,161.000036 Z M295,160.000036 L295,167.000036 L296,167.000036 L296,160.000036 L295,160.000036 L295,160.000036 Z M297,160.000036 L297,165.000036 L298,165.000036 L298,160.000036 L297,160.000036 L297,160.000036 Z M298,165.000036 L298,167.000036 L300,167.000036 L300,165.000036 L298,165.000036 L298,165.000036 Z M300,165.000036 L301,165.000036 L301,160.000036 L300,160.000036 L300,165.000036 L300,165.000036 Z M291.96415,168.364206 L289.12599,171.202366 L291.96415,174.040526 L292.92203,173.118126 L291.04174,171.202366 L292.92203,169.322086 L291.96415,168.364206 L291.96415,168.364206 Z M295.65375,168.364206 L293.24132,174.040526 L295.08612,174.040526 L297.62935,168.368306 L295.65375,168.364206 L295.65375,168.364206 Z M298.77573,168.364206 L297.81785,169.322086 L299.69813,171.202366 L297.81785,173.118126 L298.77573,174.040526 L301.61389,171.202366 L298.77573,168.364206 L298.77573,168.364206 Z" id="path4610" fill="#484848"></path>
46
+ <path d="M71.5,353.000036 C69.5783,353.000036 68,354.578336 68,356.500036 L68,358.000036 L67,358.000036 C66.446,358.000036 66,358.446026 66,359.000036 L66,365.000036 C66,365.554036 66.446,366.000036 67,366.000036 L76,366.000036 C76.554,366.000036 77,365.554036 77,365.000036 L77,359.000036 C77,358.446026 76.554,358.000036 76,358.000036 L75,358.000036 L75,356.500036 C75,354.578336 73.4217,353.000036 71.5,353.000036 L71.5,353.000036 L71.5,353.000036 Z M71.5,354.000036 C72.885,354.000036 74,355.115036 74,356.500036 L74,358.000036 L69,358.000036 L69,356.500036 C69,355.115036 70.115,354.000036 71.5,354.000036 L71.5,354.000036 L71.5,354.000036 Z M71.5,361.000036 C72.32843,361.000036 73,361.671606 73,362.500036 C73,363.328456 72.32843,364.000036 71.5,364.000036 C70.67157,364.000036 70,363.328456 70,362.500036 C70,361.671606 70.67157,361.000036 71.5,361.000036 L71.5,361.000036 L71.5,361.000036 Z" id="path4612" fill="#484848"></path>
47
+ <path d="M32.5,288.000046 C32.22386,288.000046 32,288.223906 32,288.500046 C32,288.776186 32.22386,289.000046 32.5,289.000046 C32.77614,289.000046 33,288.776186 33,288.500046 C33,288.223906 32.77614,288.000046 32.5,288.000046 L32.5,288.000046 L32.5,288.000046 Z M34.5,288.000046 C34.22386,288.000046 34,288.223906 34,288.500046 C34,288.776186 34.22386,289.000046 34.5,289.000046 C34.77614,289.000046 35,288.776186 35,288.500046 C35,288.223906 34.77614,288.000046 34.5,288.000046 L34.5,288.000046 L34.5,288.000046 Z M36.5,288.000046 C36.22386,288.000046 36,288.223906 36,288.500046 C36,288.776186 36.22386,289.000046 36.5,289.000046 C36.77614,289.000046 37,288.776186 37,288.500046 C37,288.223906 36.77614,288.000046 36.5,288.000046 L36.5,288.000046 L36.5,288.000046 Z M38.5,288.000046 C38.22386,288.000046 38,288.223906 38,288.500046 C38,288.776186 38.22386,289.000046 38.5,289.000046 C38.77614,289.000046 39,288.776186 39,288.500046 C39,288.223906 38.77614,288.000046 38.5,288.000046 L38.5,288.000046 L38.5,288.000046 Z M40.5,288.000046 C40.22386,288.000046 40,288.223906 40,288.500046 C40,288.776186 40.22386,289.000046 40.5,289.000046 C40.77614,289.000046 41,288.776186 41,288.500046 C41,288.223906 40.77614,288.000046 40.5,288.000046 L40.5,288.000046 L40.5,288.000046 Z M44,288.000046 C42.9093,288.000046 42,288.909346 42,290.000046 L42,300.000046 C42,301.090746 42.9093,302.000046 44,302.000046 C45.0907,302.000046 46,301.090746 46,300.000046 L46,290.000046 C46,288.909346 45.0907,288.000046 44,288.000046 L44,288.000046 L44,288.000046 Z M44,289.000046 C44.554,289.000046 45,289.446046 45,290.000046 L45,300.000046 C45,300.554046 44.554,301.000046 44,301.000046 C43.446,301.000046 43,300.554046 43,300.000046 L43,290.000046 C43,289.446046 43.446,289.000046 44,289.000046 L44,289.000046 L44,289.000046 Z M32.5,290.000046 C32.22386,290.000046 32,290.223906 32,290.500046 C32,290.776186 32.22386,291.000046 32.5,291.000046 C32.77614,291.000046 33,290.776186 33,290.500046 C33,290.223906 32.77614,290.000046 32.5,290.000046 L32.5,290.000046 L32.5,290.000046 Z M40.5,290.000046 C40.22386,290.000046 40,290.223906 40,290.500046 C40,290.776186 40.22386,291.000046 40.5,291.000046 C40.77614,291.000046 41,290.776186 41,290.500046 C41,290.223906 40.77614,290.000046 40.5,290.000046 L40.5,290.000046 L40.5,290.000046 Z M32.5,292.000046 C32.22386,292.000046 32,292.223906 32,292.500046 C32,292.776186 32.22386,293.000046 32.5,293.000046 C32.77614,293.000046 33,292.776186 33,292.500046 C33,292.223906 32.77614,292.000046 32.5,292.000046 L32.5,292.000046 L32.5,292.000046 Z M40.5,292.000046 C40.22386,292.000046 40,292.223906 40,292.500046 C40,292.776186 40.22386,293.000046 40.5,293.000046 C40.77614,293.000046 41,292.776186 41,292.500046 C41,292.223906 40.77614,292.000046 40.5,292.000046 L40.5,292.000046 L40.5,292.000046 Z M32.5,294.000046 C32.22386,294.000046 32,294.223906 32,294.500046 C32,294.776186 32.22386,295.000046 32.5,295.000046 C32.77614,295.000046 33,294.776186 33,294.500046 C33,294.223906 32.77614,294.000046 32.5,294.000046 L32.5,294.000046 L32.5,294.000046 Z M40.5,294.000046 C40.22386,294.000046 40,294.223906 40,294.500046 C40,294.776186 40.22386,295.000046 40.5,295.000046 C40.77614,295.000046 41,294.776186 41,294.500046 C41,294.223906 40.77614,294.000046 40.5,294.000046 L40.5,294.000046 L40.5,294.000046 Z M32.5,296.000046 C32.22386,296.000046 32,296.223906 32,296.500046 C32,296.776186 32.22386,297.000046 32.5,297.000046 C32.77614,297.000046 33,296.776186 33,296.500046 C33,296.223906 32.77614,296.000046 32.5,296.000046 L32.5,296.000046 L32.5,296.000046 Z M34.5,296.000046 C34.22386,296.000046 34,296.223906 34,296.500046 C34,296.776186 34.22386,297.000046 34.5,297.000046 C34.77614,297.000046 35,296.776186 35,296.500046 C35,296.223906 34.77614,296.000046 34.5,296.000046 L34.5,296.000046 L34.5,296.000046 Z M36.5,296.000046 C36.22386,296.000046 36,296.223906 36,296.500046 C36,296.776186 36.22386,297.000046 36.5,297.000046 C36.77614,297.000046 37,296.776186 37,296.500046 C37,296.223906 36.77614,296.000046 36.5,296.000046 L36.5,296.000046 L36.5,296.000046 Z M38.5,296.000046 C38.22386,296.000046 38,296.223906 38,296.500046 C38,296.776186 38.22386,297.000046 38.5,297.000046 C38.77614,297.000046 39,296.776186 39,296.500046 C39,296.223906 38.77614,296.000046 38.5,296.000046 L38.5,296.000046 L38.5,296.000046 Z M40.5,296.000046 C40.22386,296.000046 40,296.223906 40,296.500046 C40,296.776186 40.22386,297.000046 40.5,297.000046 C40.77614,297.000046 41,296.776186 41,296.500046 C41,296.223906 40.77614,296.000046 40.5,296.000046 L40.5,296.000046 L40.5,296.000046 Z M34,298.000046 C32.9093,298.000046 32,298.909346 32,300.000046 C32,301.090746 32.9093,302.000046 34,302.000046 L39,302.000046 C40.0907,302.000046 41,301.090746 41,300.000046 C41,298.909346 40.0907,298.000046 39,298.000046 L34,298.000046 L34,298.000046 L34,298.000046 Z M34,299.000046 L39,299.000046 C39.554,299.000046 40,299.446046 40,300.000046 C40,300.554046 39.554,301.000046 39,301.000046 L34,301.000046 C33.446,301.000046 33,300.554046 33,300.000046 C33,299.446046 33.446,299.000046 34,299.000046 L34,299.000046 L34,299.000046 Z" id="path4614" fill="#484848"></path>
48
+ <polygon id="path4616" fill="#C4C4C4" points="288 101.000046 302 101.000046 302 106.000046 288 106.000046"></polygon>
49
+ <path d="M34.3298,256.021226 C33.04375,256.021226 32,257.064976 32,258.351026 L32,267.670236 C32,268.956296 33.04375,270.000046 34.3298,270.000046 L43.64901,270.000046 C44.93507,270.000046 45.97881,268.956296 45.97881,267.670236 L45.97881,258.351026 C45.97881,257.064976 44.93507,256.021226 43.64901,256.021226 L34.3298,256.021226 L34.3298,256.021226 Z M38.13394,258.357446 L39.92678,258.357446 L40.0451,258.569446 L43.68542,267.670236 L41.35562,267.670236 L40.48194,265.376846 L37.46047,265.376846 L36.5868,267.670236 L34.3298,267.670236 L37.97012,258.787866 L38.13394,258.357446 L38.13394,258.357446 Z" id="path4618" fill="#484848"></path>
50
+ <path d="M39.57171,264.236256 L38.4068,264.236256 C38.0853,264.236256 37.82436,263.975316 37.82436,263.653796 L38.96246,261.459126 L40.15532,263.653796 C40.15445,263.975316 39.89322,264.236256 39.57171,264.236256 L39.57171,264.236256 L39.57171,264.236256 Z" id="path4620" fill="#4B4B4B"></path>
51
+ <path d="M65,192.000046 L65,206.000046 L66,206.000046 L66,192.000046 L65,192.000046 L65,192.000046 Z M69.74999,191.583406 C68.88016,191.592406 67.98966,191.923736 67,192.958406 L67,201.000046 C70.96132,196.941396 73.94268,203.816026 78,200.000046 L78,191.958396 C74.96901,194.892396 72.35949,191.554876 69.74999,191.583436 L69.74999,191.583406 L69.74999,191.583406 Z" id="path4622" fill="#484848"></path>
52
+ <path d="M200.71875,137.218796 L199.75,138.125046 L201.65625,140.093796 L199.75,142.062546 L200.71875,143.062546 L202.625,141.093796 L204.59375,143.062546 L205.5625,142.062546 L203.625,140.093796 L205.5625,138.125046 L204.59375,137.218796 L202.625,139.125046 L200.71875,137.218796 L200.71875,137.218796 Z M192.5,140.000046 C192.223,140.000046 192,140.223036 192,140.500046 C192,140.777046 192.223,141.000046 192.5,141.000046 L198.5,141.000046 C198.777,141.000046 199,140.777046 199,140.500046 C199,140.223036 198.777,140.000046 198.5,140.000046 L192.5,140.000046 L192.5,140.000046 Z" id="path4624" fill="#484848"></path>
53
+ <path d="M231,34.0000472 L224,39.0000472 L230.99998,44.0000272 L231,40.6667072 C234.41666,40.6667072 236.61556,41.8867072 238,44.0000472 C238,39.0167172 234.39888,37.3333772 231,37.3333772 C231.00002,36.4825972 231.00001,34.7194972 231,34.0000472 L231,34.0000472 L231,34.0000472 Z" id="path4626" fill="#484848"></path>
54
+ <path d="M416.99999,162.000046 L416.99999,164.000046 L429,164.000046 L429,162.000046 L416.99999,162.000046 L416.99999,162.000046 L416.99999,162.000046 Z M416.99999,165.000046 L416.99999,167.000036 L429,167.000036 L429,165.000046 L416.99999,165.000046 L416.99999,165.000046 L416.99999,165.000046 Z M416.99999,168.000046 L416.99999,170.000046 L429,170.000046 L429,168.000046 L416.99999,168.000046 L416.99999,168.000046 L416.99999,168.000046 Z M416.99999,171.000036 L416.99999,173.000046 L429,173.000046 L429,171.000036 L416.99999,171.000036 L416.99999,171.000036 L416.99999,171.000036 Z" id="path4628" fill="#484848"></path>
55
+ <path d="M390,162.000046 L390,164.000046 L397,164.000046 L397,162.000046 L390,162.000046 L390,162.000046 L390,162.000046 Z M386,165.000046 L386,167.000036 L397,167.000036 L397,165.000046 L386,165.000046 L386,165.000046 L386,165.000046 Z M388,168.000046 L388,170.000046 L397,170.000046 L397,168.000046 L388,168.000046 L388,168.000046 L388,168.000046 Z M385,171.000046 L385,173.000046 L397,173.000046 L397,171.000046 L385,171.000046 L385,171.000046 L385,171.000046 Z" id="path4630" fill="#484848"></path>
56
+ <path d="M354.8683,161.960536 L354.8683,163.986876 L362.97366,163.986876 L362.97366,161.960536 L354.8683,161.960536 L354.8683,161.960536 L354.8683,161.960536 Z M352.84196,165.000046 L352.84196,167.026376 L365,167.026376 L365,165.000046 L352.84196,165.000046 L352.84196,165.000046 L352.84196,165.000046 Z M354.8683,168.039546 L354.8683,170.065886 L362.97366,170.065886 L362.97366,168.039546 L354.8683,168.039546 L354.8683,168.039546 L354.8683,168.039546 Z M352.84196,171.079056 L352.84196,173.105396 L365,173.105396 L365,171.079056 L352.84196,171.079056 L352.84196,171.079056 L352.84196,171.079056 Z" id="path4632" fill="#484848"></path>
57
+ <path d="M321,162.000046 L321,164.000046 L328,164.000046 L328,162.000046 L321,162.000046 L321,162.000046 L321,162.000046 Z M321,165.000046 L321,167.000046 L332,167.000046 L332,165.000046 L321,165.000046 L321,165.000046 L321,165.000046 Z M321,168.000046 L321,170.000046 L330,170.000046 L330,168.000046 L321,168.000046 L321,168.000046 L321,168.000046 Z M321,171.000046 L321,173.000046 L333,173.000046 L333,171.000046 L321,171.000046 L321,171.000046 L321,171.000046 Z" id="path4634" fill="#484848"></path>
58
+ <path d="M12.143585,32.0543972 L8.016629,37.0635772 L3.9286105,32.1269972 C3.9286105,32.1269972 3.0331407,32.1538972 3.0331407,33.1796472 C3.0331407,35.3947272 4.5842554,37.4971272 6.303554,39.1325772 L4.5126145,41.3104872 L4.6293592,41.4556772 C4.5396562,41.4466772 4.4502616,41.4193772 4.3568209,41.4193772 C2.9813746,41.4193772 1.8650766,42.4601172 1.8650766,43.7424772 C1.8650766,45.0248172 2.9813746,46.0655772 4.3568209,46.0655772 C5.7322672,46.0655772 6.8485652,45.0248172 6.8485652,43.7424772 C6.8485652,43.0490272 6.5103101,42.4264372 5.9920229,42.0001372 C6.4729338,41.6969772 7.205509,41.2105872 8.016573,40.5845072 C8.848812,41.2291572 9.609419,41.7521472 10.118978,42.0727372 C9.640562,42.4967172 9.340309,43.0792172 9.340309,43.7424772 C9.340309,45.0248172 10.456607,46.0655772 11.832054,46.0655772 C13.2075,46.0655772 14.323798,45.0248172 14.323798,43.7424772 C14.323798,42.4601172 13.208743,41.4182072 11.832054,41.4193772 C11.768514,41.4193772 11.699676,41.4510772 11.637389,41.4556772 L11.676259,41.4193772 L9.76851,39.1325672 C11.464149,37.5238272 12.999995,35.4559772 12.999995,33.2885272 C12.999995,32.1699572 12.143462,32.0543872 12.143462,32.0543872 L12.143585,32.0543972 L12.143585,32.0543972 Z M4.3568863,42.5809372 C5.0446001,42.5809372 5.6027585,43.1013072 5.6027585,43.7424772 C5.6027585,44.3836572 5.0446001,44.9040272 4.3568863,44.9040272 C3.6691632,44.9040272 3.1110142,44.3836572 3.1110142,43.7424772 C3.1110142,43.1013072 3.6691632,42.5809372 4.3568863,42.5809372 L4.3568863,42.5809372 L4.3568863,42.5809372 Z M11.832119,42.5809372 C12.519833,42.5809372 13.077991,43.1013072 13.077991,43.7424772 C13.077991,44.3836572 12.519833,44.9040272 11.832119,44.9040272 C11.144396,44.9040272 10.586247,44.3836572 10.586247,43.7424772 C10.586247,43.1013072 11.144396,42.5809372 11.832119,42.5809372 L11.832119,42.5809372 L11.832119,42.5809372 Z" id="path4636" fill="#484848"></path>
59
+ <path d="M135,223.968786 C131.13483,223.968786 128,227.115916 128,231.000036 C128,234.884156 131.13483,238.031286 135,238.031286 C138.86633,238.031286 142,234.884156 142,231.000036 C142,227.115916 138.86633,223.968786 135,223.968786 L135,223.968786 L135,223.968786 Z M135,225.000036 C138.31371,225.000036 141,227.686326 141,231.000036 C141,234.313746 138.31371,237.000036 135,237.000036 C131.68629,237.000036 129,234.313746 129,231.000036 C129,227.686326 131.68629,225.000036 135,225.000036 L135,225.000036 L135,225.000036 Z M132.65625,228.000036 C131.86867,228.000036 131.25,228.646086 131.25,229.437536 C131.25,230.228986 131.86867,230.875036 132.65625,230.875036 C133.44386,230.875036 134.09375,230.228986 134.09375,229.437536 C134.09375,228.646086 133.44386,228.000036 132.65625,228.000036 L132.65625,228.000036 L132.65625,228.000036 Z M137.34375,228.000036 C136.55615,228.000036 135.90625,228.646086 135.90625,229.437536 C135.90625,230.228986 136.55615,230.875036 137.34375,230.875036 C138.13134,230.875036 138.75,230.228986 138.75,229.437536 C138.75,228.646086 138.13134,228.000036 137.34375,228.000036 L137.34375,228.000036 L137.34375,228.000036 Z M132.11156,232.775166 C132.07496,232.929566 132.03056,233.090976 132.03056,233.251966 C132.03056,234.811946 134.45345,235.076166 135.00001,235.062536 C135.54657,235.048936 137.96946,234.811946 137.96946,233.251966 C137.96946,233.090976 137.92506,232.929566 137.88846,232.775166 C136.58137,234.018536 135.25095,233.804796 135.00001,233.832906 C134.74907,233.861006 132.97055,233.785506 132.11157,232.775166 L132.11156,232.775166 L132.11156,232.775166 Z" id="path4638" fill="#484848"></path>
60
+ <path d="M258.806081,162.531051 C257.250056,162.531051 255.987203,163.851759 255.987203,165.208016 C255.987203,166.564263 257.250056,167.664991 258.806081,167.664991 C258.853967,167.664991 258.89181,167.665911 258.938142,167.664991 C258.730954,169.03721 258.018132,170.808689 255.987129,172.578952 C257.396568,172.578952 261.624884,170.121966 261.624884,165.208016 C261.624884,163.851759 260.362031,162.531051 258.806007,162.531051 L258.806081,162.531051 L258.806081,162.531051 Z M267.262714,162.558536 C265.70669,162.558536 264.443836,163.851738 264.443836,165.207995 C264.443836,166.564252 265.70669,167.664981 267.262714,167.664981 C267.313454,167.664981 267.345589,167.6659 267.394775,167.664981 C267.187587,169.018775 266.478994,170.766596 264.443762,172.540538 C265.89689,172.540538 270.081518,170.121956 270.081518,165.207995 C270.081518,163.851738 268.818664,162.558536 267.26264,162.558536 L267.262714,162.558536 L267.262714,162.558536 Z" id="path4640" fill="#484848"></path>
61
+ <path d="M39,224.000046 C35.13483,224.000046 32,227.134876 32,231.000036 C32,234.865216 35.13483,238.000046 39,238.000046 C42.86633,238.000046 46,234.865216 46,231.000036 C46,227.134876 42.86633,224.000046 39,224.000046 L39,224.000046 L39,224.000046 Z M41.47916,226.296926 C42.10689,226.267126 42.81296,226.509836 43.66666,227.098996 C42.3915,227.098996 41.55762,228.405656 40.78645,230.015666 L42.28125,230.015666 C42.53908,230.015666 42.71875,230.258916 42.71875,230.526076 L41.55208,232.166706 L39.80208,232.166706 C38.60975,234.729876 37.22316,236.911246 34.33333,234.901076 C35.66566,234.898076 36.51325,233.354366 37.32291,231.583386 L37.54166,231.109406 C38.55316,228.849296 39.596,226.386656 41.47916,226.296926 L41.47916,226.296926 L41.47916,226.296926 Z" id="path4642" fill="#484848"></path>
62
+ <polygon id="path4644" fill="#484848" points="6.0000001 5.00004765 6.0000001 6.87504765 4.6250001 8.34379765 6.0000001 9.81254715 6.0000001 11.7187972 2.3750001 8.34379765"></polygon>
63
+ <polygon id="path4646" fill="#484848" points="7 5.00004765 10.6875 8.37504765 7 11.6562972 7 9.75004715 8.4375 8.34379765 7 6.81254765"></polygon>
64
+ <path d="M7.400192,320.000046 C4.8690326,320.000046 2.8168342,322.052236 2.8168342,324.583396 L5.1085131,324.583396 C5.1085131,323.318386 6.1351853,322.291716 7.400192,322.291716 C8.665199,322.291716 9.691872,323.318386 9.691872,324.583396 C9.691872,325.848396 8.665199,326.875076 7.400192,326.875076 C6.5986683,326.882076 6.1613798,327.454126 6.2543526,328.020926 L6.2543526,329.023526 L6.2543526,329.166756 C6.2543526,329.799256 6.7676892,330.312596 7.400192,330.312596 C8.032696,330.312596 8.546031,329.799256 8.546031,329.166756 L8.546031,329.023526 C10.522604,328.513626 11.98355,326.718086 11.98355,324.583396 C11.98355,322.052236 9.931351,320.000046 7.400192,320.000046 L7.400192,320.000046 L7.400192,320.000046 Z M7.400192,331.004466 C6.5170995,331.004466 5.8003858,331.721176 5.8003858,332.604276 C5.8003858,333.487356 6.5170995,334.204076 7.400192,334.204076 C8.283286,334.204076 8.999998,333.487356 8.999998,332.604276 C8.999998,331.721176 8.283286,331.004466 7.400192,331.004466 L7.400192,331.004466 L7.400192,331.004466 Z" id="path4648" fill="#484848"></path>
65
+ <path d="M34.34264,355.370996 C34.85733,354.857556 35.69165,354.857556 36.20508,355.370996 L39,358.159616 L41.79492,355.370996 C42.30961,354.857556 43.14393,354.857556 43.65736,355.370996 C44.17205,355.884436 44.17205,356.716236 43.65736,357.230916 L40.86244,360.020806 L43.65736,362.809446 C44.17205,363.322856 44.17205,364.155926 43.65736,364.669366 C43.14267,365.182796 42.30835,365.182796 41.79492,364.669366 L39,361.879476 L36.20508,364.669366 C35.69039,365.182796 34.85607,365.182796 34.34264,364.669366 C33.82795,364.155926 33.82795,363.322856 34.34264,362.809446 L37.13756,360.020806 L34.34264,357.230916 C33.82795,356.716236 33.82795,355.883176 34.34264,355.370996 L34.34264,355.370996 L34.34264,355.370996 Z" id="path4651" fill="#484848"></path>
66
+ <path d="M135.90909,352.000036 L135.90909,359.080686 L140.60507,355.503666 L135.90909,352.000036 L135.90909,352.000036 Z M134.7351,354.329666 C131.489,354.329666 128.86513,356.990236 128.86513,360.236326 C128.86513,363.482416 131.489,366.106296 134.7351,366.106296 C137.98119,366.106296 140.60507,363.482416 140.60507,360.236326 L140.60507,360.199726 L138.25708,360.199726 C138.25708,362.145026 136.68041,363.721706 134.7351,363.721706 C132.78979,363.721706 131.21312,362.145026 131.21312,360.199726 C131.21312,358.254416 132.78979,356.677746 134.7351,356.677746 C135.14951,356.677746 135.54045,356.767546 135.90909,356.897876 L135.90909,354.476506 C135.53224,354.400206 135.13425,354.329756 134.7351,354.329756 L134.7351,354.329666 L134.7351,354.329666 Z" id="path4653" fill="#484848"></path>
67
+ <path d="M167.63108,224.607156 C163.94975,224.607156 160.96443,227.323486 160.96443,230.648796 C160.96443,233.115456 162.61376,235.218116 164.96442,236.148786 L164.96442,236.648786 L162.29776,236.648786 L162.29776,235.982116 C162.29776,235.612786 162.00043,235.315456 161.63109,235.315456 C161.26176,235.315456 160.96443,235.612786 160.96443,235.982116 L160.96443,237.315446 C160.96443,237.684776 161.26176,237.982116 161.63109,237.982116 L165.63108,237.982116 C165.99908,237.982116 166.29775,237.683446 166.29775,237.315446 L166.29775,236.523786 L166.29775,235.982116 L166.29775,235.148786 C164.74709,234.486126 163.63109,232.743456 163.63109,230.648796 C163.63109,227.988816 165.42175,225.815486 167.63108,225.815486 C169.84041,225.815486 171.63107,227.988816 171.63107,230.648796 C171.63107,232.743456 170.51507,234.484786 168.96441,235.148786 L168.96441,235.982116 L168.96441,236.523786 L168.96441,237.315446 C168.96441,237.683446 169.26307,237.982116 169.63107,237.982116 L173.63106,237.982116 C173.72346,237.982116 173.80125,237.974116 173.88106,237.940516 C174.12032,237.839316 174.29773,237.591516 174.29773,237.315516 L174.29773,235.982186 C174.29773,235.612856 174.0004,235.315516 173.63106,235.315516 C173.26173,235.315516 172.9644,235.612856 172.9644,235.982186 L172.9644,236.648846 L170.29774,236.648846 L170.29774,236.148846 C172.6484,235.218186 174.29773,233.115526 174.29773,230.648866 C174.29773,227.323556 171.31374,224.607226 167.63108,224.607226 L167.63108,224.607156 L167.63108,224.607156 Z" id="path4655" fill="#484848"></path>
68
+ <path d="M263,224.000036 C259.13484,224.000036 256,227.134876 256,231.000036 C256,234.865196 259.13484,238.000036 263,238.000036 C266.86516,238.000036 270,234.865196 270,231.000036 C270,227.134876 266.86516,224.000036 263,224.000036 L263,224.000036 L263,224.000036 Z M263,225.000036 C263.57563,225.000036 264.12928,225.098736 264.65625,225.250036 C264.43939,225.274036 264.25116,225.291436 264.4375,225.312536 C265.04642,225.315536 264.3099,225.351536 264.25,225.437536 C264.13606,225.520436 264.1666,225.463536 264.09375,225.562536 C263.98274,225.567536 263.93032,225.587336 263.90625,225.593736 C263.96905,225.606036 264.1229,225.622536 264.21875,225.624936 C264.4867,225.571136 264.76208,225.471036 265.03125,225.374936 C265.08035,225.392636 265.13898,225.387236 265.1875,225.406136 C265.1305,225.424536 265.07921,225.477136 265.03125,225.468636 C264.6825,225.727256 265.73338,225.441136 265.625,225.937386 C265.7154,225.972386 265.6676,225.770066 265.6562,225.624886 C267.64036,226.603656 268.99995,228.637816 268.99995,230.999886 C268.99995,233.964876 266.85763,236.420636 264.0312,236.906136 C264.0332,236.871036 264.0302,236.849736 264.0312,236.812436 C263.9705,236.502026 264.3825,236.660056 264.4062,236.374936 C264.26002,236.274386 264.22525,236.157846 264.2187,236.031186 C264.196,235.628506 264.37645,235.681916 264.2187,236.031186 C264.241,236.073786 264.2903,236.102986 264.3437,236.124886 C264.4175,236.145786 264.48935,236.234376 264.56245,236.156086 C264.97266,235.822396 264.68702,235.080046 265.2812,234.999836 C265.75256,234.835836 265.42479,234.124286 265.7187,233.812336 C266.25332,233.336126 265.4636,232.913846 265.0312,233.031086 C264.9753,232.945386 264.75767,232.750996 264.5312,232.968586 C264.68977,232.803686 264.5232,232.735346 264.2812,232.937386 C264.52587,232.760306 264.53968,232.463616 264.2187,232.281136 C264.1679,232.282126 264.11363,232.277136 264.0937,232.312336 C264.0299,232.243636 263.86476,232.251536 263.81245,232.343536 C263.80235,232.263136 263.78065,232.184096 263.74995,232.156036 C263.62034,232.008496 263.58306,232.043396 263.56245,232.124836 C263.57365,232.077436 263.56445,232.017276 263.56245,231.968586 C263.2371,231.896386 262.60945,231.474206 262.56245,231.968586 C262.56445,231.765726 262.50385,231.731836 262.46875,231.781086 C262.49635,231.747886 262.53705,231.719586 262.59375,231.687386 C262.35818,231.733786 262.04625,232.007496 262.03125,232.249886 C262.09605,232.665726 261.60741,233.039646 261.84375,233.312386 C261.82525,233.309386 261.80155,233.322686 261.78125,233.312386 C261.99116,233.725626 262.22533,234.051046 262.4375,234.374886 C262.66781,234.435286 262.88735,234.519636 263,234.687386 C262.82778,234.670786 262.73072,234.642286 262.59375,234.624886 C262.76693,234.919786 262.9087,235.226126 262.96875,235.624886 C263.03825,236.167916 263.15898,236.625176 263.28125,236.999886 C263.18935,237.003886 263.09297,236.999886 263,236.999886 C259.68629,236.999886 257,234.313586 257,230.999886 C257,229.534286 257.53344,228.198136 258.40625,227.156136 C258.74831,227.135036 259.18055,227.284186 259.15625,227.593636 C259.18695,227.638236 259.21015,227.636436 259.21875,227.624836 C259.14465,227.821246 258.97896,227.998976 259.31245,228.187336 C259.54002,228.264936 259.30745,228.093436 259.18745,228.374836 C258.99859,228.358736 258.64,228.943716 258.6562,229.249836 C258.6502,229.532076 258.80783,229.725446 259.0312,229.812336 C258.86475,229.875236 258.9517,230.304066 259.1249,230.437336 C259.3589,231.028616 259.2035,230.217416 259.0624,230.031086 C259.1808,229.612406 259.34894,230.522396 259.5624,230.624836 C259.6083,231.025046 259.86894,231.217236 260.2499,231.343586 C260.4223,231.350586 260.67686,231.433986 260.8124,231.343586 C260.7552,231.437486 260.7581,231.544686 260.9061,231.562336 C260.9558,231.578936 261.08925,231.634236 261.12485,231.562336 C261.16165,231.579836 261.22633,231.582136 261.2811,231.531136 C261.3243,231.511336 261.3172,231.543536 261.3436,231.531136 C261.22495,231.619636 261.09681,231.762686 261.3748,231.812386 C261.55677,231.934366 261.59431,231.213566 261.3436,231.343636 C261.07307,231.267236 261.02536,231.445486 261.0936,231.531136 C260.70937,231.631426 261.57867,230.727366 261.0624,230.812386 C260.91604,231.176956 260.33325,231.255516 260.34365,230.749886 C260.41695,230.637606 260.40125,230.454806 260.34365,230.312386 C260.41985,230.365986 260.49193,230.259986 260.59365,230.124886 C260.64445,229.922876 261.0523,230.007266 261.15615,229.999886 C261.14915,229.991886 261.14125,229.980886 261.12495,229.968686 C261.47289,229.793506 261.8328,230.012186 261.8437,230.406186 C261.9164,230.465386 261.9236,230.265336 261.9374,230.249936 C261.59469,229.659296 262.53745,229.639286 262.46865,229.156186 C262.55465,229.226486 262.62962,228.900636 262.9374,228.812436 C262.953,228.751236 263.4782,228.559986 263.4999,228.249936 L263.5311,228.187436 C263.4534,228.772366 264.10013,227.902396 263.6561,228.062436 C263.17268,228.314116 263.6375,227.898186 263.87485,227.906186 C264.10875,228.009336 265.00917,227.576286 264.4686,227.531186 C264.31999,227.535186 264.4883,226.692116 264.0936,227.156186 C263.91159,227.143186 263.87703,226.634706 263.49985,226.874936 C263.28677,227.232666 263.07606,227.684046 262.7186,227.843686 C262.82411,227.495536 262.54302,227.470136 262.2811,227.374936 C261.78073,227.154846 262.50953,226.837266 262.68735,226.718686 C263.11333,226.767486 262.76775,226.485586 263.0936,226.531186 C263.35325,226.646856 263.89106,226.072516 263.4061,226.281186 C263.06517,226.665956 263.18762,225.986426 262.9061,226.124936 C262.8473,226.487516 262.35661,226.442286 261.9686,226.406186 C261.75959,226.631126 261.78239,226.458586 261.56235,226.437386 C261.33287,226.381686 260.93696,226.229986 260.5311,226.312386 C260.10319,226.327686 259.75403,226.442926 259.43735,226.687386 C259.62181,226.542046 259.80802,226.403046 259.74985,226.343636 C259.61181,226.314236 259.48123,226.285936 259.3436,226.281136 C260.3594,225.493076 261.6149,225.000036 263,225.000036 L263,225.000036 L263,225.000036 Z M262.59375,234.625036 C262.54525,234.542336 262.49063,234.456126 262.4375,234.375036 C261.71692,234.186016 260.91179,234.410936 262.59375,234.625036 L262.59375,234.625036 L262.59375,234.625036 Z M263.9375,225.343786 C263.82824,225.345786 263.68569,225.393286 263.78125,225.468786 L263.90625,225.468786 C264.12757,225.382986 264.04681,225.341966 263.93745,225.343786 L263.9375,225.343786 L263.9375,225.343786 Z M263.59375,225.687536 C263.4449,225.707736 263.44185,225.850636 263.75,225.781236 C263.757,225.847236 263.9202,225.756736 263.9375,225.812436 C264.42339,225.758436 264.0206,225.659736 263.78125,225.718736 C263.70955,225.677936 263.64337,225.680736 263.59375,225.687536 L263.59375,225.687536 L263.59375,225.687536 Z M263.65625,225.843786 C263.64425,225.830686 263.61985,225.847786 263.53125,225.906286 C262.99338,226.323856 264.01399,225.982986 264.125,226.250036 C264.5,226.512066 264.0339,226.446596 263.84375,226.562536 C263.79425,226.572736 263.80705,226.588236 263.78125,226.593736 C263.90031,226.600736 264.0676,226.653936 264.09375,226.781236 L264.15625,226.812436 C264.46928,226.906236 264.0161,226.541746 264.40625,226.718736 C264.39085,226.463596 264.43505,226.456986 264.6875,226.499986 C264.6715,226.133536 264.10336,225.836226 263.71875,225.937486 C263.48542,226.148036 263.69225,225.882986 263.65625,225.843786 L263.65625,225.843786 L263.65625,225.843786 Z M263.1875,225.874986 C263.1407,225.888286 263.0946,225.914586 263.0625,225.968686 C263.086,225.969686 263.1001,226.001786 263.125,225.968686 C263.45551,225.942386 263.32782,225.835106 263.1875,225.874986 L263.1875,225.874986 L263.1875,225.874986 Z M261.625,225.906186 C261.44526,225.910186 261.18741,225.983486 261.1875,226.156186 C261.30386,226.196186 261.41259,226.046586 261.53125,226.031186 C261.88939,225.957086 261.80479,225.902356 261.62495,225.906186 L261.625,225.906186 L261.625,225.906186 Z M262.84375,225.906186 C262.72163,225.929286 262.59001,225.990586 262.71875,226.031186 L262.74995,226.062386 L262.84365,226.031186 C263.07287,225.897866 262.96577,225.883116 262.84365,225.906186 L262.84375,225.906186 L262.84375,225.906186 Z M261.9375,225.968686 C261.65095,225.981486 261.32143,226.182536 261.75,226.218686 C261.54345,226.281886 261.28584,226.231786 261.6875,226.343686 C261.93054,226.313486 262.72653,226.274286 262.3125,226.124936 C262.47438,225.869736 262.282,226.033136 262.15625,226.031236 C262.10195,225.986636 262.03302,225.964436 261.9375,225.968736 L261.9375,225.968686 L261.9375,225.968686 Z M262.65625,226.218686 C262.62685,226.225686 262.58855,226.259786 262.56255,226.312386 C262.79756,226.342886 262.74442,226.198456 262.65625,226.218686 L262.65625,226.218686 L262.65625,226.218686 Z M265.625,226.218686 C265.5021,226.283386 265.31636,226.785556 265.625,226.843686 C265.82141,226.976656 265.6593,226.484916 265.6875,226.343686 C265.6795,226.235856 265.666,226.197126 265.625,226.218686 L265.625,226.218686 L265.625,226.218686 Z M260.96875,226.531186 C261.00135,226.527186 261.01285,226.524186 260.99995,226.562386 C260.66417,226.673216 260.87091,226.544286 260.96875,226.531186 L260.96875,226.531186 L260.96875,226.531186 Z M263.28125,226.593686 C263.14995,226.567086 262.88422,226.793306 263.28125,226.718686 L263.34375,226.718686 C263.35485,226.637386 263.32505,226.602566 263.28125,226.593686 L263.28125,226.593686 L263.28125,226.593686 Z M259.21875,227.374936 C259.22475,227.389236 259.24865,227.388936 259.24995,227.406136 C259.25795,227.449636 259.22645,227.491136 259.21875,227.531136 C259.21575,227.466836 259.20975,227.407496 259.21875,227.374886 L259.21875,227.374936 L259.21875,227.374936 Z M259,227.562536 C258.991,227.568536 258.993,227.583536 259,227.625036 C259.0968,227.638836 259.0264,227.543536 259,227.562536 L259,227.562536 L259,227.562536 Z M264.5625,227.843786 C264.4644,227.849786 264.21435,228.138836 264.34375,228.125036 C264.47712,228.151636 264.98679,228.115036 264.59375,227.968786 C264.61475,227.882886 264.5947,227.841816 264.56255,227.843786 L264.5625,227.843786 L264.5625,227.843786 Z M259.03125,228.062536 C259.00945,228.061536 259.00675,228.102436 259.06245,228.187536 C259.37168,228.352646 259.09645,228.066266 259.03125,228.062536 L259.03125,228.062536 L259.03125,228.062536 Z M263.90625,228.250036 C263.88785,228.249326 263.85525,228.260136 263.81255,228.281236 C263.91195,228.326736 263.96151,228.252136 263.90625,228.250036 L263.90625,228.250036 L263.90625,228.250036 Z M264.03125,228.281236 C263.89432,228.318936 263.64777,228.421446 263.59375,228.531236 C263.69688,228.531056 263.777,228.429036 263.875,228.406236 C264.19549,228.253356 264.16818,228.243556 264.03125,228.281236 L264.03125,228.281236 L264.03125,228.281236 Z M257.65625,229.281236 C257.64465,229.274236 257.60105,229.306936 257.56255,229.374936 C257.60395,229.564436 257.69104,229.302136 257.65625,229.281236 L257.65625,229.281236 L257.65625,229.281236 Z M259.15625,229.812486 C259.20825,229.816486 259.23955,229.874986 259.28125,229.906186 C259.22885,229.869886 259.19565,229.826786 259.15625,229.812486 L259.15625,229.812486 L259.15625,229.812486 Z M261.59375,230.624986 C261.55525,230.634986 261.54145,230.658486 261.53125,230.687486 C261.62585,230.643486 262.02336,230.838026 262.21875,230.906236 C262.70729,230.926636 261.86363,230.558026 261.59375,230.624986 L261.59375,230.624986 L261.59375,230.624986 Z M262.5,230.906236 C262.4818,230.904236 262.503,230.929936 262.5312,230.999936 C262.33544,231.094936 262.28504,231.033836 262.5624,231.062436 C262.624,231.085936 262.6577,231.087436 262.6561,231.062436 C263.03924,231.102036 262.7227,230.817746 262.6249,230.999936 C262.5941,230.951536 262.5252,230.908436 262.4999,230.906236 L262.5,230.906236 L262.5,230.906236 Z M263.03125,231.000036 C263.00815,231.000276 262.99355,231.028536 262.96875,231.062536 C263.01295,231.077136 263.04295,231.065536 263.06245,231.062536 C263.05345,231.044336 263.05745,230.999736 263.03125,231.000036 L263.03125,231.000036 L263.03125,231.000036 Z M261.0625,231.062536 C261.1275,231.035336 261.0929,231.145136 261.0625,231.250036 C261.0494,231.162236 260.9518,231.203836 260.875,231.281236 C260.8914,231.254336 260.9004,231.229336 260.9062,231.187536 C260.9999,231.115736 261.03158,231.075416 261.06245,231.062536 L261.0625,231.062536 L261.0625,231.062536 Z M262,231.062536 C261.992,231.065536 261.988,231.074636 262,231.093736 C262.23882,231.147936 262.0924,231.057936 262.0312,231.062536 C262.021,231.063036 262.0082,231.059536 262,231.062536 L262,231.062536 L262,231.062536 Z M263.46875,231.812536 C263.45865,231.818536 263.42345,231.809536 263.40625,231.843736 C263.44585,231.904836 263.46725,231.850736 263.46875,231.812536 L263.46875,231.812536 L263.46875,231.812536 Z M261.28125,231.843736 C261.27085,231.860636 261.29185,231.895736 261.4375,231.999986 C261.79928,232.025086 261.31239,231.792966 261.28125,231.843736 L261.28125,231.843736 L261.28125,231.843736 Z M261.625,232.000036 C261.5828,232.016736 261.5858,232.039536 261.6562,232.093736 C261.7361,232.192236 261.80072,232.032136 261.87495,232.000036 C261.77835,231.984036 261.67903,231.978736 261.62495,232.000036 L261.625,232.000036 L261.625,232.000036 Z M261.90625,232.000036 C261.93315,232.001036 261.94415,232.022336 261.96875,232.093736 C262.08959,232.065136 262.01925,232.022636 261.90625,232.000036 L261.90625,232.000036 L261.90625,232.000036 Z M262.5,232.062536 C262.5151,232.078936 262.5447,232.078536 262.5625,232.093736 C262.5401,232.089736 262.5257,232.095736 262.5,232.093736 C262.494,232.083736 262.505,232.072336 262.5,232.062536 L262.5,232.062536 L262.5,232.062536 Z M263.21875,232.156236 C263.31055,232.152236 263.41291,232.162236 263.53125,232.187436 C262.59853,232.791696 262.57625,232.183436 263.21875,232.156236 L263.21875,232.156236 L263.21875,232.156236 Z M264.09375,232.343736 C264.11465,232.377636 264.13075,232.408936 264.09375,232.468736 C264.08375,232.428036 264.08055,232.383536 264.09375,232.343736 L264.09375,232.343736 L264.09375,232.343736 Z M263.8125,232.437436 C263.8205,232.478136 263.8348,232.506636 263.875,232.562436 C263.877,232.579836 263.8938,232.596936 263.9062,232.593636 C263.9436,232.583636 263.9963,232.515636 263.9999,232.562436 C264.0325,232.532436 264.0757,232.525736 264.0936,232.499936 C264.1058,232.530636 264.1331,232.552436 264.1561,232.562436 C264.0775,232.586736 263.99405,232.583836 263.9061,232.593636 C263.34716,232.795126 263.9326,232.637836 263.8124,232.437386 L263.8125,232.437436 L263.8125,232.437436 Z" id="path4657" fill="#484848"></path>
69
+ <path d="M227.5,1.00004765 C226.669,1.00004765 226,1.66904765 226,2.50004765 L226,3.00003765 L236,3.00003765 L236,2.50004765 C236,1.66904765 235.331,1.00004765 234.5,1.00004765 L227.5,1.00004765 L227.5,1.00004765 Z M225,4.00004765 C224.446,4.00004765 224,4.44603765 224,5.00004765 L224,11.0000472 C224,11.5540472 224.446,12.0000472 225,12.0000472 L227,12.0000472 L227,7.00004765 C227,6.44603765 227.446,6.00004765 228,6.00004765 L234,6.00004765 C234.554,6.00004765 235,6.44603765 235,7.00004765 L235,12.0000472 L237,12.0000472 C237.554,12.0000472 238,11.5540472 238,11.0000472 L238,5.00004765 C238,4.44603765 237.554,4.00004765 237,4.00004765 L225,4.00004765 L225,4.00004765 Z M228,7.00004765 L228,14.0000472 L234,14.0000472 L234,7.00004765 L228,7.00004765 L228,7.00004765 Z M229.5,8.00004765 L232.5,8.00004765 C232.777,8.00004765 233,8.22304765 233,8.50004765 C233,8.77703715 232.777,9.00004715 232.5,9.00004715 L229.5,9.00004715 C229.223,9.00004715 229,8.77703715 229,8.50004765 C229,8.22304765 229.223,8.00004765 229.5,8.00004765 L229.5,8.00004765 L229.5,8.00004765 Z M229.5,10.0000472 L232.5,10.0000472 C232.777,10.0000472 233,10.2230472 233,10.5000472 C233,10.7770372 232.777,11.0000472 232.5,11.0000472 L229.5,11.0000472 C229.223,11.0000472 229,10.7770372 229,10.5000472 C229,10.2230472 229.223,10.0000472 229.5,10.0000472 L229.5,10.0000472 L229.5,10.0000472 Z" id="path4664" fill="#484848"></path>
70
+ <path d="M71,97.0000472 C67.68629,97.0000472 65,99.6863362 65,103.000046 C65,106.313746 67.68629,109.000046 71,109.000046 C74.31371,109.000046 77,106.313746 77,103.000046 C77,99.6863362 74.31371,97.0000472 71,97.0000472 L71,97.0000472 L71,97.0000472 Z M71,98.0000472 C73.76142,98.0000472 76,100.238616 76,103.000046 C76,105.761466 73.76142,108.000046 71,108.000046 C68.23858,108.000046 66,105.761466 66,103.000046 C66,100.238616 68.23858,98.0000472 71,98.0000472 L71,98.0000472 L71,98.0000472 Z M71,100.000046 C69.34315,100.000046 68,101.343186 68,103.000046 C68,104.656896 69.34315,106.000046 71,106.000046 C72.65685,106.000046 74,104.656896 74,103.000046 C74,101.343186 72.65685,100.000046 71,100.000046 L71,100.000046 L71,100.000046 Z" id="path4666" fill="#484848"></path>
71
+ <path d="M290,99.0000462 C288.338,99.0000462 287,100.338036 287,102.000046 L287,104.000046 C287,105.662046 288.338,107.000046 290,107.000046 L300,107.000046 C301.662,107.000046 303,105.662046 303,104.000046 L303,102.000046 C303,100.338036 301.662,99.0000462 300,99.0000462 L290,99.0000462 L290,99.0000462 Z M290,100.000046 L300,100.000046 C301.108,100.000046 302,100.892036 302,102.000046 L302,104.000046 C302,105.108046 301.108,106.000046 300,106.000046 L298,103.000046 L295,106.000046 L292,104.000046 L290,106.000046 C288.892,106.000046 288,105.108046 288,104.000046 L288,102.000046 C288,100.892036 288.892,100.000046 290,100.000046 L290,100.000046 L290,100.000046 Z" id="path4670" fill="#484848"></path>
72
+ <path d="M138.5,129.000046 C138.223,129.000046 138,129.223036 138,129.500046 C138,129.777046 138.223,130.000046 138.5,130.000046 L141,130.000046 L141,131.000046 L138.5,131.000046 C138.223,131.000046 138,131.223036 138,131.500046 L138,133.500046 C138,133.777046 138.223,134.000046 138.5,134.000046 L141.5,134.000046 C141.777,134.000046 142,133.777046 142,133.500046 C142,133.223036 141.777,133.000046 141.5,133.000046 L139,133.000046 L139,132.000046 L141.5,132.000046 C141.777,132.000046 142,131.777046 142,131.500046 L142,129.500046 C142,129.223036 141.777,129.000046 141.5,129.000046 L138.5,129.000046 L138.5,129.000046 L138.5,129.000046 Z M130.125,131.937546 C129.82923,131.937546 129.53914,132.054656 129.3125,132.281296 C128.85923,132.734566 128.85923,133.484266 129.3125,133.937546 L131.34375,135.968796 L129.3125,138.000046 C128.85923,138.453316 128.85923,139.203016 129.3125,139.656296 C129.76577,140.109566 130.48423,140.109566 130.9375,139.656296 L133,137.625046 L135.03125,139.656296 C135.48452,140.109566 136.20298,140.109566 136.65625,139.656296 C137.10952,139.203016 137.10952,138.453316 136.65625,138.000046 L134.625,135.968796 L136.65625,133.937546 C137.10952,133.484266 137.10952,132.734566 136.65625,132.281296 C136.20298,131.828016 135.48452,131.828016 135.03125,132.281296 L133,134.312546 L130.9375,132.281296 C130.71086,132.054656 130.42077,131.937546 130.125,131.937546 L130.125,131.937546 L130.125,131.937546 Z" id="path4672" fill="#484848"></path>
73
+ <path d="M170.5,137.000046 C170.223,137.000046 170,137.223036 170,137.500046 C170,137.777046 170.24281,138.102916 170.5,138.000046 L173,138.000046 L173,139.000046 L170.5,139.000046 C170.223,139.000046 170,139.223036 170,139.500046 L170,141.500046 C170,141.777046 170.223,142.000046 170.5,142.000046 L173.5,142.000046 C173.777,142.000046 174,141.777046 174,141.500046 C174,141.223036 173.777,141.000046 173.5,141.000046 L171,141.000046 L171,140.000046 L173.5,140.000046 C173.777,140.000046 174,139.777046 174,139.500046 L174,137.500046 C174,137.223036 173.777,137.000046 173.5,137.000046 L170.5,137.000046 L170.5,137.000046 Z M162.125,130.937546 C161.82923,130.937546 161.53914,131.054656 161.3125,131.281296 C160.85923,131.734566 160.85923,132.484266 161.3125,132.937546 L163.34375,134.968796 L161.3125,137.000046 C160.85923,137.453316 160.85923,138.203016 161.3125,138.656296 C161.76577,139.109566 162.48423,139.109566 162.9375,138.656296 L165,136.625046 L167.03125,138.656296 C167.48452,139.109566 168.20298,139.109566 168.65625,138.656296 C169.10952,138.203016 169.10952,137.453316 168.65625,137.000046 L166.625,134.968796 L168.65625,132.937546 C169.10952,132.484266 169.10952,131.734566 168.65625,131.281296 C168.20298,130.828016 167.48452,130.828016 167.03125,131.281296 L165,133.312546 L162.9375,131.281296 C162.71086,131.054656 162.42077,130.937546 162.125,130.937546 L162.125,130.937546 L162.125,130.937546 Z" id="path4674" fill="#484848"></path>
74
+ <path d="M5.5000001,64.0000372 C2.4624301,64.0000372 1.00000002e-07,66.4624672 1.00000002e-07,69.5000372 C1.00000002e-07,72.5375972 2.4624301,75.0000372 5.5000001,75.0000372 C6.4387051,75.0000372 7.291941,74.7291172 8.0625,74.3125372 L11.8125,78.0625372 C12.400106,78.6501472 13.349894,78.6501472 13.9375,78.0625372 C14.525106,77.4749272 14.525106,76.5251472 13.9375,75.9375372 L10.21875,72.2187872 C10.691902,71.4124172 11,70.5042872 11,69.5000372 C11,66.4624672 8.53757,64.0000372 5.5000001,64.0000372 L5.5000001,64.0000372 L5.5000001,64.0000372 Z M5.5000001,66.0000372 C7.433,66.0000372 9,67.5670372 9,69.5000372 C9,70.5627572 8.52895,71.5143872 7.78125,72.1562872 C7.77525,72.1612872 7.756,72.1512872 7.75,72.1562872 C7.14015,72.6727172 6.3617201,73.0000372 5.5000001,73.0000372 C3.5670001,73.0000372 2.0000001,71.4330272 2.0000001,69.5000372 C2.0000001,67.5670372 3.5670001,66.0000372 5.5000001,66.0000372 L5.5000001,66.0000372 L5.5000001,66.0000372 Z" id="path4676" fill="#484848"></path>
75
+ <path d="M295.00004,34.0000372 L302.00004,39.0000372 L295.00006,44.0000272 L295.00004,40.6667072 C291.58338,40.6667072 289.38448,41.8867072 288.00004,44.0000372 C288.00004,39.0167172 291.60116,37.3333772 295.00004,37.3333772 C295.00002,36.4825972 295.00003,34.7194872 295.00004,34.0000372 L295.00004,34.0000372 L295.00004,34.0000372 Z" id="path4678" fill="#484848"></path>
76
+ <path d="M67,162.000046 C65.89543,162.000046 65,162.895476 65,164.000046 C65,165.104606 65.89543,166.000046 67,166.000046 C68.10457,166.000046 69,165.104606 69,164.000046 C69,162.895476 68.10457,162.000046 67,162.000046 L67,162.000046 L67,162.000046 Z M71.5,162.000046 C71.223,162.000046 71,162.223036 71,162.500046 C71,162.777046 71.223,163.000046 71.5,163.000046 L77.5,163.000046 C77.777,163.000046 78,162.777046 78,162.500046 C78,162.223036 77.777,162.000046 77.5,162.000046 L71.5,162.000046 L71.5,162.000046 L71.5,162.000046 Z M71.5,164.000046 C71.223,164.000046 71,164.223036 71,164.500046 C71,164.777046 71.223,165.000046 71.5,165.000046 L77.5,165.000046 C77.777,165.000046 78,164.777046 78,164.500046 C78,164.223036 77.777,164.000046 77.5,164.000046 L71.5,164.000046 L71.5,164.000046 L71.5,164.000046 Z M67,169.000046 C65.89543,169.000046 65,169.895476 65,171.000046 C65,172.104606 65.89543,173.000046 67,173.000046 C68.10457,173.000046 69,172.104606 69,171.000046 C69,169.895476 68.10457,169.000046 67,169.000046 L67,169.000046 L67,169.000046 Z M71.5,169.000046 C71.223,169.000046 71,169.223046 71,169.500046 C71,169.777046 71.223,170.000046 71.5,170.000046 L77.5,170.000046 C77.777,170.000046 78,169.777046 78,169.500046 C78,169.223046 77.777,169.000046 77.5,169.000046 L71.5,169.000046 L71.5,169.000046 L71.5,169.000046 Z M71.5,171.000046 C71.223,171.000046 71,171.223046 71,171.500046 C71,171.777046 71.223,172.000046 71.5,172.000046 L77.5,172.000046 C77.777,172.000046 78,171.777046 78,171.500046 C78,171.223046 77.777,171.000046 77.5,171.000046 L71.5,171.000046 L71.5,171.000046 L71.5,171.000046 Z" id="path4680" fill="#484848"></path>
77
+ <path d="M134.53125,161.000046 C134.27404,161.000046 134.0625,161.223036 134.0625,161.500046 L134.0625,173.500046 C134.0625,173.777046 134.27404,174.000046 134.53125,174.000046 C134.78846,174.000046 135,173.777046 135,173.500046 L135,161.500046 C135,161.223036 134.78846,161.000046 134.53125,161.000046 L134.53125,161.000046 L134.53125,161.000046 Z M130.5,163.000046 C130.22386,163.000046 130,163.223896 130,163.500046 C130,163.776186 130.22386,164.000046 130.5,164.000046 C130.77614,164.000046 131,163.776186 131,163.500046 C131,163.223896 130.77614,163.000046 130.5,163.000046 L130.5,163.000046 L130.5,163.000046 Z M132.5,163.000046 C132.22386,163.000046 132,163.223896 132,163.500046 C132,163.776186 132.22386,164.000046 132.5,164.000046 C132.77614,164.000046 133,163.776186 133,163.500046 C133,163.223896 132.77614,163.000046 132.5,163.000046 L132.5,163.000046 L132.5,163.000046 Z M136.5,163.000046 C136.223,163.000046 136,163.205696 136,163.468796 L136,163.531296 C136,163.794386 136.223,164.000046 136.5,164.000046 L141.5,164.000046 C141.777,164.000046 142,163.794386 142,163.531296 L142,163.468796 C142,163.205696 141.777,163.000046 141.5,163.000046 L136.5,163.000046 L136.5,163.000046 Z M136.5,165.000046 C136.223,165.000046 136,165.205696 136,165.468796 L136,165.531296 C136,165.794386 136.223,166.000046 136.5,166.000046 L139.5,166.000046 C139.777,166.000046 140,165.794386 140,165.531296 L140,165.468796 C140,165.205696 139.777,165.000046 139.5,165.000046 L136.5,165.000046 L136.5,165.000046 Z M128,167.468796 L128,167.531296 L130,169.000046 L130,168.000046 L132.5,168.000046 C132.777,168.000046 133,167.794386 133,167.531296 L133,167.468796 C133,167.205696 132.777,167.000046 132.5,167.000046 L130,167.000046 L130,166.000046 L128,167.468796 L128,167.468796 Z M136.5,167.000046 C136.223,167.000046 136,167.205696 136,167.468796 L136,167.531296 C136,167.794386 136.223,168.000046 136.5,168.000046 L141.5,168.000046 C141.777,168.000046 142,167.794386 142,167.531296 L142,167.468796 C142,167.205696 141.777,167.000046 141.5,167.000046 L136.5,167.000046 L136.5,167.000046 Z M136.5,169.000046 C136.223,169.000046 136,169.205696 136,169.468796 L136,169.531296 C136,169.794386 136.223,170.000046 136.5,170.000046 L139.5,170.000046 C139.777,170.000046 140,169.794386 140,169.531296 L140,169.468796 C140,169.205696 139.777,169.000046 139.5,169.000046 L136.5,169.000046 L136.5,169.000046 Z M130.5,171.000046 C130.22386,171.000046 130,171.223896 130,171.500046 C130,171.776186 130.22386,172.000046 130.5,172.000046 C130.77614,172.000046 131,171.776186 131,171.500046 C131,171.223896 130.77614,171.000046 130.5,171.000046 L130.5,171.000046 L130.5,171.000046 Z M132.5,171.000046 C132.22386,171.000046 132,171.223896 132,171.500046 C132,171.776186 132.22386,172.000046 132.5,172.000046 C132.77614,172.000046 133,171.776186 133,171.500046 C133,171.223896 132.77614,171.000046 132.5,171.000046 L132.5,171.000046 L132.5,171.000046 Z M136.5,171.000046 C136.223,171.000046 136,171.205696 136,171.468796 L136,171.531296 C136,171.794386 136.223,172.000046 136.5,172.000046 L141.5,172.000046 C141.777,172.000046 142,171.794386 142,171.531296 L142,171.468796 C142,171.205696 141.777,171.000046 141.5,171.000046 L136.5,171.000046 L136.5,171.000046 Z" id="path4682" fill="#484848"></path>
78
+ <path d="M231.46875,161.000046 C231.72596,161.000046 231.9375,161.223036 231.9375,161.500046 L231.9375,173.500046 C231.9375,173.777046 231.72596,174.000046 231.46875,174.000046 C231.21154,174.000046 231,173.777046 231,173.500046 L231,161.500046 C231,161.223036 231.21154,161.000046 231.46875,161.000046 L231.46875,161.000046 L231.46875,161.000046 Z M235.5,163.000046 C235.77614,163.000046 236,163.223896 236,163.500046 C236,163.776186 235.77614,164.000046 235.5,164.000046 C235.22386,164.000046 235,163.776186 235,163.500046 C235,163.223896 235.22386,163.000046 235.5,163.000046 L235.5,163.000046 L235.5,163.000046 Z M233.5,163.000046 C233.77614,163.000046 234,163.223896 234,163.500046 C234,163.776186 233.77614,164.000046 233.5,164.000046 C233.22386,164.000046 233,163.776186 233,163.500046 C233,163.223896 233.22386,163.000046 233.5,163.000046 L233.5,163.000046 L233.5,163.000046 Z M229.5,163.000046 C229.777,163.000046 230,163.205696 230,163.468796 L230,163.531296 C230,163.794386 229.777,164.000046 229.5,164.000046 L224.5,164.000046 C224.223,164.000046 224,163.794386 224,163.531296 L224,163.468796 C224,163.205696 224.223,163.000046 224.5,163.000046 L229.5,163.000046 L229.5,163.000046 Z M229.5,165.000046 C229.777,165.000046 230,165.205696 230,165.468796 L230,165.531296 C230,165.794386 229.777,166.000046 229.5,166.000046 L226.5,166.000046 C226.223,166.000046 226,165.794386 226,165.531296 L226,165.468796 C226,165.205696 226.223,165.000046 226.5,165.000046 L229.5,165.000046 L229.5,165.000046 Z M237.99436,167.531296 L237.99436,167.468796 L235.99887,166.000046 L235.99887,167.000046 L233.50451,167.000046 C233.22814,167.000046 233.00564,167.180416 233.00564,167.468796 L233.00564,167.531296 C233.00564,167.794396 233.22814,168.000046 233.50451,168.000046 L235.99887,168.000046 L235.99887,169.000046 L237.99436,167.531296 L237.99436,167.531296 Z M229.5,167.000046 C229.777,167.000046 230,167.205696 230,167.468796 L230,167.531296 C230,167.794386 229.777,168.000046 229.5,168.000046 L224.5,168.000046 C224.223,168.000046 224,167.794386 224,167.531296 L224,167.468796 C224,167.205696 224.223,167.000046 224.5,167.000046 L229.5,167.000046 L229.5,167.000046 Z M229.5,169.000046 C229.777,169.000046 230,169.205696 230,169.468796 L230,169.531296 C230,169.794386 229.777,170.000046 229.5,170.000046 L226.5,170.000046 C226.223,170.000046 226,169.794386 226,169.531296 L226,169.468796 C226,169.205696 226.223,169.000046 226.5,169.000046 L229.5,169.000046 L229.5,169.000046 Z M235.5,171.000046 C235.77614,171.000046 236,171.223896 236,171.500046 C236,171.776186 235.77614,172.000046 235.5,172.000046 C235.22386,172.000046 235,171.776186 235,171.500046 C235,171.223896 235.22386,171.000046 235.5,171.000046 L235.5,171.000046 L235.5,171.000046 Z M233.5,171.000046 C233.77614,171.000046 234,171.223896 234,171.500046 C234,171.776186 233.77614,172.000046 233.5,172.000046 C233.22386,172.000046 233,171.776186 233,171.500046 C233,171.223896 233.22386,171.000046 233.5,171.000046 L233.5,171.000046 L233.5,171.000046 Z M229.5,171.000046 C229.777,171.000046 230,171.205696 230,171.468796 L230,171.531296 C230,171.794386 229.777,172.000046 229.5,172.000046 L224.5,172.000046 C224.223,172.000046 224,171.794386 224,171.531296 L224,171.468796 C224,171.205696 224.223,171.000046 224.5,171.000046 L229.5,171.000046 L229.5,171.000046 Z" id="path4684" fill="#484848"></path>
79
+ <path d="M457,162.000046 C455.34315,162.000046 454,163.343186 454,165.000046 C454,166.656896 455.34315,168.000046 457,168.000046 L457,172.000046 L458,172.000046 L458,163.000046 L459,163.000046 L459,164.000046 L459,172.000046 L460,172.000046 L460,164.000046 L461,164.000046 L461,162.000046 L457,162.000046 L457,162.000046 Z M449,165.000046 L449,171.000046 L452,168.000046 L449,165.000046 L449,165.000046 Z" id="path4686" fill="#484848"></path>
80
+ <path d="M483.998894,162.000046 C482.342654,162.000046 480.999999,163.343186 480.999999,165.000046 C480.999999,166.656896 482.342654,168.000046 483.998894,168.000046 L483.998894,172.000046 L484.998526,172.000046 L484.998526,163.000046 L485.998158,163.000046 L485.998158,164.000046 L485.998158,172.000046 L486.99779,172.000046 L486.99779,164.000046 L487.997422,164.000046 L487.997422,162.000046 L483.998894,162.000046 L483.998894,162.000046 Z M492.999999,165.000046 L492.999999,171.000046 L489.992267,168.000046 L492.999999,165.000046 L492.999999,165.000046 Z" id="path4688" fill="#484848"></path>
81
+ <polygon id="path4691" fill="#484848" points="40.56445 199.666716 39.54168 200.728826 41.62657 202.813716 39.54168 204.937936 40.56445 206.000046 42.68867 203.875826 44.8129 206.000046 45.83567 204.937936 43.75078 202.813706 45.83567 200.728826 44.8129 199.666716 42.68867 201.790936"></polygon>
82
+ <path d="M134.53125,161.000046 C134.27404,161.000046 134.0625,161.223036 134.0625,161.500046 L134.0625,173.500046 C134.0625,173.777046 134.27404,174.000046 134.53125,174.000046 C134.78846,174.000046 135,173.777046 135,173.500046 L135,161.500046 C135,161.223036 134.78846,161.000046 134.53125,161.000046 L134.53125,161.000046 L134.53125,161.000046 Z M130.5,163.000046 C130.22386,163.000046 130,163.223896 130,163.500046 C130,163.776186 130.22386,164.000046 130.5,164.000046 C130.77614,164.000046 131,163.776186 131,163.500046 C131,163.223896 130.77614,163.000046 130.5,163.000046 L130.5,163.000046 L130.5,163.000046 Z M132.5,163.000046 C132.22386,163.000046 132,163.223896 132,163.500046 C132,163.776186 132.22386,164.000046 132.5,164.000046 C132.77614,164.000046 133,163.776186 133,163.500046 C133,163.223896 132.77614,163.000046 132.5,163.000046 L132.5,163.000046 L132.5,163.000046 Z M136.5,163.000046 C136.223,163.000046 136,163.205696 136,163.468796 L136,163.531296 C136,163.794386 136.223,164.000046 136.5,164.000046 L141.5,164.000046 C141.777,164.000046 142,163.794386 142,163.531296 L142,163.468796 C142,163.205696 141.777,163.000046 141.5,163.000046 L136.5,163.000046 L136.5,163.000046 Z M136.5,165.000046 C136.223,165.000046 136,165.205696 136,165.468796 L136,165.531296 C136,165.794386 136.223,166.000046 136.5,166.000046 L139.5,166.000046 C139.777,166.000046 140,165.794386 140,165.531296 L140,165.468796 C140,165.205696 139.777,165.000046 139.5,165.000046 L136.5,165.000046 L136.5,165.000046 Z M128,167.468796 L128,167.531296 L130,169.000046 L130,168.000046 L132.5,168.000046 C132.777,168.000046 133,167.794386 133,167.531296 L133,167.468796 C133,167.205696 132.777,167.000046 132.5,167.000046 L130,167.000046 L130,166.000046 L128,167.468796 L128,167.468796 Z M136.5,167.000046 C136.223,167.000046 136,167.205696 136,167.468796 L136,167.531296 C136,167.794386 136.223,168.000046 136.5,168.000046 L141.5,168.000046 C141.777,168.000046 142,167.794386 142,167.531296 L142,167.468796 C142,167.205696 141.777,167.000046 141.5,167.000046 L136.5,167.000046 L136.5,167.000046 Z M136.5,169.000046 C136.223,169.000046 136,169.205696 136,169.468796 L136,169.531296 C136,169.794386 136.223,170.000046 136.5,170.000046 L139.5,170.000046 C139.777,170.000046 140,169.794386 140,169.531296 L140,169.468796 C140,169.205696 139.777,169.000046 139.5,169.000046 L136.5,169.000046 L136.5,169.000046 Z M130.5,171.000046 C130.22386,171.000046 130,171.223896 130,171.500046 C130,171.776186 130.22386,172.000046 130.5,172.000046 C130.77614,172.000046 131,171.776186 131,171.500046 C131,171.223896 130.77614,171.000046 130.5,171.000046 L130.5,171.000046 L130.5,171.000046 Z M132.5,171.000046 C132.22386,171.000046 132,171.223896 132,171.500046 C132,171.776186 132.22386,172.000046 132.5,172.000046 C132.77614,172.000046 133,171.776186 133,171.500046 C133,171.223896 132.77614,171.000046 132.5,171.000046 L132.5,171.000046 L132.5,171.000046 Z M136.5,171.000046 C136.223,171.000046 136,171.205696 136,171.468796 L136,171.531296 C136,171.794386 136.223,172.000046 136.5,172.000046 L141.5,172.000046 C141.777,172.000046 142,171.794386 142,171.531296 L142,171.468796 C142,171.205696 141.777,171.000046 141.5,171.000046 L136.5,171.000046 L136.5,171.000046 Z" id="path4693" fill="#484848"></path>
83
+ <path d="M166.64267,161.000046 C166.38546,161.000046 166.17392,161.223046 166.17392,161.500046 L166.17392,173.500046 C166.17392,173.777036 166.38546,174.000046 166.64267,174.000046 C166.89988,174.000046 167.11142,173.777036 167.11142,173.500046 L167.11142,161.500046 C167.11142,161.223046 166.89988,161.000046 166.64267,161.000046 L166.64267,161.000046 L166.64267,161.000046 Z M162.61142,163.000046 C162.33528,163.000046 162.11142,163.223896 162.11142,163.500046 C162.11142,163.776186 162.33528,164.000046 162.61142,164.000046 C162.88756,164.000046 163.11142,163.776186 163.11142,163.500046 C163.11142,163.223896 162.88756,163.000046 162.61142,163.000046 L162.61142,163.000046 L162.61142,163.000046 Z M164.61142,163.000046 C164.33528,163.000046 164.11142,163.223896 164.11142,163.500046 C164.11142,163.776186 164.33528,164.000046 164.61142,164.000046 C164.88756,164.000046 165.11142,163.776186 165.11142,163.500046 C165.11142,163.223896 164.88756,163.000046 164.61142,163.000046 L164.61142,163.000046 L164.61142,163.000046 Z M168.61142,163.000046 C168.33442,163.000046 168.11142,163.205696 168.11142,163.468796 L168.11142,163.531296 C168.11142,163.794386 168.33442,164.000046 168.61142,164.000046 L173.61142,164.000046 C173.88842,164.000046 174.11142,163.794386 174.11142,163.531296 L174.11142,163.468796 C174.11142,163.205696 173.88842,163.000046 173.61142,163.000046 L168.61142,163.000046 L168.61142,163.000046 Z M168.61142,165.000046 C168.33442,165.000046 168.11142,165.205696 168.11142,165.468796 L168.11142,165.531296 C168.11142,165.794386 168.33442,166.000046 168.61142,166.000046 L171.61142,166.000046 C171.88842,166.000046 172.11142,165.794386 172.11142,165.531296 L172.11142,165.468796 C172.11142,165.205696 171.88842,165.000046 171.61142,165.000046 L168.61142,165.000046 L168.61142,165.000046 Z M165.22284,167.468796 L165.22284,167.531296 L163.1337,169.000046 L163.1337,168.000046 L160.52229,168.000046 C160.23294,168.000046 160,167.965346 160,167.531296 L160,167.468796 C160,167.205696 160.23294,167.000046 160.52229,167.000046 L163.1337,167.000046 L163.1337,166.000046 L165.22284,167.468796 L165.22284,167.468796 Z M168.61142,167.000046 C168.33442,167.000046 168.11142,167.205696 168.11142,167.468796 L168.11142,167.531296 C168.11142,167.794386 168.33442,168.000046 168.61142,168.000046 L173.61142,168.000046 C173.88842,168.000046 174.11142,167.794386 174.11142,167.531296 L174.11142,167.468796 C174.11142,167.205696 173.88842,167.000046 173.61142,167.000046 L168.61142,167.000046 L168.61142,167.000046 Z M168.61142,169.000046 C168.33442,169.000046 168.11142,169.205696 168.11142,169.468796 L168.11142,169.531296 C168.11142,169.794386 168.33442,170.000046 168.61142,170.000046 L171.61142,170.000046 C171.88842,170.000046 172.11142,169.794386 172.11142,169.531296 L172.11142,169.468796 C172.11142,169.205696 171.88842,169.000046 171.61142,169.000046 L168.61142,169.000046 L168.61142,169.000046 Z M162.61142,171.000046 C162.33528,171.000046 162.11142,171.223896 162.11142,171.500046 C162.11142,171.776186 162.33528,172.000046 162.61142,172.000046 C162.88756,172.000046 163.11142,171.776186 163.11142,171.500046 C163.11142,171.223896 162.88756,171.000046 162.61142,171.000046 L162.61142,171.000046 L162.61142,171.000046 Z M164.61142,171.000046 C164.33528,171.000046 164.11142,171.223896 164.11142,171.500046 C164.11142,171.776186 164.33528,172.000046 164.61142,172.000046 C164.88756,172.000046 165.11142,171.776186 165.11142,171.500046 C165.11142,171.223896 164.88756,171.000046 164.61142,171.000046 L164.61142,171.000046 L164.61142,171.000046 Z M168.61142,171.000046 C168.33442,171.000046 168.11142,171.205696 168.11142,171.468796 L168.11142,171.531296 C168.11142,171.794386 168.33442,172.000046 168.61142,172.000046 L173.61142,172.000046 C173.88842,172.000046 174.11142,171.794386 174.11142,171.531296 L174.11142,171.468796 C174.11142,171.205696 173.88842,171.000046 173.61142,171.000046 L168.61142,171.000046 L168.61142,171.000046 Z" id="path4695" fill="#484848"></path>
84
+ <path d="M199.46875,161.000046 C199.72597,161.000046 199.9375,161.223046 199.9375,161.500046 L199.9375,173.500046 C199.9375,173.777046 199.72597,174.000046 199.46875,174.000046 C199.21154,174.000046 199,173.777046 199,173.500046 L199,161.500046 C199,161.223046 199.21154,161.000046 199.46875,161.000046 L199.46875,161.000046 L199.46875,161.000046 Z M203.5,163.000046 C203.77614,163.000046 204,163.223906 204,163.500046 C204,163.776186 203.77614,164.000046 203.5,164.000046 C203.22386,164.000046 203,163.776186 203,163.500046 C203,163.223906 203.22386,163.000046 203.5,163.000046 L203.5,163.000046 L203.5,163.000046 Z M201.5,163.000046 C201.77614,163.000046 202,163.223906 202,163.500046 C202,163.776186 201.77614,164.000046 201.5,164.000046 C201.22386,164.000046 201,163.776186 201,163.500046 C201,163.223906 201.22386,163.000046 201.5,163.000046 L201.5,163.000046 L201.5,163.000046 Z M197.5,163.000046 C197.777,163.000046 198,163.205706 198,163.468796 L198,163.531296 C198,163.794386 197.777,164.000046 197.5,164.000046 L192.5,164.000046 C192.223,164.000046 192,163.794386 192,163.531296 L192,163.468796 C192,163.205706 192.223,163.000046 192.5,163.000046 L197.5,163.000046 L197.5,163.000046 Z M197.5,165.000046 C197.777,165.000046 198,165.205706 198,165.468796 L198,165.531296 C198,165.794386 197.777,166.000046 197.5,166.000046 L194.5,166.000046 C194.223,166.000046 194,165.794386 194,165.531296 L194,165.468796 C194,165.205706 194.223,165.000046 194.5,165.000046 L197.5,165.000046 L197.5,165.000046 Z M201,167.531296 L201,167.468796 L203,166.000046 L203,167.000046 L205.5,167.000046 C205.777,167.000046 206,167.205706 206,167.468796 L206,167.531296 C206,167.794386 205.77657,168.015546 205.5,168.000046 L203,168.000046 L203,169.000046 L201,167.531296 L201,167.531296 Z M197.5,167.000046 C197.777,167.000046 198,167.205706 198,167.468796 L198,167.531296 C198,167.794386 197.777,168.000046 197.5,168.000046 L192.5,168.000046 C192.223,168.000046 192,167.794386 192,167.531296 L192,167.468796 C192,167.205706 192.223,167.000046 192.5,167.000046 L197.5,167.000046 L197.5,167.000046 Z M197.5,169.000046 C197.777,169.000046 198,169.205706 198,169.468796 L198,169.531296 C198,169.794386 197.777,170.000046 197.5,170.000046 L194.5,170.000046 C194.223,170.000046 194,169.794386 194,169.531296 L194,169.468796 C194,169.205706 194.223,169.000046 194.5,169.000046 L197.5,169.000046 L197.5,169.000046 Z M203.5,171.000046 C203.77614,171.000046 204,171.223906 204,171.500046 C204,171.776186 203.77614,172.000046 203.5,172.000046 C203.22386,172.000046 203,171.776186 203,171.500046 C203,171.223906 203.22386,171.000046 203.5,171.000046 L203.5,171.000046 L203.5,171.000046 Z M201.5,171.000046 C201.77614,171.000046 202,171.223906 202,171.500046 C202,171.776186 201.77614,172.000046 201.5,172.000046 C201.22386,172.000046 201,171.776186 201,171.500046 C201,171.223906 201.22386,171.000046 201.5,171.000046 L201.5,171.000046 L201.5,171.000046 Z M197.5,171.000046 C197.777,171.000046 198,171.205706 198,171.468796 L198,171.531296 C198,171.794386 197.777,172.000046 197.5,172.000046 L192.5,172.000046 C192.223,172.000046 192,171.794386 192,171.531296 L192,171.468796 C192,171.205706 192.223,171.000046 192.5,171.000046 L197.5,171.000046 L197.5,171.000046 Z" id="path4698" fill="#484848"></path>
85
+ <path d="M1.00000002e-07,225.000046 L1.00000002e-07,237.000046 L14,237.000046 L14,225.000046 L1.00000001e-07,225.000046 L1.00000002e-07,225.000046 L1.00000002e-07,225.000046 Z M1.0000001,226.000046 L13,226.000046 L13,233.593796 L10.09375,230.000046 L7,234.000046 L4.0000001,232.000046 L1.0000001,236.000046 L1.0000001,226.000046 L1.0000001,226.000046 L1.0000001,226.000046 Z M3.5000001,227.000046 C2.6715701,227.000046 2.0000001,227.671616 2.0000001,228.500046 C2.0000001,229.328466 2.6715701,230.000046 3.5000001,230.000046 C4.3284201,230.000046 5.0000001,229.328466 5.0000001,228.500046 C5.0000001,227.671616 4.3284201,227.000046 3.5000001,227.000046 L3.5000001,227.000046 L3.5000001,227.000046 Z" id="path4700" fill="#484848"></path>
86
+ <path d="M197,226.000046 L197,229.000046 L207,229.000046 L207,226.000046 L197,226.000046 L197,226.000046 Z M192,228.000046 L192,235.000046 L196,231.562546 L192,228.000046 L192,228.000046 Z M197,231.000046 L197,232.000046 L200,232.000046 L200,231.000046 L197,231.000046 L197,231.000046 Z M201,231.000046 L201,232.000046 L204,232.000046 L204,231.000046 L201,231.000046 L201,231.000046 Z M205,231.000046 L205,232.000046 L207,232.000046 L207,231.000046 L205,231.000046 L205,231.000046 Z M197,234.000046 L197,237.000046 L207,237.000046 L207,234.000046 L197,234.000046 L197,234.000046 Z" id="path4702" fill="#484848"></path>
87
+ <path d="M321.5,99.0000462 C321.223,99.0000462 321,99.2230462 321,99.5000462 C321,99.7424062 321.59935,99.9535762 321.5625,100.000046 L322,100.000046 L322,105.000046 L321.5,105.000046 C321.223,105.000046 321,105.223046 321,105.500046 C321,105.777036 321.223,106.000046 321.5,106.000046 L323.5,106.000046 C323.777,106.000046 324,105.777036 324,105.500046 C324,105.223046 323.62388,104.752286 323.5,105.000046 L323,105.000046 L323,100.000046 L323.5,100.000046 C323.777,100.000046 324,99.7770362 324,99.5000462 C324,99.2230462 323.777,99.0000462 323.5,99.0000462 L321.5,99.0000462 L321.5,99.0000462 Z" id="path4704" fill="#484848"></path>
88
+ <path d="M129,97.0000472 C127.9093,97.0000472 127,97.9093472 127,99.0000462 L127,108.000046 C127,109.090736 127.9093,110.000046 129,110.000046 L141,110.000046 C142.0907,110.000046 143,109.090736 143,108.000046 L143,107.625046 C143.0328,107.535746 143.0213,107.452896 143,107.375046 L143,99.0000462 C143,97.9093472 142.0907,97.0000472 141,97.0000472 L129,97.0000472 L129,97.0000472 Z M129,98.0000472 L141,98.0000472 C141.554,98.0000472 142,98.4460472 142,99.0000462 L142,103.117996 L136.11795,108.999946 L129,109.000046 C128.446,109.000056 128,108.554046 128,108.000046 L128,99.0000462 C128,98.4460472 128.446,98.0000472 129,98.0000472 L129,98.0000472 L129,98.0000472 Z M129.5,99.0000462 C129.223,99.0000462 129,99.2230462 129,99.5000462 C129,99.7424162 129.0444,100.034506 129.5625,100.000046 L130,100.000046 L130,105.000046 L129.5,105.000046 C129.223,105.000046 129,105.223046 129,105.500046 C129,105.777036 129.223,106.000046 129.5,106.000046 L131.5,106.000046 C131.777,106.000046 132,105.777036 132,105.500046 C132,105.223046 131.87822,104.971946 131.5,105.000046 L131,105.000046 L131,100.000046 L131.5,100.000046 C131.777,100.000046 132,99.7770462 132,99.5000462 C132,99.2230462 131.777,99.0000462 131.5,99.0000462 L129.5,99.0000462 L129.5,99.0000462 Z M142,104.406296 L142,105.250046 L138.28125,108.937546 L138.25005,109.000046 L137.4063,109.000046 L142,104.406296 L142,104.406296 Z M142,106.625046 L142,107.250046 L140.28125,109.000046 L139.65625,109.000046 L142,106.625046 L142,106.625046 Z" id="path4706" fill="#484848"></path>
89
+ <path d="M193,98.0000472 C191.9093,98.0000472 191,98.9093462 191,100.000046 L191,107.000046 C191,108.090746 191.9093,109.000046 193,109.000046 L205,109.000046 C206.0907,109.000046 207,108.090746 207,107.000046 L207,100.000046 C207,98.9093462 206.0907,98.0000472 205,98.0000472 L193,98.0000472 L193,98.0000472 Z M193,99.0000462 L205,99.0000462 C205.554,99.0000462 206,99.4460462 206,100.000046 L206,107.000046 C206,107.554046 205.554,108.000046 205,108.000046 L193,108.000046 C192.446,108.000046 192,107.554046 192,107.000046 L192,100.000046 C192,99.4460462 192.446,99.0000462 193,99.0000462 L193,99.0000462 L193,99.0000462 Z M199,102.000046 L202,106.000046 L205,102.000046 L199,102.000046 L199,102.000046 Z" id="path4708" fill="#484848"></path>
90
+ <path d="M103.5,353.000036 C102.12386,353.000036 100.94546,353.834786 100.375,355.000036 L101.5,355.000036 C101.95491,354.388546 102.67592,354.000036 103.5,354.000036 C104.885,354.000036 106,355.115036 106,356.500036 L106,358.000036 L103,358.000036 L101,358.000036 L100,358.000036 L99,358.000036 C98.446,358.000036 98,358.446016 98,359.000036 L98,365.000036 C98,365.554036 98.446,366.000036 99,366.000036 L108,366.000036 C108.554,366.000036 109,365.554036 109,365.000036 L109,359.000036 C109,358.446016 108.554,358.000036 108,358.000036 L107,358.000036 L107,356.500036 C107,354.578336 105.4217,353.000036 103.5,353.000036 L103.5,353.000036 L103.5,353.000036 Z M103.5,361.000036 C104.32843,361.000036 105,361.671606 105,362.500036 C105,363.328446 104.32843,364.000036 103.5,364.000036 C102.67157,364.000036 102,363.328446 102,362.500036 C102,361.671606 102.67157,361.000036 103.5,361.000036 L103.5,361.000036 L103.5,361.000036 Z" id="path4710" fill="#484848"></path>
91
+ <path d="M2.5000001,162.000046 C2.2230001,162.000046 2.0000001,162.223046 2.0000001,162.500046 C2.0000001,162.777036 2.2230001,163.000046 2.5000001,163.000046 L3.0000001,163.000046 L3.0000001,166.500046 C3.0000001,166.777036 3.2230001,167.000046 3.5000001,167.000046 C3.7770001,167.000046 4.0000001,166.777036 4.0000001,166.500046 L4.0000001,162.500046 C4.0000001,162.223046 3.7770001,162.000046 3.5000001,162.000046 L2.5000001,162.000046 L2.5000001,162.000046 L2.5000001,162.000046 Z M6.5000001,162.000046 C6.2230001,162.000046 6.0000001,162.223046 6.0000001,162.500046 C6.0000001,162.777036 6.2230001,163.000046 6.5000001,163.000046 L12.5,163.000046 C12.777,163.000046 13,162.777036 13,162.500046 C13,162.223046 12.777,162.000046 12.5,162.000046 L6.5000001,162.000046 L6.5000001,162.000046 L6.5000001,162.000046 Z M6.5000001,164.000046 C6.2230001,164.000046 6.0000001,164.223046 6.0000001,164.500046 C6.0000001,164.777036 6.2230001,165.000046 6.5000001,165.000046 L12.5,165.000046 C12.777,165.000046 13,164.777036 13,164.500046 C13,164.223046 12.777,164.000046 12.5,164.000046 L6.5000001,164.000046 L6.5000001,164.000046 L6.5000001,164.000046 Z M1.5000001,169.000046 C1.2230001,169.000046 1.0000001,169.223046 1.0000001,169.500046 C1.0000001,169.777036 1.2230001,170.000046 1.5000001,170.000046 L3.0000001,170.000046 L3.0000001,171.000046 L1.5000001,171.000046 C1.2230001,171.000046 1.0000001,171.223046 1.0000001,171.500046 L1.0000001,173.500046 C1.0000001,173.777036 1.2230001,174.000046 1.5000001,174.000046 L3.5000001,174.000046 C3.7770001,174.000046 4.0000001,173.777036 4.0000001,173.500046 C4.0000001,173.223046 3.7770001,173.000046 3.5000001,173.000046 L2.0000001,173.000046 L2.0000001,172.000046 L3.5000001,172.000046 C3.5693001,172.000046 3.6276401,171.994046 3.6875001,171.968846 C3.8146801,171.927846 3.9182001,171.826716 3.9687501,171.687596 C3.9939501,171.627696 3.9999501,171.569346 3.9999501,171.500096 L3.9999501,169.500096 C3.9999501,169.430796 3.9939501,169.372446 3.9687501,169.312596 C3.9182501,169.173466 3.8146801,169.072316 3.6875001,169.031346 C3.6471001,169.014246 3.6076001,169.006046 3.5625001,169.000146 L3.5000001,169.000146 L1.5000001,169.000146 L1.5000001,169.000046 L1.5000001,169.000046 Z M6.5000001,169.000046 C6.2230001,169.000046 6.0000001,169.223046 6.0000001,169.500046 C6.0000001,169.777036 6.2230001,170.000046 6.5000001,170.000046 L12.5,170.000046 C12.777,170.000046 13,169.777036 13,169.500046 C13,169.223046 12.777,169.000046 12.5,169.000046 L6.5000001,169.000046 L6.5000001,169.000046 L6.5000001,169.000046 Z M6.5000001,171.000046 C6.2230001,171.000046 6.0000001,171.223046 6.0000001,171.500046 C6.0000001,171.777036 6.2230001,172.000046 6.5000001,172.000046 L12.5,172.000046 C12.777,172.000046 13,171.777036 13,171.500046 C13,171.223046 12.777,171.000046 12.5,171.000046 L6.5000001,171.000046 L6.5000001,171.000046 L6.5000001,171.000046 Z" id="path4712" fill="#484848"></path>
92
+ <path d="M12.295877,137.300932 C12.295868,138.006839 12.158536,138.599289 11.883882,139.078291 C11.609209,139.544687 11.233355,139.922848 10.756311,140.212765 C10.293706,140.490085 9.737154,140.691777 9.086637,140.817821 C8.450568,140.931278 7.763909,140.987997 7.02666,140.987997 L3.297,141.000046 L3.297,129.003033 L6.7664455,129.000045 C7.778368,129.000055 8.602359,129.094643 9.238427,129.283659 C9.874486,129.460148 10.373223,129.699649 10.734628,130.002162 C11.096023,130.292099 11.34177,130.619835 11.471887,130.98538 C11.601984,131.350944 11.667033,131.716499 11.667043,132.082044 C11.667033,132.636685 11.508018,133.128293 11.189989,133.55687 C10.886408,133.985457 10.474413,134.325799 9.954003,134.577906 C10.864725,134.867833 11.479101,135.258601 11.79715,135.750199 C12.129628,136.241818 12.295868,136.758629 12.295877,137.300653 M5.9641378,135.71238 L5.9641378,138.888927 C6.1520599,138.914119 6.3544502,138.933039 6.5712893,138.945685 C6.8025869,138.958331 7.026651,138.964605 7.243499,138.964605 C7.54707,138.964615 7.843417,138.945685 8.132539,138.907846 C8.421661,138.85746 8.674642,138.775489 8.891481,138.662042 C9.122778,138.535988 9.3107,138.365822 9.455266,138.151524 C9.599822,137.924629 9.672105,137.641015 9.672105,137.300663 C9.672105,136.733426 9.462491,136.330062 9.043271,136.090551 C8.6385,135.838454 8.089173,135.7124 7.39529,135.71239 L5.9641378,135.71239 M7.004977,133.783775 C7.684402,133.783785 8.197588,133.657731 8.544544,133.405613 C8.891481,133.14091 9.064954,132.781658 9.064954,132.327858 C9.064954,132.050548 9.014364,131.829957 8.913164,131.666084 C8.811973,131.489614 8.674642,131.357257 8.501168,131.269013 C8.327695,131.168182 8.125305,131.10515 7.894017,131.079927 C7.662719,131.042088 7.424197,131.023169 7.178441,131.023169 C6.9760602,131.023179 6.7664455,131.029143 6.5496063,131.042088 C6.3327672,131.054734 6.137611,131.073654 5.9641378,131.098847 L5.9641378,133.783785 L7.004977,133.783785" id="path4714" fill="#484848"></path>
93
+ <g id="g4720" transform="translate(192.750781, 128.774142)" fill="#484848">
94
+ <polyline id="path4722" points="1.22489721 10.2259034 3.62128672 1.57077825 0.614055327 1.57077825 0.919470947 0.238887593 9.94119705 0.238887593 9.63577079 1.57077825 6.62852875 1.57077825 4.23213924 10.2259034 1.22489721 10.2259034"></polyline>
95
+ </g>
96
+ <path d="M263.00004,34.0000372 L270.00004,39.0000372 L263.00006,44.0000272 L263.00004,40.6667072 C259.58338,40.6667072 257.38448,41.8867072 256.00004,44.0000372 C256.00004,39.0167172 259.60116,37.3333772 263.00004,37.3333772 C263.00002,36.4825972 263.00003,34.7194872 263.00004,34.0000372 L263.00004,34.0000372 L263.00004,34.0000372 Z" id="path4726" fill="#484848"></path>
97
+ <path d="M327,34.0000472 L320,39.0000472 L326.99998,44.0000272 L327,40.6667072 C330.41666,40.6667072 332.61556,41.8867072 334,44.0000472 C334,39.0167172 330.39888,37.3333772 327,37.3333772 C327.00002,36.4825972 327.00001,34.7194972 327,34.0000472 L327,34.0000472 L327,34.0000472 Z" id="path4728" fill="#484848"></path>
98
+ <path d="M237,98.0000472 C238.0907,98.0000472 239,98.9093462 239,100.000046 L239,107.000046 C239,108.090746 238.0907,109.000046 237,109.000046 L225,109.000046 C223.9093,109.000046 223,108.090746 223,107.000046 L223,100.000046 C223,98.9093462 223.9093,98.0000472 225,98.0000472 L237,98.0000472 L237,98.0000472 Z M237,99.0000462 L225,99.0000462 C224.446,99.0000462 224,99.4460462 224,100.000046 L224,107.000046 C224,107.554046 224.446,108.000046 225,108.000046 L237,108.000046 C237.554,108.000046 238,107.554046 238,107.000046 L238,100.000046 C238,99.4460462 237.554,99.0000462 237,99.0000462 L237,99.0000462 L237,99.0000462 Z M231,102.000046 L228,106.000046 L225,102.000046 L231,102.000046 L231,102.000046 Z" id="path4730" fill="#484848"></path>
99
+ <path d="M110,192.000046 L110,206.000046 L109,206.000046 L109,192.000046 L110,192.000046 L110,192.000046 Z M105.25001,191.583406 C106.11984,191.592406 107.01034,191.923736 108,192.958406 L108,201.000046 C104.03868,196.941396 101.05732,203.816026 97,200.000046 L97,191.958396 C100.03099,194.892396 102.64051,191.554876 105.25001,191.583436 L105.25001,191.583406 L105.25001,191.583406 Z" id="path4732" fill="#484848"></path>
100
+ <path d="M77.5,288.000046 C77.77614,288.000046 78,288.223906 78,288.500046 C78,288.776186 77.77614,289.000046 77.5,289.000046 C77.22386,289.000046 77,288.776186 77,288.500046 C77,288.223906 77.22386,288.000046 77.5,288.000046 L77.5,288.000046 L77.5,288.000046 Z M75.5,288.000046 C75.77614,288.000046 76,288.223906 76,288.500046 C76,288.776186 75.77614,289.000046 75.5,289.000046 C75.22386,289.000046 75,288.776186 75,288.500046 C75,288.223906 75.22386,288.000046 75.5,288.000046 L75.5,288.000046 L75.5,288.000046 Z M73.5,288.000046 C73.77614,288.000046 74,288.223906 74,288.500046 C74,288.776186 73.77614,289.000046 73.5,289.000046 C73.22386,289.000046 73,288.776186 73,288.500046 C73,288.223906 73.22386,288.000046 73.5,288.000046 L73.5,288.000046 L73.5,288.000046 Z M71.5,288.000046 C71.77614,288.000046 72,288.223906 72,288.500046 C72,288.776186 71.77614,289.000046 71.5,289.000046 C71.22386,289.000046 71,288.776186 71,288.500046 C71,288.223906 71.22386,288.000046 71.5,288.000046 L71.5,288.000046 L71.5,288.000046 Z M69.5,288.000046 C69.77614,288.000046 70,288.223906 70,288.500046 C70,288.776186 69.77614,289.000046 69.5,289.000046 C69.22386,289.000046 69,288.776186 69,288.500046 C69,288.223906 69.22386,288.000046 69.5,288.000046 L69.5,288.000046 L69.5,288.000046 Z M66,288.000046 C67.0907,288.000046 68,288.909346 68,290.000046 L68,300.000046 C68,301.090746 67.0907,302.000046 66,302.000046 C64.9093,302.000046 64,301.090746 64,300.000046 L64,290.000046 C64,288.909346 64.9093,288.000046 66,288.000046 L66,288.000046 L66,288.000046 Z M66,289.000046 C65.446,289.000046 65,289.446046 65,290.000046 L65,300.000046 C65,300.554046 65.446,301.000046 66,301.000046 C66.554,301.000046 67,300.554046 67,300.000046 L67,290.000046 C67,289.446046 66.554,289.000046 66,289.000046 L66,289.000046 L66,289.000046 Z M77.5,290.000046 C77.77614,290.000046 78,290.223906 78,290.500046 C78,290.776186 77.77614,291.000046 77.5,291.000046 C77.22386,291.000046 77,290.776186 77,290.500046 C77,290.223906 77.22386,290.000046 77.5,290.000046 L77.5,290.000046 L77.5,290.000046 Z M69.5,290.000046 C69.77614,290.000046 70,290.223906 70,290.500046 C70,290.776186 69.77614,291.000046 69.5,291.000046 C69.22386,291.000046 69,290.776186 69,290.500046 C69,290.223906 69.22386,290.000046 69.5,290.000046 L69.5,290.000046 L69.5,290.000046 Z M77.5,292.000046 C77.77614,292.000046 78,292.223906 78,292.500046 C78,292.776186 77.77614,293.000046 77.5,293.000046 C77.22386,293.000046 77,292.776186 77,292.500046 C77,292.223906 77.22386,292.000046 77.5,292.000046 L77.5,292.000046 L77.5,292.000046 Z M69.5,292.000046 C69.77614,292.000046 70,292.223906 70,292.500046 C70,292.776186 69.77614,293.000046 69.5,293.000046 C69.22386,293.000046 69,292.776186 69,292.500046 C69,292.223906 69.22386,292.000046 69.5,292.000046 L69.5,292.000046 L69.5,292.000046 Z M77.5,294.000046 C77.77614,294.000046 78,294.223906 78,294.500046 C78,294.776186 77.77614,295.000046 77.5,295.000046 C77.22386,295.000046 77,294.776186 77,294.500046 C77,294.223906 77.22386,294.000046 77.5,294.000046 L77.5,294.000046 L77.5,294.000046 Z M69.5,294.000046 C69.77614,294.000046 70,294.223906 70,294.500046 C70,294.776186 69.77614,295.000046 69.5,295.000046 C69.22386,295.000046 69,294.776186 69,294.500046 C69,294.223906 69.22386,294.000046 69.5,294.000046 L69.5,294.000046 L69.5,294.000046 Z M77.5,296.000046 C77.77614,296.000046 78,296.223906 78,296.500046 C78,296.776186 77.77614,297.000046 77.5,297.000046 C77.22386,297.000046 77,296.776186 77,296.500046 C77,296.223906 77.22386,296.000046 77.5,296.000046 L77.5,296.000046 L77.5,296.000046 Z M75.5,296.000046 C75.77614,296.000046 76,296.223906 76,296.500046 C76,296.776186 75.77614,297.000046 75.5,297.000046 C75.22386,297.000046 75,296.776186 75,296.500046 C75,296.223906 75.22386,296.000046 75.5,296.000046 L75.5,296.000046 L75.5,296.000046 Z M73.5,296.000046 C73.77614,296.000046 74,296.223906 74,296.500046 C74,296.776186 73.77614,297.000046 73.5,297.000046 C73.22386,297.000046 73,296.776186 73,296.500046 C73,296.223906 73.22386,296.000046 73.5,296.000046 L73.5,296.000046 L73.5,296.000046 Z M71.5,296.000046 C71.77614,296.000046 72,296.223906 72,296.500046 C72,296.776186 71.77614,297.000046 71.5,297.000046 C71.22386,297.000046 71,296.776186 71,296.500046 C71,296.223906 71.22386,296.000046 71.5,296.000046 L71.5,296.000046 L71.5,296.000046 Z M69.5,296.000046 C69.77614,296.000046 70,296.223906 70,296.500046 C70,296.776186 69.77614,297.000046 69.5,297.000046 C69.22386,297.000046 69,296.776186 69,296.500046 C69,296.223906 69.22386,296.000046 69.5,296.000046 L69.5,296.000046 L69.5,296.000046 Z M76,298.000046 C77.0907,298.000046 78,298.909346 78,300.000046 C78,301.090746 77.0907,302.000046 76,302.000046 L71,302.000046 C69.9093,302.000046 69,301.090746 69,300.000046 C69,298.909346 69.9093,298.000046 71,298.000046 L76,298.000046 L76,298.000046 L76,298.000046 Z M76,299.000046 L71,299.000046 C70.446,299.000046 70,299.446046 70,300.000046 C70,300.554046 70.446,301.000046 71,301.000046 L76,301.000046 C76.554,301.000046 77,300.554046 77,300.000046 C77,299.446046 76.554,299.000046 76,299.000046 L76,299.000046 L76,299.000046 Z" id="path4734" fill="#484848"></path>
101
+ <path d="M66,4.76500001e-05 C64.892,4.76500001e-05 64,0.89204765 64,2.00004765 L64,10.9375472 L67,14.0000472 L76,14.0000472 C77.108,14.0000472 78,13.1080472 78,12.0000472 L78,2.00004765 C78,0.89204765 77.108,4.76500001e-05 76,4.76500001e-05 L66,4.76500001e-05 L66,4.76500001e-05 Z M66,1.00004765 L76,1.00004765 L76,5.00004765 C76,6.10804765 76.108,6.00004765 75,6.00004765 L67,6.00004765 C65.892,6.00004765 66,6.10804765 66,5.00004765 L66,1.00004765 L66,1.00004765 Z M67,9.00004715 L75,9.00004715 L75,13.0000472 L71,13.0000472 L71,10.0000472 L69,10.0000472 L69,13.0000472 L67,13.0000472 L67,9.00004715 L67,9.00004715 Z" id="path4736" fill="#484848"></path>
102
+ <path d="M43.5,162.000046 C43.5,162.000046 43,162.223046 43,162.500046 C43,162.777036 43.777,163.000046 43.5,163.000046 L44,163.000046 L44,166.500046 C44,166.777036 44.223,167.000046 44.5,167.000046 C44.777,167.000046 45,166.777036 45,166.500046 L45,162.500046 C45,162.223046 44.5,162.000046 44.5,162.000046 L43.5,162.000046 L43.5,162.000046 Z M33.5,162.000046 C33.223,162.000046 33,162.223046 33,162.500046 C33,162.777036 33.223,163.000046 33.5,163.000046 L39.5,163.000046 C39.777,163.000046 40,162.777036 40,162.500046 C40,162.223046 39.777,162.000046 39.5,162.000046 L33.5,162.000046 L33.5,162.000046 Z M33.5,164.000046 C33.223,164.000046 33,164.223046 33,164.500046 C33,164.777036 33.223,165.000046 33.5,165.000046 L39.5,165.000046 C39.777,165.000046 40,164.777036 40,164.500046 C40,164.223046 39.777,164.000046 39.5,164.000046 L33.5,164.000046 L33.5,164.000046 Z M42.5,169.000046 C42.223,169.000046 42,169.223046 42,169.500046 C42,169.777036 42.223,170.000046 42.5,170.000046 L44,170.000046 L44,171.000046 L42.5,171.000046 C42.223,171.000046 42,171.223046 42,171.500046 L42,173.500046 C42,173.777036 42.223,174.000046 42.5,174.000046 L44.5,174.000046 C44.777,174.000046 45,173.777036 45,173.500046 C45,173.223046 44.777,173.000046 44.5,173.000046 L43,173.000046 L43,172.000046 L44.5,172.000046 C44.5693,172.000046 44.62764,171.994046 44.6875,171.968846 C44.81468,171.927846 44.9182,171.826716 44.96875,171.687596 C44.99395,171.627696 44.99995,171.569346 44.99995,171.500096 L44.99995,169.500096 C44.99995,169.430796 44.99395,169.372446 44.96875,169.312596 C44.91825,169.173466 44.81468,169.072316 44.6875,169.031346 C44.6471,169.014246 44.6076,169.006046 44.5625,169.000146 L44.5,169.000146 L42.5,169.000146 L42.5,169.000046 L42.5,169.000046 Z M33.5,169.000046 C33.223,169.000046 33,169.223046 33,169.500046 C33,169.777036 33.223,170.000046 33.5,170.000046 L39.5,170.000046 C39.777,170.000046 40,169.777036 40,169.500046 C40,169.223046 39.777,169.000046 39.5,169.000046 L33.5,169.000046 L33.5,169.000046 Z M33.5,171.000046 C33.223,171.000046 33,171.223046 33,171.500046 C33,171.777036 33.223,172.000046 33.5,172.000046 L39.5,172.000046 C39.777,172.000046 40,171.777036 40,171.500046 C40,171.223046 39.777,171.000046 39.5,171.000046 L33.5,171.000046 L33.5,171.000046 Z" id="path4738" fill="#484848"></path>
103
+ <path d="M107,162.000046 C105.89543,162.000046 105,162.895476 105,164.000046 C105,165.104606 105.89543,166.000046 107,166.000046 C108.10457,166.000046 109,165.104606 109,164.000046 C109,162.895476 108.10457,162.000046 107,162.000046 L107,162.000046 L107,162.000046 Z M96.5,162.000046 C96.223,162.000046 96,162.223036 96,162.500046 C96,162.777046 96.223,163.000046 96.5,163.000046 L102.5,163.000046 C102.777,163.000046 103,162.777046 103,162.500046 C103,162.223036 102.777,162.000046 102.5,162.000046 L96.5,162.000046 L96.5,162.000046 Z M96.5,164.000046 C96.223,164.000046 96,164.223036 96,164.500046 C96,164.777046 96.223,165.000046 96.5,165.000046 L102.5,165.000046 C102.777,165.000046 103,164.777046 103,164.500046 C103,164.223036 102.777,164.000046 102.5,164.000046 L96.5,164.000046 L96.5,164.000046 Z M107,169.000046 C105.89543,169.000046 105,169.895476 105,171.000046 C105,172.104606 105.89543,173.000046 107,173.000046 C108.10457,173.000046 109,172.104606 109,171.000046 C109,169.895476 108.10457,169.000046 107,169.000046 L107,169.000046 L107,169.000046 Z M96.5,169.000046 C96.223,169.000046 96,169.223046 96,169.500046 C96,169.777046 96.223,170.000046 96.5,170.000046 L102.5,170.000046 C102.777,170.000046 103,169.777046 103,169.500046 C103,169.223046 102.777,169.000046 102.5,169.000046 L96.5,169.000046 L96.5,169.000046 Z M96.5,171.000046 C96.223,171.000046 96,171.223046 96,171.500046 C96,171.777046 96.223,172.000046 96.5,172.000046 L102.5,172.000046 C102.777,172.000046 103,171.777046 103,171.500046 C103,171.223046 102.777,171.000046 102.5,171.000046 L96.5,171.000046 L96.5,171.000046 Z" id="path4740" fill="#484848"></path>
104
+ <path d="M233,226.000046 L233,229.000046 L223,229.000046 L223,226.000046 L233,226.000046 L233,226.000046 Z M238,228.000046 L238,235.000046 L234,231.562546 L238,228.000046 L238,228.000046 Z M233,231.000046 L233,232.000046 L230,232.000046 L230,231.000046 L233,231.000046 L233,231.000046 Z M229,231.000046 L229,232.000046 L226,232.000046 L226,231.000046 L229,231.000046 L229,231.000046 Z M225,231.000046 L225,232.000046 L223,232.000046 L223,231.000046 L225,231.000046 L225,231.000046 Z M233,234.000046 L233,237.000046 L223,237.000046 L223,234.000046 L233,234.000046 L233,234.000046 Z" id="path4742" fill="#484848"></path>
105
+ <polygon id="path4744" fill="#484848" points="4.0000001 296.000036 4.0000001 297.000036 3.0000001 297.000036 3.0000001 298.000036 2.0000001 298.000036 2.0000001 298.875036 1.5000001 298.375036 1.00000001e-07 297.000036 1.00000001e-07 302.000036 5.0000001 302.000036 3.5000001 300.375036 3.1250001 300.000036 4.0000001 300.000036 4.0000001 299.000036 5.0000001 299.000036 5.0000001 298.000036 6.0000001 298.000036 6.0000001 296.000036"></polygon>
106
+ <path d="M39,319.965726 C35.13483,319.965726 32,323.115926 32,327.000046 C32,330.884166 35.13483,334.034356 39,334.034356 C42.86633,334.034356 46,330.884166 46,327.000046 C46,323.115926 42.86633,319.965726 39,319.965726 L39,319.965726 L39,319.965726 Z" id="path4746" fill="#484848"></path>
107
+ <path d="M44.999956,327.000014 C44.9999561,329.143593 43.8563704,331.124342 41.9999765,332.196131 C40.1435826,333.267921 37.8564109,333.267921 36.000017,332.196131 L38.9999966,327.000014 L44.999956,327.000014 L44.999956,327.000014 Z" id="path4748" fill="#999999"></path>
108
+ <path d="M40.1519097,323.799088 C40.1519098,325.942667 39.008324,327.923416 37.15193,328.995205 C35.295536,330.066995 33.0083643,330.066995 31.1519703,328.995205 L34.1519501,323.799088 L40.1519097,323.799088 L40.1519097,323.799088 Z" id="path4750" fill="#CCCCCC" transform="translate(35.651940, 326.799068) rotate(120.000000) translate(-35.651940, -326.799068) "></path>
109
+ <path d="M45.3480406,321.201016 C45.3480407,323.344595 44.2044549,325.325344 42.3480609,326.397134 C40.4916669,327.468923 38.2044952,327.468923 36.3481012,326.397134 L39.348081,321.201016 L45.3480406,321.201016 L45.3480406,321.201016 Z" id="path4752" fill="#666666" transform="translate(40.848071, 324.200996) rotate(240.000000) translate(-40.848071, -324.200996) "></path>
110
+ <rect id="rect4754" fill="#484848" x="96" y="230.000016" width="14" height="2"></rect>
111
+ <rect id="rect4756" fill="#999999" x="97" y="227.000016" width="12" height="0.99999475"></rect>
112
+ <rect id="rect4758" fill="#999999" x="97" y="225.000016" width="12" height="0.99999475"></rect>
113
+ <rect id="rect4760" fill="#999999" x="97" y="236.000016" width="12" height="0.99999475"></rect>
114
+ <rect id="rect4762" fill="#999999" x="97" y="234.000016" width="12" height="0.99999475"></rect>
115
+ <rect id="rect4764" fill="#999999" x="97" y="223.000016" width="12" height="0.99999475"></rect>
116
+ <rect id="rect4766" fill="#999999" x="97" y="238.000016" width="12" height="0.99999475"></rect>
117
+ <path d="M160.999998,97.0000476 C159.909298,97.0000476 158.999998,97.9093476 158.999998,99.0000476 L158.999998,108.000048 C158.999998,109.090738 159.909298,110.000048 160.999998,110.000048 L172.999998,110.000048 C174.090698,110.000048 174.999998,109.090738 174.999998,108.000048 L174.999998,107.625048 C175.032798,107.535748 175.021298,107.452898 174.999998,107.375048 L174.999998,99.0000476 C174.999998,97.9093476 174.090698,97.0000476 172.999998,97.0000476 L160.999998,97.0000476 L160.999998,97.0000476 Z M160.999998,98.0000476 L172.999998,98.0000476 C173.553998,98.0000476 173.999998,98.4460476 173.999998,99.0000476 L173.999998,103.117998 L168.117948,108.999948 L160.999998,109.000048 C160.445998,109.000058 159.999998,108.554048 159.999998,108.000048 L159.999998,99.0000476 C159.999998,98.4460476 160.445998,98.0000476 160.999998,98.0000476 L160.999998,98.0000476 L160.999998,98.0000476 Z M161.499998,99.0000476 C161.222998,99.0000476 160.999998,99.2230476 160.999998,99.5000476 C160.999998,99.7424176 161.044398,100.034508 161.562498,100.000048 L161.999998,100.000048 L161.999998,105.000048 L161.499998,105.000048 C161.222998,105.000048 160.999998,105.223048 160.999998,105.500048 C160.999998,105.777038 161.222998,106.000048 161.499998,106.000048 L163.499998,106.000048 C163.776998,106.000048 163.999998,105.777038 163.999998,105.500048 C163.999998,105.223048 163.878218,104.971948 163.499998,105.000048 L162.999998,105.000048 L162.999998,100.000048 L163.499998,100.000048 C163.776998,100.000048 163.999998,99.7770476 163.999998,99.5000476 C163.999998,99.2230476 163.776998,99.0000476 163.499998,99.0000476 L161.499998,99.0000476 L161.499998,99.0000476 Z M173.999998,104.406298 L173.999998,105.250048 L170.281248,108.937548 L170.250048,109.000048 L169.406298,109.000048 L173.999998,104.406298 L173.999998,104.406298 Z M173.999998,106.625048 L173.999998,107.250048 L172.281248,109.000048 L171.656248,109.000048 L173.999998,106.625048 L173.999998,106.625048 Z" id="path4768" fill="#484848" transform="translate(167.010254, 103.500048) scale(-1, 1) translate(-167.010254, -103.500048) "></path>
118
+ <path d="M63,224.000036 L63,226.000036 L63,236.000036 L63,238.000036 L79,238.000036 L79,236.000036 L79,226.000036 L79,224.000036 L63,224.000036 L63,224.000036 Z M64,228.000036 L68,228.000036 L68,232.000036 L64,232.000036 L64,228.000036 L64,228.000036 Z M69,228.000036 L73,228.000036 L73,232.000036 L69,232.000036 L69,228.000036 L69,228.000036 Z M74,228.000036 L78,228.000036 L78,232.000036 L74,232.000036 L74,228.000036 L74,228.000036 Z M64,233.000036 L68,233.000036 L68,237.000036 L64,237.000036 L64,233.000036 L64,233.000036 Z M69,233.000036 L73,233.000036 L73,237.000036 L69,237.000036 L69,233.000036 L69,233.000036 Z M74,233.000036 L78,233.000036 L78,237.000036 L74,237.000036 L74,233.000036 L74,233.000036 Z" id="path4770" fill="#484848"></path>
119
+ <polygon id="path4788" fill="#484848" transform="translate(3.000000, 291.000036) scale(1, -1) translate(-3.000000, -291.000036) " points="4.0000001 288.000036 4.0000001 289.000036 3.0000001 289.000036 3.0000001 290.000036 2.0000001 290.000036 2.0000001 290.875036 1.5000001 290.375036 9.99999998e-08 289.000036 9.99999998e-08 294.000036 5.0000001 294.000036 3.5000001 292.375036 3.1250001 292.000036 4.0000001 292.000036 4.0000001 291.000036 5.0000001 291.000036 5.0000001 290.000036 6.0000001 290.000036 6.0000001 288.000036"></polygon>
120
+ <polygon id="path4790" fill="#484848" transform="translate(11.000000, 299.000038) scale(-1, 1) translate(-11.000000, -299.000038) " points="12 296.000038 12 297.000038 11 297.000038 11 298.000038 10 298.000038 10 298.875038 9.5 298.375038 8 297.000038 8 302.000038 13 302.000038 11.5 300.375038 11.125 300.000038 12 300.000038 12 299.000038 13 299.000038 13 298.000038 14 298.000038 14 296.000038"></polygon>
121
+ <polygon id="path4792" fill="#484848" transform="translate(11.000000, 291.000036) scale(-1, -1) translate(-11.000000, -291.000036) " points="12 288.000036 12 289.000036 11 289.000036 11 290.000036 10 290.000036 10 290.875036 9.5 290.375036 8 289.000036 8 294.000036 13 294.000036 11.5 292.375036 11.125 292.000036 12 292.000036 12 291.000036 13 291.000036 13 290.000036 14 290.000036 14 288.000036"></polygon>
122
+ <path d="M257,3.76500001e-05 L257,14.0000372 L268,14.0000372 L268,5.00003765 L268,4.00003765 L264,3.76500001e-05 L263,3.76500001e-05 L257,3.76500001e-05 L257,3.76500001e-05 L257,3.76500001e-05 Z M258,1.00003765 L263.34375,1.00003765 L267,4.65628765 L267,13.0000372 L262,13.0000372 L259,13.0000372 L258,13.0000372 L258,1.00003765 L258,1.00003765 L258,1.00003765 Z M260,6.00003765 L260,7.00003765 L265,7.00003765 L265,6.00003765 L260,6.00003765 L260,6.00003765 L260,6.00003765 Z M260,8.00003765 L260,9.00003715 L265,9.00003715 L265,8.00003765 L260,8.00003765 L260,8.00003765 L260,8.00003765 Z M260,10.0000372 L260,11.0000372 L265,11.0000372 L265,10.0000372 L260,10.0000372 L260,10.0000372 L260,10.0000372 Z" id="path4795" fill="#484848"></path>
123
+ <path d="M1.0000001,3.76500001e-05 L1.0000001,14.0000372 L12,14.0000372 L12,5.00003765 L12,4.00003765 L8,3.76500001e-05 L7,3.76500001e-05 L1.0000001,3.76500001e-05 L1.0000001,3.76500001e-05 Z M2.0000001,1.00003765 L7.5,1.00003765 L11,4.50003765 L11,13.0000372 L6.0000001,13.0000372 L3.0000001,13.0000372 L2.0000001,13.0000372 L2.0000001,1.00003765 L2.0000001,1.00003765 Z" id="path4797" fill="#484848"></path>
124
+ <polygon id="path4799" fill="#484848" transform="translate(41.812500, 8.359423) scale(-1, 1) translate(-41.812500, -8.359423) " points="43.625 5.00004756 43.625 6.87504756 42.25 8.34379756 43.625 9.81254756 43.625 11.7187976 40 8.34379756"></polygon>
125
+ <polygon id="path4801" fill="#484848" transform="translate(37.156250, 8.328173) scale(-1, 1) translate(-37.156250, -8.328173) " points="35.3125 5.00004756 39 8.37504756 35.3125 11.6562976 35.3125 9.75004756 36.75 8.34379756 35.3125 6.81254756"></polygon>
126
+ <path d="M34,3.75600001e-05 L34,14.0000376 L45,14.0000376 L45,5.00003756 L45,4.00003756 L41,3.75600001e-05 L40,3.75600001e-05 L34,3.75600001e-05 L34,3.75600001e-05 Z M35,1.00003756 L40.5,1.00003756 L44,4.50003756 L44,13.0000376 L39,13.0000376 L36,13.0000376 L35,13.0000376 L35,1.00003756 L35,1.00003756 Z" id="path4803" fill="#484848" transform="translate(39.500000, 7.000038) scale(-1, 1) translate(-39.500000, -7.000038) "></path>
127
+ <path d="M97,3.76500001e-05 L97,14.0000372 L108,14.0000372 L108,5.00003765 L108,4.00003765 L104,3.76500001e-05 L103,3.76500001e-05 L97,3.76500001e-05 L97,3.76500001e-05 Z M98,1.00003765 L103.5,1.00003765 L107,4.50003765 L107,13.0000372 L102,13.0000372 L99,13.0000372 L98,13.0000372 L98,1.00003765 L98,1.00003765 Z" id="path4805" fill="#484848"></path>
128
+ <path d="M129,3.75600001e-05 L129,14.0000376 L140,14.0000376 L140,5.00003756 L140,4.00003756 L136,3.75600001e-05 L135,3.75600001e-05 L129,3.75600001e-05 L129,3.75600001e-05 Z M130,1.00003756 L135.5,1.00003756 L139,4.50003756 L139,13.0000376 L134,13.0000376 L131,13.0000376 L130,13.0000376 L130,1.00003756 L130,1.00003756 Z" id="path4807" fill="#484848" transform="translate(134.500000, 7.000038) scale(-1, 1) translate(-134.500000, -7.000038) "></path>
129
+ <path d="M289,3.76500001e-05 L289,4.75003765 C289.19146,4.62989765 289.37062,4.52919765 289.5625,4.43753765 L290,4.21878765 L290,1.00003765 L295.34375,1.00003765 L299,4.65628765 L299,13.0000372 L294,13.0000372 L294,13.9687872 C294,13.9791872 294.00016,13.9896872 294,13.9999872 L300,13.9999872 L300,4.99998765 L300,3.99998765 L296,-1.23499999e-05 L295,-1.23499999e-05 L289,-1.23499999e-05 L289,3.76500001e-05 L289,3.76500001e-05 Z M290,5.34378765 C289.63877,5.51634765 289.31108,5.72019765 289.03125,6.00003765 C288.39787,6.63341765 288,7.53353765 288,8.50003765 C288,9.89355715 288.8237,11.0644372 290,11.6250372 L290,13.9687872 C290,14.5227872 290.44599,14.9687872 291,14.9687872 L292,14.9999872 C292.554,14.9999872 293,14.5227372 293,13.9687372 L293,11.6249872 C294.17629,11.0643872 295,9.89350715 295,8.49998765 C295,7.10646765 294.17881,5.90685765 293,5.34373765 L293,7.99998765 L291.53125,8.99998715 L290,7.99998765 L290,5.34373765 L290,5.34378765 L290,5.34378765 Z" id="path4809" fill="#484848"></path>
130
+ <path d="M32,31.0000372 L32,41.0000372 L35,41.0000372 L35,40.0000372 L34,40.0000372 L33,40.0000372 L33,32.0000372 L37.5,32.0000372 L40,34.5000372 L40,35.0000372 L41,35.0000372 L41,34.0000372 L38,31.0000372 L37,31.0000372 L32,31.0000372 L32,31.0000372 L32,31.0000372 Z M36,36.0000372 L36,46.0000372 L45,46.0000372 L45,40.0000372 L45,39.0000372 L42,36.0000372 L41,36.0000372 L36,36.0000372 L36,36.0000372 L36,36.0000372 Z M37,37.0000372 L41.5,37.0000372 L44,39.5000372 L44,45.0000372 L39,45.0000372 L38,45.0000372 L37,45.0000372 L37,37.0000372 L37,37.0000372 L37,37.0000372 Z" id="path4817" fill="#484848"></path>
131
+ <path d="M193.15625,3.75600001e-05 L193.15625,14.0000376 L201.96875,14.0000376 L200.96875,13.0000376 L199.65625,13.0000376 L198.15625,13.0000376 L195.15625,13.0000376 L194.15625,13.0000376 L194.15625,1.00003756 L199.65625,1.00003756 L203.15625,4.50003756 L203.15625,5.71878756 C203.77093,6.48867626 204.15625,7.44758096 204.15625,8.50003756 L204.15625,5.00003756 L204.15625,4.00003756 L200.15625,3.75600001e-05 L199.15625,3.75600001e-05 L193.15625,3.75600001e-05 L193.15625,3.75600001e-05 L193.15625,3.75600001e-05 Z M204.15625,8.50003756 C204.15625,8.98322516 203.95548,9.36279756 203.8125,9.78128756 L204.15625,10.1250376 L204.15625,8.50003756 L204.15625,8.50003756 L204.15625,8.50003756 Z M199.65625,5.00003756 C197.7351,5.00003756 196.15625,6.57887756 196.15625,8.50003756 C196.15625,10.4211876 197.7351,12.0000376 199.65625,12.0000376 C200.15164,12.0000376 200.60258,11.8762976 201.03125,11.6875376 L203.375,14.0312876 L205,12.4062876 L202.71875,10.1250376 C202.98525,9.63218756 203.15625,9.09543756 203.15625,8.50003756 C203.15625,6.57887756 201.5774,5.00003756 199.65625,5.00003756 L199.65625,5.00003756 L199.65625,5.00003756 Z M199.62505,6.00003756 C201.00576,6.00003756 202.12505,7.11932756 202.12505,8.50003756 C202.12505,9.88074756 201.00576,11.0000376 199.62505,11.0000376 C198.24434,11.0000376 197.12505,9.88074756 197.12505,8.50003756 C197.12505,7.11932756 198.24434,6.00003756 199.62505,6.00003756 L199.62505,6.00003756 L199.62505,6.00003756 Z" id="path4828" fill="#484848" transform="translate(199.078125, 7.015663) scale(-1, 1) translate(-199.078125, -7.015663) "></path>
132
+ <path d="M322,3.75600001e-05 L322,4.75003756 C322.19146,4.62989416 322.37062,4.52919586 322.5625,4.43753756 L323,4.21878756 L323,1.00003756 L328.34375,1.00003756 L332,4.65628756 L332,13.0000376 L327,13.0000376 L327,13.9687876 C327,13.9792176 327.00016,13.9896376 327,14.0000376 L333,14.0000376 L333,5.00003756 L333,4.00003756 L329,3.75600001e-05 L328,3.75600001e-05 L322,3.75600001e-05 L322,3.75600001e-05 L322,3.75600001e-05 Z M323,5.34378756 C322.63877,5.51634376 322.31108,5.72020296 322.03125,6.00003756 C321.39787,6.63341426 321,7.53353746 321,8.50003756 C321,9.89355956 321.8237,11.0644336 323,11.6250376 L323,13.9687876 C323,14.5227896 323.44599,14.9687896 324,14.9687876 L325,15.0000376 C325.554,15.0000356 326,14.5227896 326,13.9687876 L326,11.6250376 C327.17629,11.0644346 328,9.89355956 328,8.50003756 C328,7.10651536 327.17881,5.90690346 326,5.34378756 L326,8.00003756 L324.53125,9.00003756 L323,8.00003756 L323,5.34378756 L323,5.34378756 L323,5.34378756 Z" id="path4830" fill="#484848" transform="translate(327.000000, 7.500038) scale(-1, 1) translate(-327.000000, -7.500038) "></path>
133
+ <rect id="rect6517" fill="#484848" x="69" y="67.0000392" width="6.9999981" height="1"></rect>
134
+ <rect id="rect6519" fill="#484848" x="65" y="69.0000392" width="11" height="1"></rect>
135
+ <rect id="rect6523" fill="#484848" x="65" y="73.0000392" width="11" height="1"></rect>
136
+ <rect id="rect6525" fill="#484848" x="65" y="75.0000392" width="3" height="1"></rect>
137
+ <polygon id="rect6527" fill="#484848" points="69 75.0000372 69 76.0000372 70 76.0000372 70 78.0000372 69 78.0000372 69 79.0000372 72 79.0000372 72 78.0000372 71 78.0000372 71 76.0000372 72 76.0000372 72 75.0000372 71 75.0000372 70 75.0000372"></polygon>
138
+ <rect id="rect6539" fill="#484848" x="65" y="71.0000392" width="11" height="1"></rect>
139
+ <rect id="rect6547" fill="#484848" x="69" y="65.0000392" width="7" height="1"></rect>
140
+ <rect id="rect6606" fill="#484848" x="65" y="65.0000392" width="3" height="3"></rect>
141
+ <path d="M6.4240611,257.011056 C5.1405211,260.155576 3.6254411,263.882796 2.2678111,267.198556 L4.7678111,267.198556 L5.6740611,264.698556 L9.017811,264.698556 L9.830311,267.198556 L12.455311,267.198556 C11.117081,263.846776 9.637571,260.244636 8.361561,257.011056 L6.4240611,257.011056 L6.4240611,257.011056 L6.4240611,257.011056 Z M7.392811,259.979806 L8.299061,262.667306 L6.3928111,262.667306 L7.392811,259.979806 L7.392811,259.979806 L7.392811,259.979806 Z" id="path4763" fill="#484848"></path>
142
+ <polygon id="path3812" fill="#999999" points="1.00000001e-07 269.011056 1.00000001e-07 271.000036 15 271.000036 15 269.011056"></polygon>
143
+ <path d="M101.53125,31.0000372 C101.23664,31.0000372 101,31.2366772 101,31.5312872 L101,32.0000372 L100.53125,32.0000372 C100.23664,32.0000372 100,32.2366772 100,32.5312872 L100,33.4687872 C100,33.7633872 100.23664,34.0000372 100.53125,34.0000372 L101.53125,34.0000372 L104.46875,34.0000372 L105.46875,34.0000372 C105.76336,34.0000372 106,33.7633872 106,33.4687872 L106,32.5312872 C106,32.2366772 105.76336,32.0000372 105.46875,32.0000372 L105,32.0000372 L105,31.5312872 C105,31.2366772 104.76336,31.0000372 104.46875,31.0000372 L101.53125,31.0000372 L101.53125,31.0000372 L101.53125,31.0000372 Z M99,32.0000372 C97.9093,32.0000372 97,32.9093372 97,34.0000372 L97,43.0000372 C97,44.0907372 97.9093,45.0000372 99,45.0000372 L100,45.0000372 L100,44.0000372 L99,44.0000372 C98.446,44.0000372 98,43.5540372 98,43.0000372 L98,34.0000372 C98,33.4460372 98.446,33.0000372 99,33.0000372 L99,32.5312872 C99,32.3477072 99.0316,32.1646772 99.0937,32.0000372 L99,32.0000372 L99,32.0000372 L99,32.0000372 Z M106.90625,32.0000372 C106.96845,32.1646872 106.99995,32.3477072 106.99995,32.5312872 L106.99995,33.0000372 C107.55395,33.0000372 107.99995,33.4460372 107.99995,34.0000372 L107.99995,36.0000372 L108.99995,36.0000372 L108.99995,34.0000372 C108.99995,32.9093372 108.09065,32.0000372 106.99995,32.0000372 L106.90625,32.0000372 L106.90625,32.0000372 L106.90625,32.0000372 Z M102,37.0000372 C101.446,37.0000372 101,37.4460372 101,38.0000372 L101,45.0000372 C101,45.5540372 101.446,46.0000372 102,46.0000372 L109,46.0000372 C109.554,46.0000372 110,45.5540372 110,45.0000372 L110,38.0000372 C110,37.4460372 109.554,37.0000372 109,37.0000372 L102,37.0000372 L102,37.0000372 L102,37.0000372 Z M102,38.0000372 L109,38.0000372 L109,45.0000372 L102,45.0000372 L102,38.0000372 L102,38.0000372 L102,38.0000372 Z M103,39.0000372 L103,40.0000372 L105,40.0000372 L105,44.0000372 L106,44.0000372 L106,40.0000372 L108,40.0000372 L108,39.0000372 L103,39.0000372 L103,39.0000372 L103,39.0000372 Z" id="path3631" fill="#484848"></path>
144
+ <path d="M133.53125,31.0000372 C133.23664,31.0000372 133,31.2366772 133,31.5312872 L133,32.0000372 L132.53125,32.0000372 C132.23664,32.0000372 132,32.2366772 132,32.5312872 L132,33.4687872 C132,33.7633872 132.23664,34.0000372 132.53125,34.0000372 L133.53125,34.0000372 L136.46875,34.0000372 L137.46875,34.0000372 C137.76336,34.0000372 138,33.7633872 138,33.4687872 L138,32.5312872 C138,32.2366772 137.76336,32.0000372 137.46875,32.0000372 L137,32.0000372 L137,31.5312872 C137,31.2366772 136.76336,31.0000372 136.46875,31.0000372 L133.53125,31.0000372 L133.53125,31.0000372 L133.53125,31.0000372 Z M131,32.0000372 C129.9093,32.0000372 129,32.9093372 129,34.0000372 L129,36.0000372 L130,36.0000372 L130,34.0000372 C130,33.4460372 130.446,33.0000372 131,33.0000372 L131,32.5312872 C131,32.3477072 131.0316,32.1646872 131.0937,32.0000372 L131,32.0000372 L131,32.0000372 L131,32.0000372 Z M138.90625,32.0000372 C138.96835,32.1646772 138.99995,32.3477072 138.99995,32.5312872 L138.99995,33.0000372 C139.55395,33.0000372 139.99995,33.4460372 139.99995,34.0000372 L139.99995,43.0000372 C139.99995,43.5540372 139.55395,44.0000372 138.99995,44.0000372 L137.99995,44.0000372 L137.99995,45.0000372 L138.99995,45.0000372 C140.09065,45.0000372 140.99995,44.0907372 140.99995,43.0000372 L140.99995,34.0000372 C140.99995,32.9093372 140.09065,32.0000372 138.99995,32.0000372 L138.90625,32.0000372 L138.90625,32.0000372 L138.90625,32.0000372 Z M129,37.0000372 C128.446,37.0000372 128,37.4460372 128,38.0000372 L128,45.0000372 C128,45.5540372 128.446,46.0000372 129,46.0000372 L136,46.0000372 C136.554,46.0000372 137,45.5540372 137,45.0000372 L137,38.0000372 C137,37.4460372 136.554,37.0000372 136,37.0000372 L129,37.0000372 L129,37.0000372 L129,37.0000372 Z M129,38.0000372 L136,38.0000372 L136,45.0000372 L129,45.0000372 L129,38.0000372 L129,38.0000372 L129,38.0000372 Z M130,39.0000372 L130,40.0000372 L132,40.0000372 L132,44.0000372 L133,44.0000372 L133,40.0000372 L135,40.0000372 L135,39.0000372 L130,39.0000372 L130,39.0000372 L130,39.0000372 Z" id="path3655" fill="#484848"></path>
145
+ <path d="M197.53125,31.0000372 C197.23664,31.0000372 197,31.2366772 197,31.5312872 L197,32.0000372 L196.53125,32.0000372 C196.23664,32.0000372 196,32.2366772 196,32.5312872 L196,33.4687872 C196,33.7633872 196.23664,34.0000372 196.53125,34.0000372 L197.53125,34.0000372 L200.46875,34.0000372 L201.46875,34.0000372 C201.76336,34.0000372 202,33.7633872 202,33.4687872 L202,32.5312872 C202,32.2366772 201.76336,32.0000372 201.46875,32.0000372 L201,32.0000372 L201,31.5312872 C201,31.2366772 200.76336,31.0000372 200.46875,31.0000372 L197.53125,31.0000372 L197.53125,31.0000372 L197.53125,31.0000372 Z M195,32.0000372 C193.9093,32.0000372 193,32.9093372 193,34.0000372 L193,36.0000372 L194,36.0000372 L194,34.0000372 C194,33.4460372 194.446,33.0000372 195,33.0000372 L195,32.5312872 C195,32.3477072 195.0316,32.1646872 195.0937,32.0000372 L195,32.0000372 L195,32.0000372 L195,32.0000372 Z M202.90625,32.0000372 C202.96835,32.1646772 202.99995,32.3477072 202.99995,32.5312872 L202.99995,33.0000372 C203.55395,33.0000372 203.99995,33.4460372 203.99995,34.0000372 L203.99995,43.0000372 C203.99995,43.5540372 203.55395,44.0000372 202.99995,44.0000372 L201.99995,44.0000372 L201.99995,45.0000372 L202.99995,45.0000372 C204.09065,45.0000372 204.99995,44.0907372 204.99995,43.0000372 L204.99995,34.0000372 C204.99995,32.9093372 204.09065,32.0000372 202.99995,32.0000372 L202.90625,32.0000372 L202.90625,32.0000372 L202.90625,32.0000372 Z M193,37.0000372 C192.446,37.0000372 192,37.4460372 192,38.0000372 L192,45.0000372 C192,45.5540372 192.446,46.0000372 193,46.0000372 L200,46.0000372 C200.554,46.0000372 201,45.5540372 201,45.0000372 L201,38.0000372 C201,37.4460372 200.554,37.0000372 200,37.0000372 L193,37.0000372 L193,37.0000372 L193,37.0000372 Z M193,38.0000372 L200,38.0000372 L200,45.0000372 L193,45.0000372 L193,38.0000372 L193,38.0000372 L193,38.0000372 Z M194,39.0000372 L194,40.0000372 L194,44.0000372 L195,44.0000372 L196,43.0000372 L197,43.0000372 L198,44.0000372 L199,44.0000372 L199,40.0000372 L199,39.0000372 L198,39.0000372 L198,42.0000372 L197.75,42.0000372 L197,42.0000372 L197,41.0000372 L196,41.0000372 L196,42.0000372 L195.25,42.0000372 L195,42.0000372 L195,39.0000372 L194,39.0000372 L194,39.0000372 L194,39.0000372 Z" id="path3708" fill="#484848"></path>
146
+ <rect id="rect3807" fill="#484848" x="255" y="99.0000362" width="16" height="7.9999976" rx="2"></rect>
147
+ <path d="M257,105.000036 L257,101.625036 C257,101.272786 257.27275,101.000036 257.625,101.000036 L270,101.000036 L270,100.625036 C270,100.272786 269.72725,100.000036 269.375,100.000036 L256.625,100.000036 C256.27275,100.000036 256,100.272786 256,100.625036 L256,104.375036 C256,104.727286 256.27275,105.000036 256.625,105.000036 L257,105.000036 L257,105.000036 L257,105.000036 Z" id="rect3811" fill="#767676"></path>
148
+ <g id="text3563" transform="translate(98.000000, 128.000048)" fill="#484848">
149
+ <path d="M9.018035,1.55223 L9.018035,3.99894 C8.38312,3.71505 8.006481,3.51817 7.402554,3.37363 C6.798612,3.22911 6.228229,3.15684 5.691404,3.15683 C4.979066,3.15684 4.452559,3.25493 4.111882,3.45106 C3.771197,3.64722 3.600856,3.95176 3.60086,4.3647 C3.600856,4.67442 3.714416,4.91703 3.941541,5.09252 C4.17382,5.26287 4.591928,5.40998 5.195868,5.53386 L6.46568,5.78937 C7.75097,6.04747 8.664614,6.43977 9.206616,6.96627 C9.748599,7.49278 10.019596,8.24125 10.019606,9.21167 C10.019596,10.48665 9.640201,11.43642 8.881421,12.061 C8.127784,12.68042 6.974114,12.99013 5.420408,12.99013 C4.687422,12.99013 3.951861,12.92043 3.213722,12.78108 C2.475576,12.64171 1.737434,12.43524 0.999293,12.16166 L0.999293,9.64526 C1.737434,10.03757 2.449767,10.33437 3.136295,10.53568 C3.827977,10.73183 4.493853,10.82991 5.133926,10.82991 C5.784312,10.82991 6.282428,10.72151 6.628278,10.50471 C6.974114,10.28791 7.147035,9.9782 7.147043,9.57558 C7.147035,9.21425 7.028313,8.93551 6.790876,8.73936 C6.558587,8.54321 6.091441,8.36771 5.389437,8.21285 L4.235766,7.95734 C3.079511,7.70958 2.23297,7.3147 1.696142,6.7727 C1.164471,6.23071 0.898636,5.50031 0.898638,4.5815 C0.898636,3.43042 1.270288,2.54516 2.013595,1.92573 C2.756896,1.30632 3.825396,0.99661 5.219096,0.9966 C5.853996,0.99661 6.506968,1.0456 7.178014,1.14372 C7.849045,1.23662 8.30053,1.36125 9.018035,1.55223" id="path3568"></path>
150
+ </g>
151
+ <path d="M97.5,135.000046 L109.5,135.000046 C109.777,135.000046 110,135.204466 110,135.458376 L110,135.541676 C110,135.795626 109.777,136.000046 109.5,136.000046 L97.5,136.000046 C97.223,136.000046 97,135.795626 97,135.541716 L97,135.458416 C97,135.204466 97.223,135.000046 97.5,135.000046 L97.5,135.000046 L97.5,135.000046 Z" id="path3593" fill="#484848"></path>
152
+ <polygon id="path3580" fill="url(#linearGradient-2)" points="1 353.000046 1 366.000046 2 366.000046 2 353.000046"></polygon>
153
+ <path d="M5.49999,352.583406 C4.70924,352.592406 3.89969,352.923736 3,353.958406 L3,362.000046 C6.6012,357.941396 9.31153,364.816026 13,361.000046 L13,352.958396 C10.24455,355.892396 7.87226,352.554876 5.49999,352.583436 L5.49999,352.583406 L5.49999,352.583406 Z" id="path3574" fill="#B50000"></path>
154
+ <path d="M5.49999,353.583406 C4.70924,353.592406 3.89969,353.923736 3,354.958406 L3,362.000046 C6.6012,357.941396 9.31153,364.816026 13,361.000046 L13,353.958396 C10.24455,356.892396 7.87226,353.554876 5.49999,353.583436 L5.49999,353.583406 L5.49999,353.583406 Z" id="path4350" fill="url(#linearGradient-3)"></path>
155
+ <path d="M13,352.968786 C12.69195,353.296796 12.38992,353.534076 12.09091,353.718786 L12.09091,360.718786 C9.71535,362.186246 7.60705,359.568416 5.5,359.593786 C4.70925,359.602786 3.89969,359.934116 3,360.968786 L3,361.218786 L3,361.968786 L3,361.999986 C3.17642,361.801166 3.34007,361.616886 3.51136,361.468736 C3.68265,361.320586 3.85541,361.196786 4.02273,361.093736 C4.35736,360.887636 4.69139,360.777926 5.01705,360.718736 C4.95245,360.709736 4.88504,360.701536 4.81818,360.687536 C5.04723,360.624336 5.27562,360.596336 5.5,360.593836 C7.02669,360.575436 8.55867,361.955266 10.1875,362.156336 C10.2518,362.164336 10.32179,362.152336 10.38636,362.156336 C10.47236,362.161336 10.55529,362.190036 10.64205,362.187536 C10.73685,362.184536 10.83032,362.168736 10.92614,362.156336 C11.05702,362.139336 11.19099,362.099936 11.32386,362.062636 C11.51285,362.009736 11.69974,361.945036 11.89205,361.843886 C11.92215,361.828386 11.94705,361.798186 11.97725,361.781386 C12.14707,361.687086 12.31501,361.574876 12.48862,361.437636 C12.65664,361.304806 12.82811,361.177946 12.99998,361.000136 L12.99998,360.968936 L12.99998,359.968936 L12.99998,352.968936 L13,352.968786 L13,352.968786 Z" id="path4364" fill="#8E0000"></path>
156
+ <polygon id="path3600" fill="#484848" points="1 353.000046 1 366.000046 2 366.000046 2 353.000046"></polygon>
157
+ <path d="M5.49999,352.583406 C4.70924,352.592406 3.89969,352.923736 3,353.958406 L3,362.000046 C6.6012,357.941396 9.31153,364.816026 13,361.000046 L13,352.958396 C10.24455,355.892396 7.87226,352.554876 5.49999,352.583436 L5.49999,352.583406 L5.49999,352.583406 Z" id="path3602" fill="#B50000"></path>
158
+ <path d="M5.49999,353.583406 C4.70924,353.592406 3.89969,353.923736 3,354.958406 L3,362.000046 C6.6012,357.941396 9.31153,364.816026 13,361.000046 L13,353.958396 C10.24455,356.892396 7.87226,353.554876 5.49999,353.583436 L5.49999,353.583406 L5.49999,353.583406 Z" id="path3604" fill="#B50000"></path>
159
+ <path d="M13,352.968786 C12.69195,353.296796 12.38992,353.534076 12.09091,353.718786 L12.09091,360.718786 C9.71535,362.186246 7.60705,359.568416 5.5,359.593786 C4.70925,359.602786 3.89969,359.934116 3,360.968786 L3,361.218786 L3,361.968786 L3,361.999986 C3.17642,361.801166 3.34007,361.616886 3.51136,361.468736 C3.68265,361.320586 3.85541,361.196786 4.02273,361.093736 C4.35736,360.887636 4.69139,360.777926 5.01705,360.718736 C4.95245,360.709736 4.88504,360.701536 4.81818,360.687536 C5.04723,360.624336 5.27562,360.596336 5.5,360.593836 C7.02669,360.575436 8.55867,361.955266 10.1875,362.156336 C10.2518,362.164336 10.32179,362.152336 10.38636,362.156336 C10.47236,362.161336 10.55529,362.190036 10.64205,362.187536 C10.73685,362.184536 10.83032,362.168736 10.92614,362.156336 C11.05702,362.139336 11.19099,362.099936 11.32386,362.062636 C11.51285,362.009736 11.69974,361.945036 11.89205,361.843886 C11.92215,361.828386 11.94705,361.798186 11.97725,361.781386 C12.14707,361.687086 12.31501,361.574876 12.48862,361.437636 C12.65664,361.304806 12.82811,361.177946 12.99998,361.000136 L12.99998,360.968936 L12.99998,359.968936 L12.99998,352.968936 L13,352.968786 L13,352.968786 Z" id="path3606" fill="#B50000"></path>
160
+ <path d="M63,320.000036 L63,334.000036 L66,334.000036 L66,333.000036 L64,333.000036 L64,321.000036 L66,321.000036 L66,320.000036 L63,320.000036 L63,320.000036 Z M76,320.000036 L76,321.000036 L78,321.000036 L78,333.000036 L76,333.000036 L76,334.000036 L79,334.000036 L79,320.000036 L76,320.000036 L76,320.000036 Z" id="rect3578" fill="#484848"></path>
161
+ <g id="text4354" transform="translate(68.000000, 322.000048)" fill="#484848">
162
+ <path d="M2.006423,6.43503 L3.998186,6.43503 C5.835512,6.43503 7.014695,5.13245 7.014695,3.10316 C7.014695,1.1013 5.876646,0.00439 3.792515,0.00439 L0.001738,0.00439 L0.001738,10 L2.006423,10 L2.006423,6.43503 M2.006423,4.72111 L2.006423,1.71831 L3.35375,1.71831 C4.450661,1.71831 4.957984,2.19821 4.957984,3.22657 C4.957984,4.24121 4.450661,4.72111 3.35375,4.72111 L2.006423,4.72111" id="path4361"></path>
163
+ </g>
164
+ <path d="M110,320.531238 L104,321.468738 L104,322.468738 L106,322.156238 L106,324.999988 L103,324.999988 L103,325.999988 L106,325.999988 L106,328.999988 L104,328.999988 L103,328.999988 L103,333.999988 L104,333.999988 L104,332.999988 L109,332.999988 L110,332.999988 L110,328.999988 L109,328.999988 L107,328.999988 L107,325.999988 L110,325.999988 L110,324.999988 L107,324.999988 L107,321.999988 L110,321.531238 L110,320.531238 L110,320.531238 L110,320.531238 Z M96,320.999988 L96,321.999988 L102,321.999988 L102,320.999988 L96,320.999988 L96,320.999988 L96,320.999988 Z M95,322.999988 L95,323.999988 L103,323.999988 L103,322.999988 L95,322.999988 L95,322.999988 L95,322.999988 Z M96,324.999988 L96,325.999988 L102,325.999988 L102,324.999988 L96,324.999988 L96,324.999988 L96,324.999988 Z M96,326.999988 L96,327.999988 L102,327.999988 L102,326.999988 L96,326.999988 L96,326.999988 L96,326.999988 Z M96,328.999988 L96,333.999988 L97,333.999988 L97,332.999988 L101,332.999988 L102,332.999988 L102,328.999988 L101,328.999988 L97,328.999988 L96,328.999988 L96,328.999988 L96,328.999988 Z M97,329.999988 L101,329.999988 L101,331.999988 L97,331.999988 L97,329.999988 L97,329.999988 L97,329.999988 Z M104,329.999988 L109,329.999988 L109,331.999988 L104,331.999988 L104,329.999988 L104,329.999988 L104,329.999988 Z" id="rect4258" fill="#484848"></path>
165
+ <path d="M127,320.000006 L127,321.000006 L128,321.000006 L128,320.000006 L127,320.000006 L127,320.000006 L127,320.000006 Z M129,320.000006 L129,321.000006 L130,321.000006 L130,320.000006 L129,320.000006 L129,320.000006 L129,320.000006 Z M131,320.000006 L131,321.000006 L132,321.000006 L132,320.000006 L131,320.000006 L131,320.000006 L131,320.000006 Z M133,320.000006 L133,321.000006 L134,321.000006 L134,320.000006 L133,320.000006 L133,320.000006 L133,320.000006 Z M135,320.000006 L135,321.000006 L136,321.000006 L136,320.000006 L135,320.000006 L135,320.000006 L135,320.000006 Z M137,320.000006 L137,321.000006 L138,321.000006 L138,320.000006 L137,320.000006 L137,320.000006 L137,320.000006 Z M139,320.000006 L139,321.000006 L140,321.000006 L140,320.000006 L139,320.000006 L139,320.000006 L139,320.000006 Z M141,320.000006 L141,321.000006 L142,321.000006 L142,320.000006 L141,320.000006 L141,320.000006 L141,320.000006 Z M127,322.000006 L127,323.000006 L128,323.000006 L128,322.000006 L127,322.000006 L127,322.000006 L127,322.000006 Z M129,322.000006 L129,327.000006 L129,328.000006 L129,331.000006 L134,331.000006 L134,330.000006 L130,330.000006 L130,329.000006 L134,329.000006 L135,329.000006 L135,328.000006 L130,328.000006 L130,327.000006 L136,327.000006 L140,327.000006 L140,326.000006 L140,322.000006 L136,322.000006 L129,322.000006 L129,322.000006 L129,322.000006 Z M141,322.000006 L141,323.000006 L142,323.000006 L142,322.000006 L141,322.000006 L141,322.000006 L141,322.000006 Z M130,323.000006 L139,323.000006 L139,324.000006 L130,324.000006 L130,323.000006 L130,323.000006 L130,323.000006 Z M127,324.000006 L127,325.000006 L128,325.000006 L128,324.000006 L127,324.000006 L127,324.000006 L127,324.000006 Z M141,324.000006 L141,325.000006 L142,325.000006 L142,324.000006 L141,324.000006 L141,324.000006 L141,324.000006 Z M130,325.000006 L138.96875,325.000006 L138.96875,326.000006 L130,326.000006 L130,325.000006 L130,325.000006 L130,325.000006 Z M127,326.000006 L127,327.000006 L128,327.000006 L128,326.000006 L127,326.000006 L127,326.000006 L127,326.000006 Z M141,326.000006 L141,327.000006 L142,327.000006 L142,326.000006 L141,326.000006 L141,326.000006 L141,326.000006 Z M138,327.750006 L134.3125,331.125006 L138,334.406256 L138,332.500006 L136.5625,331.093756 L138,329.562506 L138,327.750006 L138,327.750006 L138,327.750006 Z M139,327.750006 L139,329.625006 L140.375,331.093756 L139,332.562506 L139,334.468756 L142.625,331.093756 L139,327.750006 L139,327.750006 L139,327.750006 Z M127,328.000006 L127,329.000006 L128,329.000006 L128,328.000006 L127,328.000006 L127,328.000006 L127,328.000006 Z M127,330.000006 L127,331.000006 L128,331.000006 L128,330.000006 L127,330.000006 L127,330.000006 L127,330.000006 Z M127,332.000006 L127,333.000006 L128,333.000006 L128,332.000006 L127,332.000006 L127,332.000006 L127,332.000006 Z M129,332.000006 L129,333.000006 L130,333.000006 L130,332.000006 L129,332.000006 L129,332.000006 L129,332.000006 Z M131,332.000006 L131,333.000006 L132,333.000006 L132,332.000006 L131,332.000006 L131,332.000006 L131,332.000006 Z M133,332.000006 L133,333.000006 L134,333.000006 L134,332.000006 L133,332.000006 L133,332.000006 L133,332.000006 Z" id="rect5051" fill="#484848"></path>
166
+ <polyline id="Shape" fill="#484848" points="34 140.96 34.51 138.96 36.12 138.96 38.12 130.96 36.46 130.96 36.97 128.96 42.57 128.96 42.06 130.96 40.47 130.96 38.47 138.96 40.06 138.96 39.55 140.96 33.95 140.96"></polyline>
167
+ </g>
168
+ </g>
169
+ <g id="copy" transform="translate(127.000000, 191.000000)" fill="#484848">
170
+ <path d="M4.92358491,14.77875 C5.10724448,14.9658237 5.40762502,14.9729012 5.6,14.7946875 L9.07264151,11.3464246 L3.21428571,6.42857143 L0.130188679,9.3628125 C-0.0466870613,9.55348192 -0.0395925535,9.84917423 0.146226415,10.03125 L4.92358491,14.77875 Z" id="Shape"></path>
171
+ <path d="M9.31698113,9.98572213 C10.354717,11 10.859434,9.96 10.354717,8.7009375 C9.85,7.441875 9.6754717,7.1559375 10.709434,6.2278125 C13.490566,3.755625 14.6613208,3.2728125 14.9056604,2.2228125 C15.0056604,1.648125 15.1349057,1.2 14.4509434,0.5203125 C13.7839623,-0.1425 13.3292453,-0.020625 12.7528302,0.07875 C11.6981132,0.3215625 11.2264151,1.5 8.73867925,4.2553125 C7.80471698,5.2865625 7.51226415,5.1084375 6.24528302,4.6115625 C4.97830189,4.1146875 4.06071363,5.3525 5,6 C5,6 8.27924528,8.97144427 9.31698113,9.98572213 Z M13.940566,1.05375 C14.1542709,1.26609755 14.2182096,1.58546598 14.1025663,1.86292852 C13.9869231,2.14039105 13.7144731,2.32130357 13.4122642,2.32130357 C13.1100552,2.32130357 12.8376052,2.14039105 12.721962,1.86292852 C12.6063187,1.58546598 12.6702574,1.26609755 12.8839623,1.05375 C13.0236182,0.913735523 13.2135732,0.834660929 13.4119534,0.833957484 C13.6103336,0.83325404 13.8008516,0.910979499 13.9415094,1.05 L13.940566,1.05375 Z" id="Shape"></path>
172
+ </g>
173
+ </g>
174
+ </g>
175
+ </svg>
@@ -0,0 +1,167 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg width="987px" height="734px" viewBox="0 0 987 734" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 40.3 (33839) - http://www.bohemiancoding.com/sketch -->
4
+ <title>mona-lisa-icons32</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <defs>
7
+ <linearGradient x1="43.3218605%" y1="-9.99305234%" x2="43.3218605%" y2="99.4083836%" id="linearGradient-1">
8
+ <stop stop-color="#666666" offset="0%"></stop>
9
+ <stop stop-color="#424242" offset="100%"></stop>
10
+ </linearGradient>
11
+ <linearGradient x1="56.5567493%" y1="-7.60944321%" x2="56.5567493%" y2="106.421452%" id="linearGradient-2">
12
+ <stop stop-color="#484848" offset="0%"></stop>
13
+ <stop stop-color="#424242" offset="100%"></stop>
14
+ </linearGradient>
15
+ </defs>
16
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
17
+ <g id="mona-lisa-icons32">
18
+ <g id="Page-1">
19
+ <g id="icons32">
20
+ <g id="Page-1">
21
+ <g id="Group">
22
+ <rect id="rect4452" fill="#CCCCCC" x="134" y="640.00011" width="16" height="28.00008"></rect>
23
+ <rect id="rect4367" fill="#CCCCCC" x="130" y="644.00011" width="24" height="20.000111"></rect>
24
+ <g id="g4363" transform="translate(136.000000, 644.000100)" stroke="#FFFFFF" stroke-width="4" fill="#676767">
25
+ <path d="M4.012846,12.87006 L7.996372,12.87006 C11.671024,12.87006 14.02939,10.2649 14.02939,6.20632 C14.02939,2.2026 11.753292,0.00878 7.58503,0.00878 L0.003476,0.00878 L0.003476,20 L4.012846,20 L4.012846,12.87006 M4.012846,9.44222 L4.012846,3.43662 L6.7075,3.43662 C8.901322,3.43662 9.915968,4.39642 9.915968,6.45314 C9.915968,8.48242 8.901322,9.44222 6.7075,9.44222 L4.012846,9.44222" id="path4365"></path>
26
+ </g>
27
+ <path d="M11,705.18758 C9.4185,705.20558 7.79938,705.86824 6.0000001,707.93758 L6.0000001,721.93758 L6.0000001,722.43758 L6.0000001,723.93758 L6.0000001,723.99998 C6.4501601,723.49264 6.8753601,723.09704 7.3125,722.74998 C7.6872,722.4525 8.07112,722.19412 8.4375,721.99998 C8.5623,721.93378 8.68852,721.86758 8.8125,721.81258 C8.9789,721.74258 9.14726,721.67678 9.3125,721.62518 C9.3753,721.60418 9.4373,721.58098 9.4999,721.56278 C9.6647,721.51718 9.83682,721.46878 9.9999,721.43778 C10.0179,721.43978 10.0443,721.43578 10.0623,721.43778 C10.41598,721.37458 10.77648,721.30678 11.1248,721.31278 C13.86318,721.35998 16.47178,723.31268 19.1873,724.06278 C19.58876,724.17358 19.96696,724.26598 20.3748,724.31278 C20.5052,724.32678 20.61872,724.36818 20.7498,724.37518 C20.868,724.38118 21.00596,724.3758 21.1248,724.37518 C21.1808,724.38318 21.2552,724.37718 21.3122,724.37518 C21.4186,724.37118 21.51872,724.32638 21.6247,724.31278 C21.7077,724.30278 21.7905,724.32278 21.8747,724.31278 C21.9349,724.30478 22.0019,724.32278 22.0621,724.31278 C22.2543,724.28058 22.4302,724.17978 22.6246,724.12538 C22.96144,724.03078 23.28072,723.92022 23.6246,723.75038 C23.6842,723.72218 23.752,723.71938 23.812,723.68798 C23.842,723.67198 23.847,723.64858 23.8744,723.62558 C23.902,723.60238 23.9066,723.57978 23.9368,723.56318 C24.26152,723.38038 24.6049,723.19882 24.9368,722.93818 C24.9586,722.92018 24.9774,722.89318 24.9992,722.87578 C25.33524,722.61012 25.65546,722.3564 25.9992,722.00078 L25.9992,721.93838 L25.9992,719.93838 L25.9992,707.93838 L25.9992,705.93838 C25.69116,706.2664 25.36448,706.56656 25.0617,706.81338 C25.0399,706.83138 25.0211,706.85818 24.9993,706.87578 C24.7214,707.0973 24.46156,707.26854 24.1868,707.43828 C24.1134,707.48368 24.01,707.52168 23.9368,707.56328 C23.27038,707.94246 22.64626,708.15064 21.9993,708.25078 C18.11758,708.85166 14.5577,705.14544 10.9993,705.18828 L11,705.18758 L11,705.18758 L11,705.18758 Z M2.0000001,706.00008 L2.0000001,732.00008 L4.0000001,732.00008 L4.0000001,706.00008 L2.0000001,706.00008 L2.0000001,706.00008 L2.0000001,706.00008 L2.0000001,706.00008 Z" id="path3613" stroke="#FFFFFF" stroke-width="4" fill="url(#linearGradient-1)"></path>
28
+ <polygon id="rect6534" fill="#B8B8B8" points="126 126.00008 126 156.00008 136 156.00008 136 153.69239 136 151.3847 136 148.00008 146 147.69239 146 150.00008 156 150.00008 156 126.00008"></polygon>
29
+ <path d="M139.0625,62.00008 C138.47329,62.00008 138,62.47336 138,63.06258 L138,64.00008 L137.0625,64.00008 C136.47329,64.00008 136,64.47336 136,65.06258 L136,66.93758 C136,67.52678 136.47329,68.00008 137.0625,68.00008 L139.0625,68.00008 L144.9375,68.00008 L146.9375,68.00008 C147.52671,68.00008 148,67.52678 148,66.93758 L148,65.06258 C148,64.47336 147.52671,64.00008 146.9375,64.00008 L146,64.00008 L146,63.06258 C146,62.47336 145.52671,62.00008 144.9375,62.00008 L139.0625,62.00008 L139.0625,62.00008 L139.0625,62.00008 L139.0625,62.00008 Z M134,64.00008 C131.818592,64.00008 130,65.81868 130,68.00008 L130,86.00008 C130,88.18148 131.818592,90.00008 134,90.00008 L136,90.00008 L136,88.00008 L134,88.00008 C132.891998,88.00008 132,87.10808 132,86.00008 L132,68.00008 C132,66.89208 132.891998,66.00008 134,66.00008 L134,65.06258 C134,64.69542 134.0632,64.32936 134.1875,64.00008 L134,64.00008 L134,64.00008 L134,64.00008 L134,64.00008 Z M149.8125,64.00008 C149.9368,64.32938 150,64.69542 150,65.06258 L150,66.00008 C151.108002,66.00008 152,66.89208 152,68.00008 L152,72.00008 L154,72.00008 L154,68.00008 C154,65.81868 152.181408,64.00008 150,64.00008 L149.8125,64.00008 L149.8125,64.00008 L149.8125,64.00008 L149.8125,64.00008 Z M140,74.00008 C138.892,74.00008 138,74.89208 138,76.00008 L138,90.00008 C138,91.10808 138.892,92.00008 140,92.00008 L154,92.00008 C155.108,92.00008 156,91.10808 156,90.00008 L156,76.00008 C156,74.89208 155.108,74.00008 154,74.00008 L140,74.00008 L140,74.00008 L140,74.00008 L140,74.00008 Z M140,76.00008 L154,76.00008 L154,90.00008 L140,90.00008 L140,76.00008 L140,76.00008 L140,76.00008 L140,76.00008 Z M142,78.00008 L142,80.00008 L152,80.00008 L152,78.00008 L142,78.00008 L142,78.00008 L142,78.00008 L142,78.00008 Z M142,82.00008 L142,84.00008 L152,84.00008 L152,82.00008 L142,82.00008 L142,82.00008 L142,82.00008 L142,82.00008 Z M142,86.00008 L142,88.00008 L152,88.00008 L152,86.00008 L142,86.00008 L142,86.00008 L142,86.00008 L142,86.00008 Z" id="path3624" fill="url(#linearGradient-2)"></path>
30
+ <path d="M322,8e-05 L322,28.00008 L339.625,28.00008 L337.625,26.00008 L335,26.00008 L332,26.00008 L326,26.00008 L324,26.00008 L324,2.00008 L335,2.00008 L342,9.00008 L342,11.43758 C343.22936,12.97736 344,14.89516 344,17.00008 L344,10.00008 L344,8.00008 L336,8e-05 L334,8e-05 L322,8e-05 L322,8e-05 L322,8e-05 L322,8e-05 Z M344,17.00008 C344,17.96646 343.59846,18.7256 343.3125,19.56258 L344,20.25008 L344,17.00008 L344,17.00008 L344,17.00008 L344,17.00008 Z M335,10.00008 C331.1577,10.00008 328,13.15776 328,17.00008 C328,20.84238 331.1577,24.00008 335,24.00008 C335.99078,24.00008 336.89266,23.7526 337.75,23.37508 L342.4375,28.06258 L345.6875,24.81258 L341.125,20.25008 C341.658,19.26438 342,18.19088 342,17.00008 C342,13.15776 338.8423,10.00008 335,10.00008 L335,10.00008 L335,10.00008 L335,10.00008 Z M334.9376,12.00008 C337.69902,12.00008 339.9376,14.23866 339.9376,17.00008 C339.9376,19.7615 337.69902,22.00008 334.9376,22.00008 C332.17618,22.00008 329.9376,19.7615 329.9376,17.00008 C329.9376,14.23866 332.17618,12.00008 334.9376,12.00008 L334.9376,12.00008 L334.9376,12.00008 L334.9376,12.00008 Z" id="path4583" fill="url(#linearGradient-2)"></path>
31
+ <path d="M331.0625,62.00008 C330.47328,62.00008 330,62.47336 330,63.06258 L330,64.00008 L329.0625,64.00008 C328.47328,64.00008 328,64.47336 328,65.06258 L328,66.93758 C328,67.52678 328.47328,68.00008 329.0625,68.00008 L331.0625,68.00008 L336.9375,68.00008 L338.9375,68.00008 C339.52672,68.00008 340,67.52678 340,66.93758 L340,65.06258 C340,64.47336 339.52672,64.00008 338.9375,64.00008 L338,64.00008 L338,63.06258 C338,62.47336 337.52672,62.00008 336.9375,62.00008 L331.0625,62.00008 L331.0625,62.00008 L331.0625,62.00008 Z M326,64.00008 C323.8186,64.00008 322,65.81868 322,68.00008 L322,86.00008 C322,88.18148 323.8186,90.00008 326,90.00008 L328,90.00008 L328,88.00008 L326,88.00008 C324.892,88.00008 324,87.10808 324,86.00008 L324,68.00008 C324,66.89208 324.892,66.00008 326,66.00008 L326,65.06258 C326,64.69542 326.0634,64.32936 326.1874,64.00008 L326,64.00008 L326,64.00008 L326,64.00008 Z M341.8125,64.00008 C341.9368,64.32938 342,64.69542 342,65.06258 L342,66.00008 C343.108,66.00008 344,66.89208 344,68.00008 L344,72.00008 L346,72.00008 L346,68.00008 C346,65.81868 344.1814,64.00008 342,64.00008 L341.8126,64.00008 L341.8125,64.00008 L341.8125,64.00008 L341.8125,64.00008 Z M332,74.00008 C330.892,74.00008 330,74.89208 330,76.00008 L330,90.00008 C330,91.10808 330.892,92.00008 332,92.00008 L346,92.00008 C347.108,92.00008 348,91.10808 348,90.00008 L348,76.00008 C348,74.89208 347.108,74.00008 346,74.00008 L332,74.00008 L332,74.00008 L332,74.00008 Z M332,76.00008 L346,76.00008 L346,90.00008 L332,90.00008 L332,76.00008 L332,76.00008 L332,76.00008 Z M334,78.00008 L334,80.00008 L334,88.00008 L336,88.00008 L338,86.00008 L339,84.99998 L340,86.00008 L342,88.00008 L344,88.00008 L344,80.00008 L344,78.00008 L342,78.00008 L342,84.00008 L340,82.00008 L338,82.00008 L336,84.00008 L336,78.00008 L334,78.00008 L334,78.00008 L334,78.00008 Z" id="path4585" fill="url(#linearGradient-2)"></path>
32
+ <path d="M194.9375,129.99998 L192,142.24998 L192,143.99998 L194.34375,143.99998 L194.34375,142.24998 L194.84375,139.34373 L197.34375,139.34373 L197.84375,142.24998 L197.84375,143.99998 L200.1875,143.99998 L200.1875,142.24998 L197.28125,129.99998 L194.9375,129.99998 L194.9375,129.99998 L194.9375,129.99998 L194.9375,129.99998 Z M202,129.99998 L202,143.99998 L206.6875,143.99998 C207.37062,143.94168 207.94958,143.79581 208.4375,143.56248 C209.60856,142.97915 210.18748,141.95832 210.1875,140.49998 L210.1875,139.34373 C210.18748,138.02151 209.55768,136.98888 208.25,136.24998 C209.16732,135.82221 209.625,135.10485 209.625,134.09373 L209.625,133.49998 C209.5665,132.81943 209.4217,132.2361 209.1875,131.74998 C208.60196,130.58333 207.55757,129.99999 206.09375,129.99998 L202,129.99998 L202,129.99998 L202,129.99998 L202,129.99998 Z M215.5,129.99998 C214.81688,130.05828 214.23794,130.20416 213.75,130.43748 C212.57894,131.02083 212,132.04166 212,133.49998 L212,140.49998 C212.0585,141.18054 212.20328,141.76387 212.4375,142.24998 L212.4687,142.24998 C212.5421,142.39263 212.63233,142.53122 212.7187,142.65623 C212.8051,142.78124 212.90047,142.89267 212.99995,142.99998 C213.08455,143.08558 213.1585,143.17353 213.24995,143.24998 C213.82056,143.72684 214.5693,143.96873 215.49995,143.96873 L216.6562,143.96873 C217.24953,143.93483 217.77328,143.82131 218.2187,143.62498 L218.2499,143.62498 C218.3118,143.59748 218.37821,143.59318 218.4374,143.56248 C219.60846,142.97915 220.18738,141.95832 220.1874,140.49998 L220.1874,139.90623 L217.84365,139.90623 L217.84365,141.09373 C217.78505,141.87151 217.40952,142.24998 216.6874,142.24998 L215.4999,142.24998 C214.71918,142.19168 214.34365,141.81318 214.34365,141.09373 L214.34365,132.90623 C214.40215,132.12846 214.77774,131.74999 215.4999,131.74998 L216.6874,131.74998 C217.4681,131.80828 217.84365,132.1868 217.84365,132.90623 L217.84365,134.09373 L220.1874,134.09373 L220.1874,133.49998 C220.1288,132.81943 219.9841,132.2361 219.7499,131.74998 C219.16436,130.58333 218.1512,129.99999 216.6874,129.99998 L215.4999,129.99998 L215.5,129.99998 L215.5,129.99998 L215.5,129.99998 Z M196.09375,131.74998 L197.0625,137.59373 L195.125,137.59373 L196.09375,131.74998 L196.09375,131.74998 L196.09375,131.74998 L196.09375,131.74998 Z M204.34375,131.74998 L206.09375,131.74998 C206.87445,131.80828 207.28125,132.1868 207.28125,132.90623 L207.28125,134.65623 C207.22275,135.43402 206.81589,135.84374 206.09375,135.84373 L204.34375,135.84373 L204.34375,131.74998 L204.34375,131.74998 L204.34375,131.74998 L204.34375,131.74998 Z M204.34375,137.59373 L206.6875,137.59373 C207.46822,137.65203 207.84375,138.03054 207.84375,138.74998 L207.84375,141.09373 C207.78515,141.87151 207.40964,142.24998 206.6875,142.24998 L204.34375,142.24998 L204.34375,137.59373 L204.34375,137.59373 L204.34375,137.59373 L204.34375,137.59373 Z M212.5625,143.93748 L211.4375,145.06248 L204,152.56248 L199.75,148.31248 L196.9375,151.12498 L201.1875,155.37498 L204,158.18748 L206.8125,155.37498 L217.21875,144.90623 C217.05189,144.93083 216.89233,144.95883 216.71875,144.96873 C216.697922,144.969381 216.677078,144.969381 216.65625,144.96873 L215.5,144.96873 C214.37343,144.96873 213.349,144.59569 212.5625,143.93748 L212.5625,143.93748 L212.5625,143.93748 L212.5625,143.93748 Z" id="path4591" fill="url(#linearGradient-2)"></path>
33
+ <path d="M70.0000003,196.0001 C67.8186003,196.0001 66.0000003,197.81868 66.0000003,200.0001 L66.0000003,214.0001 C66.0000003,216.1815 67.8186003,218.0001 70.0000003,218.0001 L86.0000003,218.0001 C88.1814003,218.0001 90.0000003,216.1815 90.0000003,214.0001 L90.0000003,200.0001 C90.0000003,197.81868 88.1814003,196.0001 86.0000003,196.0001 L70.0000003,196.0001 L70.0000003,196.0001 L70.0000003,196.0001 L70.0000003,196.0001 Z M70.0000003,198.0001 L86.0000003,198.0001 C87.1080003,198.0001 88.0000003,198.89208 88.0000003,200.0001 L88.0000003,214.0001 C88.0000003,215.1081 87.1080003,216.0001 86.0000003,216.0001 L70.0000003,216.0001 C68.8920003,216.0001 68.0000003,215.1081 68.0000003,214.0001 L68.0000003,200.0001 C68.0000003,198.89208 68.8920003,198.0001 70.0000003,198.0001 L70.0000003,198.0001 L70.0000003,198.0001 L70.0000003,198.0001 Z M83.1875003,201.1876 L76.0000003,208.3751 L73.1875003,205.5001 L70.3125003,208.3126 L73.1875003,211.1876 L76.0000003,214.0001 L86.0000003,204.0001 L83.1875003,201.1876 L83.1875003,201.1876 L83.1875003,201.1876 L83.1875003,201.1876 Z" id="path4593" fill="url(#linearGradient-2)"></path>
34
+ <path d="M194,196.0001 C191.8186,196.0001 190,197.81868 190,200.0001 L190,214.0001 C190,216.1815 191.8186,218.0001 194,218.0001 L218,218.0001 C220.1814,218.0001 222,216.1815 222,214.0001 L222,200.0001 C222,197.81868 220.1814,196.0001 218,196.0001 L194,196.0001 L194,196.0001 L194,196.0001 Z M194,198.0001 L218,198.0001 C219.108,198.0001 220,198.89208 220,200.0001 L220,214.0001 C220,215.1081 219.108,216.0001 218,216.0001 L194,216.0001 C192.892,216.0001 192,215.1081 192,214.0001 L192,200.0001 C192,198.89208 192.892,198.0001 194,198.0001 L194,198.0001 L194,198.0001 L194,198.0001 Z M197,200.0001 C196.446,200.0001 196,200.44608 196,201.0001 C196.1614,202.15416 196.6222,201.99258 198,202.0001 L198,212.0001 L197,212.0001 C196.446,212.0001 196,212.44608 196,213.0001 C196,213.5541 196.446,214.0001 197,214.0001 L201,214.0001 C201.554,214.0001 202,213.5541 202,213.0001 C202,212.44608 201.76158,212.0001 201,212.0001 L200,212.0001 L200,202.0001 L201,202.0001 C201.554,202.0001 202,201.5541 202,201.0001 C202,200.44608 201.554,200.0001 201,200.0001 L197,200.0001 L197,200.0001 L197,200.0001 Z" id="path4595" fill="url(#linearGradient-2)"></path>
35
+ <path d="M664,190.0001 L662,194.0001 L658,194.0001 L658,196.0001 L661,196.0001 L652,214.0001 L650,214.0001 L642,214.0001 C640.892,214.0001 640,213.1081 640,212.0001 L640,198.0001 C640,196.89208 640.892,196.0001 642,196.0001 L650,196.0001 L658,196.0001 L658,194.0001 L642,194.0001 C639.8186,194.0001 638,195.8187 638,198.0001 L638,212.0001 C638,214.18148 639.8186,216.0001 642,216.0001 L651,216.0001 L648,222.0001 L652,222.0001 L655,216.0001 L658,216.0001 L658,214.0001 L656,214.0001 L665,196.0001 L666,196.0001 L666,194.0001 L668,190.0001 L664,190.0001 L664,190.0001 L664,190.0001 Z M668,194.5626 L668,196.0001 L669.4375,196.0001 C669.0838,195.39544 668.60464,194.9163 668,194.5626 L668,194.5626 L668,194.5626 L668,194.5626 Z M668,198.0001 L668,200.0001 L670,200.0001 L670,198.0001 L668,198.0001 L668,198.0001 L668,198.0001 Z M668,202.0001 L668,204.0001 L670,204.0001 L670,202.0001 L668,202.0001 L668,202.0001 L668,202.0001 Z M668,206.0001 L668,208.0001 L670,208.0001 L670,206.0001 L668,206.0001 L668,206.0001 L668,206.0001 Z M668,210.0001 L668,212.0001 L670,212.0001 L670,210.0001 L668,210.0001 L668,210.0001 L668,210.0001 Z M660,214.0001 L660,216.0001 L662,216.0001 L662,214.0001 L660,214.0001 L660,214.0001 L660,214.0001 Z M664,214.0001 L664,216.0001 L666,216.0001 L666,214.0001 L664,214.0001 L664,214.0001 L664,214.0001 Z M668,214.0001 L668,215.4376 C668.60464,215.08388 669.0838,214.60474 669.4375,214.0001 L668,214.0001 L668,214.0001 L668,214.0001 Z" id="path4597" fill="url(#linearGradient-2)"></path>
36
+ <path d="M2.0000003,196.0001 C0.8920003,196.0001 3e-07,196.8921 3e-07,198.0001 L3e-07,216.0001 C3e-07,217.10808 0.8920003,218.0001 2.0000003,218.0001 L26.0000003,218.0001 C27.1080003,218.0001 28.0000003,217.10808 28.0000003,216.0001 L28.0000003,198.0001 C28.0000003,196.8921 27.1080003,196.0001 26.0000003,196.0001 L2.0000003,196.0001 L2.0000003,196.0001 L2.0000003,196.0001 L2.0000003,196.0001 Z M2.0000003,202.0001 L26.0000003,202.0001 L26.0000003,216.0001 L2.0000003,216.0001 L2.0000003,202.0001 L2.0000003,202.0001 L2.0000003,202.0001 L2.0000003,202.0001 Z M4.0000003,204.0001 L4.0000003,206.0001 L10.0000003,206.0001 L10.0000003,204.0001 L4.0000003,204.0001 L4.0000003,204.0001 L4.0000003,204.0001 L4.0000003,204.0001 Z M14.0000003,204.0001 L14.0000003,208.0001 L24.0000003,208.0001 L24.0000003,204.0001 L14.0000003,204.0001 L14.0000003,204.0001 L14.0000003,204.0001 L14.0000003,204.0001 Z M4.0000003,210.0001 L4.0000003,212.0001 L10.0000003,212.0001 L10.0000003,210.0001 L4.0000003,210.0001 L4.0000003,210.0001 L4.0000003,210.0001 L4.0000003,210.0001 Z M14.0000003,210.0001 L14.0000003,214.0001 L24.0000003,214.0001 L24.0000003,210.0001 L14.0000003,210.0001 L14.0000003,210.0001 L14.0000003,210.0001 L14.0000003,210.0001 Z" id="path4600" fill="url(#linearGradient-2)"></path>
37
+ <path d="M70.0000003,390.00008 C66.7070203,390.00008 64.0000003,392.70708 64.0000003,396.00008 L64.0000003,398.00008 C64.0000003,401.29306 66.7070203,404.00008 70.0000003,404.00008 L76.0000003,404.00008 L77.3750003,402.62508 L76.3125003,401.50008 L77.6250003,400.06258 L79.6250003,398.00008 L71.0000003,398.00008 C70.4460003,398.00008 70.0000003,397.55408 70.0000003,397.00008 C70.0000003,396.44606 70.4460003,396.00008 71.0000003,396.00008 L85.0000003,396.00008 C85.5540003,396.00008 86.0000003,396.44606 86.0000003,397.00008 C86.0000003,397.55408 85.5540003,398.00008 85.0000003,398.00008 L82.6250003,398.00008 L84.6250003,400.00008 L86.0000003,400.00008 C86.0706003,400.00008 86.1188003,399.94468 86.1874003,399.93768 L87.9374003,398.18768 C87.9454003,398.11888 87.9998003,398.07068 87.9998003,398.00008 L87.9998003,396.00008 C87.9998003,394.89206 87.1078003,394.00008 85.9998003,394.00008 L79.9998003,394.00008 L79.9998003,392.00008 L85.9998003,392.00008 C88.1812003,392.00008 89.9998003,393.81866 89.9998003,396.00008 L89.9998003,396.87508 L91.0623003,397.93758 L91.9373003,398.81258 C91.9753003,398.54162 91.9997003,398.28088 91.9997003,398.00008 L91.9997003,396.00008 C91.9997003,392.70708 89.2926803,390.00008 85.9997003,390.00008 L79.9997003,390.00008 L77.9997003,392.00008 L75.9997003,390.00008 L69.9997003,390.00008 L70.0000003,390.00008 L70.0000003,390.00008 L70.0000003,390.00008 Z M70.0000003,392.00008 L76.0000003,392.00008 L76.0000003,394.00008 L70.0000003,394.00008 C68.8920003,394.00008 68.0000003,394.89206 68.0000003,396.00008 L68.0000003,398.00008 C68.0000003,399.10808 68.8920003,400.00008 70.0000003,400.00008 L76.0000003,400.00008 L76.0000003,402.00008 L70.0000003,402.00008 C67.8186003,402.00008 66.0000003,400.18148 66.0000003,398.00008 L66.0000003,396.00008 C66.0000003,393.81866 67.8186003,392.00008 70.0000003,392.00008 L70.0000003,392.00008 L70.0000003,392.00008 L70.0000003,392.00008 Z" id="path4604" fill="url(#linearGradient-2)"></path>
38
+ <path d="M6.0000003,390.0001 C2.7070203,390.0001 3e-07,392.7071 3e-07,396.0001 L3e-07,398.0001 C3e-07,401.29308 2.7070203,404.0001 6.0000003,404.0001 L12.0000003,404.0001 L14.0000003,402.0001 L16.0000003,404.0001 L22.0000003,404.0001 C25.2929803,404.0001 28.0000003,401.29308 28.0000003,398.0001 L28.0000003,396.0001 C28.0000003,392.7071 25.2929803,390.0001 22.0000003,390.0001 L16.0000003,390.0001 L14.0000003,392.0001 L12.0000003,390.0001 L6.0000003,390.0001 L6.0000003,390.0001 L6.0000003,390.0001 Z M6.0000003,392.0001 L12.0000003,392.0001 L12.0000003,394.0001 L6.0000003,394.0001 C4.8920003,394.0001 4.0000003,394.89208 4.0000003,396.0001 L4.0000003,398.0001 C4.0000003,399.1081 4.8920003,400.0001 6.0000003,400.0001 L12.0000003,400.0001 L12.0000003,402.0001 L6.0000003,402.0001 C3.8186003,402.0001 2.0000003,400.1815 2.0000003,398.0001 L2.0000003,396.0001 C2.0000003,393.81868 3.8186003,392.0001 6.0000003,392.0001 L6.0000003,392.0001 L6.0000003,392.0001 L6.0000003,392.0001 Z M16.0000003,392.0001 L22.0000003,392.0001 C24.1814003,392.0001 26.0000003,393.81868 26.0000003,396.0001 L26.0000003,398.0001 C26.0000003,400.1815 24.1814003,402.0001 22.0000003,402.0001 L16.0000003,402.0001 L16.0000003,400.0001 L22.0000003,400.0001 C23.1080003,400.0001 24.0000003,399.1081 24.0000003,398.0001 L24.0000003,396.0001 C24.0000003,394.89208 23.1080003,394.0001 22.0000003,394.0001 L16.0000003,394.0001 L16.0000003,392.0001 L16.0000003,392.0001 L16.0000003,392.0001 Z M7.0000003,396.0001 L21.0000003,396.0001 C21.5540003,396.0001 22.0000003,396.44608 22.0000003,397.0001 C22.0000003,397.5541 21.5540003,398.0001 21.0000003,398.0001 L7.0000003,398.0001 C6.4460003,398.0001 6.0000003,397.5541 6.0000003,397.0001 C6.0000003,396.44608 6.4460003,396.0001 7.0000003,396.0001 L7.0000003,396.0001 L7.0000003,396.0001 L7.0000003,396.0001 Z" id="path4606" fill="url(#linearGradient-2)"></path>
39
+ <path d="M134,257.9376 L134,270.9376 C134,272.3012 134.1636,273.514 134.4375,274.6251 C134.71138,275.73618 135.15522,276.71728 135.8125,277.5001 C136.4698,278.2829 137.34202,278.8833 138.4375,279.3126 C139.56038,279.71662 140.91924,279.8751 142.5625,279.8751 C144.2331,279.8751 145.62712,279.7167 146.75,279.3126 C147.87286,278.8833 148.8153,278.2829 149.5,277.5001 C150.18466,276.71728 150.6636,275.73618 150.9375,274.6251 C151.21144,273.514 151.31248,272.3012 151.3125,270.9376 L151.3125,257.9376 L146.3125,257.9376 L146.3125,270.5626 C146.31228,271.54742 146.2345,272.3808 146.1251,273.0626 C146.0155,273.71916 145.83646,274.2583 145.5626,274.6876 C145.2887,275.09162 144.90318,275.38582 144.4376,275.5626 C143.97202,275.7394 143.39968,275.8751 142.6876,275.8751 C141.97552,275.8751 141.34066,275.7393 140.8751,275.5626 C140.4095,275.3858 140.08648,275.09162 139.8126,274.6876 C139.5661,274.28356 139.35964,273.78166 139.2501,273.1251 C139.1405,272.4433 139.1251,271.60992 139.1251,270.6251 L139.1251,257.9376 L134.0001,257.9376 L134,257.9376 L134,257.9376 L134,257.9376 Z M133,282.0001 C132.446,282.0001 132,282.44608 132,283.0001 C132,283.5541 132.446,284.0001 133,284.0001 L153,284.0001 C153.554,284.0001 154,283.5541 154,283.0001 C154,282.44608 153.554,282.0001 153,282.0001 L133,282.0001 L133,282.0001 L133,282.0001 L133,282.0001 Z" id="path4608" fill="url(#linearGradient-2)"></path>
40
+ <path d="M583.9375,336.71873 L578.25,342.40623 L583.9375,348.09373 L585.84375,346.24998 L582.09375,342.40623 L585.84375,338.65623 L583.9375,336.71873 L583.9375,336.71873 L583.9375,336.71873 Z M591.3125,336.71873 L586.46875,348.09373 L590.1875,348.09373 L595.25,336.74998 L591.3125,336.71878 L591.3125,336.71873 L591.3125,336.71873 L591.3125,336.71873 Z M597.5625,336.71873 L595.625,338.65623 L599.40625,342.40623 L595.625,346.24998 L597.5625,348.09373 L603.21875,342.40623 L597.5625,336.71873 L597.5625,336.71873 L597.5625,336.71873 Z" id="path4610" fill="url(#linearGradient-2)"></path>
41
+ <path d="M143,704.99998 C138.63719,704.99998 135,708.63717 135,712.99998 L135,715.99998 L134,715.99998 C132.892,715.99998 132,716.89196 132,717.99998 L132,729.99998 C132,731.10798 132.892,731.99998 134,731.99998 L152,731.99998 C153.108,731.99998 154,731.10798 154,729.99998 L154,717.99998 C154,716.89196 153.108,715.99998 152,715.99998 L151,715.99998 L151,712.99998 C151,708.63717 147.36281,704.99998 143,704.99998 L143,704.99998 L143,704.99998 L143,704.99998 Z M143,708.99998 C145.216,708.99998 147,710.78398 147,712.99998 L147,715.99998 L139,715.99998 L139,712.99998 C139,710.78398 140.784,708.99998 143,708.99998 L143,708.99998 L143,708.99998 L143,708.99998 Z M143,721.99998 C144.65686,721.99998 146,723.34312 146,724.99998 C146,726.65682 144.65686,727.99998 143,727.99998 C141.34314,727.99998 140,726.65682 140,724.99998 C140,723.34312 141.34314,721.99998 143,721.99998 L143,721.99998 L143,721.99998 L143,721.99998 Z" id="path4612" fill="url(#linearGradient-2)"></path>
42
+ <path d="M65,575.99998 C64.44772,575.99998 64,576.4477 64,576.99998 C64,577.55226 64.44772,577.99998 65,577.99998 C65.55228,577.99998 66,577.55226 66,576.99998 C66,576.4477 65.55228,575.99998 65,575.99998 L65,575.99998 L65,575.99998 L65,575.99998 Z M69,575.99998 C68.44772,575.99998 68,576.4477 68,576.99998 C68,577.55226 68.44772,577.99998 69,577.99998 C69.55228,577.99998 70,577.55226 70,576.99998 C70,576.4477 69.55228,575.99998 69,575.99998 L69,575.99998 L69,575.99998 L69,575.99998 Z M73,575.99998 C72.44772,575.99998 72,576.4477 72,576.99998 C72,577.55226 72.44772,577.99998 73,577.99998 C73.55228,577.99998 74,577.55226 74,576.99998 C74,576.4477 73.55228,575.99998 73,575.99998 L73,575.99998 L73,575.99998 L73,575.99998 Z M77,575.99998 C76.44772,575.99998 76,576.4477 76,576.99998 C76,577.55226 76.44772,577.99998 77,577.99998 C77.55228,577.99998 78,577.55226 78,576.99998 C78,576.4477 77.55228,575.99998 77,575.99998 L77,575.99998 L77,575.99998 L77,575.99998 Z M81,575.99998 C80.44772,575.99998 80,576.4477 80,576.99998 C80,577.55226 80.44772,577.99998 81,577.99998 C81.55228,577.99998 82,577.55226 82,576.99998 C82,576.4477 81.55228,575.99998 81,575.99998 L81,575.99998 L81,575.99998 L81,575.99998 Z M88,575.99998 C85.8186,575.99998 84,577.81858 84,579.99998 L84,599.99998 C84,602.18138 85.8186,603.99998 88,603.99998 C90.1814,603.99998 92,602.18138 92,599.99998 L92,579.99998 C92,577.81858 90.1814,575.99998 88,575.99998 L88,575.99998 L88,575.99998 L88,575.99998 Z M88,577.99998 C89.108,577.99998 90,578.89198 90,579.99998 L90,599.99998 C90,601.10798 89.108,601.99998 88,601.99998 C86.892,601.99998 86,601.10798 86,599.99998 L86,579.99998 C86,578.89198 86.892,577.99998 88,577.99998 L88,577.99998 L88,577.99998 L88,577.99998 Z M65,579.99998 C64.44772,579.99998 64,580.4477 64,580.99998 C64,581.55226 64.44772,581.99998 65,581.99998 C65.55228,581.99998 66,581.55226 66,580.99998 C66,580.4477 65.55228,579.99998 65,579.99998 L65,579.99998 L65,579.99998 L65,579.99998 Z M81,579.99998 C80.44772,579.99998 80,580.4477 80,580.99998 C80,581.55226 80.44772,581.99998 81,581.99998 C81.55228,581.99998 82,581.55226 82,580.99998 C82,580.4477 81.55228,579.99998 81,579.99998 L81,579.99998 L81,579.99998 L81,579.99998 Z M65,583.99998 C64.44772,583.99998 64,584.4477 64,584.99998 C64,585.55226 64.44772,585.99998 65,585.99998 C65.55228,585.99998 66,585.55226 66,584.99998 C66,584.4477 65.55228,583.99998 65,583.99998 L65,583.99998 L65,583.99998 L65,583.99998 Z M81,583.99998 C80.44772,583.99998 80,584.4477 80,584.99998 C80,585.55226 80.44772,585.99998 81,585.99998 C81.55228,585.99998 82,585.55226 82,584.99998 C82,584.4477 81.55228,583.99998 81,583.99998 L81,583.99998 L81,583.99998 L81,583.99998 Z M65,587.99998 C64.44772,587.99998 64,588.4477 64,588.99998 C64,589.55226 64.44772,589.99998 65,589.99998 C65.55228,589.99998 66,589.55226 66,588.99998 C66,588.4477 65.55228,587.99998 65,587.99998 L65,587.99998 L65,587.99998 L65,587.99998 Z M81,587.99998 C80.44772,587.99998 80,588.4477 80,588.99998 C80,589.55226 80.44772,589.99998 81,589.99998 C81.55228,589.99998 82,589.55226 82,588.99998 C82,588.4477 81.55228,587.99998 81,587.99998 L81,587.99998 L81,587.99998 L81,587.99998 Z M65,591.99998 C64.44772,591.99998 64,592.4477 64,592.99998 C64,593.55226 64.44772,593.99998 65,593.99998 C65.55228,593.99998 66,593.55226 66,592.99998 C66,592.4477 65.55228,591.99998 65,591.99998 L65,591.99998 L65,591.99998 L65,591.99998 Z M69,591.99998 C68.44772,591.99998 68,592.4477 68,592.99998 C68,593.55226 68.44772,593.99998 69,593.99998 C69.55228,593.99998 70,593.55226 70,592.99998 C70,592.4477 69.55228,591.99998 69,591.99998 L69,591.99998 L69,591.99998 L69,591.99998 Z M73,591.99998 C72.44772,591.99998 72,592.4477 72,592.99998 C72,593.55226 72.44772,593.99998 73,593.99998 C73.55228,593.99998 74,593.55226 74,592.99998 C74,592.4477 73.55228,591.99998 73,591.99998 L73,591.99998 L73,591.99998 L73,591.99998 Z M77,591.99998 C76.44772,591.99998 76,592.4477 76,592.99998 C76,593.55226 76.44772,593.99998 77,593.99998 C77.55228,593.99998 78,593.55226 78,592.99998 C78,592.4477 77.55228,591.99998 77,591.99998 L77,591.99998 L77,591.99998 L77,591.99998 Z M81,591.99998 C80.44772,591.99998 80,592.4477 80,592.99998 C80,593.55226 80.44772,593.99998 81,593.99998 C81.55228,593.99998 82,593.55226 82,592.99998 C82,592.4477 81.55228,591.99998 81,591.99998 L81,591.99998 L81,591.99998 L81,591.99998 Z M68,595.99998 C65.8186,595.99998 64,597.81858 64,599.99998 C64,602.18138 65.8186,603.99998 68,603.99998 L78,603.99998 C80.1814,603.99998 82,602.18138 82,599.99998 C82,597.81858 80.1814,595.99998 78,595.99998 L68,595.99998 L68,595.99998 L68,595.99998 L68,595.99998 Z M68,597.99998 L78,597.99998 C79.108,597.99998 80,598.89198 80,599.99998 C80,601.10798 79.108,601.99998 78,601.99998 L68,601.99998 C66.892,601.99998 66,601.10798 66,599.99998 C66,598.89198 66.892,597.99998 68,597.99998 L68,597.99998 L68,597.99998 L68,597.99998 Z" id="path4614" fill="url(#linearGradient-2)"></path>
43
+ <polygon id="path4616" fill="#C4C4C4" points="576 202.0001 604 202.0001 604 212.0001 576 212.0001"></polygon>
44
+ <path d="M68.6596003,512.04246 C66.0875003,512.04246 64.0000003,514.12996 64.0000003,516.70206 L64.0000003,535.34048 C64.0000003,537.9126 66.0875003,540.0001 68.6596003,540.0001 L87.2980203,540.0001 C89.8701403,540.0001 91.9576203,537.9126 91.9576203,535.34048 L91.9576203,516.70206 C91.9576203,514.12996 89.8701403,512.04246 87.2980203,512.04246 L68.6596003,512.04246 L68.6596003,512.04246 L68.6596003,512.04246 Z M76.2678803,516.7149 L79.8535603,516.7149 L80.0902003,517.1389 L87.3708403,535.34048 L82.7112403,535.34048 L80.9638803,530.7537 L74.9209403,530.7537 L73.1736003,535.34048 L68.6596003,535.34048 L75.9402403,517.57574 L76.2678803,516.7149 L76.2678803,516.7149 L76.2678803,516.7149 Z" id="path4618" fill="url(#linearGradient-2)"></path>
45
+ <path d="M79.1434203,528.47252 L76.8136003,528.47252 C76.1706003,528.47252 75.6487203,527.95064 75.6487203,527.3076 L77.9249203,522.91826 L80.3106403,527.3076 C80.3089003,527.95064 79.7864403,528.47252 79.1434203,528.47252 L79.1434203,528.47252 L79.1434203,528.47252 L79.1434203,528.47252 Z" id="path4620" fill="#4B4B4B"></path>
46
+ <path d="M130,384.0001 L130,412.0001 L132,412.0001 L132,384.0001 L130,384.0001 L130,384.0001 L130,384.0001 Z M139.49998,383.16682 C137.76032,383.18482 135.97932,383.84748 134,385.91682 L134,402.0001 C141.92264,393.8828 147.88536,407.63206 156,400.0001 L156,383.9168 C149.93802,389.7848 144.71898,383.10976 139.49998,383.16688 L139.49998,383.16682 L139.49998,383.16682 L139.49998,383.16682 Z" id="path4622" fill="url(#linearGradient-2)"></path>
47
+ <path d="M401.4375,274.4376 L399.5,276.2501 L403.3125,280.1876 L399.5,284.1251 L401.4375,286.1251 L405.25,282.1876 L409.1875,286.1251 L411.125,284.1251 L407.25,280.1876 L411.125,276.2501 L409.1875,274.4376 L405.25,278.2501 L401.4375,274.4376 L401.4375,274.4376 L401.4375,274.4376 Z M385,280.0001 C384.446,280.0001 384,280.44608 384,281.0001 C384,281.5541 384.446,282.0001 385,282.0001 L397,282.0001 C397.554,282.0001 398,281.5541 398,281.0001 C398,280.44608 397.554,280.0001 397,280.0001 L385,280.0001 L385,280.0001 L385,280.0001 Z" id="path4624" fill="url(#linearGradient-2)"></path>
48
+ <path d="M462,68.0001 L448,78.0001 L461.99996,88.00006 L462,81.33342 C468.83332,81.33342 473.23112,83.77342 476,88.0001 C476,78.03344 468.79776,74.66676 462,74.66676 C462.00004,72.9652 462.00002,69.439 462,68.0001 L462,68.0001 L462,68.0001 L462,68.0001 Z" id="path4626" fill="url(#linearGradient-2)"></path>
49
+ <path d="M833.99998,324.0001 L833.99998,328.0001 L858,328.0001 L858,324.0001 L833.99998,324.0001 L833.99998,324.0001 L833.99998,324.0001 L833.99998,324.0001 Z M833.99998,330.0001 L833.99998,334.00008 L858,334.00008 L858,330.0001 L833.99998,330.0001 L833.99998,330.0001 L833.99998,330.0001 L833.99998,330.0001 Z M833.99998,336.0001 L833.99998,340.0001 L858,340.0001 L858,336.0001 L833.99998,336.0001 L833.99998,336.0001 L833.99998,336.0001 L833.99998,336.0001 Z M833.99998,342.00008 L833.99998,346.0001 L858,346.0001 L858,342.00008 L833.99998,342.00008 L833.99998,342.00008 L833.99998,342.00008 L833.99998,342.00008 Z" id="path4628" fill="url(#linearGradient-2)"></path>
50
+ <path d="M780,324.0001 L780,328.0001 L794,328.0001 L794,324.0001 L780,324.0001 L780,324.0001 L780,324.0001 L780,324.0001 Z M772,330.0001 L772,334.00008 L794,334.00008 L794,330.0001 L772,330.0001 L772,330.0001 L772,330.0001 L772,330.0001 Z M776,336.0001 L776,340.0001 L794,340.0001 L794,336.0001 L776,336.0001 L776,336.0001 L776,336.0001 L776,336.0001 Z M770,342.0001 L770,346.0001 L794,346.0001 L794,342.0001 L770,342.0001 L770,342.0001 L770,342.0001 L770,342.0001 Z" id="path4630" fill="url(#linearGradient-2)"></path>
51
+ <path d="M710.000007,323.999982 L710.000007,327.999985 L726.000007,327.999985 L726.000007,323.999982 L710.000007,323.999982 L710.000007,323.999982 L710.000007,323.999982 L710.000007,323.999982 Z M706.000007,329.999987 L706.000007,333.999971 L730.000007,333.999971 L730.000007,329.999987 L706.000007,329.999987 L706.000007,329.999987 L706.000007,329.999987 L706.000007,329.999987 Z M710.000007,335.999973 L710.000007,339.999977 L726.000007,339.999977 L726.000007,335.999973 L710.000007,335.999973 L710.000007,335.999973 L710.000007,335.999973 L710.000007,335.999973 Z M706.000007,341.999978 L706.000007,345.999982 L730.000007,345.999982 L730.000007,341.999978 L706.000007,341.999978 L706.000007,341.999978 L706.000007,341.999978 L706.000007,341.999978 Z" id="path4632" fill="url(#linearGradient-2)"></path>
52
+ <path d="M642,324.0001 L642,328.0001 L656,328.0001 L656,324.0001 L642,324.0001 L642,324.0001 L642,324.0001 L642,324.0001 Z M642,330.0001 L642,334.0001 L664,334.0001 L664,330.0001 L642,330.0001 L642,330.0001 L642,330.0001 L642,330.0001 Z M642,336.0001 L642,340.0001 L660,340.0001 L660,336.0001 L642,336.0001 L642,336.0001 L642,336.0001 L642,336.0001 Z M642,342.0001 L642,346.0001 L666,346.0001 L666,342.0001 L642,342.0001 L642,342.0001 L642,342.0001 L642,342.0001 Z" id="path4634" fill="url(#linearGradient-2)"></path>
53
+ <path d="M24.2871703,64.1088 L16.0332589,74.12716 L7.8572211,64.254 C7.8572211,64.254 6.0662815,64.3078 6.0662815,66.3593 C6.0662815,70.78946 9.1685109,74.99426 12.6071081,78.26516 L9.0252291,82.62098 L9.2587185,82.91136 C9.0793125,82.89336 8.9005233,82.83876 8.7136419,82.83876 C5.9627493,82.83876 3.7301533,84.92024 3.7301533,87.48496 C3.7301533,90.04964 5.9627493,92.13116 8.7136419,92.13116 C11.4645345,92.13116 13.6971305,90.04964 13.6971305,87.48496 C13.6971305,86.09806 13.0206203,84.85288 11.9840459,84.00028 C12.9458677,83.39396 14.4110171,82.42118 16.0331467,81.16902 C17.6976237,82.45832 19.2188383,83.5043 20.2379563,84.14548 C19.2811243,84.99344 18.6806183,86.15844 18.6806183,87.48496 C18.6806183,90.04964 20.9132143,92.13116 23.6641083,92.13116 C26.4150003,92.13116 28.6475963,90.04964 28.6475963,87.48496 C28.6475963,84.92024 26.4174863,82.83642 23.6641083,82.83876 C23.5370283,82.83876 23.3993523,82.90216 23.2747783,82.91136 L23.3525183,82.83876 L19.5370203,78.26514 C22.9282983,75.04766 25.9999903,70.91196 25.9999903,66.57706 C25.9999903,64.33992 24.2869243,64.10878 24.2869243,64.10878 L24.2871703,64.1088 L24.2871703,64.1088 L24.2871703,64.1088 Z M8.7137727,85.16188 C10.0892003,85.16188 11.2055171,86.20262 11.2055171,87.48496 C11.2055171,88.76732 10.0892003,89.80806 8.7137727,89.80806 C7.3383265,89.80806 6.2220285,88.76732 6.2220285,87.48496 C6.2220285,86.20262 7.3383265,85.16188 8.7137727,85.16188 L8.7137727,85.16188 L8.7137727,85.16188 L8.7137727,85.16188 Z M23.6642383,85.16188 C25.0396663,85.16188 26.1559823,86.20262 26.1559823,87.48496 C26.1559823,88.76732 25.0396663,89.80806 23.6642383,89.80806 C22.2887923,89.80806 21.1724943,88.76732 21.1724943,87.48496 C21.1724943,86.20262 22.2887923,85.16188 23.6642383,85.16188 L23.6642383,85.16188 L23.6642383,85.16188 L23.6642383,85.16188 Z" id="path4636" fill="url(#linearGradient-2)"></path>
54
+ <path d="M270,447.93758 C262.26966,447.93758 256,454.23184 256,462.00008 C256,469.76832 262.26966,476.06258 270,476.06258 C277.73266,476.06258 284,469.76832 284,462.00008 C284,454.23184 277.73266,447.93758 270,447.93758 L270,447.93758 L270,447.93758 L270,447.93758 Z M270,450.00008 C276.62742,450.00008 282,455.37266 282,462.00008 C282,468.6275 276.62742,474.00008 270,474.00008 C263.37258,474.00008 258,468.6275 258,462.00008 C258,455.37266 263.37258,450.00008 270,450.00008 L270,450.00008 L270,450.00008 L270,450.00008 Z M265.3125,456.00008 C263.73734,456.00008 262.5,457.29218 262.5,458.87508 C262.5,460.45798 263.73734,461.75008 265.3125,461.75008 C266.88772,461.75008 268.1875,460.45798 268.1875,458.87508 C268.1875,457.29218 266.88772,456.00008 265.3125,456.00008 L265.3125,456.00008 L265.3125,456.00008 L265.3125,456.00008 Z M274.6875,456.00008 C273.1123,456.00008 271.8125,457.29218 271.8125,458.87508 C271.8125,460.45798 273.1123,461.75008 274.6875,461.75008 C276.26268,461.75008 277.5,460.45798 277.5,458.87508 C277.5,457.29218 276.26268,456.00008 274.6875,456.00008 L274.6875,456.00008 L274.6875,456.00008 L274.6875,456.00008 Z M264.22312,465.55034 C264.14992,465.85914 264.06112,466.18196 264.06112,466.50394 C264.06112,469.6239 268.9069,470.15234 270.00002,470.12508 C271.09314,470.09788 275.93892,469.6239 275.93892,466.50394 C275.93892,466.18196 275.85012,465.85914 275.77692,465.55034 C273.16274,468.03708 270.5019,467.6096 270.00002,467.66582 C269.49814,467.72202 265.9411,467.57102 264.22314,465.55034 L264.22312,465.55034 L264.22312,465.55034 L264.22312,465.55034 Z" id="path4638" fill="url(#linearGradient-2)"></path>
55
+ <path d="M517.612161,325.062108 C514.500113,325.062108 511.974406,327.703523 511.974406,330.416037 C511.974406,333.12853 514.500113,335.329987 517.612161,335.329987 C517.707933,335.329987 517.78362,335.331826 517.876284,335.329987 C517.461908,338.074425 516.036264,341.617383 511.974258,345.157909 C514.793136,345.157909 523.249769,340.243938 523.249769,330.416037 C523.249769,327.703523 520.724062,325.062108 517.612013,325.062108 L517.612161,325.062108 L517.612161,325.062108 L517.612161,325.062108 Z M534.525428,325.117076 C531.413379,325.117076 528.887672,327.70348 528.887672,330.415994 C528.887672,333.128509 531.413379,335.329966 534.525428,335.329966 C534.626908,335.329966 534.691178,335.331805 534.78955,335.329966 C534.375174,338.037554 532.957987,341.533197 528.887524,345.081081 C531.793781,345.081081 540.163035,340.243916 540.163035,330.415994 C540.163035,327.70348 537.637329,325.117076 534.52528,325.117076 L534.525428,325.117076 L534.525428,325.117076 L534.525428,325.117076 Z" id="path4640" fill="url(#linearGradient-2)"></path>
56
+ <path d="M78.0000003,448.0001 C70.2696603,448.0001 64.0000003,454.26976 64.0000003,462.00008 C64.0000003,469.73044 70.2696603,476.0001 78.0000003,476.0001 C85.7326603,476.0001 92.0000003,469.73044 92.0000003,462.00008 C92.0000003,454.26976 85.7326603,448.0001 78.0000003,448.0001 L78.0000003,448.0001 L78.0000003,448.0001 L78.0000003,448.0001 Z M82.9583203,452.59386 C84.2137803,452.53426 85.6259203,453.01968 87.3333203,454.198 C84.7830003,454.198 83.1152403,456.81132 81.5729003,460.03134 L84.5625003,460.03134 C85.0781603,460.03134 85.4375003,460.51784 85.4375003,461.05216 L83.1041603,464.33342 L79.6041603,464.33342 C77.2195003,469.45976 74.4463203,473.8225 68.6666603,469.80216 C71.3313203,469.79616 73.0265003,466.70874 74.6458203,463.16678 L75.0833203,462.21882 C77.1063203,457.6986 79.1920003,452.77332 82.9583203,452.59386 L82.9583203,452.59386 L82.9583203,452.59386 L82.9583203,452.59386 Z" id="path4642" fill="url(#linearGradient-2)"></path>
57
+ <polygon id="path4644" fill="url(#linearGradient-2)" points="12.0000003 10.0001 12.0000003 13.7501 9.2500003 16.6876 12.0000003 19.6251 12.0000003 23.4376 4.7500003 16.6876"></polygon>
58
+ <polygon id="path4646" fill="url(#linearGradient-2)" points="14.0000003 10.0001 21.3750003 16.7501 14.0000003 23.3126 14.0000003 19.5001 16.8750003 16.6876 14.0000003 13.6251"></polygon>
59
+ <path d="M14.8003841,640.0001 C9.7380653,640.0001 5.6336685,644.10448 5.6336685,649.1668 L10.2170263,649.1668 C10.2170263,646.63678 12.2703707,644.58344 14.8003841,644.58344 C17.3303975,644.58344 19.3837443,646.63678 19.3837443,649.1668 C19.3837443,651.6968 17.3303975,653.75016 14.8003841,653.75016 C13.1973367,653.76416 12.3227597,654.90826 12.5087053,656.04186 L12.5087053,658.04706 L12.5087053,658.33352 C12.5087053,659.59852 13.5353785,660.6252 14.8003841,660.6252 C16.0653917,660.6252 17.0920629,659.59852 17.0920629,658.33352 L17.0920629,658.04706 C21.0452083,657.02726 23.9671003,653.43618 23.9671003,649.1668 C23.9671003,644.10448 19.8627023,640.0001 14.8003841,640.0001 L14.8003841,640.0001 L14.8003841,640.0001 L14.8003841,640.0001 Z M14.8003841,662.00894 C13.0341991,662.00894 11.6007717,663.44236 11.6007717,665.20856 C11.6007717,666.97472 13.0341991,668.40816 14.8003841,668.40816 C16.5665711,668.40816 17.9999965,666.97472 17.9999965,665.20856 C17.9999965,663.44236 16.5665711,662.00894 14.8003841,662.00894 L14.8003841,662.00894 L14.8003841,662.00894 L14.8003841,662.00894 Z" id="path4648" fill="url(#linearGradient-2)"></path>
60
+ <path d="M68.6852803,710.742 C69.7146603,709.71512 71.3833003,709.71512 72.4101603,710.742 L78.0000003,716.31924 L83.5898403,710.742 C84.6192203,709.71512 86.2878603,709.71512 87.3147203,710.742 C88.3441003,711.76888 88.3441003,713.43248 87.3147203,714.46184 L81.7248803,720.04162 L87.3147203,725.6189 C88.3441003,726.64572 88.3441003,728.31186 87.3147203,729.33874 C86.2853403,730.3656 84.6167003,730.3656 83.5898403,729.33874 L78.0000003,723.75896 L72.4101603,729.33874 C71.3807803,730.3656 69.7121403,730.3656 68.6852803,729.33874 C67.6559003,728.31186 67.6559003,726.64572 68.6852803,725.6189 L74.2751203,720.04162 L68.6852803,714.46184 C67.6559003,713.43248 67.6559003,711.76636 68.6852803,710.742 L68.6852803,710.742 L68.6852803,710.742 L68.6852803,710.742 Z" id="path4651" fill="url(#linearGradient-2)"></path>
61
+ <path d="M271.81818,704.00008 L271.81818,718.16138 L281.21014,711.00734 L271.81818,704.00008 L271.81818,704.00008 L271.81818,704.00008 Z M269.4702,708.65934 C262.978,708.65934 257.73026,713.98048 257.73026,720.47266 C257.73026,726.96484 262.978,732.2126 269.4702,732.2126 C275.96238,732.2126 281.21014,726.96484 281.21014,720.47266 L281.21014,720.39946 L276.51416,720.39946 C276.51416,724.29006 273.36082,727.44342 269.4702,727.44342 C265.57958,727.44342 262.42624,724.29006 262.42624,720.39946 C262.42624,716.50884 265.57958,713.3555 269.4702,713.3555 C270.29902,713.3555 271.0809,713.5351 271.81818,713.79576 L271.81818,708.95302 C271.06448,708.80042 270.2685,708.65952 269.4702,708.65952 L269.4702,708.65934 L269.4702,708.65934 L269.4702,708.65934 Z" id="path4653" fill="url(#linearGradient-2)"></path>
62
+ <path d="M335.26216,449.21432 C327.8995,449.21432 321.92886,454.64698 321.92886,461.2976 C321.92886,466.23092 325.22752,470.43624 329.92884,472.29758 L329.92884,473.29758 L324.59552,473.29758 L324.59552,471.96424 C324.59552,471.22558 324.00086,470.63092 323.26218,470.63092 C322.52352,470.63092 321.92886,471.22558 321.92886,471.96424 L321.92886,474.6309 C321.92886,475.36956 322.52352,475.96424 323.26218,475.96424 L331.26216,475.96424 C331.99816,475.96424 332.5955,475.3669 332.5955,474.6309 L332.5955,473.04758 L332.5955,471.96424 L332.5955,470.29758 C329.49418,468.97226 327.26218,465.48692 327.26218,461.2976 C327.26218,455.97764 330.8435,451.63098 335.26216,451.63098 C339.68082,451.63098 343.26214,455.97764 343.26214,461.2976 C343.26214,465.48692 341.03014,468.96958 337.92882,470.29758 L337.92882,471.96424 L337.92882,473.04758 L337.92882,474.6309 C337.92882,475.3669 338.52614,475.96424 339.26214,475.96424 L347.26212,475.96424 C347.44692,475.96424 347.6025,475.94824 347.76212,475.88104 C348.24064,475.67864 348.59546,475.18304 348.59546,474.63104 L348.59546,471.96438 C348.59546,471.22572 348.0008,470.63104 347.26212,470.63104 C346.52346,470.63104 345.9288,471.22572 345.9288,471.96438 L345.9288,473.2977 L340.59548,473.2977 L340.59548,472.2977 C345.2968,470.43638 348.59546,466.23106 348.59546,461.29774 C348.59546,454.64712 342.62748,449.21446 335.26216,449.21446 L335.26216,449.21432 L335.26216,449.21432 L335.26216,449.21432 Z" id="path4655" fill="url(#linearGradient-2)"></path>
63
+ <path d="M526,448.00008 C518.26968,448.00008 512,454.26976 512,462.00008 C512,469.7304 518.26968,476.00008 526,476.00008 C533.73032,476.00008 540,469.7304 540,462.00008 C540,454.26976 533.73032,448.00008 526,448.00008 L526,448.00008 L526,448.00008 L526,448.00008 Z M526,450.00008 C527.15126,450.00008 528.25856,450.19748 529.3125,450.50008 C528.87878,450.54808 528.50232,450.58288 528.875,450.62508 C530.09284,450.63108 528.6198,450.70308 528.5,450.87508 C528.27212,451.04088 528.3332,450.92708 528.1875,451.12508 C527.96548,451.13508 527.86064,451.17468 527.8125,451.18748 C527.9381,451.21208 528.2458,451.24508 528.4375,451.24988 C528.9734,451.14228 529.52416,450.94208 530.0625,450.74988 C530.1607,450.78528 530.27796,450.77448 530.375,450.81228 C530.261,450.84908 530.15842,450.95428 530.0625,450.93728 C529.365,451.45452 531.46676,450.88228 531.25,451.87478 C531.4308,451.94478 531.3352,451.54014 531.3124,451.24978 C535.28072,453.20732 537.9999,457.27564 537.9999,461.99978 C537.9999,467.92976 533.71526,472.84128 528.0624,473.81228 C528.0664,473.74208 528.0604,473.69948 528.0624,473.62488 C527.941,473.00406 528.765,473.32012 528.8124,472.74988 C528.52004,472.54878 528.4505,472.3157 528.4374,472.06238 C528.392,471.25702 528.7529,471.36384 528.4374,472.06238 C528.482,472.14758 528.5806,472.20598 528.6874,472.24978 C528.835,472.29158 528.9787,472.46876 529.1249,472.31218 C529.94532,471.6448 529.37404,470.1601 530.5624,469.99968 C531.50512,469.67168 530.84958,468.24858 531.4374,467.62468 C532.50664,466.67226 530.9272,465.8277 530.0624,466.06218 C529.9506,465.89078 529.51534,465.502 529.0624,465.93718 C529.37954,465.60738 529.0464,465.4707 528.5624,465.87478 C529.05174,465.52062 529.07936,464.92724 528.4374,464.56228 C528.3358,464.56426 528.22726,464.55428 528.1874,464.62468 C528.0598,464.48728 527.72952,464.50308 527.6249,464.68708 C527.6047,464.52628 527.5613,464.3682 527.4999,464.31208 C527.24068,464.017 527.16612,464.0868 527.1249,464.24968 C527.1473,464.15488 527.1289,464.03456 527.1249,463.93718 C526.4742,463.79278 525.2189,462.94842 525.1249,463.93718 C525.1289,463.53146 525.0077,463.46368 524.9375,463.56218 C524.9927,463.49578 525.0741,463.43918 525.1875,463.37478 C524.71636,463.46758 524.0925,464.015 524.0625,464.49978 C524.1921,465.33146 523.21482,466.0793 523.6875,466.62478 C523.6505,466.61878 523.6031,466.64538 523.5625,466.62478 C523.98232,467.45126 524.45066,468.1021 524.875,468.74978 C525.33562,468.87058 525.7747,469.03928 526,469.37478 C525.65556,469.34158 525.46144,469.28458 525.1875,469.24978 C525.53386,469.83958 525.8174,470.45226 525.9375,471.24978 C526.0765,472.33584 526.31796,473.25036 526.5625,473.99978 C526.3787,474.00778 526.18594,473.99978 526,473.99978 C519.37258,473.99978 514,468.62718 514,461.99978 C514,459.06858 515.06688,456.39628 516.8125,454.31228 C517.49662,454.27008 518.3611,454.56838 518.3125,455.18728 C518.3739,455.27648 518.4203,455.27288 518.4375,455.24968 C518.2893,455.6425 517.95792,455.99796 518.6249,456.37468 C519.08004,456.52988 518.6149,456.18688 518.3749,456.74968 C517.99718,456.71748 517.28,457.88744 517.3124,458.49968 C517.3004,459.06416 517.61566,459.4509 518.0624,459.62468 C517.7295,459.75048 517.9034,460.60814 518.2498,460.87468 C518.7178,462.05724 518.407,460.43484 518.1248,460.06218 C518.3616,459.22482 518.69788,461.0448 519.1248,461.24968 C519.2166,462.0501 519.73788,462.43448 520.4998,462.68718 C520.8446,462.70118 521.35372,462.86798 521.6248,462.68718 C521.5104,462.87498 521.5162,463.08938 521.8122,463.12468 C521.9116,463.15788 522.1785,463.26848 522.2497,463.12468 C522.3233,463.15968 522.45266,463.16428 522.5622,463.06228 C522.6486,463.02268 522.6344,463.08708 522.6872,463.06228 C522.4499,463.23928 522.19362,463.52538 522.7496,463.62478 C523.11354,463.86874 523.18862,462.42714 522.6872,462.68728 C522.14614,462.53448 522.05072,462.89098 522.1872,463.06228 C521.41874,463.26286 523.15734,461.45474 522.1248,461.62478 C521.83208,462.35392 520.6665,462.51104 520.6873,461.49978 C520.8339,461.27522 520.8025,460.90962 520.6873,460.62478 C520.8397,460.73198 520.98386,460.51998 521.1873,460.24978 C521.2889,459.84576 522.1046,460.01454 522.3123,459.99978 C522.2983,459.98378 522.2825,459.96178 522.2499,459.93738 C522.94578,459.58702 523.6656,460.02438 523.6874,460.81238 C523.8328,460.93078 523.8472,460.53068 523.8748,460.49988 C523.18938,459.3186 525.0749,459.27858 524.9373,458.31238 C525.1093,458.45298 525.25924,457.80128 525.8748,457.62488 C525.906,457.50248 526.9564,457.11998 526.9998,456.49988 L527.0622,456.37488 C526.9068,457.54474 528.20026,455.8048 527.3122,456.12488 C526.34536,456.62824 527.275,455.79638 527.7497,455.81238 C528.2175,456.01868 530.01834,455.15258 528.9372,455.06238 C528.63998,455.07038 528.9766,453.38424 528.1872,454.31238 C527.82318,454.28638 527.75406,453.26942 526.9997,453.74988 C526.57354,454.46534 526.15212,455.3681 525.4372,455.68738 C525.64822,454.99108 525.08604,454.94028 524.5622,454.74988 C523.56146,454.3097 525.01906,453.67454 525.3747,453.43738 C526.22666,453.53498 525.5355,452.97118 526.1872,453.06238 C526.7065,453.29372 527.78212,452.14504 526.8122,452.56238 C526.13034,453.33192 526.37524,451.97286 525.8122,452.24988 C525.6946,452.97504 524.71322,452.88458 523.9372,452.81238 C523.51918,453.26226 523.56478,452.91718 523.1247,452.87478 C522.66574,452.76338 521.87392,452.45998 521.0622,452.62478 C520.20638,452.65538 519.50806,452.88586 518.8747,453.37478 C519.24362,453.0841 519.61604,452.8061 519.4997,452.68728 C519.22362,452.62848 518.96246,452.57188 518.6872,452.56228 C520.7188,450.98616 523.2298,450.00008 526,450.00008 L526,450.00008 L526,450.00008 L526,450.00008 Z M525.1875,469.25008 C525.0905,469.08468 524.98126,468.91226 524.875,468.75008 C523.43384,468.37204 521.82358,468.82188 525.1875,469.25008 L525.1875,469.25008 L525.1875,469.25008 L525.1875,469.25008 Z M527.875,450.68758 C527.65648,450.69158 527.37138,450.78658 527.5625,450.93758 L527.8125,450.93758 C528.25514,450.76598 528.09362,450.68394 527.8749,450.68758 L527.875,450.68758 L527.875,450.68758 L527.875,450.68758 Z M527.1875,451.37508 C526.8898,451.41548 526.8837,451.70128 527.5,451.56248 C527.514,451.69448 527.8404,451.51348 527.875,451.62488 C528.84678,451.51688 528.0412,451.31948 527.5625,451.43748 C527.4191,451.35588 527.28674,451.36148 527.1875,451.37508 L527.1875,451.37508 L527.1875,451.37508 L527.1875,451.37508 Z M527.3125,451.68758 C527.2885,451.66138 527.2397,451.69558 527.0625,451.81258 C525.98676,452.64772 528.02798,451.96598 528.25,452.50008 C529,453.02414 528.0678,452.8932 527.6875,453.12508 C527.5885,453.14548 527.6141,453.17648 527.5625,453.18748 C527.80062,453.20148 528.1352,453.30788 528.1875,453.56248 L528.3125,453.62488 C528.93856,453.81248 528.0322,453.0835 528.8125,453.43748 C528.7817,452.9272 528.8701,452.91398 529.375,452.99998 C529.343,452.26708 528.20672,451.67246 527.4375,451.87498 C526.97084,452.29608 527.3845,451.76598 527.3125,451.68758 L527.3125,451.68758 L527.3125,451.68758 L527.3125,451.68758 Z M526.375,451.74998 C526.2814,451.77658 526.1892,451.82918 526.125,451.93738 C526.172,451.93938 526.2002,452.00358 526.25,451.93738 C526.91102,451.88478 526.65564,451.67022 526.375,451.74998 L526.375,451.74998 L526.375,451.74998 L526.375,451.74998 Z M523.25,451.81238 C522.89052,451.82038 522.37482,451.96698 522.375,452.31238 C522.60772,452.39238 522.82518,452.09318 523.0625,452.06238 C523.77878,451.91418 523.60958,451.80472 523.2499,451.81238 L523.25,451.81238 L523.25,451.81238 L523.25,451.81238 Z M525.6875,451.81238 C525.44326,451.85858 525.18002,451.98118 525.4375,452.06238 L525.4999,452.12478 L525.6873,452.06238 C526.14574,451.79574 525.93154,451.76624 525.6873,451.81238 L525.6875,451.81238 L525.6875,451.81238 L525.6875,451.81238 Z M523.875,451.93738 C523.3019,451.96298 522.64286,452.36508 523.5,452.43738 C523.0869,452.56378 522.57168,452.46358 523.375,452.68738 C523.86108,452.62698 525.45306,452.54858 524.625,452.24988 C524.94876,451.73948 524.564,452.06628 524.3125,452.06248 C524.2039,451.97328 524.06604,451.92888 523.875,451.93748 L523.875,451.93738 L523.875,451.93738 L523.875,451.93738 Z M525.3125,452.43738 C525.2537,452.45138 525.1771,452.51958 525.1251,452.62478 C525.59512,452.68578 525.48884,452.39692 525.3125,452.43738 L525.3125,452.43738 L525.3125,452.43738 L525.3125,452.43738 Z M531.25,452.43738 C531.0042,452.56678 530.63272,453.57112 531.25,453.68738 C531.64282,453.95332 531.3186,452.96984 531.375,452.68738 C531.359,452.47172 531.332,452.39426 531.25,452.43738 L531.25,452.43738 L531.25,452.43738 L531.25,452.43738 Z M521.9375,453.06238 C522.0027,453.05438 522.0257,453.04838 521.9999,453.12478 C521.32834,453.34644 521.74182,453.08858 521.9375,453.06238 L521.9375,453.06238 L521.9375,453.06238 L521.9375,453.06238 Z M526.5625,453.18738 C526.2999,453.13418 525.76844,453.58662 526.5625,453.43738 L526.6875,453.43738 C526.7097,453.27478 526.6501,453.20514 526.5625,453.18738 L526.5625,453.18738 L526.5625,453.18738 L526.5625,453.18738 Z M518.4375,454.74988 C518.4495,454.77848 518.4973,454.77788 518.4999,454.81228 C518.5159,454.89928 518.4529,454.98228 518.4375,455.06228 C518.4315,454.93368 518.4195,454.815 518.4375,454.74978 L518.4375,454.74988 L518.4375,454.74988 L518.4375,454.74988 Z M518,455.12508 C517.982,455.13708 517.986,455.16708 518,455.25008 C518.1936,455.27768 518.0528,455.08708 518,455.12508 L518,455.12508 L518,455.12508 L518,455.12508 Z M529.125,455.68758 C528.9288,455.69958 528.4287,456.27768 528.6875,456.25008 C528.95424,456.30328 529.97358,456.23008 529.1875,455.93758 C529.2295,455.76578 529.1894,455.68364 529.1251,455.68758 L529.125,455.68758 L529.125,455.68758 L529.125,455.68758 Z M518.0625,456.12508 C518.0189,456.12308 518.0135,456.20488 518.1249,456.37508 C518.74336,456.7053 518.1929,456.13254 518.0625,456.12508 L518.0625,456.12508 L518.0625,456.12508 L518.0625,456.12508 Z M527.8125,456.50008 C527.7757,456.49866 527.7105,456.52028 527.6251,456.56248 C527.8239,456.65348 527.92302,456.50428 527.8125,456.50008 L527.8125,456.50008 L527.8125,456.50008 L527.8125,456.50008 Z M528.0625,456.56248 C527.78864,456.63788 527.29554,456.8429 527.1875,457.06248 C527.39376,457.06212 527.554,456.85808 527.75,456.81248 C528.39098,456.50672 528.33636,456.48712 528.0625,456.56248 L528.0625,456.56248 L528.0625,456.56248 L528.0625,456.56248 Z M515.3125,458.56248 C515.2893,458.54848 515.2021,458.61388 515.1251,458.74988 C515.2079,459.12888 515.38208,458.60428 515.3125,458.56248 L515.3125,458.56248 L515.3125,458.56248 L515.3125,458.56248 Z M518.3125,459.62498 C518.4165,459.63298 518.4791,459.74998 518.5625,459.81238 C518.4577,459.73978 518.3913,459.65358 518.3125,459.62498 L518.3125,459.62498 L518.3125,459.62498 L518.3125,459.62498 Z M523.1875,461.24998 C523.1105,461.26998 523.0829,461.31698 523.0625,461.37498 C523.2517,461.28698 524.04672,461.67606 524.4375,461.81248 C525.41458,461.85328 523.72726,461.11606 523.1875,461.24998 L523.1875,461.24998 L523.1875,461.24998 L523.1875,461.24998 Z M525,461.81248 C524.9636,461.80848 525.006,461.85988 525.0624,461.99988 C524.67088,462.18988 524.57008,462.06768 525.1248,462.12488 C525.248,462.17188 525.3154,462.17488 525.3122,462.12488 C526.07848,462.20408 525.4454,461.6355 525.2498,461.99988 C525.1882,461.90308 525.0504,461.81688 524.9998,461.81248 L525,461.81248 L525,461.81248 L525,461.81248 Z M526.0625,462.00008 C526.0163,462.00056 525.9871,462.05708 525.9375,462.12508 C526.0259,462.15428 526.0859,462.13108 526.1249,462.12508 C526.1069,462.08868 526.1149,461.99948 526.0625,462.00008 L526.0625,462.00008 L526.0625,462.00008 L526.0625,462.00008 Z M522.125,462.12508 C522.255,462.07068 522.1858,462.29028 522.125,462.50008 C522.0988,462.32448 521.9036,462.40768 521.75,462.56248 C521.7828,462.50868 521.8008,462.45868 521.8124,462.37508 C521.9998,462.23148 522.06316,462.15084 522.1249,462.12508 L522.125,462.12508 L522.125,462.12508 L522.125,462.12508 Z M524,462.12508 C523.984,462.13108 523.976,462.14928 524,462.18748 C524.47764,462.29588 524.1848,462.11588 524.0624,462.12508 C524.042,462.12608 524.0164,462.11908 524,462.12508 L524,462.12508 L524,462.12508 L524,462.12508 Z M526.9375,463.62508 C526.9173,463.63708 526.8469,463.61908 526.8125,463.68748 C526.8917,463.80968 526.9345,463.70148 526.9375,463.62508 L526.9375,463.62508 L526.9375,463.62508 L526.9375,463.62508 Z M522.5625,463.68748 C522.5417,463.72128 522.5837,463.79148 522.875,463.99998 C523.59856,464.05018 522.62478,463.58594 522.5625,463.68748 L522.5625,463.68748 L522.5625,463.68748 L522.5625,463.68748 Z M523.25,464.00008 C523.1656,464.03348 523.1716,464.07908 523.3124,464.18748 C523.4722,464.38448 523.60144,464.06428 523.7499,464.00008 C523.5567,463.96808 523.35806,463.95748 523.2499,464.00008 L523.25,464.00008 L523.25,464.00008 L523.25,464.00008 Z M523.8125,464.00008 C523.8663,464.00208 523.8883,464.04468 523.9375,464.18748 C524.17918,464.13028 524.0385,464.04528 523.8125,464.00008 L523.8125,464.00008 L523.8125,464.00008 L523.8125,464.00008 Z M525,464.12508 C525.0302,464.15788 525.0894,464.15708 525.125,464.18748 C525.0802,464.17948 525.0514,464.19148 525,464.18748 C524.988,464.16748 525.01,464.14468 525,464.12508 L525,464.12508 L525,464.12508 L525,464.12508 Z M526.4375,464.31248 C526.6211,464.30448 526.82582,464.32448 527.0625,464.37488 C525.19706,465.5834 525.1525,464.36688 526.4375,464.31248 L526.4375,464.31248 L526.4375,464.31248 L526.4375,464.31248 Z M528.1875,464.68748 C528.2293,464.75528 528.2615,464.81788 528.1875,464.93748 C528.1675,464.85608 528.1611,464.76708 528.1875,464.68748 L528.1875,464.68748 L528.1875,464.68748 L528.1875,464.68748 Z M527.625,464.87488 C527.641,464.95628 527.6696,465.01328 527.75,465.12488 C527.754,465.15968 527.7876,465.19388 527.8124,465.18728 C527.8872,465.16728 527.9926,465.03128 527.9998,465.12488 C528.065,465.06488 528.1514,465.05148 528.1872,464.99988 C528.2116,465.06128 528.2662,465.10488 528.3122,465.12488 C528.155,465.17348 527.9881,465.16768 527.8122,465.18728 C526.69432,465.59026 527.8652,465.27568 527.6248,464.87478 L527.625,464.87488 L527.625,464.87488 L527.625,464.87488 Z" id="path4657" fill="url(#linearGradient-2)"></path>
64
+ <path d="M455,2.0001 C453.338,2.0001 452,3.3381 452,5.0001 L452,6.00008 L472,6.00008 L472,5.0001 C472,3.3381 470.662,2.0001 469,2.0001 L455,2.0001 L455,2.0001 L455,2.0001 Z M450,8.0001 C448.892,8.0001 448,8.89208 448,10.0001 L448,22.0001 C448,23.1081 448.892,24.0001 450,24.0001 L454,24.0001 L454,14.0001 C454,12.89208 454.892,12.0001 456,12.0001 L468,12.0001 C469.108,12.0001 470,12.89208 470,14.0001 L470,24.0001 L474,24.0001 C475.108,24.0001 476,23.1081 476,22.0001 L476,10.0001 C476,8.89208 475.108,8.0001 474,8.0001 L450,8.0001 L450,8.0001 L450,8.0001 Z M456,14.0001 L456,28.0001 L468,28.0001 L468,14.0001 L456,14.0001 L456,14.0001 L456,14.0001 Z M459,16.0001 L465,16.0001 C465.554,16.0001 466,16.4461 466,17.0001 C466,17.55408 465.554,18.0001 465,18.0001 L459,18.0001 C458.446,18.0001 458,17.55408 458,17.0001 C458,16.4461 458.446,16.0001 459,16.0001 L459,16.0001 L459,16.0001 L459,16.0001 Z M459,20.0001 L465,20.0001 C465.554,20.0001 466,20.4461 466,21.0001 C466,21.55408 465.554,22.0001 465,22.0001 L459,22.0001 C458.446,22.0001 458,21.55408 458,21.0001 C458,20.4461 458.446,20.0001 459,20.0001 L459,20.0001 L459,20.0001 L459,20.0001 Z" id="path4664" fill="url(#linearGradient-2)"></path>
65
+ <path d="M142,194.0001 C135.37258,194.0001 130,199.37268 130,206.0001 C130,212.6275 135.37258,218.0001 142,218.0001 C148.62742,218.0001 154,212.6275 154,206.0001 C154,199.37268 148.62742,194.0001 142,194.0001 L142,194.0001 L142,194.0001 L142,194.0001 Z M142,196.0001 C147.52284,196.0001 152,200.47724 152,206.0001 C152,211.52294 147.52284,216.0001 142,216.0001 C136.47716,216.0001 132,211.52294 132,206.0001 C132,200.47724 136.47716,196.0001 142,196.0001 L142,196.0001 L142,196.0001 L142,196.0001 Z M142,200.0001 C138.6863,200.0001 136,202.68638 136,206.0001 C136,209.3138 138.6863,212.0001 142,212.0001 C145.3137,212.0001 148,209.3138 148,206.0001 C148,202.68638 145.3137,200.0001 142,200.0001 L142,200.0001 L142,200.0001 L142,200.0001 Z" id="path4666" fill="url(#linearGradient-2)"></path>
66
+ <path d="M580,198.0001 C576.676,198.0001 574,200.67608 574,204.0001 L574,208.0001 C574,211.3241 576.676,214.0001 580,214.0001 L600,214.0001 C603.324,214.0001 606,211.3241 606,208.0001 L606,204.0001 C606,200.67608 603.324,198.0001 600,198.0001 L580,198.0001 L580,198.0001 L580,198.0001 Z M580,200.0001 L600,200.0001 C602.216,200.0001 604,201.78408 604,204.0001 L604,208.0001 C604,210.2161 602.216,212.0001 600,212.0001 L596,206.0001 L590,212.0001 L584,208.0001 L580,212.0001 C577.784,212.0001 576,210.2161 576,208.0001 L576,204.0001 C576,201.78408 577.784,200.0001 580,200.0001 L580,200.0001 L580,200.0001 L580,200.0001 Z" id="path4670" fill="url(#linearGradient-2)"></path>
67
+ <path d="M277,258.0001 C276.446,258.0001 276,258.44608 276,259.0001 C276,259.5541 276.446,260.0001 277,260.0001 L282,260.0001 L282,262.0001 L277,262.0001 C276.446,262.0001 276,262.44608 276,263.0001 L276,267.0001 C276,267.5541 276.446,268.0001 277,268.0001 L283,268.0001 C283.554,268.0001 284,267.5541 284,267.0001 C284,266.44608 283.554,266.0001 283,266.0001 L278,266.0001 L278,264.0001 L283,264.0001 C283.554,264.0001 284,263.5541 284,263.0001 L284,259.0001 C284,258.44608 283.554,258.0001 283,258.0001 L277,258.0001 L277,258.0001 L277,258.0001 L277,258.0001 Z M260.25,263.8751 C259.65846,263.8751 259.07828,264.10932 258.625,264.5626 C257.71846,265.46914 257.71846,266.96854 258.625,267.8751 L262.6875,271.9376 L258.625,276.0001 C257.71846,276.90664 257.71846,278.40604 258.625,279.3126 C259.53154,280.21914 260.96846,280.21914 261.875,279.3126 L266,275.2501 L270.0625,279.3126 C270.96904,280.21914 272.40596,280.21914 273.3125,279.3126 C274.21904,278.40604 274.21904,276.90664 273.3125,276.0001 L269.25,271.9376 L273.3125,267.8751 C274.21904,266.96854 274.21904,265.46914 273.3125,264.5626 C272.40596,263.65604 270.96904,263.65604 270.0625,264.5626 L266,268.6251 L261.875,264.5626 C261.42172,264.10932 260.84154,263.8751 260.25,263.8751 L260.25,263.8751 L260.25,263.8751 L260.25,263.8751 Z" id="path4672" fill="url(#linearGradient-2)"></path>
68
+ <path d="M341,274.0001 C340.446,274.0001 340,274.44608 340,275.0001 C340,275.5541 340.48562,276.20584 341,276.0001 L346,276.0001 L346,278.0001 L341,278.0001 C340.446,278.0001 340,278.44608 340,279.0001 L340,283.0001 C340,283.5541 340.446,284.0001 341,284.0001 L347,284.0001 C347.554,284.0001 348,283.5541 348,283.0001 C348,282.44608 347.554,282.0001 347,282.0001 L342,282.0001 L342,280.0001 L347,280.0001 C347.554,280.0001 348,279.5541 348,279.0001 L348,275.0001 C348,274.44608 347.554,274.0001 347,274.0001 L341,274.0001 L341,274.0001 L341,274.0001 Z M324.25,261.8751 C323.65846,261.8751 323.07828,262.10932 322.625,262.5626 C321.71846,263.46914 321.71846,264.96854 322.625,265.8751 L326.6875,269.9376 L322.625,274.0001 C321.71846,274.90664 321.71846,276.40604 322.625,277.3126 C323.53154,278.21914 324.96846,278.21914 325.875,277.3126 L330,273.2501 L334.0625,277.3126 C334.96904,278.21914 336.40596,278.21914 337.3125,277.3126 C338.21904,276.40604 338.21904,274.90664 337.3125,274.0001 L333.25,269.9376 L337.3125,265.8751 C338.21904,264.96854 338.21904,263.46914 337.3125,262.5626 C336.40596,261.65604 334.96904,261.65604 334.0625,262.5626 L330,266.6251 L325.875,262.5626 C325.42172,262.10932 324.84154,261.8751 324.25,261.8751 L324.25,261.8751 L324.25,261.8751 L324.25,261.8751 Z" id="path4674" fill="url(#linearGradient-2)"></path>
69
+ <path d="M11.0000003,128.00008 C4.9248603,128.00008 3e-07,132.92494 3e-07,139.00008 C3e-07,145.0752 4.9248603,150.00008 11.0000003,150.00008 C12.8774103,150.00008 14.5838821,149.45824 16.1250003,148.62508 L23.6250003,156.12508 C24.8002123,157.3003 26.6997883,157.3003 27.8750003,156.12508 C29.0502123,154.94986 29.0502123,153.0503 27.8750003,151.87508 L20.4375003,144.43758 C21.3838043,142.82484 22.0000003,141.00858 22.0000003,139.00008 C22.0000003,132.92494 17.0751403,128.00008 11.0000003,128.00008 L11.0000003,128.00008 L11.0000003,128.00008 L11.0000003,128.00008 Z M11.0000003,132.00008 C14.8660003,132.00008 18.0000003,135.13408 18.0000003,139.00008 C18.0000003,141.12552 17.0579003,143.02878 15.5625003,144.31258 C15.5505003,144.32258 15.5120003,144.30258 15.5000003,144.31258 C14.2803003,145.34544 12.7234403,146.00008 11.0000003,146.00008 C7.1340003,146.00008 4.0000003,142.86606 4.0000003,139.00008 C4.0000003,135.13408 7.1340003,132.00008 11.0000003,132.00008 L11.0000003,132.00008 L11.0000003,132.00008 L11.0000003,132.00008 Z" id="path4676" fill="url(#linearGradient-2)"></path>
70
+ <path d="M590.00008,68.00008 L604.00008,78.00008 L590.00012,88.00006 L590.00008,81.33342 C583.16676,81.33342 578.76896,83.77342 576.00008,88.00008 C576.00008,78.03344 583.20232,74.66676 590.00008,74.66676 C590.00004,72.9652 590.00006,69.43898 590.00008,68.00008 L590.00008,68.00008 L590.00008,68.00008 L590.00008,68.00008 Z" id="path4678" fill="url(#linearGradient-2)"></path>
71
+ <path d="M134,324.0001 C131.79086,324.0001 130,325.79096 130,328.0001 C130,330.20922 131.79086,332.0001 134,332.0001 C136.20914,332.0001 138,330.20922 138,328.0001 C138,325.79096 136.20914,324.0001 134,324.0001 L134,324.0001 L134,324.0001 L134,324.0001 Z M143,324.0001 C142.446,324.0001 142,324.44608 142,325.0001 C142,325.5541 142.446,326.0001 143,326.0001 L155,326.0001 C155.554,326.0001 156,325.5541 156,325.0001 C156,324.44608 155.554,324.0001 155,324.0001 L143,324.0001 L143,324.0001 L143,324.0001 L143,324.0001 Z M143,328.0001 C142.446,328.0001 142,328.44608 142,329.0001 C142,329.5541 142.446,330.0001 143,330.0001 L155,330.0001 C155.554,330.0001 156,329.5541 156,329.0001 C156,328.44608 155.554,328.0001 155,328.0001 L143,328.0001 L143,328.0001 L143,328.0001 L143,328.0001 Z M134,338.0001 C131.79086,338.0001 130,339.79096 130,342.0001 C130,344.20922 131.79086,346.0001 134,346.0001 C136.20914,346.0001 138,344.20922 138,342.0001 C138,339.79096 136.20914,338.0001 134,338.0001 L134,338.0001 L134,338.0001 L134,338.0001 Z M143,338.0001 C142.446,338.0001 142,338.4461 142,339.0001 C142,339.5541 142.446,340.0001 143,340.0001 L155,340.0001 C155.554,340.0001 156,339.5541 156,339.0001 C156,338.4461 155.554,338.0001 155,338.0001 L143,338.0001 L143,338.0001 L143,338.0001 L143,338.0001 Z M143,342.0001 C142.446,342.0001 142,342.4461 142,343.0001 C142,343.5541 142.446,344.0001 143,344.0001 L155,344.0001 C155.554,344.0001 156,343.5541 156,343.0001 C156,342.4461 155.554,342.0001 155,342.0001 L143,342.0001 L143,342.0001 L143,342.0001 L143,342.0001 Z" id="path4680" fill="url(#linearGradient-2)"></path>
72
+ <path d="M269.0625,322.0001 C268.54808,322.0001 268.125,322.44608 268.125,323.0001 L268.125,347.0001 C268.125,347.5541 268.54808,348.0001 269.0625,348.0001 C269.57692,348.0001 270,347.5541 270,347.0001 L270,323.0001 C270,322.44608 269.57692,322.0001 269.0625,322.0001 L269.0625,322.0001 L269.0625,322.0001 L269.0625,322.0001 Z M261,326.0001 C260.44772,326.0001 260,326.4478 260,327.0001 C260,327.55238 260.44772,328.0001 261,328.0001 C261.55228,328.0001 262,327.55238 262,327.0001 C262,326.4478 261.55228,326.0001 261,326.0001 L261,326.0001 L261,326.0001 L261,326.0001 Z M265,326.0001 C264.44772,326.0001 264,326.4478 264,327.0001 C264,327.55238 264.44772,328.0001 265,328.0001 C265.55228,328.0001 266,327.55238 266,327.0001 C266,326.4478 265.55228,326.0001 265,326.0001 L265,326.0001 L265,326.0001 L265,326.0001 Z M273,326.0001 C272.446,326.0001 272,326.4114 272,326.9376 L272,327.0626 C272,327.58878 272.446,328.0001 273,328.0001 L283,328.0001 C283.554,328.0001 284,327.58878 284,327.0626 L284,326.9376 C284,326.4114 283.554,326.0001 283,326.0001 L273,326.0001 L273,326.0001 L273,326.0001 Z M273,330.0001 C272.446,330.0001 272,330.4114 272,330.9376 L272,331.0626 C272,331.58878 272.446,332.0001 273,332.0001 L279,332.0001 C279.554,332.0001 280,331.58878 280,331.0626 L280,330.9376 C280,330.4114 279.554,330.0001 279,330.0001 L273,330.0001 L273,330.0001 L273,330.0001 Z M256,334.9376 L256,335.0626 L260,338.0001 L260,336.0001 L265,336.0001 C265.554,336.0001 266,335.58878 266,335.0626 L266,334.9376 C266,334.4114 265.554,334.0001 265,334.0001 L260,334.0001 L260,332.0001 L256,334.9376 L256,334.9376 L256,334.9376 Z M273,334.0001 C272.446,334.0001 272,334.4114 272,334.9376 L272,335.0626 C272,335.58878 272.446,336.0001 273,336.0001 L283,336.0001 C283.554,336.0001 284,335.58878 284,335.0626 L284,334.9376 C284,334.4114 283.554,334.0001 283,334.0001 L273,334.0001 L273,334.0001 L273,334.0001 Z M273,338.0001 C272.446,338.0001 272,338.4114 272,338.9376 L272,339.0626 C272,339.58878 272.446,340.0001 273,340.0001 L279,340.0001 C279.554,340.0001 280,339.58878 280,339.0626 L280,338.9376 C280,338.4114 279.554,338.0001 279,338.0001 L273,338.0001 L273,338.0001 L273,338.0001 Z M261,342.0001 C260.44772,342.0001 260,342.4478 260,343.0001 C260,343.55238 260.44772,344.0001 261,344.0001 C261.55228,344.0001 262,343.55238 262,343.0001 C262,342.4478 261.55228,342.0001 261,342.0001 L261,342.0001 L261,342.0001 L261,342.0001 Z M265,342.0001 C264.44772,342.0001 264,342.4478 264,343.0001 C264,343.55238 264.44772,344.0001 265,344.0001 C265.55228,344.0001 266,343.55238 266,343.0001 C266,342.4478 265.55228,342.0001 265,342.0001 L265,342.0001 L265,342.0001 L265,342.0001 Z M273,342.0001 C272.446,342.0001 272,342.4114 272,342.9376 L272,343.0626 C272,343.58878 272.446,344.0001 273,344.0001 L283,344.0001 C283.554,344.0001 284,343.58878 284,343.0626 L284,342.9376 C284,342.4114 283.554,342.0001 283,342.0001 L273,342.0001 L273,342.0001 L273,342.0001 Z" id="path4682" fill="url(#linearGradient-2)"></path>
73
+ <path d="M462.9375,322.0001 C463.45192,322.0001 463.875,322.44608 463.875,323.0001 L463.875,347.0001 C463.875,347.5541 463.45192,348.0001 462.9375,348.0001 C462.42308,348.0001 462,347.5541 462,347.0001 L462,323.0001 C462,322.44608 462.42308,322.0001 462.9375,322.0001 L462.9375,322.0001 L462.9375,322.0001 L462.9375,322.0001 Z M471,326.0001 C471.55228,326.0001 472,326.4478 472,327.0001 C472,327.55238 471.55228,328.0001 471,328.0001 C470.44772,328.0001 470,327.55238 470,327.0001 C470,326.4478 470.44772,326.0001 471,326.0001 L471,326.0001 L471,326.0001 L471,326.0001 Z M467,326.0001 C467.55228,326.0001 468,326.4478 468,327.0001 C468,327.55238 467.55228,328.0001 467,328.0001 C466.44772,328.0001 466,327.55238 466,327.0001 C466,326.4478 466.44772,326.0001 467,326.0001 L467,326.0001 L467,326.0001 L467,326.0001 Z M459,326.0001 C459.554,326.0001 460,326.4114 460,326.9376 L460,327.0626 C460,327.58878 459.554,328.0001 459,328.0001 L449,328.0001 C448.446,328.0001 448,327.58878 448,327.0626 L448,326.9376 C448,326.4114 448.446,326.0001 449,326.0001 L459,326.0001 L459,326.0001 L459,326.0001 Z M459,330.0001 C459.554,330.0001 460,330.4114 460,330.9376 L460,331.0626 C460,331.58878 459.554,332.0001 459,332.0001 L453,332.0001 C452.446,332.0001 452,331.58878 452,331.0626 L452,330.9376 C452,330.4114 452.446,330.0001 453,330.0001 L459,330.0001 L459,330.0001 L459,330.0001 Z M475.98872,335.0626 L475.98872,334.9376 L471.99774,332.0001 L471.99774,334.0001 L467.00902,334.0001 C466.45628,334.0001 466.01128,334.36084 466.01128,334.9376 L466.01128,335.0626 C466.01128,335.5888 466.45628,336.0001 467.00902,336.0001 L471.99774,336.0001 L471.99774,338.0001 L475.98872,335.0626 L475.98872,335.0626 L475.98872,335.0626 Z M459,334.0001 C459.554,334.0001 460,334.4114 460,334.9376 L460,335.0626 C460,335.58878 459.554,336.0001 459,336.0001 L449,336.0001 C448.446,336.0001 448,335.58878 448,335.0626 L448,334.9376 C448,334.4114 448.446,334.0001 449,334.0001 L459,334.0001 L459,334.0001 L459,334.0001 Z M459,338.0001 C459.554,338.0001 460,338.4114 460,338.9376 L460,339.0626 C460,339.58878 459.554,340.0001 459,340.0001 L453,340.0001 C452.446,340.0001 452,339.58878 452,339.0626 L452,338.9376 C452,338.4114 452.446,338.0001 453,338.0001 L459,338.0001 L459,338.0001 L459,338.0001 Z M471,342.0001 C471.55228,342.0001 472,342.4478 472,343.0001 C472,343.55238 471.55228,344.0001 471,344.0001 C470.44772,344.0001 470,343.55238 470,343.0001 C470,342.4478 470.44772,342.0001 471,342.0001 L471,342.0001 L471,342.0001 L471,342.0001 Z M467,342.0001 C467.55228,342.0001 468,342.4478 468,343.0001 C468,343.55238 467.55228,344.0001 467,344.0001 C466.44772,344.0001 466,343.55238 466,343.0001 C466,342.4478 466.44772,342.0001 467,342.0001 L467,342.0001 L467,342.0001 L467,342.0001 Z M459,342.0001 C459.554,342.0001 460,342.4114 460,342.9376 L460,343.0626 C460,343.58878 459.554,344.0001 459,344.0001 L449,344.0001 C448.446,344.0001 448,343.58878 448,343.0626 L448,342.9376 C448,342.4114 448.446,342.0001 449,342.0001 L459,342.0001 L459,342.0001 L459,342.0001 Z" id="path4684" fill="url(#linearGradient-2)"></path>
74
+ <path d="M914,324.0001 C910.6863,324.0001 908,326.68638 908,330.0001 C908,333.3138 910.6863,336.0001 914,336.0001 L914,344.0001 L916,344.0001 L916,326.0001 L918,326.0001 L918,328.0001 L918,344.0001 L920,344.0001 L920,328.0001 L922,328.0001 L922,324.0001 L914,324.0001 L914,324.0001 L914,324.0001 Z M898,330.0001 L898,342.0001 L904,336.0001 L898,330.0001 L898,330.0001 L898,330.0001 Z" id="path4686" fill="url(#linearGradient-2)"></path>
75
+ <path d="M968,324.0001 C964.6863,324.0001 962,326.68638 962,330.0001 C962,333.3138 964.6863,336.0001 968,336.0001 L968,344.0001 L970,344.0001 L970,326.0001 L972,326.0001 L972,328.0001 L972,344.0001 L974,344.0001 L974,328.0001 L976,328.0001 L976,324.0001 L968,324.0001 L968,324.0001 L968,324.0001 Z M986.00884,330.0001 L986.00884,342.0001 L979.99116,336.0001 L986.00884,330.0001 L986.00884,330.0001 L986.00884,330.0001 Z" id="path4688" fill="url(#linearGradient-2)"></path>
76
+ <polygon id="path4691" fill="url(#linearGradient-2)" points="81.1289003 399.33344 79.0833603 401.45766 83.2531403 405.62744 79.0833603 409.87588 81.1289003 412.0001 85.3773403 407.75166 89.6258003 412.0001 91.6713403 409.87588 87.5015603 405.62742 91.6713403 401.45766 89.6258003 399.33344 85.3773403 403.58188"></polygon>
77
+ <path d="M269.0625,322.0001 C268.54808,322.0001 268.125,322.44608 268.125,323.0001 L268.125,347.0001 C268.125,347.5541 268.54808,348.0001 269.0625,348.0001 C269.57692,348.0001 270,347.5541 270,347.0001 L270,323.0001 C270,322.44608 269.57692,322.0001 269.0625,322.0001 L269.0625,322.0001 L269.0625,322.0001 L269.0625,322.0001 Z M261,326.0001 C260.44772,326.0001 260,326.4478 260,327.0001 C260,327.55238 260.44772,328.0001 261,328.0001 C261.55228,328.0001 262,327.55238 262,327.0001 C262,326.4478 261.55228,326.0001 261,326.0001 L261,326.0001 L261,326.0001 L261,326.0001 Z M265,326.0001 C264.44772,326.0001 264,326.4478 264,327.0001 C264,327.55238 264.44772,328.0001 265,328.0001 C265.55228,328.0001 266,327.55238 266,327.0001 C266,326.4478 265.55228,326.0001 265,326.0001 L265,326.0001 L265,326.0001 L265,326.0001 Z M273,326.0001 C272.446,326.0001 272,326.4114 272,326.9376 L272,327.0626 C272,327.58878 272.446,328.0001 273,328.0001 L283,328.0001 C283.554,328.0001 284,327.58878 284,327.0626 L284,326.9376 C284,326.4114 283.554,326.0001 283,326.0001 L273,326.0001 L273,326.0001 L273,326.0001 Z M273,330.0001 C272.446,330.0001 272,330.4114 272,330.9376 L272,331.0626 C272,331.58878 272.446,332.0001 273,332.0001 L279,332.0001 C279.554,332.0001 280,331.58878 280,331.0626 L280,330.9376 C280,330.4114 279.554,330.0001 279,330.0001 L273,330.0001 L273,330.0001 L273,330.0001 Z M256,334.9376 L256,335.0626 L260,338.0001 L260,336.0001 L265,336.0001 C265.554,336.0001 266,335.58878 266,335.0626 L266,334.9376 C266,334.4114 265.554,334.0001 265,334.0001 L260,334.0001 L260,332.0001 L256,334.9376 L256,334.9376 L256,334.9376 Z M273,334.0001 C272.446,334.0001 272,334.4114 272,334.9376 L272,335.0626 C272,335.58878 272.446,336.0001 273,336.0001 L283,336.0001 C283.554,336.0001 284,335.58878 284,335.0626 L284,334.9376 C284,334.4114 283.554,334.0001 283,334.0001 L273,334.0001 L273,334.0001 L273,334.0001 Z M273,338.0001 C272.446,338.0001 272,338.4114 272,338.9376 L272,339.0626 C272,339.58878 272.446,340.0001 273,340.0001 L279,340.0001 C279.554,340.0001 280,339.58878 280,339.0626 L280,338.9376 C280,338.4114 279.554,338.0001 279,338.0001 L273,338.0001 L273,338.0001 L273,338.0001 Z M261,342.0001 C260.44772,342.0001 260,342.4478 260,343.0001 C260,343.55238 260.44772,344.0001 261,344.0001 C261.55228,344.0001 262,343.55238 262,343.0001 C262,342.4478 261.55228,342.0001 261,342.0001 L261,342.0001 L261,342.0001 L261,342.0001 Z M265,342.0001 C264.44772,342.0001 264,342.4478 264,343.0001 C264,343.55238 264.44772,344.0001 265,344.0001 C265.55228,344.0001 266,343.55238 266,343.0001 C266,342.4478 265.55228,342.0001 265,342.0001 L265,342.0001 L265,342.0001 L265,342.0001 Z M273,342.0001 C272.446,342.0001 272,342.4114 272,342.9376 L272,343.0626 C272,343.58878 272.446,344.0001 273,344.0001 L283,344.0001 C283.554,344.0001 284,343.58878 284,343.0626 L284,342.9376 C284,342.4114 283.554,342.0001 283,342.0001 L273,342.0001 L273,342.0001 L273,342.0001 Z" id="path4693" fill="url(#linearGradient-2)"></path>
78
+ <path d="M333.28534,322.0001 C332.77092,322.0001 332.34784,322.4461 332.34784,323.0001 L332.34784,347.0001 C332.34784,347.55408 332.77092,348.0001 333.28534,348.0001 C333.79976,348.0001 334.22284,347.55408 334.22284,347.0001 L334.22284,323.0001 C334.22284,322.4461 333.79976,322.0001 333.28534,322.0001 L333.28534,322.0001 L333.28534,322.0001 L333.28534,322.0001 Z M325.22284,326.0001 C324.67056,326.0001 324.22284,326.4478 324.22284,327.0001 C324.22284,327.55238 324.67056,328.0001 325.22284,328.0001 C325.77512,328.0001 326.22284,327.55238 326.22284,327.0001 C326.22284,326.4478 325.77512,326.0001 325.22284,326.0001 L325.22284,326.0001 L325.22284,326.0001 L325.22284,326.0001 Z M329.22284,326.0001 C328.67056,326.0001 328.22284,326.4478 328.22284,327.0001 C328.22284,327.55238 328.67056,328.0001 329.22284,328.0001 C329.77512,328.0001 330.22284,327.55238 330.22284,327.0001 C330.22284,326.4478 329.77512,326.0001 329.22284,326.0001 L329.22284,326.0001 L329.22284,326.0001 L329.22284,326.0001 Z M337.22284,326.0001 C336.66884,326.0001 336.22284,326.4114 336.22284,326.9376 L336.22284,327.0626 C336.22284,327.58878 336.66884,328.0001 337.22284,328.0001 L347.22284,328.0001 C347.77684,328.0001 348.22284,327.58878 348.22284,327.0626 L348.22284,326.9376 C348.22284,326.4114 347.77684,326.0001 347.22284,326.0001 L337.22284,326.0001 L337.22284,326.0001 L337.22284,326.0001 Z M337.22284,330.0001 C336.66884,330.0001 336.22284,330.4114 336.22284,330.9376 L336.22284,331.0626 C336.22284,331.58878 336.66884,332.0001 337.22284,332.0001 L343.22284,332.0001 C343.77684,332.0001 344.22284,331.58878 344.22284,331.0626 L344.22284,330.9376 C344.22284,330.4114 343.77684,330.0001 343.22284,330.0001 L337.22284,330.0001 L337.22284,330.0001 L337.22284,330.0001 Z M330.44568,334.9376 L330.44568,335.0626 L326.2674,338.0001 L326.2674,336.0001 L321.04458,336.0001 C320.46588,336.0001 320,335.9307 320,335.0626 L320,334.9376 C320,334.4114 320.46588,334.0001 321.04458,334.0001 L326.2674,334.0001 L326.2674,332.0001 L330.44568,334.9376 L330.44568,334.9376 L330.44568,334.9376 Z M337.22284,334.0001 C336.66884,334.0001 336.22284,334.4114 336.22284,334.9376 L336.22284,335.0626 C336.22284,335.58878 336.66884,336.0001 337.22284,336.0001 L347.22284,336.0001 C347.77684,336.0001 348.22284,335.58878 348.22284,335.0626 L348.22284,334.9376 C348.22284,334.4114 347.77684,334.0001 347.22284,334.0001 L337.22284,334.0001 L337.22284,334.0001 L337.22284,334.0001 Z M337.22284,338.0001 C336.66884,338.0001 336.22284,338.4114 336.22284,338.9376 L336.22284,339.0626 C336.22284,339.58878 336.66884,340.0001 337.22284,340.0001 L343.22284,340.0001 C343.77684,340.0001 344.22284,339.58878 344.22284,339.0626 L344.22284,338.9376 C344.22284,338.4114 343.77684,338.0001 343.22284,338.0001 L337.22284,338.0001 L337.22284,338.0001 L337.22284,338.0001 Z M325.22284,342.0001 C324.67056,342.0001 324.22284,342.4478 324.22284,343.0001 C324.22284,343.55238 324.67056,344.0001 325.22284,344.0001 C325.77512,344.0001 326.22284,343.55238 326.22284,343.0001 C326.22284,342.4478 325.77512,342.0001 325.22284,342.0001 L325.22284,342.0001 L325.22284,342.0001 L325.22284,342.0001 Z M329.22284,342.0001 C328.67056,342.0001 328.22284,342.4478 328.22284,343.0001 C328.22284,343.55238 328.67056,344.0001 329.22284,344.0001 C329.77512,344.0001 330.22284,343.55238 330.22284,343.0001 C330.22284,342.4478 329.77512,342.0001 329.22284,342.0001 L329.22284,342.0001 L329.22284,342.0001 L329.22284,342.0001 Z M337.22284,342.0001 C336.66884,342.0001 336.22284,342.4114 336.22284,342.9376 L336.22284,343.0626 C336.22284,343.58878 336.66884,344.0001 337.22284,344.0001 L347.22284,344.0001 C347.77684,344.0001 348.22284,343.58878 348.22284,343.0626 L348.22284,342.9376 C348.22284,342.4114 347.77684,342.0001 347.22284,342.0001 L337.22284,342.0001 L337.22284,342.0001 L337.22284,342.0001 Z" id="path4695" fill="url(#linearGradient-2)"></path>
79
+ <path d="M398.9375,322.0001 C399.45194,322.0001 399.875,322.4461 399.875,323.0001 L399.875,347.0001 C399.875,347.5541 399.45194,348.0001 398.9375,348.0001 C398.42308,348.0001 398,347.5541 398,347.0001 L398,323.0001 C398,322.4461 398.42308,322.0001 398.9375,322.0001 L398.9375,322.0001 L398.9375,322.0001 L398.9375,322.0001 Z M407,326.0001 C407.55228,326.0001 408,326.44782 408,327.0001 C408,327.55238 407.55228,328.0001 407,328.0001 C406.44772,328.0001 406,327.55238 406,327.0001 C406,326.44782 406.44772,326.0001 407,326.0001 L407,326.0001 L407,326.0001 L407,326.0001 Z M403,326.0001 C403.55228,326.0001 404,326.44782 404,327.0001 C404,327.55238 403.55228,328.0001 403,328.0001 C402.44772,328.0001 402,327.55238 402,327.0001 C402,326.44782 402.44772,326.0001 403,326.0001 L403,326.0001 L403,326.0001 L403,326.0001 Z M395,326.0001 C395.554,326.0001 396,326.41142 396,326.9376 L396,327.0626 C396,327.58878 395.554,328.0001 395,328.0001 L385,328.0001 C384.446,328.0001 384,327.58878 384,327.0626 L384,326.9376 C384,326.41142 384.446,326.0001 385,326.0001 L395,326.0001 L395,326.0001 L395,326.0001 Z M395,330.0001 C395.554,330.0001 396,330.41142 396,330.9376 L396,331.0626 C396,331.58878 395.554,332.0001 395,332.0001 L389,332.0001 C388.446,332.0001 388,331.58878 388,331.0626 L388,330.9376 C388,330.41142 388.446,330.0001 389,330.0001 L395,330.0001 L395,330.0001 L395,330.0001 Z M402,335.0626 L402,334.9376 L406,332.0001 L406,334.0001 L411,334.0001 C411.554,334.0001 412,334.41142 412,334.9376 L412,335.0626 C412,335.58878 411.55314,336.0311 411,336.0001 L406,336.0001 L406,338.0001 L402,335.0626 L402,335.0626 L402,335.0626 Z M395,334.0001 C395.554,334.0001 396,334.41142 396,334.9376 L396,335.0626 C396,335.58878 395.554,336.0001 395,336.0001 L385,336.0001 C384.446,336.0001 384,335.58878 384,335.0626 L384,334.9376 C384,334.41142 384.446,334.0001 385,334.0001 L395,334.0001 L395,334.0001 L395,334.0001 Z M395,338.0001 C395.554,338.0001 396,338.41142 396,338.9376 L396,339.0626 C396,339.58878 395.554,340.0001 395,340.0001 L389,340.0001 C388.446,340.0001 388,339.58878 388,339.0626 L388,338.9376 C388,338.41142 388.446,338.0001 389,338.0001 L395,338.0001 L395,338.0001 L395,338.0001 Z M407,342.0001 C407.55228,342.0001 408,342.44782 408,343.0001 C408,343.55238 407.55228,344.0001 407,344.0001 C406.44772,344.0001 406,343.55238 406,343.0001 C406,342.44782 406.44772,342.0001 407,342.0001 L407,342.0001 L407,342.0001 L407,342.0001 Z M403,342.0001 C403.55228,342.0001 404,342.44782 404,343.0001 C404,343.55238 403.55228,344.0001 403,344.0001 C402.44772,344.0001 402,343.55238 402,343.0001 C402,342.44782 402.44772,342.0001 403,342.0001 L403,342.0001 L403,342.0001 L403,342.0001 Z M395,342.0001 C395.554,342.0001 396,342.41142 396,342.9376 L396,343.0626 C396,343.58878 395.554,344.0001 395,344.0001 L385,344.0001 C384.446,344.0001 384,343.58878 384,343.0626 L384,342.9376 C384,342.41142 384.446,342.0001 385,342.0001 L395,342.0001 L395,342.0001 L395,342.0001 Z" id="path4698" fill="url(#linearGradient-2)"></path>
80
+ <path d="M3e-07,450.0001 L3e-07,474.0001 L28.0000003,474.0001 L28.0000003,450.0001 L3e-07,450.0001 L3e-07,450.0001 L3e-07,450.0001 L3e-07,450.0001 Z M2.0000003,452.0001 L26.0000003,452.0001 L26.0000003,467.1876 L20.1875003,460.0001 L14.0000003,468.0001 L8.0000003,464.0001 L2.0000003,472.0001 L2.0000003,452.0001 L2.0000003,452.0001 L2.0000003,452.0001 L2.0000003,452.0001 Z M7.0000003,454.0001 C5.3431403,454.0001 4.0000003,455.34324 4.0000003,457.0001 C4.0000003,458.65694 5.3431403,460.0001 7.0000003,460.0001 C8.6568403,460.0001 10.0000003,458.65694 10.0000003,457.0001 C10.0000003,455.34324 8.6568403,454.0001 7.0000003,454.0001 L7.0000003,454.0001 L7.0000003,454.0001 L7.0000003,454.0001 Z" id="path4700" fill="url(#linearGradient-2)"></path>
81
+ <path d="M394,452.0001 L394,458.0001 L414,458.0001 L414,452.0001 L394,452.0001 L394,452.0001 L394,452.0001 Z M384,456.0001 L384,470.0001 L392,463.1251 L384,456.0001 L384,456.0001 L384,456.0001 Z M394,462.0001 L394,464.0001 L400,464.0001 L400,462.0001 L394,462.0001 L394,462.0001 L394,462.0001 Z M402,462.0001 L402,464.0001 L408,464.0001 L408,462.0001 L402,462.0001 L402,462.0001 L402,462.0001 Z M410,462.0001 L410,464.0001 L414,464.0001 L414,462.0001 L410,462.0001 L410,462.0001 L410,462.0001 Z M394,468.0001 L394,474.0001 L414,474.0001 L414,468.0001 L394,468.0001 L394,468.0001 L394,468.0001 Z" id="path4702" fill="url(#linearGradient-2)"></path>
82
+ <path d="M643,198.0001 C642.446,198.0001 642,198.4461 642,199.0001 C642,199.48482 643.1987,199.90716 643.125,200.0001 L644,200.0001 L644,210.0001 L643,210.0001 C642.446,210.0001 642,210.4461 642,211.0001 C642,211.55408 642.446,212.0001 643,212.0001 L647,212.0001 C647.554,212.0001 648,211.55408 648,211.0001 C648,210.4461 647.24776,209.50458 647,210.0001 L646,210.0001 L646,200.0001 L647,200.0001 C647.554,200.0001 648,199.55408 648,199.0001 C648,198.4461 647.554,198.0001 647,198.0001 L643,198.0001 L643,198.0001 L643,198.0001 Z" id="path4704" fill="url(#linearGradient-2)"></path>
83
+ <path d="M258,194.0001 C255.8186,194.0001 254,195.8187 254,198.0001 L254,216.0001 C254,218.18148 255.8186,220.0001 258,220.0001 L282,220.0001 C284.1814,220.0001 286,218.18148 286,216.0001 L286,215.2501 C286.0656,215.0715 286.0426,214.9058 286,214.7501 L286,198.0001 C286,195.8187 284.1814,194.0001 282,194.0001 L258,194.0001 L258,194.0001 L258,194.0001 Z M258,196.0001 L282,196.0001 C283.108,196.0001 284,196.8921 284,198.0001 L284,206.236 L272.2359,217.9999 L258,218.0001 C256.892,218.00012 256,217.1081 256,216.0001 L256,198.0001 C256,196.8921 256.892,196.0001 258,196.0001 L258,196.0001 L258,196.0001 L258,196.0001 Z M259,198.0001 C258.446,198.0001 258,198.4461 258,199.0001 C258,199.48484 258.0888,200.06902 259.125,200.0001 L260,200.0001 L260,210.0001 L259,210.0001 C258.446,210.0001 258,210.4461 258,211.0001 C258,211.55408 258.446,212.0001 259,212.0001 L263,212.0001 C263.554,212.0001 264,211.55408 264,211.0001 C264,210.4461 263.75644,209.9439 263,210.0001 L262,210.0001 L262,200.0001 L263,200.0001 C263.554,200.0001 264,199.5541 264,199.0001 C264,198.4461 263.554,198.0001 263,198.0001 L259,198.0001 L259,198.0001 L259,198.0001 Z M284,208.8126 L284,210.5001 L276.5625,217.8751 L276.5001,218.0001 L274.8126,218.0001 L284,208.8126 L284,208.8126 L284,208.8126 Z M284,213.2501 L284,214.5001 L280.5625,218.0001 L279.3125,218.0001 L284,213.2501 L284,213.2501 L284,213.2501 Z" id="path4706" fill="url(#linearGradient-2)"></path>
84
+ <path d="M386,196.0001 C383.8186,196.0001 382,197.8187 382,200.0001 L382,214.0001 C382,216.1815 383.8186,218.0001 386,218.0001 L410,218.0001 C412.1814,218.0001 414,216.1815 414,214.0001 L414,200.0001 C414,197.8187 412.1814,196.0001 410,196.0001 L386,196.0001 L386,196.0001 L386,196.0001 Z M386,198.0001 L410,198.0001 C411.108,198.0001 412,198.8921 412,200.0001 L412,214.0001 C412,215.1081 411.108,216.0001 410,216.0001 L386,216.0001 C384.892,216.0001 384,215.1081 384,214.0001 L384,200.0001 C384,198.8921 384.892,198.0001 386,198.0001 L386,198.0001 L386,198.0001 L386,198.0001 Z M398,204.0001 L404,212.0001 L410,204.0001 L398,204.0001 L398,204.0001 L398,204.0001 Z" id="path4708" fill="url(#linearGradient-2)"></path>
85
+ <path d="M207,704.99998 C204.67047,704.99998 202.56629,706.05676 201.09375,707.68748 L204.65625,709.74998 C205.31214,709.27975 206.12788,708.99998 207,708.99998 C209.216,708.99998 211,710.78398 211,712.99998 L211,715.99998 L206,715.99998 L202,715.99998 L200,715.99998 L198,715.99998 C196.892,715.99998 196,716.89194 196,717.99998 L196,729.99998 C196,731.10798 196.892,731.99998 198,731.99998 L216,731.99998 C217.108,731.99998 218,731.10798 218,729.99998 L218,717.99998 C218,716.89194 217.108,715.99998 216,715.99998 L215,715.99998 L215,712.99998 C215,708.63717 211.36281,704.99998 207,704.99998 L207,704.99998 L207,704.99998 L207,704.99998 Z M207,721.99998 C208.65686,721.99998 210,723.34312 210,724.99998 C210,726.6568 208.65686,727.99998 207,727.99998 C205.34314,727.99998 204,726.6568 204,724.99998 C204,723.34312 205.34314,721.99998 207,721.99998 L207,721.99998 L207,721.99998 L207,721.99998 Z" id="path4710" fill="url(#linearGradient-2)"></path>
86
+ <path d="M5.0000003,324.0001 C4.4460003,324.0001 4.0000003,324.4461 4.0000003,325.0001 C4.0000003,325.55408 4.4460003,326.0001 5.0000003,326.0001 L6.0000003,326.0001 L6.0000003,333.0001 C6.0000003,333.55408 6.4460003,334.0001 7.0000003,334.0001 C7.5540003,334.0001 8.0000003,333.55408 8.0000003,333.0001 L8.0000003,325.0001 C8.0000003,324.4461 7.5540003,324.0001 7.0000003,324.0001 L5.0000003,324.0001 L5.0000003,324.0001 L5.0000003,324.0001 L5.0000003,324.0001 Z M13.0000003,324.0001 C12.4460003,324.0001 12.0000003,324.4461 12.0000003,325.0001 C12.0000003,325.55408 12.4460003,326.0001 13.0000003,326.0001 L25.0000003,326.0001 C25.5540003,326.0001 26.0000003,325.55408 26.0000003,325.0001 C26.0000003,324.4461 25.5540003,324.0001 25.0000003,324.0001 L13.0000003,324.0001 L13.0000003,324.0001 L13.0000003,324.0001 L13.0000003,324.0001 Z M13.0000003,328.0001 C12.4460003,328.0001 12.0000003,328.4461 12.0000003,329.0001 C12.0000003,329.55408 12.4460003,330.0001 13.0000003,330.0001 L25.0000003,330.0001 C25.5540003,330.0001 26.0000003,329.55408 26.0000003,329.0001 C26.0000003,328.4461 25.5540003,328.0001 25.0000003,328.0001 L13.0000003,328.0001 L13.0000003,328.0001 L13.0000003,328.0001 L13.0000003,328.0001 Z M3.0000003,338.0001 C2.4460003,338.0001 2.0000003,338.4461 2.0000003,339.0001 C2.0000003,339.55408 2.4460003,340.0001 3.0000003,340.0001 L6.0000003,340.0001 L6.0000003,342.0001 L3.0000003,342.0001 C2.4460003,342.0001 2.0000003,342.4461 2.0000003,343.0001 L2.0000003,347.0001 C2.0000003,347.55408 2.4460003,348.0001 3.0000003,348.0001 L7.0000003,348.0001 C7.5540003,348.0001 8.0000003,347.55408 8.0000003,347.0001 C8.0000003,346.4461 7.5540003,346.0001 7.0000003,346.0001 L4.0000003,346.0001 L4.0000003,344.0001 L7.0000003,344.0001 C7.1386003,344.0001 7.2552803,343.9881 7.3750003,343.9377 C7.6293603,343.8557 7.8364003,343.65344 7.9375003,343.3752 C7.9879003,343.2554 7.9999003,343.1387 7.9999003,343.0002 L7.9999003,339.0002 C7.9999003,338.8616 7.9879003,338.7449 7.9375003,338.6252 C7.8365003,338.34694 7.6293603,338.14464 7.3750003,338.0627 C7.2942003,338.0285 7.2152003,338.0121 7.1250003,338.0003 L7.0000003,338.0003 L3.0000003,338.0003 L3.0000003,338.0001 L3.0000003,338.0001 L3.0000003,338.0001 Z M13.0000003,338.0001 C12.4460003,338.0001 12.0000003,338.4461 12.0000003,339.0001 C12.0000003,339.55408 12.4460003,340.0001 13.0000003,340.0001 L25.0000003,340.0001 C25.5540003,340.0001 26.0000003,339.55408 26.0000003,339.0001 C26.0000003,338.4461 25.5540003,338.0001 25.0000003,338.0001 L13.0000003,338.0001 L13.0000003,338.0001 L13.0000003,338.0001 L13.0000003,338.0001 Z M13.0000003,342.0001 C12.4460003,342.0001 12.0000003,342.4461 12.0000003,343.0001 C12.0000003,343.55408 12.4460003,344.0001 13.0000003,344.0001 L25.0000003,344.0001 C25.5540003,344.0001 26.0000003,343.55408 26.0000003,343.0001 C26.0000003,342.4461 25.5540003,342.0001 25.0000003,342.0001 L13.0000003,342.0001 L13.0000003,342.0001 L13.0000003,342.0001 L13.0000003,342.0001 Z" id="path4712" fill="url(#linearGradient-2)"></path>
87
+ <path d="M24.5909743,274.59458 C24.5909563,276.0124 24.3162923,277.20234 23.7669843,278.16442 C23.2176383,279.10118 22.4659303,279.86072 21.5118423,280.44302 C20.5866323,281.00002 19.4735283,281.40512 18.1724943,281.65828 C16.9003567,281.88616 15.5270389,282.00008 14.0525403,282.00008 L6.5932201,282.02428 L6.5932201,257.92818 L13.5321111,257.92218 C15.5559559,257.9222 17.2039373,258.11218 18.4760743,258.49182 C19.7481923,258.8463 20.7456663,259.32734 21.4684763,259.93494 C22.1912663,260.51728 22.6827603,261.17554 22.9429943,261.90974 C23.2031883,262.64398 23.3332863,263.3782 23.3333063,264.1124 C23.3332863,265.2264 23.0152563,266.2138 22.3791983,267.0746 C21.7720363,267.93542 20.9480463,268.619 19.9072263,269.12536 C21.7286703,269.70768 22.9574223,270.49254 23.5935203,271.47992 C24.2584763,272.46734 24.5909563,273.50536 24.5909743,274.59402 M11.9274957,271.40396 L11.9274957,277.78408 C12.3033399,277.83468 12.7081205,277.87268 13.1417987,277.89808 C13.6043939,277.92348 14.0525213,277.93608 14.4862187,277.93608 C15.0933607,277.9361 15.6860537,277.89808 16.2642977,277.82208 C16.8425419,277.72088 17.3485031,277.55624 17.7821813,277.32838 C18.2447763,277.0752 18.6206203,276.73342 18.9097523,276.303 C19.1988643,275.84728 19.3434303,275.27764 19.3434303,274.59404 C19.3434303,273.45474 18.9242023,272.64458 18.0857623,272.16352 C17.2762201,271.65718 16.1775659,271.404 14.7897993,271.40398 L11.9274957,271.40398 M14.0091745,267.53034 C15.3680241,267.53036 16.3943955,267.27718 17.0883077,266.7708 C17.7821813,266.23914 18.1291283,265.51758 18.1291283,264.60612 C18.1291283,264.04914 18.0279483,263.60608 17.8255473,263.27694 C17.6231667,262.9225 17.3485031,262.65666 17.0015567,262.47942 C16.6546101,262.2769 16.2498297,262.1503 15.7872535,262.09964 C15.3246583,262.02364 14.8476141,261.98564 14.3561017,261.98564 C13.9513405,261.98566 13.5321111,261.99764 13.0984327,262.02364 C12.6647545,262.04904 12.2744421,262.08704 11.9274957,262.13764 L11.9274957,267.53036 L14.0091745,267.53036" id="path4714" fill="url(#linearGradient-2)"></path>
88
+ <polyline id="Shape" fill="url(#linearGradient-2)" points="71.1 282 72.12 278 75.34 278 79.34 262 76.02 262 77.04 258 88.24 258 87.22 262 84.04 262 80.04 278 83.22 278 82.2 282 71 282"></polyline>
89
+ <g id="g4720" transform="translate(386.501563, 257.548290)" fill="url(#linearGradient-2)">
90
+ <polyline id="path4722" points="1.44979442 20.4518069 6.24257344 3.14155649 0.228110654 3.14155649 0.838941895 0.477775186 18.8823941 0.477775186 18.2715416 3.14155649 12.2570575 3.14155649 7.46427848 20.4518069 1.44979442 20.4518069"></polyline>
91
+ </g>
92
+ <path d="M526.00008,68.00008 L540.00008,78.00008 L526.00012,88.00006 L526.00008,81.33342 C519.16676,81.33342 514.76896,83.77342 512.00008,88.00008 C512.00008,78.03344 519.20232,74.66676 526.00008,74.66676 C526.00004,72.9652 526.00006,69.43898 526.00008,68.00008 L526.00008,68.00008 L526.00008,68.00008 L526.00008,68.00008 Z" id="path4726" fill="url(#linearGradient-2)"></path>
93
+ <path d="M654,68.0001 L640,78.0001 L653.99996,88.00006 L654,81.33342 C660.83332,81.33342 665.23112,83.77342 668,88.0001 C668,78.03344 660.79776,74.66676 654,74.66676 C654.00004,72.9652 654.00002,69.439 654,68.0001 L654,68.0001 L654,68.0001 L654,68.0001 Z" id="path4728" fill="url(#linearGradient-2)"></path>
94
+ <path d="M474,196.0001 C476.1814,196.0001 478,197.8187 478,200.0001 L478,214.0001 C478,216.1815 476.1814,218.0001 474,218.0001 L450,218.0001 C447.8186,218.0001 446,216.1815 446,214.0001 L446,200.0001 C446,197.8187 447.8186,196.0001 450,196.0001 L474,196.0001 L474,196.0001 L474,196.0001 Z M474,198.0001 L450,198.0001 C448.892,198.0001 448,198.8921 448,200.0001 L448,214.0001 C448,215.1081 448.892,216.0001 450,216.0001 L474,216.0001 C475.108,216.0001 476,215.1081 476,214.0001 L476,200.0001 C476,198.8921 475.108,198.0001 474,198.0001 L474,198.0001 L474,198.0001 L474,198.0001 Z M462,204.0001 L456,212.0001 L450,204.0001 L462,204.0001 L462,204.0001 L462,204.0001 Z" id="path4730" fill="url(#linearGradient-2)"></path>
95
+ <path d="M220,384.0001 L220,412.0001 L218,412.0001 L218,384.0001 L220,384.0001 L220,384.0001 L220,384.0001 Z M210.50002,383.16682 C212.23968,383.18482 214.02068,383.84748 216,385.91682 L216,402.0001 C208.07736,393.8828 202.11464,407.63206 194,400.0001 L194,383.9168 C200.06198,389.7848 205.28102,383.10976 210.50002,383.16688 L210.50002,383.16682 L210.50002,383.16682 L210.50002,383.16682 Z" id="path4732" fill="url(#linearGradient-2)"></path>
96
+ <path d="M155,576.0001 C155.55228,576.0001 156,576.44782 156,577.0001 C156,577.55238 155.55228,578.0001 155,578.0001 C154.44772,578.0001 154,577.55238 154,577.0001 C154,576.44782 154.44772,576.0001 155,576.0001 L155,576.0001 L155,576.0001 L155,576.0001 Z M151,576.0001 C151.55228,576.0001 152,576.44782 152,577.0001 C152,577.55238 151.55228,578.0001 151,578.0001 C150.44772,578.0001 150,577.55238 150,577.0001 C150,576.44782 150.44772,576.0001 151,576.0001 L151,576.0001 L151,576.0001 L151,576.0001 Z M147,576.0001 C147.55228,576.0001 148,576.44782 148,577.0001 C148,577.55238 147.55228,578.0001 147,578.0001 C146.44772,578.0001 146,577.55238 146,577.0001 C146,576.44782 146.44772,576.0001 147,576.0001 L147,576.0001 L147,576.0001 L147,576.0001 Z M143,576.0001 C143.55228,576.0001 144,576.44782 144,577.0001 C144,577.55238 143.55228,578.0001 143,578.0001 C142.44772,578.0001 142,577.55238 142,577.0001 C142,576.44782 142.44772,576.0001 143,576.0001 L143,576.0001 L143,576.0001 L143,576.0001 Z M139,576.0001 C139.55228,576.0001 140,576.44782 140,577.0001 C140,577.55238 139.55228,578.0001 139,578.0001 C138.44772,578.0001 138,577.55238 138,577.0001 C138,576.44782 138.44772,576.0001 139,576.0001 L139,576.0001 L139,576.0001 L139,576.0001 Z M132,576.0001 C134.1814,576.0001 136,577.8187 136,580.0001 L136,600.0001 C136,602.1815 134.1814,604.0001 132,604.0001 C129.8186,604.0001 128,602.1815 128,600.0001 L128,580.0001 C128,577.8187 129.8186,576.0001 132,576.0001 L132,576.0001 L132,576.0001 L132,576.0001 Z M132,578.0001 C130.892,578.0001 130,578.8921 130,580.0001 L130,600.0001 C130,601.1081 130.892,602.0001 132,602.0001 C133.108,602.0001 134,601.1081 134,600.0001 L134,580.0001 C134,578.8921 133.108,578.0001 132,578.0001 L132,578.0001 L132,578.0001 L132,578.0001 Z M155,580.0001 C155.55228,580.0001 156,580.44782 156,581.0001 C156,581.55238 155.55228,582.0001 155,582.0001 C154.44772,582.0001 154,581.55238 154,581.0001 C154,580.44782 154.44772,580.0001 155,580.0001 L155,580.0001 L155,580.0001 L155,580.0001 Z M139,580.0001 C139.55228,580.0001 140,580.44782 140,581.0001 C140,581.55238 139.55228,582.0001 139,582.0001 C138.44772,582.0001 138,581.55238 138,581.0001 C138,580.44782 138.44772,580.0001 139,580.0001 L139,580.0001 L139,580.0001 L139,580.0001 Z M155,584.0001 C155.55228,584.0001 156,584.44782 156,585.0001 C156,585.55238 155.55228,586.0001 155,586.0001 C154.44772,586.0001 154,585.55238 154,585.0001 C154,584.44782 154.44772,584.0001 155,584.0001 L155,584.0001 L155,584.0001 L155,584.0001 Z M139,584.0001 C139.55228,584.0001 140,584.44782 140,585.0001 C140,585.55238 139.55228,586.0001 139,586.0001 C138.44772,586.0001 138,585.55238 138,585.0001 C138,584.44782 138.44772,584.0001 139,584.0001 L139,584.0001 L139,584.0001 L139,584.0001 Z M155,588.0001 C155.55228,588.0001 156,588.44782 156,589.0001 C156,589.55238 155.55228,590.0001 155,590.0001 C154.44772,590.0001 154,589.55238 154,589.0001 C154,588.44782 154.44772,588.0001 155,588.0001 L155,588.0001 L155,588.0001 L155,588.0001 Z M139,588.0001 C139.55228,588.0001 140,588.44782 140,589.0001 C140,589.55238 139.55228,590.0001 139,590.0001 C138.44772,590.0001 138,589.55238 138,589.0001 C138,588.44782 138.44772,588.0001 139,588.0001 L139,588.0001 L139,588.0001 L139,588.0001 Z M155,592.0001 C155.55228,592.0001 156,592.44782 156,593.0001 C156,593.55238 155.55228,594.0001 155,594.0001 C154.44772,594.0001 154,593.55238 154,593.0001 C154,592.44782 154.44772,592.0001 155,592.0001 L155,592.0001 L155,592.0001 L155,592.0001 Z M151,592.0001 C151.55228,592.0001 152,592.44782 152,593.0001 C152,593.55238 151.55228,594.0001 151,594.0001 C150.44772,594.0001 150,593.55238 150,593.0001 C150,592.44782 150.44772,592.0001 151,592.0001 L151,592.0001 L151,592.0001 L151,592.0001 Z M147,592.0001 C147.55228,592.0001 148,592.44782 148,593.0001 C148,593.55238 147.55228,594.0001 147,594.0001 C146.44772,594.0001 146,593.55238 146,593.0001 C146,592.44782 146.44772,592.0001 147,592.0001 L147,592.0001 L147,592.0001 L147,592.0001 Z M143,592.0001 C143.55228,592.0001 144,592.44782 144,593.0001 C144,593.55238 143.55228,594.0001 143,594.0001 C142.44772,594.0001 142,593.55238 142,593.0001 C142,592.44782 142.44772,592.0001 143,592.0001 L143,592.0001 L143,592.0001 L143,592.0001 Z M139,592.0001 C139.55228,592.0001 140,592.44782 140,593.0001 C140,593.55238 139.55228,594.0001 139,594.0001 C138.44772,594.0001 138,593.55238 138,593.0001 C138,592.44782 138.44772,592.0001 139,592.0001 L139,592.0001 L139,592.0001 L139,592.0001 Z M152,596.0001 C154.1814,596.0001 156,597.8187 156,600.0001 C156,602.1815 154.1814,604.0001 152,604.0001 L142,604.0001 C139.8186,604.0001 138,602.1815 138,600.0001 C138,597.8187 139.8186,596.0001 142,596.0001 L152,596.0001 L152,596.0001 L152,596.0001 L152,596.0001 Z M152,598.0001 L142,598.0001 C140.892,598.0001 140,598.8921 140,600.0001 C140,601.1081 140.892,602.0001 142,602.0001 L152,602.0001 C153.108,602.0001 154,601.1081 154,600.0001 C154,598.8921 153.108,598.0001 152,598.0001 L152,598.0001 L152,598.0001 L152,598.0001 Z" id="path4734" fill="url(#linearGradient-2)"></path>
97
+ <path d="M132,0.0001 C129.784,0.0001 128,1.7841 128,4.0001 L128,21.8751 L134,28.0001 L152,28.0001 C154.216,28.0001 156,26.2161 156,24.0001 L156,4.0001 C156,1.7841 154.216,0.0001 152,0.0001 L132,0.0001 L132,0.0001 L132,0.0001 Z M132,2.0001 L152,2.0001 L152,10.0001 C152,12.2161 152.216,12.0001 150,12.0001 L134,12.0001 C131.784,12.0001 132,12.2161 132,10.0001 L132,2.0001 L132,2.0001 L132,2.0001 Z M134,18.0001 L150,18.0001 L150,26.0001 L142,26.0001 L142,20.0001 L138,20.0001 L138,26.0001 L134,26.0001 L134,18.0001 L134,18.0001 L134,18.0001 Z" id="path4736" fill="url(#linearGradient-2)"></path>
98
+ <path d="M87.0000003,324.0001 C87.0000003,324.0001 86.0000003,324.4461 86.0000003,325.0001 C86.0000003,325.55408 87.5540003,326.0001 87.0000003,326.0001 L88.0000003,326.0001 L88.0000003,333.0001 C88.0000003,333.55408 88.4460003,334.0001 89.0000003,334.0001 C89.5540003,334.0001 90.0000003,333.55408 90.0000003,333.0001 L90.0000003,325.0001 C90.0000003,324.4461 89.0000003,324.0001 89.0000003,324.0001 L87.0000003,324.0001 L87.0000003,324.0001 L87.0000003,324.0001 Z M67.0000003,324.0001 C66.4460003,324.0001 66.0000003,324.4461 66.0000003,325.0001 C66.0000003,325.55408 66.4460003,326.0001 67.0000003,326.0001 L79.0000003,326.0001 C79.5540003,326.0001 80.0000003,325.55408 80.0000003,325.0001 C80.0000003,324.4461 79.5540003,324.0001 79.0000003,324.0001 L67.0000003,324.0001 L67.0000003,324.0001 L67.0000003,324.0001 Z M67.0000003,328.0001 C66.4460003,328.0001 66.0000003,328.4461 66.0000003,329.0001 C66.0000003,329.55408 66.4460003,330.0001 67.0000003,330.0001 L79.0000003,330.0001 C79.5540003,330.0001 80.0000003,329.55408 80.0000003,329.0001 C80.0000003,328.4461 79.5540003,328.0001 79.0000003,328.0001 L67.0000003,328.0001 L67.0000003,328.0001 L67.0000003,328.0001 Z M85.0000003,338.0001 C84.4460003,338.0001 84.0000003,338.4461 84.0000003,339.0001 C84.0000003,339.55408 84.4460003,340.0001 85.0000003,340.0001 L88.0000003,340.0001 L88.0000003,342.0001 L85.0000003,342.0001 C84.4460003,342.0001 84.0000003,342.4461 84.0000003,343.0001 L84.0000003,347.0001 C84.0000003,347.55408 84.4460003,348.0001 85.0000003,348.0001 L89.0000003,348.0001 C89.5540003,348.0001 90.0000003,347.55408 90.0000003,347.0001 C90.0000003,346.4461 89.5540003,346.0001 89.0000003,346.0001 L86.0000003,346.0001 L86.0000003,344.0001 L89.0000003,344.0001 C89.1386003,344.0001 89.2552803,343.9881 89.3750003,343.9377 C89.6293603,343.8557 89.8364003,343.65344 89.9375003,343.3752 C89.9879003,343.2554 89.9999003,343.1387 89.9999003,343.0002 L89.9999003,339.0002 C89.9999003,338.8616 89.9879003,338.7449 89.9375003,338.6252 C89.8365003,338.34694 89.6293603,338.14464 89.3750003,338.0627 C89.2942003,338.0285 89.2152003,338.0121 89.1250003,338.0003 L89.0000003,338.0003 L85.0000003,338.0003 L85.0000003,338.0001 L85.0000003,338.0001 L85.0000003,338.0001 Z M67.0000003,338.0001 C66.4460003,338.0001 66.0000003,338.4461 66.0000003,339.0001 C66.0000003,339.55408 66.4460003,340.0001 67.0000003,340.0001 L79.0000003,340.0001 C79.5540003,340.0001 80.0000003,339.55408 80.0000003,339.0001 C80.0000003,338.4461 79.5540003,338.0001 79.0000003,338.0001 L67.0000003,338.0001 L67.0000003,338.0001 L67.0000003,338.0001 Z M67.0000003,342.0001 C66.4460003,342.0001 66.0000003,342.4461 66.0000003,343.0001 C66.0000003,343.55408 66.4460003,344.0001 67.0000003,344.0001 L79.0000003,344.0001 C79.5540003,344.0001 80.0000003,343.55408 80.0000003,343.0001 C80.0000003,342.4461 79.5540003,342.0001 79.0000003,342.0001 L67.0000003,342.0001 L67.0000003,342.0001 L67.0000003,342.0001 Z" id="path4738" fill="url(#linearGradient-2)"></path>
99
+ <path d="M214,324.0001 C211.79086,324.0001 210,325.79096 210,328.0001 C210,330.20922 211.79086,332.0001 214,332.0001 C216.20914,332.0001 218,330.20922 218,328.0001 C218,325.79096 216.20914,324.0001 214,324.0001 L214,324.0001 L214,324.0001 L214,324.0001 Z M193,324.0001 C192.446,324.0001 192,324.44608 192,325.0001 C192,325.5541 192.446,326.0001 193,326.0001 L205,326.0001 C205.554,326.0001 206,325.5541 206,325.0001 C206,324.44608 205.554,324.0001 205,324.0001 L193,324.0001 L193,324.0001 L193,324.0001 Z M193,328.0001 C192.446,328.0001 192,328.44608 192,329.0001 C192,329.5541 192.446,330.0001 193,330.0001 L205,330.0001 C205.554,330.0001 206,329.5541 206,329.0001 C206,328.44608 205.554,328.0001 205,328.0001 L193,328.0001 L193,328.0001 L193,328.0001 Z M214,338.0001 C211.79086,338.0001 210,339.79096 210,342.0001 C210,344.20922 211.79086,346.0001 214,346.0001 C216.20914,346.0001 218,344.20922 218,342.0001 C218,339.79096 216.20914,338.0001 214,338.0001 L214,338.0001 L214,338.0001 L214,338.0001 Z M193,338.0001 C192.446,338.0001 192,338.4461 192,339.0001 C192,339.5541 192.446,340.0001 193,340.0001 L205,340.0001 C205.554,340.0001 206,339.5541 206,339.0001 C206,338.4461 205.554,338.0001 205,338.0001 L193,338.0001 L193,338.0001 L193,338.0001 Z M193,342.0001 C192.446,342.0001 192,342.4461 192,343.0001 C192,343.5541 192.446,344.0001 193,344.0001 L205,344.0001 C205.554,344.0001 206,343.5541 206,343.0001 C206,342.4461 205.554,342.0001 205,342.0001 L193,342.0001 L193,342.0001 L193,342.0001 Z" id="path4740" fill="url(#linearGradient-2)"></path>
100
+ <path d="M466,452.0001 L466,458.0001 L446,458.0001 L446,452.0001 L466,452.0001 L466,452.0001 L466,452.0001 Z M476,456.0001 L476,470.0001 L468,463.1251 L476,456.0001 L476,456.0001 L476,456.0001 Z M466,462.0001 L466,464.0001 L460,464.0001 L460,462.0001 L466,462.0001 L466,462.0001 L466,462.0001 Z M458,462.0001 L458,464.0001 L452,464.0001 L452,462.0001 L458,462.0001 L458,462.0001 L458,462.0001 Z M450,462.0001 L450,464.0001 L446,464.0001 L446,462.0001 L450,462.0001 L450,462.0001 L450,462.0001 Z M466,468.0001 L466,474.0001 L446,474.0001 L446,468.0001 L466,468.0001 L466,468.0001 L466,468.0001 Z" id="path4742" fill="url(#linearGradient-2)"></path>
101
+ <path d="M78.0000003,639.93146 C70.2696603,639.93146 64.0000003,646.23186 64.0000003,654.0001 C64.0000003,661.76834 70.2696603,668.06872 78.0000003,668.06872 C85.7326603,668.06872 92.0000003,661.76834 92.0000003,654.0001 C92.0000003,646.23186 85.7326603,639.93146 78.0000003,639.93146 L78.0000003,639.93146 L78.0000003,639.93146 L78.0000003,639.93146 Z" id="path4746" fill="url(#linearGradient-2)"></path>
102
+ <path d="M89.9999121,654.000034 C89.9999123,658.287192 87.7127408,662.248689 83.999953,664.392268 C80.2871652,666.535848 75.7128219,666.535848 72.000034,664.392269 L77.9999934,654.000034 L89.9999121,654.000034 L89.9999121,654.000034 L89.9999121,654.000034 Z" id="path4748" fill="#999999"></path>
103
+ <path d="M80.3038088,647.598198 C80.303809,651.885356 78.0166374,655.846854 74.3038494,657.990433 C70.5910614,660.134012 66.0167179,660.134012 62.3039298,657.990433 L68.3038895,647.598198 L80.3038088,647.598198 L80.3038088,647.598198 L80.3038088,647.598198 Z" id="path4750" fill="#CCCCCC" transform="translate(71.303869, 653.598157) rotate(119.999998) translate(-71.303869, -653.598157) "></path>
104
+ <path d="M90.6960965,642.402051 C90.6960967,646.68921 88.4089251,650.650707 84.6961371,652.794287 C80.9833491,654.937866 76.4090056,654.937866 72.6962175,652.794287 L78.6961772,642.402051 L90.6960965,642.402051 L90.6960965,642.402051 L90.6960965,642.402051 Z" id="path4752" fill="#666666" transform="translate(81.696157, 648.402011) rotate(240.000002) translate(-81.696157, -648.402011) "></path>
105
+ <rect id="rect4754" fill="url(#linearGradient-2)" x="192" y="460.00004" width="28" height="4"></rect>
106
+ <rect id="rect4756" fill-opacity="0.99215686" fill="#636363" x="194" y="454.00004" width="24" height="1.9999895"></rect>
107
+ <rect id="rect4758" fill-opacity="0.99215686" fill="#636363" x="194" y="450.00004" width="24" height="1.9999895"></rect>
108
+ <rect id="rect4760" fill-opacity="0.99215686" fill="#636363" x="194" y="472.00004" width="24" height="1.9999895"></rect>
109
+ <rect id="rect4762" fill-opacity="0.99215686" fill="#636363" x="194" y="468.00004" width="24" height="1.9999895"></rect>
110
+ <rect id="rect4764" fill-opacity="0.99215686" fill="#636363" x="194" y="446.00004" width="24" height="1.9999895"></rect>
111
+ <rect id="rect4766" fill-opacity="0.99215686" fill="#636363" x="194" y="476.00004" width="24" height="1.9999895"></rect>
112
+ <path d="M321.999995,194.0001 C319.818595,194.0001 317.999995,195.8187 317.999995,198.0001 L317.999995,216.0001 C317.999995,218.18148 319.818595,220.0001 321.999995,220.0001 L345.999995,220.0001 C348.181395,220.0001 349.999995,218.18148 349.999995,216.0001 L349.999995,215.2501 C350.065595,215.0715 350.042595,214.9058 349.999995,214.7501 L349.999995,198.0001 C349.999995,195.8187 348.181395,194.0001 345.999995,194.0001 L321.999995,194.0001 L321.999995,194.0001 L321.999995,194.0001 Z M321.999995,196.0001 L345.999995,196.0001 C347.107995,196.0001 347.999995,196.8921 347.999995,198.0001 L347.999995,206.236 L336.235895,217.9999 L321.999995,218.0001 C320.891995,218.00012 319.999995,217.1081 319.999995,216.0001 L319.999995,198.0001 C319.999995,196.8921 320.891995,196.0001 321.999995,196.0001 L321.999995,196.0001 L321.999995,196.0001 L321.999995,196.0001 Z M322.999995,198.0001 C322.445995,198.0001 321.999995,198.4461 321.999995,199.0001 C321.999995,199.48484 322.088795,200.06902 323.124995,200.0001 L323.999995,200.0001 L323.999995,210.0001 L322.999995,210.0001 C322.445995,210.0001 321.999995,210.4461 321.999995,211.0001 C321.999995,211.55408 322.445995,212.0001 322.999995,212.0001 L326.999995,212.0001 C327.553995,212.0001 327.999995,211.55408 327.999995,211.0001 C327.999995,210.4461 327.756435,209.9439 326.999995,210.0001 L325.999995,210.0001 L325.999995,200.0001 L326.999995,200.0001 C327.553995,200.0001 327.999995,199.5541 327.999995,199.0001 C327.999995,198.4461 327.553995,198.0001 326.999995,198.0001 L322.999995,198.0001 L322.999995,198.0001 L322.999995,198.0001 Z M347.999995,208.8126 L347.999995,210.5001 L340.562495,217.8751 L340.500095,218.0001 L338.812595,218.0001 L347.999995,208.8126 L347.999995,208.8126 L347.999995,208.8126 Z M347.999995,213.2501 L347.999995,214.5001 L344.562495,218.0001 L343.312495,218.0001 L347.999995,213.2501 L347.999995,213.2501 L347.999995,213.2501 Z" id="path4768" fill="url(#linearGradient-2)" transform="translate(334.020506, 207.000100) scale(-1, 1) translate(-334.020506, -207.000100) "></path>
113
+ <path d="M126,448.00008 L126,452.00008 L126,472.00008 L126,476.00008 L158,476.00008 L158,472.00008 L158,452.00008 L158,448.00008 L126,448.00008 L126,448.00008 L126,448.00008 Z M128,456.00008 L136,456.00008 L136,464.00008 L128,464.00008 L128,456.00008 L128,456.00008 L128,456.00008 Z M138,456.00008 L146,456.00008 L146,464.00008 L138,464.00008 L138,456.00008 L138,456.00008 L138,456.00008 Z M148,456.00008 L156,456.00008 L156,464.00008 L148,464.00008 L148,456.00008 L148,456.00008 L148,456.00008 Z M128,466.00008 L136,466.00008 L136,474.00008 L128,474.00008 L128,466.00008 L128,466.00008 L128,466.00008 Z M138,466.00008 L146,466.00008 L146,474.00008 L138,474.00008 L138,466.00008 L138,466.00008 L138,466.00008 Z M148,466.00008 L156,466.00008 L156,474.00008 L148,474.00008 L148,466.00008 L148,466.00008 L148,466.00008 Z" id="path4770" fill="url(#linearGradient-2)"></path>
114
+ <path d="M0,575.99998 L0,585.99998 L3,583.24998 L8,587.99998 L12,587.99998 L12,583.99998 L7,579.24998 L10,575.99998 L0,575.99998 L0,575.99998 L0,575.99998 L0,575.99998 Z M18,575.99998 L21,579.24998 L16,583.99998 L16,587.99998 L20,587.99998 L25,583.24998 L28,585.99998 L28,575.99998 L18,575.99998 L18,575.99998 L18,575.99998 L18,575.99998 Z M8,591.99998 L3,596.74998 L0,593.99998 L0,603.99998 L10,603.99998 L7,600.74998 L12,595.99998 L12,591.99998 L8,591.99998 L8,591.99998 L8,591.99998 L8,591.99998 Z M16,591.99998 L16,595.99998 L21,600.74998 L18,603.99998 L28,603.99998 L28,593.99998 L25,596.74998 L20,591.99998 L16,591.99998 L16,591.99998 L16,591.99998 L16,591.99998 Z" id="path4788" fill="url(#linearGradient-2)"></path>
115
+ <path d="M514,8e-05 L514,28.00008 L536,28.00008 L536,10.00008 L536,8.00008 L528,8e-05 L526,8e-05 L514,8e-05 L514,8e-05 L514,8e-05 L514,8e-05 Z M516,2.00008 L526.6875,2.00008 L534,9.31258 L534,26.00008 L524,26.00008 L518,26.00008 L516,26.00008 L516,2.00008 L516,2.00008 L516,2.00008 L516,2.00008 Z M520,12.00008 L520,14.00008 L530,14.00008 L530,12.00008 L520,12.00008 L520,12.00008 L520,12.00008 L520,12.00008 Z M520,16.00008 L520,18.00008 L530,18.00008 L530,16.00008 L520,16.00008 L520,16.00008 L520,16.00008 L520,16.00008 Z M520,20.00008 L520,22.00008 L530,22.00008 L530,20.00008 L520,20.00008 L520,20.00008 L520,20.00008 L520,20.00008 Z" id="path4795" fill="url(#linearGradient-2)"></path>
116
+ <path d="M2.0000003,8e-05 L2.0000003,28.00008 L24.0000003,28.00008 L24.0000003,10.00008 L24.0000003,8.00008 L16.0000003,8e-05 L14.0000003,8e-05 L2.0000003,8e-05 L2.0000003,8e-05 L2.0000003,8e-05 Z M4.0000003,2.00008 L15.0000003,2.00008 L22.0000003,9.00008 L22.0000003,26.00008 L12.0000003,26.00008 L6.0000003,26.00008 L4.0000003,26.00008 L4.0000003,2.00008 L4.0000003,2.00008 L4.0000003,2.00008 Z" id="path4797" fill="url(#linearGradient-2)"></path>
117
+ <polygon id="path4799" fill="url(#linearGradient-2)" transform="translate(83.625000, 16.718850) scale(-1, 1) translate(-83.625000, -16.718850) " points="87.25 10.0001 87.25 13.7501 84.5 16.6876 87.25 19.6251 87.25 23.4376 80 16.6876"></polygon>
118
+ <polygon id="path4801" fill="url(#linearGradient-2)" transform="translate(74.312500, 16.656350) scale(-1, 1) translate(-74.312500, -16.656350) " points="70.625 10.0001 78 16.7501 70.625 23.3126 70.625 19.5001 73.5 16.6876 70.625 13.6251"></polygon>
119
+ <path d="M68,8e-05 L68,28.00008 L90,28.00008 L90,10.00008 L90,8.00008 L82,8e-05 L80,8e-05 L68,8e-05 L68,8e-05 L68,8e-05 Z M70,2.00008 L81,2.00008 L88,9.00008 L88,26.00008 L78,26.00008 L72,26.00008 L70,26.00008 L70,2.00008 L70,2.00008 L70,2.00008 Z" id="path4803" fill="url(#linearGradient-2)" transform="translate(79.000000, 14.000080) scale(-1, 1) translate(-79.000000, -14.000080) "></path>
120
+ <path d="M194,8e-05 L194,28.00008 L216,28.00008 L216,10.00008 L216,8.00008 L208,8e-05 L206,8e-05 L194,8e-05 L194,8e-05 L194,8e-05 Z M196,2.00008 L207,2.00008 L214,9.00008 L214,26.00008 L204,26.00008 L198,26.00008 L196,26.00008 L196,2.00008 L196,2.00008 L196,2.00008 Z" id="path4805" fill="url(#linearGradient-2)"></path>
121
+ <path d="M258,8e-05 L258,28.00008 L280,28.00008 L280,10.00008 L280,8.00008 L272,8e-05 L270,8e-05 L258,8e-05 L258,8e-05 L258,8e-05 Z M260,2.00008 L271,2.00008 L278,9.00008 L278,26.00008 L268,26.00008 L262,26.00008 L260,26.00008 L260,2.00008 L260,2.00008 L260,2.00008 Z" id="path4807" fill="url(#linearGradient-2)" transform="translate(269.000000, 14.000080) scale(-1, 1) translate(-269.000000, -14.000080) "></path>
122
+ <path d="M578,8.00000001e-05 L578,9.50008 C578.38292,9.2598 578.74124,9.0584 579.125,8.87508 L580,8.43758 L580,2.00008 L590.6875,2.00008 L598,9.31258 L598,26.00008 L588,26.00008 L588,27.93758 C588,27.95838 588.00032,27.97938 588,27.99998 L600,27.99998 L600,9.99998 L600,7.99998 L592,-1.99999999e-05 L590,-1.99999999e-05 L578,-1.99999999e-05 L578,8.00000001e-05 L578,8.00000001e-05 L578,8.00000001e-05 Z M580,10.68758 C579.27754,11.0327 578.62216,11.4404 578.0625,12.00008 C576.79574,13.26684 576,15.06708 576,17.00008 C576,19.78712 577.6474,22.12888 580,23.25008 L580,27.93758 C580,29.04558 580.89198,29.93758 582,29.93758 L584,29.99998 C585.108,29.99998 586,29.04548 586,27.93748 L586,23.24998 C588.35258,22.12878 590,19.78702 590,16.99998 C590,14.21294 588.35762,11.81372 586,10.68748 L586,15.99998 L583.0625,17.99998 L580,15.99998 L580,10.68748 L580,10.68758 L580,10.68758 L580,10.68758 Z" id="path4809" fill="url(#linearGradient-2)"></path>
123
+ <path d="M64.0000003,62.00008 L64.0000003,82.00008 L70.0000003,82.00008 L70.0000003,80.00008 L68.0000003,80.00008 L66.0000003,80.00008 L66.0000003,64.00008 L75.0000003,64.00008 L80.0000003,69.00008 L80.0000003,70.00008 L82.0000003,70.00008 L82.0000003,68.00008 L76.0000003,62.00008 L74.0000003,62.00008 L64.0000003,62.00008 L64.0000003,62.00008 L64.0000003,62.00008 L64.0000003,62.00008 Z M72.0000003,72.00008 L72.0000003,92.00008 L90.0000003,92.00008 L90.0000003,80.00008 L90.0000003,78.00008 L84.0000003,72.00008 L82.0000003,72.00008 L72.0000003,72.00008 L72.0000003,72.00008 L72.0000003,72.00008 L72.0000003,72.00008 Z M74.0000003,74.00008 L83.0000003,74.00008 L88.0000003,79.00008 L88.0000003,90.00008 L78.0000003,90.00008 L76.0000003,90.00008 L74.0000003,90.00008 L74.0000003,74.00008 L74.0000003,74.00008 L74.0000003,74.00008 L74.0000003,74.00008 Z" id="path4817" fill="url(#linearGradient-2)"></path>
124
+ <path d="M386.3125,8e-05 L386.3125,28.00008 L403.9375,28.00008 L401.9375,26.00008 L399.3125,26.00008 L396.3125,26.00008 L390.3125,26.00008 L388.3125,26.00008 L388.3125,2.00008 L399.3125,2.00008 L406.3125,9.00008 L406.3125,11.43758 C407.54186,12.9773574 408.3125,14.8951668 408.3125,17.00008 L408.3125,10.00008 L408.3125,8.00008 L400.3125,8e-05 L398.3125,8e-05 L386.3125,8e-05 L386.3125,8e-05 L386.3125,8e-05 L386.3125,8e-05 Z M408.3125,17.00008 C408.3125,17.9664552 407.91096,18.7256 407.625,19.56258 L408.3125,20.25008 L408.3125,17.00008 L408.3125,17.00008 L408.3125,17.00008 L408.3125,17.00008 Z M399.3125,10.00008 C395.4702,10.00008 392.3125,13.15776 392.3125,17.00008 C392.3125,20.84238 395.4702,24.00008 399.3125,24.00008 C400.30328,24.00008 401.20516,23.7526 402.0625,23.37508 L406.75,28.06258 L410,24.81258 L405.4375,20.25008 C405.9705,19.26438 406.3125,18.19088 406.3125,17.00008 C406.3125,13.15776 403.1548,10.00008 399.3125,10.00008 L399.3125,10.00008 L399.3125,10.00008 L399.3125,10.00008 Z M399.2501,12.00008 C402.01152,12.00008 404.2501,14.23866 404.2501,17.00008 C404.2501,19.7615 402.01152,22.00008 399.2501,22.00008 C396.48868,22.00008 394.2501,19.7615 394.2501,17.00008 C394.2501,14.23866 396.48868,12.00008 399.2501,12.00008 L399.2501,12.00008 L399.2501,12.00008 L399.2501,12.00008 Z" id="path4828" fill="url(#linearGradient-2)" transform="translate(398.156250, 14.031330) scale(-1, 1) translate(-398.156250, -14.031330) "></path>
125
+ <path d="M644,8e-05 L644,9.50008 C644.38292,9.2597932 644.74124,9.0583966 645.125,8.87508 L646,8.43758 L646,2.00008 L656.6875,2.00008 L664,9.31258 L664,26.00008 L654,26.00008 L654,27.93758 C654,27.95844 654.00032,27.97928 654,28.00008 L666,28.00008 L666,10.00008 L666,8.00008 L658,8e-05 L656,8e-05 L644,8e-05 L644,8e-05 L644,8e-05 L644,8e-05 Z M646,10.68758 C645.27754,11.0326924 644.62216,11.4404108 644.0625,12.00008 C642.79574,13.2668334 642,15.0670798 642,17.00008 C642,19.787124 643.6474,22.128872 646,23.25008 L646,27.93758 C646,29.045584 646.89198,29.937584 648,29.93758 L650,30.00008 C651.108,30.000076 652,29.045584 652,27.93758 L652,23.25008 C654.35258,22.128874 656,19.787124 656,17.00008 C656,14.2130356 654.35762,11.8138118 652,10.68758 L652,16.00008 L649.0625,18.00008 L646,16.00008 L646,10.68758 L646,10.68758 L646,10.68758 L646,10.68758 Z" id="path4830" fill="url(#linearGradient-2)" transform="translate(654.000000, 15.000080) scale(-1, 1) translate(-654.000000, -15.000080) "></path>
126
+ <rect id="rect6517" fill="url(#linearGradient-2)" x="138" y="134.00008" width="13.999996" height="2"></rect>
127
+ <rect id="rect6519" fill="url(#linearGradient-2)" x="130" y="138.00008" width="22" height="2"></rect>
128
+ <rect id="rect6523" fill="url(#linearGradient-2)" x="130" y="146.00008" width="22" height="2"></rect>
129
+ <rect id="rect6525" fill="url(#linearGradient-2)" x="130" y="150.00008" width="6" height="2"></rect>
130
+ <polygon id="rect6527" fill="url(#linearGradient-2)" points="138 150.00008 138 152.00008 140 152.00008 140 156.00008 138 156.00008 138 158.00008 144 158.00008 144 156.00008 142 156.00008 142 152.00008 144 152.00008 144 150.00008 142 150.00008 140 150.00008"></polygon>
131
+ <rect id="rect6539" fill="url(#linearGradient-2)" x="130" y="142.00008" width="22" height="2"></rect>
132
+ <rect id="rect6547" fill="url(#linearGradient-2)" x="138" y="130.00008" width="14" height="2"></rect>
133
+ <rect id="rect6606" fill="url(#linearGradient-2)" x="130" y="130.00008" width="6" height="6"></rect>
134
+ <path d="M12.8481223,514.02212 C10.2810423,520.31116 7.2508823,527.7656 4.5356223,534.39712 L9.5356223,534.39712 L11.3481223,529.39712 L18.0356223,529.39712 L19.6606223,534.39712 L24.9106223,534.39712 C22.2341623,527.69356 19.2751423,520.48928 16.7231223,514.02212 L12.8481223,514.02212 L12.8481223,514.02212 L12.8481223,514.02212 L12.8481223,514.02212 Z M14.7856223,519.95962 L16.5981223,525.33462 L12.7856223,525.33462 L14.7856223,519.95962 L14.7856223,519.95962 L14.7856223,519.95962 L14.7856223,519.95962 Z" id="path4763" fill="url(#linearGradient-2)"></path>
135
+ <polygon id="path3812" fill="#999999" points="2.99999998e-07 538.02212 2.99999998e-07 542.00008 30.0000003 542.00008 30.0000003 538.02212"></polygon>
136
+ <path d="M203.0625,62.00008 C202.47328,62.00008 202,62.47336 202,63.06258 L202,64.00008 L201.0625,64.00008 C200.47328,64.00008 200,64.47336 200,65.06258 L200,66.93758 C200,67.52678 200.47328,68.00008 201.0625,68.00008 L203.0625,68.00008 L208.9375,68.00008 L210.9375,68.00008 C211.52672,68.00008 212,67.52678 212,66.93758 L212,65.06258 C212,64.47336 211.52672,64.00008 210.9375,64.00008 L210,64.00008 L210,63.06258 C210,62.47336 209.52672,62.00008 208.9375,62.00008 L203.0625,62.00008 L203.0625,62.00008 L203.0625,62.00008 L203.0625,62.00008 Z M198,64.00008 C195.8186,64.00008 194,65.81868 194,68.00008 L194,86.00008 C194,88.18148 195.8186,90.00008 198,90.00008 L200,90.00008 L200,88.00008 L198,88.00008 C196.892,88.00008 196,87.10808 196,86.00008 L196,68.00008 C196,66.89208 196.892,66.00008 198,66.00008 L198,65.06258 C198,64.69542 198.0632,64.32936 198.1874,64.00008 L198,64.00008 L198,64.00008 L198,64.00008 L198,64.00008 Z M213.8125,64.00008 C213.9368,64.32938 214,64.69542 214,65.06258 L214,66.00008 C215.108,66.00008 216,66.89208 216,68.00008 L216,72.00008 L218,72.00008 L218,68.00008 C218,65.81868 216.1814,64.00008 214,64.00008 L213.8126,64.00008 L213.8125,64.00008 L213.8125,64.00008 L213.8125,64.00008 Z M204,74.00008 C202.892,74.00008 202,74.89208 202,76.00008 L202,90.00008 C202,91.10808 202.892,92.00008 204,92.00008 L218,92.00008 C219.108,92.00008 220,91.10808 220,90.00008 L220,76.00008 C220,74.89208 219.108,74.00008 218,74.00008 L204,74.00008 L204,74.00008 L204,74.00008 L204,74.00008 Z M204,76.00008 L218,76.00008 L218,90.00008 L204,90.00008 L204,76.00008 L204,76.00008 L204,76.00008 L204,76.00008 Z M206,78.00008 L206,80.00008 L210,80.00008 L210,88.00008 L212,88.00008 L212,80.00008 L216,80.00008 L216,78.00008 L206,78.00008 L206,78.00008 L206,78.00008 L206,78.00008 Z" id="path3631" fill="url(#linearGradient-2)"></path>
137
+ <path d="M267.0625,62.00008 C266.47328,62.00008 266,62.47336 266,63.06258 L266,64.00008 L265.0625,64.00008 C264.47328,64.00008 264,64.47336 264,65.06258 L264,66.93758 C264,67.52678 264.47328,68.00008 265.0625,68.00008 L267.0625,68.00008 L272.9375,68.00008 L274.9375,68.00008 C275.52672,68.00008 276,67.52678 276,66.93758 L276,65.06258 C276,64.47336 275.52672,64.00008 274.9375,64.00008 L274,64.00008 L274,63.06258 C274,62.47336 273.52672,62.00008 272.9375,62.00008 L267.0625,62.00008 L267.0625,62.00008 L267.0625,62.00008 L267.0625,62.00008 Z M262,64.00008 C259.8186,64.00008 258,65.81868 258,68.00008 L258,72.00008 L260,72.00008 L260,68.00008 C260,66.89208 260.892,66.00008 262,66.00008 L262,65.06258 C262,64.69542 262.0632,64.32938 262.1874,64.00008 L262,64.00008 L262,64.00008 L262,64.00008 L262,64.00008 Z M277.8125,64.00008 C277.9367,64.32936 278,64.69542 278,65.06258 L278,66.00008 C279.108,66.00008 280,66.89208 280,68.00008 L280,86.00008 C280,87.10808 279.108,88.00008 278,88.00008 L276,88.00008 L276,90.00008 L278,90.00008 C280.1814,90.00008 282,88.18148 282,86.00008 L282,68.00008 C282,65.81868 280.1814,64.00008 278,64.00008 L277.8126,64.00008 L277.8125,64.00008 L277.8125,64.00008 L277.8125,64.00008 Z M258,74.00008 C256.892,74.00008 256,74.89208 256,76.00008 L256,90.00008 C256,91.10808 256.892,92.00008 258,92.00008 L272,92.00008 C273.108,92.00008 274,91.10808 274,90.00008 L274,76.00008 C274,74.89208 273.108,74.00008 272,74.00008 L258,74.00008 L258,74.00008 L258,74.00008 L258,74.00008 Z M258,76.00008 L272,76.00008 L272,90.00008 L258,90.00008 L258,76.00008 L258,76.00008 L258,76.00008 L258,76.00008 Z M260,78.00008 L260,80.00008 L264,80.00008 L264,88.00008 L266,88.00008 L266,80.00008 L270,80.00008 L270,78.00008 L260,78.00008 L260,78.00008 L260,78.00008 L260,78.00008 Z" id="path3655" fill="url(#linearGradient-2)"></path>
138
+ <rect id="rect3807" fill="url(#linearGradient-2)" x="510" y="198.000084" width="32" height="15.9999952" rx="2"></rect>
139
+ <g id="text3563" transform="translate(197.000000, 257.000000)" fill="url(#linearGradient-2)">
140
+ <path d="M17.03607,2.10446 L17.03607,6.99788 C15.76624,6.4301 15.012962,6.03634 13.805108,5.74726 C12.597224,5.45822 11.456458,5.31368 10.382808,5.31366 C8.958132,5.31368 7.905118,5.50986 7.223764,5.90212 C6.542394,6.29444 6.201712,6.90352 6.20172,7.7294 C6.201712,8.34884 6.428832,8.83406 6.883082,9.18504 C7.34764,9.52574 8.183856,9.81996 9.391736,10.06772 L11.93136,10.57874 C14.50194,11.09494 16.329228,11.87954 17.413232,12.93254 C18.497198,13.98556 19.039192,15.4825 19.039212,17.42334 C19.039192,19.9733 18.280402,21.87284 16.762842,23.122 C15.255568,24.36084 12.948228,24.98026 9.840816,24.98026 C8.374844,24.98026 6.903722,24.84086 5.427444,24.56216 C3.951152,24.28342 2.474868,23.87048 0.998586,23.32332 L0.998586,18.29052 C2.474868,19.07514 3.899534,19.66874 5.27259,20.07136 C6.655954,20.46366 7.987706,20.65982 9.267852,20.65982 C10.568624,20.65982 11.564856,20.44302 12.256556,20.00942 C12.948228,19.57582 13.29407,18.9564 13.294086,18.15116 C13.29407,17.4285 13.056626,16.87102 12.581752,16.47872 C12.117174,16.08642 11.182882,15.73542 9.778874,15.4257 L7.471532,14.91468 C5.159022,14.41916 3.46594,13.6294 2.392284,12.5454 C1.328942,11.46142 0.797272,10.00062 0.797276,8.163 C0.797272,5.86084 1.540576,4.09032 3.02719,2.85146 C4.513792,1.61264 6.650792,0.99322 9.438192,0.9932 C10.707992,0.99322 12.013936,1.0912 13.356028,1.28744 C14.69809,1.47324 15.60106,1.7225 17.03607,2.10446" id="path3568"></path>
141
+ </g>
142
+ <path d="M195,269 L219,269 C219.554,269 220,269.40884 220,269.91666 L220,270.08326 C220,270.59116 219.554,271 219,271 L195,271 C194.446,271 194,270.59116 194,270.08334 L194,269.91674 C194,269.40884 194.446,269 195,269 L195,269 L195,269 L195,269 Z" id="path3593" fill="url(#linearGradient-2)"></path>
143
+ <polygon id="path3580" fill="url(#linearGradient-2)" points="2.0000001 706.0001 2.0000001 732.0001 4.0000001 732.0001 4.0000001 706.0001"></polygon>
144
+ <path d="M10.99998,705.16682 C9.41848,705.18482 7.79938,705.84748 6.0000001,707.91682 L6.0000001,724.0001 C13.2024,715.8828 18.62306,729.63206 26,722.0001 L26,705.9168 C20.4891,711.7848 15.74452,705.10976 10.99998,705.16688 L10.99998,705.16682 L10.99998,705.16682 L10.99998,705.16682 Z" id="path3602" fill="#B50000"></path>
145
+ <path d="M126,640.00008 L126,668.00008 L132,668.00008 L132,666.00008 L128,666.00008 L128,642.00008 L132,642.00008 L132,640.00008 L126,640.00008 L126,640.00008 L126,640.00008 Z M152,640.00008 L152,642.00008 L156,642.00008 L156,666.00008 L152,666.00008 L152,668.00008 L158,668.00008 L158,640.00008 L152,640.00008 L152,640.00008 L152,640.00008 Z" id="rect3578" fill="url(#linearGradient-2)"></path>
146
+ <g id="text4354" transform="translate(136.000000, 644.000100)" fill="url(#linearGradient-2)">
147
+ <path d="M4.012846,12.87006 L7.996372,12.87006 C11.671024,12.87006 14.02939,10.2649 14.02939,6.20632 C14.02939,2.2026 11.753292,0.00878 7.58503,0.00878 L0.003476,0.00878 L0.003476,20 L4.012846,20 L4.012846,12.87006 M4.012846,9.44222 L4.012846,3.43662 L6.7075,3.43662 C8.901322,3.43662 9.915968,4.39642 9.915968,6.45314 C9.915968,8.48242 8.901322,9.44222 6.7075,9.44222 L4.012846,9.44222" id="path4361"></path>
148
+ </g>
149
+ <path d="M515,199.99998 C513.338,199.99998 512,201.33798 512,202.99998 L512,207.99998 C512,209.36074 512.91892,210.47389 514.15625,210.84373 C514.07435,210.56982 514,210.30122 514,209.99998 L514,204.99998 C514,203.33798 515.338,201.99998 517,201.99998 L539,201.99998 C539.30124,201.99998 539.56984,202.07438 539.84375,202.15623 C539.47391,200.9189 538.36076,199.99998 537,199.99998 L515,199.99998 L515,199.99998 L515,199.99998 L515,199.99998 Z" id="rect4493" fill-opacity="0.99215686" fill="#808080"></path>
150
+ <path d="M65,125.99998 C63.892,125.99998 63,126.89198 63,127.99998 L63,139.99998 C63,141.10798 63.892,141.99998 65,141.99998 L66,141.99998 L67,141.99998 L70,141.99998 C72.181406,141.99998 74,140.18139 74,137.99998 L74,135.99998 C74,133.81857 72.181406,131.99998 70,131.99998 L67,131.99998 L67,127.99998 C67,126.89198 66.108,125.99998 65,125.99998 L65,125.99998 L65,125.99998 L65,125.99998 Z M83,129.99998 L77,133.87498 L83,137.87498 L83,135.24998 C87.53598,135.25198 89.887,138.151 91,139.87498 C90.888,135.8145 87.51732,132.50258 83,132.49998 L83,129.99998 L83,129.99998 L83,129.99998 Z M67,133.99998 L70,133.99998 C71.108,133.99998 72,134.89198 72,135.99998 L72,137.99998 C72,139.10798 71.108,139.99998 70,139.99998 L67,139.99998 L67,133.99998 L67,133.99998 L67,133.99998 Z M84,141.99998 C83.446,141.99998 83,142.44598 83,142.99998 C83,143.55398 83.446,143.99998 84,143.99998 L86,143.99998 C89,143.99998 89,145.99998 89,146.99998 L89,147.99998 L85,147.99998 C82.818594,147.99998 81,149.81857 81,151.99998 L81,153.99998 C81,156.18139 82.818594,157.99998 85,157.99998 L89,157.99998 L90,157.99998 L91,157.99998 C92.108,157.99998 93,157.10798 93,155.99998 L93,145.99998 C93,141.99998 88,141.99998 88,141.99998 L87,141.99998 L84,141.99998 L84,141.99998 L84,141.99998 Z M65,145.99998 C65.112,150.06046 68.48268,153.3724 73,153.37498 L73,155.87498 L79,151.99998 L73,147.99998 L73,150.62498 C68.46402,150.62298 66.113,147.72396 65,145.99998 L65,145.99998 L65,145.99998 L65,145.99998 Z M85,149.99998 L89,149.99998 L89,150.99998 L89,154.99998 L89,155.99998 L85,155.99998 C83.892,155.99998 83,155.10798 83,153.99998 L83,151.99998 C83,150.89198 83.892,149.99998 85,149.99998 L85,149.99998 L85,149.99998 L85,149.99998 Z" id="path4589" fill="url(#linearGradient-2)"></path>
151
+ <path d="M581.67613,319.99997 C583.13742,319.99999 584.16032,320.58332 584.74485,321.74998 C584.97865,322.2361 585.12478,322.81943 585.18324,323.49997 L585.18324,330.49998 C585.18323,331.95832 584.59872,332.97914 583.42969,333.56248 C582.94258,333.79581 582.35807,333.94165 581.67613,333.99998 L577,333.99998 L577,319.99997 L581.67613,319.99997 M582.84517,331.08331 L582.84517,322.91664 C582.84516,322.19721 582.45548,321.80832 581.67613,321.74998 L579.33807,321.74998 L579.33807,332.24998 L581.67613,332.24998 C582.39703,332.24998 582.78671,331.86109 582.84517,331.08331" id="path5866" fill="url(#linearGradient-2)"></path>
152
+ <polyline id="path5868" fill="url(#linearGradient-2)" points="594.01421 321.74998 591.67614 321.74998 591.67614 332.24998 594.01421 332.24998 594.01421 333.99998 587.00001 333.99998 587.00001 332.24998 589.33807 332.24998 589.33807 321.74998 587.00001 321.74998 587.00001 319.99997 594.01421 319.99997 594.01421 321.74998"></polyline>
153
+ <polyline id="path5870" fill="url(#linearGradient-2)" points="604.18325 321.74998 601.26066 333.99998 598.92259 333.99998 596.00001 321.74998 596.00001 319.99997 598.33808 319.99997 598.33808 321.74998 600.09162 332.24998 601.84518 321.74998 601.84518 319.99997 604.18325 319.99997 604.18325 321.74998"></polyline>
154
+ <path d="M393.0625,61.99998 C392.47328,61.99998 392,62.47326 392,63.06248 L392,63.99998 L391.0625,63.99998 C390.47328,63.99998 390,64.47326 390,65.06248 L390,66.93748 C390,67.52668 390.47328,67.99998 391.0625,67.99998 L393.0625,67.99998 L398.9375,67.99998 L400.9375,67.99998 C401.52672,67.99998 402,67.52668 402,66.93748 L402,65.06248 C402,64.47326 401.52672,63.99998 400.9375,63.99998 L400,63.99998 L400,63.06248 C400,62.47326 399.52672,61.99998 398.9375,61.99998 L393.0625,61.99998 L393.0625,61.99998 L393.0625,61.99998 Z M388,63.99998 C385.8186,63.99998 384,65.81858 384,67.99998 L384,85.99998 C384,88.18138 385.8186,89.99998 388,89.99998 L390,89.99998 L390,87.99998 L388,87.99998 C386.892,87.99998 386,87.10798 386,85.99998 L386,67.99998 C386,66.89198 386.892,65.99998 388,65.99998 L388,65.06248 C388,64.69532 388.0634,64.32926 388.1874,63.99998 L388,63.99998 L388,63.99998 L388,63.99998 Z M403.8125,63.99998 C403.9368,64.32928 404,64.69532 404,65.06248 L404,65.99998 C405.108,65.99998 406,66.89198 406,67.99998 L406,71.99998 L408,71.99998 L408,67.99998 C408,65.81858 406.1814,63.99998 404,63.99998 L403.8126,63.99998 L403.8125,63.99998 L403.8125,63.99998 L403.8125,63.99998 Z M394,73.99998 C392.892,73.99998 392,74.89198 392,75.99998 L392,89.99998 C392,91.10798 392.892,91.99998 394,91.99998 L408,91.99998 C409.108,91.99998 410,91.10798 410,89.99998 L410,75.99998 C410,74.89198 409.108,73.99998 408,73.99998 L394,73.99998 L394,73.99998 L394,73.99998 Z M394,75.99998 L408,75.99998 L408,89.99998 L394,89.99998 L394,75.99998 L394,75.99998 L394,75.99998 Z M396,77.99998 L396,79.99998 L396,87.99998 L398,87.99998 L400,85.99998 L401,84.99988 L402,85.99998 L404,87.99998 L406,87.99998 L406,79.99998 L406,77.99998 L404,77.99998 L404,83.99998 L402,81.99998 L400,81.99998 L398,83.99998 L398,77.99998 L396,77.99998 L396,77.99998 L396,77.99998 Z" id="path4585-1" fill="url(#linearGradient-2)" transform="translate(397.000000, 76.999980) scale(-1, 1) translate(-397.000000, -76.999980) "></path>
155
+ <path d="M220.46875,642.06248 C215.29091,643.67462 208.98673,643.52651 207.9375,643.43748 L208.4375,645.37498 C209.97583,645.37998 211,645.41318 213,645.29688 L213,650 L207,650 L207,652 L213,652 L213,658 L209,658 L207,658 L207,668 L209,668 L209,666 L219,666 L219,667 L221,667 L221,666 L221,658 L219,658 L215,658 L215,652 L221,652 L221,650 L215,650 L215,645.15625 C217.35241,644.9889 218.875,644.6225 220.875,643.90625 L220.46875,642.06248 L220.46875,642.06248 L220.46875,642.06248 Z M193,641.99998 L193,643.99998 L205,643.99998 L205,641.99998 L193,641.99998 L193,641.99998 L193,641.99998 Z M191,645.99998 L191,647.99998 L207,647.99998 L207,645.99998 L191,645.99998 L191,645.99998 L191,645.99998 Z M193,649.99998 L193,651.99998 L205,651.99998 L205,649.99998 L193,649.99998 L193,649.99998 L193,649.99998 Z M193,653.99998 L193,655.99998 L205,655.99998 L205,653.99998 L193,653.99998 L193,653.99998 L193,653.99998 Z M193,657.99998 L193,667.99998 L195,667.99998 L195,665.99998 L203,665.99998 L203,666.99998 L205,666.99998 L205,665.99998 L205,657.99998 L203,657.99998 L195,657.99998 L193,657.99998 L193,657.99998 L193,657.99998 Z M195,659.99998 L203,659.99998 L203,663.99998 L195,663.99998 L195,659.99998 L195,659.99998 L195,659.99998 Z M209,659.99998 L219,659.99998 L219,663.99998 L209,663.99998 L209,659.99998 L209,659.99998 L209,659.99998 Z" id="rect4258" fill="url(#linearGradient-2)"></path>
156
+ <path d="M254,639.99998 L254,641.99998 L256,641.99998 L256,639.99998 L254,639.99998 L254,639.99998 L254,639.99998 L254,639.99998 Z M258,639.99998 L258,641.99998 L260,641.99998 L260,639.99998 L258,639.99998 L258,639.99998 L258,639.99998 L258,639.99998 Z M262,639.99998 L262,641.99998 L264,641.99998 L264,639.99998 L262,639.99998 L262,639.99998 L262,639.99998 L262,639.99998 Z M266,639.99998 L266,641.99998 L268,641.99998 L268,639.99998 L266,639.99998 L266,639.99998 L266,639.99998 L266,639.99998 Z M270,639.99998 L270,641.99998 L272,641.99998 L272,639.99998 L270,639.99998 L270,639.99998 L270,639.99998 L270,639.99998 Z M274,639.99998 L274,641.99998 L276,641.99998 L276,639.99998 L274,639.99998 L274,639.99998 L274,639.99998 L274,639.99998 Z M278,639.99998 L278,641.99998 L280,641.99998 L280,639.99998 L278,639.99998 L278,639.99998 L278,639.99998 L278,639.99998 Z M282,639.99998 L282,641.99998 L284,641.99998 L284,639.99998 L282,639.99998 L282,639.99998 L282,639.99998 L282,639.99998 Z M254,643.99998 L254,645.99998 L256,645.99998 L256,643.99998 L254,643.99998 L254,643.99998 L254,643.99998 L254,643.99998 Z M258,643.99998 L258,653.99998 L258,655.99998 L258,661.99998 L268,661.99998 L268,659.99998 L260,659.99998 L260,657.99998 L268,657.99998 L270,657.99998 L270,655.99998 L260,655.99998 L260,653.99998 L272,653.99998 L280,653.99998 L280,651.99998 L280,643.99998 L272,643.99998 L258,643.99998 L258,643.99998 L258,643.99998 L258,643.99998 Z M282,643.99998 L282,645.99998 L284,645.99998 L284,643.99998 L282,643.99998 L282,643.99998 L282,643.99998 L282,643.99998 Z M260,645.99998 L278,645.99998 L278,647.99998 L260,647.99998 L260,645.99998 L260,645.99998 L260,645.99998 L260,645.99998 Z M254,647.99998 L254,649.99998 L256,649.99998 L256,647.99998 L254,647.99998 L254,647.99998 L254,647.99998 L254,647.99998 Z M282,647.99998 L282,649.99998 L284,649.99998 L284,647.99998 L282,647.99998 L282,647.99998 L282,647.99998 L282,647.99998 Z M260,649.99998 L277.9374,649.99998 L277.9374,651.99998 L260,651.99998 L260,649.99998 L260,649.99998 L260,649.99998 L260,649.99998 Z M254,651.99998 L254,653.99998 L256,653.99998 L256,651.99998 L254,651.99998 L254,651.99998 L254,651.99998 L254,651.99998 Z M282,651.99998 L282,653.99998 L284,653.99998 L284,651.99998 L282,651.99998 L282,651.99998 L282,651.99998 L282,651.99998 Z M276,655.49998 L268.625,662.24998 L276,668.81248 L276,664.99998 L273.125,662.18748 L276,659.12498 L276,655.49998 L276,655.49998 L276,655.49998 L276,655.49998 Z M278,655.49998 L278,659.24998 L280.75,662.18748 L278,665.12498 L278,668.93748 L285.25,662.18748 L278,655.49998 L278,655.49998 L278,655.49998 L278,655.49998 Z M254,655.99998 L254,657.99998 L256,657.99998 L256,655.99998 L254,655.99998 L254,655.99998 L254,655.99998 L254,655.99998 Z M254,659.99998 L254,661.99998 L256,661.99998 L256,659.99998 L254,659.99998 L254,659.99998 L254,659.99998 L254,659.99998 Z M254,663.99998 L254,665.99998 L256,665.99998 L256,663.99998 L254,663.99998 L254,663.99998 L254,663.99998 L254,663.99998 Z M258,663.99998 L258,665.99998 L260,665.99998 L260,663.99998 L258,663.99998 L258,663.99998 L258,663.99998 L258,663.99998 Z M262,663.99998 L262,665.99998 L264,665.99998 L264,663.99998 L262,663.99998 L262,663.99998 L262,663.99998 L262,663.99998 Z M266,663.99998 L266,665.99998 L268,665.99998 L268,663.99998 L266,663.99998 L266,663.99998 L266,663.99998 L266,663.99998 Z" id="rect5051" fill="url(#linearGradient-2)"></path>
157
+ </g>
158
+ </g>
159
+ </g>
160
+ </g>
161
+ <g id="Group" transform="translate(255.000000, 383.000000)" fill="#464646">
162
+ <path d="M0.29245283,20.0625 L5.04716981,24.7875 L9.84716981,29.5575 C10.214489,29.9316474 10.81525,29.9458024 11.2,29.589375 L18.145283,22.6875 L12.6509434,17.236875 L7.20566038,11.825625 L0.260377358,18.725625 C-0.0933741225,19.1069638 -0.079185107,19.6983485 0.29245283,20.0625 L0.29245283,20.0625 Z" id="Shape"></path>
163
+ <path d="M18.8540277,22 C18.8540277,22 21.7188679,19.92 20.709434,17.401875 C19.7,14.88375 19.3509434,14.311875 21.4188679,12.455625 C26.9811321,7.51125 29.3226415,6.545625 29.8113208,4.445625 C30.0113208,3.29625 30.2698113,2.4 28.9018868,1.040625 C27.5679245,-0.285 26.6584906,-0.04125 25.5056604,0.1575 C23.3962264,0.643125 22.4528302,3 17.4773585,8.510625 C15.609434,10.573125 15.0245283,10.216875 12.490566,9.223125 C9.95660377,8.229375 8,11.0000075 8,11.0000075 L18.8540277,22 Z M27.8811321,2.1075 C28.3085418,2.53219511 28.4364191,3.17093197 28.2051327,3.72585704 C27.9738462,4.28078211 27.4289461,4.64260714 26.8245283,4.64260714 C26.2201105,4.64260714 25.6752104,4.28078211 25.4439239,3.72585704 C25.2126375,3.17093197 25.3405148,2.53219511 25.7679245,2.1075 C26.0472364,1.82747105 26.4271464,1.66932186 26.8239068,1.66791497 C27.2206671,1.66650808 27.6017031,1.821959 27.8830189,2.1 L27.8811321,2.1075 Z" id="Shape"></path>
164
+ </g>
165
+ </g>
166
+ </g>
167
+ </svg>
@@ -0,0 +1,145 @@
1
+ {
2
+ "0": [
3
+ [
4
+ "plugins/sourcearea/icons/source.png",
5
+ "plugins/sourcedialog/icons/sourcedialog.png"
6
+ ],
7
+ [
8
+ "plugins/sourcearea/icons/source-rtl.png",
9
+ "plugins/sourcedialog/icons/sourcedialog-rtl.png"
10
+ ],
11
+ "plugins/save/icons/save.png",
12
+ "plugins/newpage/icons/newpage.png",
13
+ "plugins/newpage/icons/newpage-rtl.png",
14
+ "plugins/preview/icons/preview.png",
15
+ "plugins/preview/icons/preview-rtl.png",
16
+ "plugins/print/icons/print.png",
17
+ [
18
+ "plugins/templates/icons/templates.png",
19
+ "plugins/templates/icons/templates-rtl.png"
20
+ ],
21
+ "plugins/docprops/icons/docprops.png",
22
+ "plugins/docprops/icons/docprops-rtl.png"
23
+ ],
24
+ "1": [
25
+ [
26
+ "plugins/clipboard/icons/cut-rtl.png",
27
+ "plugins/clipboard/icons/cut.png"
28
+ ],
29
+ [
30
+ "plugins/clipboard/icons/copy.png",
31
+ "plugins/clipboard/icons/copy-rtl.png"
32
+ ],
33
+ [
34
+ "plugins/clipboard/icons/paste.png",
35
+ "plugins/clipboard/icons/paste-rtl.png"
36
+ ],
37
+ "plugins/pastetext/icons/pastetext.png",
38
+ "plugins/pastetext/icons/pastetext-rtl.png",
39
+ "plugins/pastefromword/icons/pastefromword.png",
40
+ "plugins/pastefromword/icons/pastefromword-rtl.png",
41
+ "plugins/undo/icons/undo.png",
42
+ "plugins/undo/icons/undo-rtl.png",
43
+ "plugins/undo/icons/redo.png",
44
+ "plugins/undo/icons/redo-rtl.png"
45
+ ],
46
+ "2": [
47
+ [
48
+ "plugins/find/icons/find-rtl.png",
49
+ "plugins/find/icons/find.png"
50
+ ],
51
+ "plugins/find/icons/replace.png",
52
+ "plugins/selectall/icons/selectall.png",
53
+ [
54
+ "plugins/wsc/icons/spellchecker.png",
55
+ "plugins/scayt/icons/scayt.png"
56
+ ]
57
+ ],
58
+ "3": [
59
+ "plugins/forms/icons/form.png",
60
+ "plugins/forms/icons/checkbox.png",
61
+ "plugins/forms/icons/radio.png",
62
+ [
63
+ "plugins/forms/icons/textfield-rtl.png",
64
+ "plugins/forms/icons/textfield.png"
65
+ ],
66
+ "plugins/forms/icons/textarea.png",
67
+ "plugins/forms/icons/textarea-rtl.png",
68
+ "plugins/forms/icons/select.png",
69
+ "plugins/forms/icons/select-rtl.png",
70
+ "plugins/forms/icons/button.png",
71
+ "plugins/forms/icons/imagebutton.png",
72
+ "plugins/forms/icons/hiddenfield.png"
73
+ ],
74
+ "4": [
75
+ "plugins/basicstyles/icons/bold.png",
76
+ "plugins/basicstyles/icons/italic.png",
77
+ "plugins/basicstyles/icons/underline.png",
78
+ "plugins/basicstyles/icons/strike.png",
79
+ "plugins/basicstyles/icons/superscript.png",
80
+ "plugins/basicstyles/icons/subscript.png",
81
+ "plugins/removeformat/icons/removeformat.png"
82
+ ],
83
+ "5": [
84
+ "plugins/list/icons/numberedlist.png",
85
+ "plugins/list/icons/numberedlist-rtl.png",
86
+ "plugins/list/icons/bulletedlist.png",
87
+ "plugins/list/icons/bulletedlist-rtl.png",
88
+ "plugins/indent/icons/outdent.png",
89
+ "plugins/indent/icons/indent.png",
90
+ "plugins/indent/icons/indent-rtl.png",
91
+ "plugins/indent/icons/outdent-rtl.png",
92
+ "plugins/blockquote/icons/blockquote.png",
93
+ "plugins/div/icons/creatediv.png",
94
+ "plugins/justify/icons/justifyleft.png",
95
+ "plugins/justify/icons/justifycenter.png",
96
+ "plugins/justify/icons/justifyright.png",
97
+ "plugins/justify/icons/justifyblock.png",
98
+ "plugins/bidi/icons/bidiltr.png",
99
+ "plugins/bidi/icons/bidirtl.png"
100
+ ],
101
+ "6": [
102
+ "plugins/link/icons/link.png",
103
+ "plugins/link/icons/unlink.png",
104
+ "plugins/link/icons/anchor.png",
105
+ "plugins/link/icons/anchor-rtl.png",
106
+ "plugins/copyformatting/icons/copyformatting.png"
107
+ ],
108
+ "7": [
109
+ [
110
+ "plugins/image/icons/image.png",
111
+ "plugins/image2/icons/image.png"
112
+ ],
113
+ "plugins/flash/icons/flash.png",
114
+ "plugins/table/icons/table.png",
115
+ "plugins/horizontalrule/icons/horizontalrule.png",
116
+ "plugins/smiley/icons/smiley.png",
117
+ "plugins/specialchar/icons/specialchar.png",
118
+ "plugins/pagebreak/icons/pagebreak.png",
119
+ "plugins/pagebreak/icons/pagebreak-rtl.png",
120
+ "plugins/iframe/icons/iframe.png"
121
+ ],
122
+ "8": [
123
+ "plugins/colorbutton/icons/textcolor.png",
124
+ "plugins/colorbutton/icons/bgcolor.png"
125
+ ],
126
+ "9": [
127
+ "plugins/maximize/icons/maximize.png",
128
+ "plugins/showblocks/icons/showblocks.png",
129
+ "plugins/showblocks/icons/showblocks-rtl.png"
130
+ ],
131
+ "10": [
132
+ "plugins/about/icons/about.png",
133
+ "plugins/uicolor/icons/uicolor.png",
134
+ "plugins/placeholder/icons/placeholder.png",
135
+ "plugins/language/icons/language.png",
136
+ "plugins/codesnippet/icons/codesnippet.png"
137
+ ],
138
+ "11": [
139
+ "plugins/link/images/anchor.png",
140
+ "skins/moono-lisa/images/close.png",
141
+ "skins/moono-lisa/images/lock.png",
142
+ "skins/moono-lisa/images/lock-open.png",
143
+ "skins/moono-lisa/images/refresh.png"
144
+ ]
145
+ }