novelWriter 2.6.3__py3-none-any.whl → 2.7b1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (321) hide show
  1. novelwriter/__init__.py +84 -74
  2. novelwriter/assets/i18n/project_en_GB.json +1 -0
  3. novelwriter/assets/icons/font_awesome.icons +109 -0
  4. novelwriter/assets/icons/material_filled_bold.icons +109 -0
  5. novelwriter/assets/icons/material_filled_normal.icons +109 -0
  6. novelwriter/assets/icons/material_filled_thin.icons +109 -0
  7. novelwriter/assets/icons/material_rounded_bold.icons +109 -0
  8. novelwriter/assets/icons/material_rounded_normal.icons +109 -0
  9. novelwriter/assets/icons/material_rounded_thin.icons +109 -0
  10. novelwriter/assets/icons/remix_filled.icons +108 -0
  11. novelwriter/assets/icons/remix_outline.icons +108 -0
  12. novelwriter/assets/manual.pdf +0 -0
  13. novelwriter/assets/{manual_fr_FR.pdf → manual_fr.pdf} +0 -0
  14. novelwriter/assets/sample.zip +0 -0
  15. novelwriter/assets/syntax/cyberpunk_night.conf +1 -1
  16. novelwriter/assets/text/credits_en.htm +6 -6
  17. novelwriter/assets/themes/cyberpunk_night.conf +23 -7
  18. novelwriter/assets/themes/default_dark.conf +20 -4
  19. novelwriter/assets/themes/default_light.conf +21 -5
  20. novelwriter/assets/themes/dracula.conf +20 -4
  21. novelwriter/assets/themes/solarized_dark.conf +24 -8
  22. novelwriter/assets/themes/solarized_light.conf +22 -6
  23. novelwriter/common.py +33 -26
  24. novelwriter/config.py +118 -127
  25. novelwriter/constants.py +50 -36
  26. novelwriter/core/buildsettings.py +23 -16
  27. novelwriter/core/coretools.py +11 -7
  28. novelwriter/core/docbuild.py +19 -13
  29. novelwriter/core/document.py +2 -2
  30. novelwriter/core/index.py +142 -432
  31. novelwriter/core/indexdata.py +403 -0
  32. novelwriter/core/item.py +35 -28
  33. novelwriter/core/itemmodel.py +27 -26
  34. novelwriter/core/novelmodel.py +223 -0
  35. novelwriter/core/options.py +1 -1
  36. novelwriter/core/project.py +10 -11
  37. novelwriter/core/projectdata.py +5 -5
  38. novelwriter/core/projectxml.py +1 -1
  39. novelwriter/core/sessions.py +3 -2
  40. novelwriter/core/spellcheck.py +4 -3
  41. novelwriter/core/status.py +12 -15
  42. novelwriter/core/storage.py +1 -1
  43. novelwriter/core/tree.py +46 -8
  44. novelwriter/dialogs/about.py +19 -22
  45. novelwriter/dialogs/docmerge.py +21 -23
  46. novelwriter/dialogs/docsplit.py +20 -23
  47. novelwriter/dialogs/editlabel.py +9 -13
  48. novelwriter/dialogs/preferences.py +111 -48
  49. novelwriter/dialogs/projectsettings.py +48 -54
  50. novelwriter/dialogs/quotes.py +14 -19
  51. novelwriter/dialogs/wordlist.py +25 -30
  52. novelwriter/enum.py +8 -0
  53. novelwriter/error.py +16 -16
  54. novelwriter/extensions/configlayout.py +18 -18
  55. novelwriter/extensions/eventfilters.py +9 -5
  56. novelwriter/extensions/modified.py +34 -15
  57. novelwriter/extensions/novelselector.py +18 -5
  58. novelwriter/extensions/pagedsidebar.py +39 -49
  59. novelwriter/extensions/progressbars.py +10 -8
  60. novelwriter/extensions/statusled.py +6 -13
  61. novelwriter/extensions/switch.py +19 -30
  62. novelwriter/extensions/switchbox.py +7 -3
  63. novelwriter/extensions/versioninfo.py +4 -4
  64. novelwriter/formats/shared.py +1 -1
  65. novelwriter/formats/todocx.py +14 -10
  66. novelwriter/formats/tohtml.py +7 -5
  67. novelwriter/formats/tokenizer.py +36 -33
  68. novelwriter/formats/tomarkdown.py +6 -2
  69. novelwriter/formats/toodt.py +27 -22
  70. novelwriter/formats/toqdoc.py +19 -14
  71. novelwriter/formats/toraw.py +6 -2
  72. novelwriter/gui/doceditor.py +216 -265
  73. novelwriter/gui/dochighlight.py +46 -45
  74. novelwriter/gui/docviewer.py +102 -104
  75. novelwriter/gui/docviewerpanel.py +47 -51
  76. novelwriter/gui/editordocument.py +8 -5
  77. novelwriter/gui/itemdetails.py +11 -14
  78. novelwriter/gui/mainmenu.py +146 -145
  79. novelwriter/gui/noveltree.py +239 -405
  80. novelwriter/gui/outline.py +133 -72
  81. novelwriter/gui/projtree.py +138 -132
  82. novelwriter/gui/search.py +33 -31
  83. novelwriter/gui/sidebar.py +13 -18
  84. novelwriter/gui/statusbar.py +13 -15
  85. novelwriter/gui/theme.py +533 -430
  86. novelwriter/guimain.py +27 -29
  87. novelwriter/shared.py +32 -23
  88. novelwriter/text/comments.py +70 -0
  89. novelwriter/text/patterns.py +4 -4
  90. novelwriter/tools/dictionaries.py +20 -29
  91. novelwriter/tools/lipsum.py +16 -17
  92. novelwriter/tools/manusbuild.py +39 -42
  93. novelwriter/tools/manuscript.py +101 -114
  94. novelwriter/tools/manussettings.py +78 -83
  95. novelwriter/tools/noveldetails.py +51 -64
  96. novelwriter/tools/welcome.py +56 -75
  97. novelwriter/tools/writingstats.py +44 -57
  98. novelwriter/types.py +5 -7
  99. {novelWriter-2.6.3.dist-info → novelwriter-2.7b1.dist-info}/METADATA +6 -6
  100. novelwriter-2.7b1.dist-info/RECORD +159 -0
  101. {novelWriter-2.6.3.dist-info → novelwriter-2.7b1.dist-info}/WHEEL +1 -1
  102. novelWriter-2.6.3.dist-info/RECORD +0 -363
  103. novelwriter/assets/icons/typicons_dark/README.md +0 -29
  104. novelwriter/assets/icons/typicons_dark/icons.conf +0 -134
  105. novelwriter/assets/icons/typicons_dark/mixed_copy.svg +0 -4
  106. novelwriter/assets/icons/typicons_dark/mixed_document-chapter.svg +0 -12
  107. novelwriter/assets/icons/typicons_dark/mixed_document-new.svg +0 -6
  108. novelwriter/assets/icons/typicons_dark/mixed_document-note.svg +0 -12
  109. novelwriter/assets/icons/typicons_dark/mixed_document-scene.svg +0 -12
  110. novelwriter/assets/icons/typicons_dark/mixed_document-section.svg +0 -12
  111. novelwriter/assets/icons/typicons_dark/mixed_document-title.svg +0 -12
  112. novelwriter/assets/icons/typicons_dark/mixed_edit.svg +0 -4
  113. novelwriter/assets/icons/typicons_dark/mixed_import.svg +0 -5
  114. novelwriter/assets/icons/typicons_dark/mixed_input-checked.svg +0 -5
  115. novelwriter/assets/icons/typicons_dark/mixed_input-none.svg +0 -5
  116. novelwriter/assets/icons/typicons_dark/mixed_input-unchecked.svg +0 -5
  117. novelwriter/assets/icons/typicons_dark/mixed_margin-bottom.svg +0 -6
  118. novelwriter/assets/icons/typicons_dark/mixed_margin-left.svg +0 -6
  119. novelwriter/assets/icons/typicons_dark/mixed_margin-right.svg +0 -6
  120. novelwriter/assets/icons/typicons_dark/mixed_margin-top.svg +0 -6
  121. novelwriter/assets/icons/typicons_dark/mixed_search-replace.svg +0 -6
  122. novelwriter/assets/icons/typicons_dark/mixed_size-height.svg +0 -6
  123. novelwriter/assets/icons/typicons_dark/mixed_size-width.svg +0 -6
  124. novelwriter/assets/icons/typicons_dark/nw_deco-h0.svg +0 -4
  125. novelwriter/assets/icons/typicons_dark/nw_deco-h1.svg +0 -4
  126. novelwriter/assets/icons/typicons_dark/nw_deco-h2-narrow.svg +0 -4
  127. novelwriter/assets/icons/typicons_dark/nw_deco-h2.svg +0 -4
  128. novelwriter/assets/icons/typicons_dark/nw_deco-h3-narrow.svg +0 -4
  129. novelwriter/assets/icons/typicons_dark/nw_deco-h3.svg +0 -4
  130. novelwriter/assets/icons/typicons_dark/nw_deco-h4-narrow.svg +0 -4
  131. novelwriter/assets/icons/typicons_dark/nw_deco-h4.svg +0 -4
  132. novelwriter/assets/icons/typicons_dark/nw_deco-note.svg +0 -4
  133. novelwriter/assets/icons/typicons_dark/nw_deco-noveltree-more.svg +0 -4
  134. novelwriter/assets/icons/typicons_dark/nw_font.svg +0 -4
  135. novelwriter/assets/icons/typicons_dark/nw_panel.svg +0 -4
  136. novelwriter/assets/icons/typicons_dark/nw_quote.svg +0 -4
  137. novelwriter/assets/icons/typicons_dark/nw_search-case.svg +0 -4
  138. novelwriter/assets/icons/typicons_dark/nw_search-preserve.svg +0 -4
  139. novelwriter/assets/icons/typicons_dark/nw_search-regex.svg +0 -4
  140. novelwriter/assets/icons/typicons_dark/nw_search-word.svg +0 -4
  141. novelwriter/assets/icons/typicons_dark/nw_tb-bold-md.svg +0 -4
  142. novelwriter/assets/icons/typicons_dark/nw_tb-bold.svg +0 -6
  143. novelwriter/assets/icons/typicons_dark/nw_tb-italic-md.svg +0 -4
  144. novelwriter/assets/icons/typicons_dark/nw_tb-italic.svg +0 -6
  145. novelwriter/assets/icons/typicons_dark/nw_tb-mark.svg +0 -7
  146. novelwriter/assets/icons/typicons_dark/nw_tb-strike-md.svg +0 -4
  147. novelwriter/assets/icons/typicons_dark/nw_tb-strike.svg +0 -6
  148. novelwriter/assets/icons/typicons_dark/nw_tb-subscript.svg +0 -7
  149. novelwriter/assets/icons/typicons_dark/nw_tb-superscript.svg +0 -7
  150. novelwriter/assets/icons/typicons_dark/nw_tb-underline.svg +0 -7
  151. novelwriter/assets/icons/typicons_dark/nw_toolbar.svg +0 -5
  152. novelwriter/assets/icons/typicons_dark/typ_arrow-down-thick-grey.svg +0 -4
  153. novelwriter/assets/icons/typicons_dark/typ_arrow-forward.svg +0 -4
  154. novelwriter/assets/icons/typicons_dark/typ_arrow-maximise.svg +0 -4
  155. novelwriter/assets/icons/typicons_dark/typ_arrow-minimise.svg +0 -4
  156. novelwriter/assets/icons/typicons_dark/typ_arrow-repeat-grey.svg +0 -4
  157. novelwriter/assets/icons/typicons_dark/typ_book-grey.svg +0 -4
  158. novelwriter/assets/icons/typicons_dark/typ_book.svg +0 -6
  159. novelwriter/assets/icons/typicons_dark/typ_bookmark.svg +0 -4
  160. novelwriter/assets/icons/typicons_dark/typ_calendar.svg +0 -4
  161. novelwriter/assets/icons/typicons_dark/typ_cancel-grey.svg +0 -4
  162. novelwriter/assets/icons/typicons_dark/typ_cancel.svg +0 -4
  163. novelwriter/assets/icons/typicons_dark/typ_chart-bar-grey.svg +0 -4
  164. novelwriter/assets/icons/typicons_dark/typ_chevron-down.svg +0 -4
  165. novelwriter/assets/icons/typicons_dark/typ_chevron-left.svg +0 -4
  166. novelwriter/assets/icons/typicons_dark/typ_chevron-right.svg +0 -4
  167. novelwriter/assets/icons/typicons_dark/typ_chevron-up.svg +0 -4
  168. novelwriter/assets/icons/typicons_dark/typ_cog.svg +0 -4
  169. novelwriter/assets/icons/typicons_dark/typ_delete-full.svg +0 -4
  170. novelwriter/assets/icons/typicons_dark/typ_delete.svg +0 -4
  171. novelwriter/assets/icons/typicons_dark/typ_directions-full.svg +0 -4
  172. novelwriter/assets/icons/typicons_dark/typ_document-add.svg +0 -4
  173. novelwriter/assets/icons/typicons_dark/typ_document-text.svg +0 -8
  174. novelwriter/assets/icons/typicons_dark/typ_document.svg +0 -4
  175. novelwriter/assets/icons/typicons_dark/typ_export-grey.svg +0 -4
  176. novelwriter/assets/icons/typicons_dark/typ_export.svg +0 -4
  177. novelwriter/assets/icons/typicons_dark/typ_eye.svg +0 -4
  178. novelwriter/assets/icons/typicons_dark/typ_flag.svg +0 -4
  179. novelwriter/assets/icons/typicons_dark/typ_folder-open.svg +0 -4
  180. novelwriter/assets/icons/typicons_dark/typ_folder.svg +0 -5
  181. novelwriter/assets/icons/typicons_dark/typ_globe-grey.svg +0 -4
  182. novelwriter/assets/icons/typicons_dark/typ_key.svg +0 -4
  183. novelwriter/assets/icons/typicons_dark/typ_lightbulb-full.svg +0 -4
  184. novelwriter/assets/icons/typicons_dark/typ_location.svg +0 -4
  185. novelwriter/assets/icons/typicons_dark/typ_media-pause-grey.svg +0 -4
  186. novelwriter/assets/icons/typicons_dark/typ_media-record-outline.svg +0 -4
  187. novelwriter/assets/icons/typicons_dark/typ_media-record.svg +0 -4
  188. novelwriter/assets/icons/typicons_dark/typ_minus.svg +0 -4
  189. novelwriter/assets/icons/typicons_dark/typ_pencil.svg +0 -5
  190. novelwriter/assets/icons/typicons_dark/typ_pin-outline.svg +0 -4
  191. novelwriter/assets/icons/typicons_dark/typ_pin.svg +0 -4
  192. novelwriter/assets/icons/typicons_dark/typ_plus.svg +0 -4
  193. novelwriter/assets/icons/typicons_dark/typ_puzzle-outline.svg +0 -4
  194. novelwriter/assets/icons/typicons_dark/typ_puzzle.svg +0 -4
  195. novelwriter/assets/icons/typicons_dark/typ_refresh-flipped.svg +0 -4
  196. novelwriter/assets/icons/typicons_dark/typ_refresh.svg +0 -4
  197. novelwriter/assets/icons/typicons_dark/typ_search-grey.svg +0 -4
  198. novelwriter/assets/icons/typicons_dark/typ_search.svg +0 -4
  199. novelwriter/assets/icons/typicons_dark/typ_star.svg +0 -4
  200. novelwriter/assets/icons/typicons_dark/typ_stopwatch-grey.svg +0 -4
  201. novelwriter/assets/icons/typicons_dark/typ_th-dot-menu.svg +0 -4
  202. novelwriter/assets/icons/typicons_dark/typ_th-dot-more.svg +0 -4
  203. novelwriter/assets/icons/typicons_dark/typ_th-list-grey.svg +0 -4
  204. novelwriter/assets/icons/typicons_dark/typ_th-list.svg +0 -9
  205. novelwriter/assets/icons/typicons_dark/typ_times.svg +0 -4
  206. novelwriter/assets/icons/typicons_dark/typ_trash.svg +0 -5
  207. novelwriter/assets/icons/typicons_dark/typ_unfold-hidden.svg +0 -4
  208. novelwriter/assets/icons/typicons_dark/typ_unfold-visible.svg +0 -4
  209. novelwriter/assets/icons/typicons_dark/typ_user.svg +0 -5
  210. novelwriter/assets/icons/typicons_dark/typ_warning-full.svg +0 -4
  211. novelwriter/assets/icons/typicons_light/README.md +0 -29
  212. novelwriter/assets/icons/typicons_light/icons.conf +0 -134
  213. novelwriter/assets/icons/typicons_light/mixed_copy.svg +0 -4
  214. novelwriter/assets/icons/typicons_light/mixed_document-chapter.svg +0 -12
  215. novelwriter/assets/icons/typicons_light/mixed_document-new.svg +0 -6
  216. novelwriter/assets/icons/typicons_light/mixed_document-note.svg +0 -12
  217. novelwriter/assets/icons/typicons_light/mixed_document-scene.svg +0 -12
  218. novelwriter/assets/icons/typicons_light/mixed_document-section.svg +0 -12
  219. novelwriter/assets/icons/typicons_light/mixed_document-title.svg +0 -12
  220. novelwriter/assets/icons/typicons_light/mixed_edit.svg +0 -4
  221. novelwriter/assets/icons/typicons_light/mixed_import.svg +0 -5
  222. novelwriter/assets/icons/typicons_light/mixed_input-checked.svg +0 -5
  223. novelwriter/assets/icons/typicons_light/mixed_input-none.svg +0 -5
  224. novelwriter/assets/icons/typicons_light/mixed_input-unchecked.svg +0 -5
  225. novelwriter/assets/icons/typicons_light/mixed_margin-bottom.svg +0 -6
  226. novelwriter/assets/icons/typicons_light/mixed_margin-left.svg +0 -6
  227. novelwriter/assets/icons/typicons_light/mixed_margin-right.svg +0 -6
  228. novelwriter/assets/icons/typicons_light/mixed_margin-top.svg +0 -6
  229. novelwriter/assets/icons/typicons_light/mixed_search-replace.svg +0 -6
  230. novelwriter/assets/icons/typicons_light/mixed_size-height.svg +0 -6
  231. novelwriter/assets/icons/typicons_light/mixed_size-width.svg +0 -6
  232. novelwriter/assets/icons/typicons_light/nw_deco-h0.svg +0 -4
  233. novelwriter/assets/icons/typicons_light/nw_deco-h1.svg +0 -4
  234. novelwriter/assets/icons/typicons_light/nw_deco-h2-narrow.svg +0 -4
  235. novelwriter/assets/icons/typicons_light/nw_deco-h2.svg +0 -4
  236. novelwriter/assets/icons/typicons_light/nw_deco-h3-narrow.svg +0 -4
  237. novelwriter/assets/icons/typicons_light/nw_deco-h3.svg +0 -4
  238. novelwriter/assets/icons/typicons_light/nw_deco-h4-narrow.svg +0 -4
  239. novelwriter/assets/icons/typicons_light/nw_deco-h4.svg +0 -4
  240. novelwriter/assets/icons/typicons_light/nw_deco-note.svg +0 -4
  241. novelwriter/assets/icons/typicons_light/nw_deco-noveltree-more.svg +0 -4
  242. novelwriter/assets/icons/typicons_light/nw_font.svg +0 -4
  243. novelwriter/assets/icons/typicons_light/nw_panel.svg +0 -4
  244. novelwriter/assets/icons/typicons_light/nw_quote.svg +0 -4
  245. novelwriter/assets/icons/typicons_light/nw_search-case.svg +0 -4
  246. novelwriter/assets/icons/typicons_light/nw_search-preserve.svg +0 -4
  247. novelwriter/assets/icons/typicons_light/nw_search-regex.svg +0 -4
  248. novelwriter/assets/icons/typicons_light/nw_search-word.svg +0 -4
  249. novelwriter/assets/icons/typicons_light/nw_tb-bold-md.svg +0 -4
  250. novelwriter/assets/icons/typicons_light/nw_tb-bold.svg +0 -6
  251. novelwriter/assets/icons/typicons_light/nw_tb-italic-md.svg +0 -4
  252. novelwriter/assets/icons/typicons_light/nw_tb-italic.svg +0 -6
  253. novelwriter/assets/icons/typicons_light/nw_tb-mark.svg +0 -7
  254. novelwriter/assets/icons/typicons_light/nw_tb-strike-md.svg +0 -4
  255. novelwriter/assets/icons/typicons_light/nw_tb-strike.svg +0 -6
  256. novelwriter/assets/icons/typicons_light/nw_tb-subscript.svg +0 -7
  257. novelwriter/assets/icons/typicons_light/nw_tb-superscript.svg +0 -7
  258. novelwriter/assets/icons/typicons_light/nw_tb-underline.svg +0 -7
  259. novelwriter/assets/icons/typicons_light/nw_toolbar.svg +0 -5
  260. novelwriter/assets/icons/typicons_light/typ_arrow-down-thick-grey.svg +0 -4
  261. novelwriter/assets/icons/typicons_light/typ_arrow-forward.svg +0 -4
  262. novelwriter/assets/icons/typicons_light/typ_arrow-maximise.svg +0 -4
  263. novelwriter/assets/icons/typicons_light/typ_arrow-minimise.svg +0 -4
  264. novelwriter/assets/icons/typicons_light/typ_arrow-repeat-grey.svg +0 -4
  265. novelwriter/assets/icons/typicons_light/typ_book-grey.svg +0 -4
  266. novelwriter/assets/icons/typicons_light/typ_book.svg +0 -6
  267. novelwriter/assets/icons/typicons_light/typ_bookmark.svg +0 -4
  268. novelwriter/assets/icons/typicons_light/typ_calendar.svg +0 -4
  269. novelwriter/assets/icons/typicons_light/typ_cancel-grey.svg +0 -4
  270. novelwriter/assets/icons/typicons_light/typ_cancel.svg +0 -4
  271. novelwriter/assets/icons/typicons_light/typ_chart-bar-grey.svg +0 -4
  272. novelwriter/assets/icons/typicons_light/typ_chevron-down.svg +0 -4
  273. novelwriter/assets/icons/typicons_light/typ_chevron-left.svg +0 -4
  274. novelwriter/assets/icons/typicons_light/typ_chevron-right.svg +0 -4
  275. novelwriter/assets/icons/typicons_light/typ_chevron-up.svg +0 -4
  276. novelwriter/assets/icons/typicons_light/typ_cog.svg +0 -4
  277. novelwriter/assets/icons/typicons_light/typ_delete-full.svg +0 -4
  278. novelwriter/assets/icons/typicons_light/typ_delete.svg +0 -4
  279. novelwriter/assets/icons/typicons_light/typ_directions-full.svg +0 -4
  280. novelwriter/assets/icons/typicons_light/typ_document-add.svg +0 -4
  281. novelwriter/assets/icons/typicons_light/typ_document-text.svg +0 -5
  282. novelwriter/assets/icons/typicons_light/typ_document.svg +0 -4
  283. novelwriter/assets/icons/typicons_light/typ_export-grey.svg +0 -4
  284. novelwriter/assets/icons/typicons_light/typ_export.svg +0 -4
  285. novelwriter/assets/icons/typicons_light/typ_eye.svg +0 -4
  286. novelwriter/assets/icons/typicons_light/typ_flag.svg +0 -4
  287. novelwriter/assets/icons/typicons_light/typ_folder-open.svg +0 -4
  288. novelwriter/assets/icons/typicons_light/typ_folder.svg +0 -5
  289. novelwriter/assets/icons/typicons_light/typ_globe-grey.svg +0 -4
  290. novelwriter/assets/icons/typicons_light/typ_key.svg +0 -4
  291. novelwriter/assets/icons/typicons_light/typ_lightbulb-full.svg +0 -4
  292. novelwriter/assets/icons/typicons_light/typ_location.svg +0 -4
  293. novelwriter/assets/icons/typicons_light/typ_media-pause-grey.svg +0 -4
  294. novelwriter/assets/icons/typicons_light/typ_media-record-outline.svg +0 -4
  295. novelwriter/assets/icons/typicons_light/typ_media-record.svg +0 -4
  296. novelwriter/assets/icons/typicons_light/typ_minus.svg +0 -4
  297. novelwriter/assets/icons/typicons_light/typ_pencil.svg +0 -5
  298. novelwriter/assets/icons/typicons_light/typ_pin-outline.svg +0 -4
  299. novelwriter/assets/icons/typicons_light/typ_pin.svg +0 -4
  300. novelwriter/assets/icons/typicons_light/typ_plus.svg +0 -4
  301. novelwriter/assets/icons/typicons_light/typ_puzzle-outline.svg +0 -4
  302. novelwriter/assets/icons/typicons_light/typ_puzzle.svg +0 -4
  303. novelwriter/assets/icons/typicons_light/typ_refresh-flipped.svg +0 -4
  304. novelwriter/assets/icons/typicons_light/typ_refresh.svg +0 -4
  305. novelwriter/assets/icons/typicons_light/typ_search-grey.svg +0 -4
  306. novelwriter/assets/icons/typicons_light/typ_search.svg +0 -4
  307. novelwriter/assets/icons/typicons_light/typ_star.svg +0 -4
  308. novelwriter/assets/icons/typicons_light/typ_stopwatch-grey.svg +0 -4
  309. novelwriter/assets/icons/typicons_light/typ_th-dot-menu.svg +0 -4
  310. novelwriter/assets/icons/typicons_light/typ_th-dot-more.svg +0 -4
  311. novelwriter/assets/icons/typicons_light/typ_th-list-grey.svg +0 -4
  312. novelwriter/assets/icons/typicons_light/typ_th-list.svg +0 -9
  313. novelwriter/assets/icons/typicons_light/typ_times.svg +0 -4
  314. novelwriter/assets/icons/typicons_light/typ_trash.svg +0 -5
  315. novelwriter/assets/icons/typicons_light/typ_unfold-hidden.svg +0 -4
  316. novelwriter/assets/icons/typicons_light/typ_unfold-visible.svg +0 -4
  317. novelwriter/assets/icons/typicons_light/typ_user.svg +0 -5
  318. novelwriter/assets/icons/typicons_light/typ_warning-full.svg +0 -4
  319. {novelWriter-2.6.3.dist-info → novelwriter-2.7b1.dist-info}/entry_points.txt +0 -0
  320. {novelWriter-2.6.3.dist-info → novelwriter-2.7b1.dist-info/licenses}/LICENSE.md +0 -0
  321. {novelWriter-2.6.3.dist-info → novelwriter-2.7b1.dist-info}/top_level.txt +0 -0
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect x="2" y="2" width="20" height="20" rx="1" ry="1" fill="#333" fill-opacity=".15" stroke-linecap="round" stroke-width="2"/>
4
- <rect x="2" y="2" width="20" height="4" rx="1" ry="1" fill="#333" stroke-linecap="round" stroke-width="2"/>
5
- <path d="m18.414 15.404c0.78104-0.79361 0.78104-2.0837 0-2.8773l-6.4141-6.5268-6.4141 6.5268c-0.391 0.3968-0.58601 0.91769-0.58601 1.4386 0 0.52092 0.195 1.0418 0.58601 1.4386 0.78104 0.79464 2.047 0.79464 2.8281 0l3.5861-3.6475 3.5861 3.6475c0.78104 0.79464 2.047 0.79464 2.8281 0z" fill="#4271ae" stroke-width="1.0087"/>
6
- </svg>
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m10.331 2c-4.5925 0-8.3306 3.7382-8.3306 8.3306 0 1.3919 0.34678 2.7026 0.95327 3.8572 0.084308-0.10841 0.15909-0.22884 0.25343-0.32318l1.5415-1.5415c-0.22447-0.62612-0.36968-1.2902-0.36968-1.9926 0-3.281 2.6711-5.9498 5.9521-5.9498 0.7023 0 1.3665 0.14293 1.9926 0.36736l1.8182-1.8182c-1.1435-0.59154-2.4373-0.93002-3.8107-0.93002zm5.6359 3.4852-0.60451 0.60451 2.5459 2.5482 0.46036-0.46268c-0.036008-0.134-0.06915-0.26865-0.1116-0.39991zm0.29296 4.4246c0.0083 0.11891 0.01733 0.23734 0.01861 0.35806l0.16973-0.16973zm2.06 2.6994-5.7103 5.7103c0.10535-0.03032 0.21718-0.04484 0.32086-0.07906l0.89282 0.89049 1.7996 1.7973 0.07208 0.07208 0.07672 0.06743c0.71523 0.60218 1.6044 0.93234 2.5041 0.93234 2.0541 0 3.7247-1.6718 3.7247-3.727 0-0.99966-0.39046-1.9368-1.0997-2.6389l-1.13-1.1741-0.63939-0.63939-0.89049-0.89282c0.03403-0.10314 0.04885-0.21376 0.07906-0.31853zm-11.76 2.2878-0.49291 0.49291 0.54173 0.54173 0.57196-0.57196c-0.21994-0.13829-0.42139-0.29768-0.62079-0.46268zm2.718 1.2857-1.209 1.209 0.54173 0.54173 1.6578-1.6554c-0.33728-0.0036-0.66871-0.03764-0.99047-0.09533z" fill="#4271ae" stroke-width="1.1901"/>
4
- <path d="m15.967 2.4766c-0.39666 0-0.79244 0.15073-1.0951 0.45338l-11.3 11.3c-0.30266 0.30266-0.57591 0.75143-0.77424 1.2276-0.19833 0.47826-0.32086 0.99063-0.32086 1.4183v4.6478h4.6478c0.42764 0 0.93769-0.12253 1.4159-0.32086 0.47826-0.19833 0.92729-0.47158 1.2299-0.77424l11.3-11.3c0.30266-0.30266 0.45338-0.7018 0.45338-1.0974 0-0.39666-0.15073-0.79244-0.45338-1.0951l-4.006-4.006c-0.30266-0.30266-0.7018-0.45338-1.0974-0.45338zm0 2.2785 3.276 3.276-1.3346 1.3369-3.276-3.276zm-2.0646 2.067 1.2718 1.2718-8.5654 8.5678-1.2718-1.2741zm2.0042 2.0042 1.2718 1.2718-8.5654 8.5654-1.2741-1.2718zm-11.2 7.4239c0.010333-0.02065 3.0644 3.0342 3.0644 3.0342-0.33261 0.13842-0.56682 0.17205-0.64636 0.17205h-1.5485l-1.0323-1.0323v-1.5485c0-0.07953 0.033633-0.31555 0.16275-0.62544z" fill="#718c00" stroke-width="1.1901"/>
5
- <path d="m2.4766 18.937v2.5859h2.5605z" fill="#0a0a0a" opacity=".95"/>
6
- </svg>
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect x="2" y="2" width="20" height="20" rx="1" ry="1" fill="#333" fill-opacity=".15" stroke-linecap="round" stroke-width="2"/>
4
- <path d="m18.414 10.404c0.78104-0.79361 0.78104-2.0837 0-2.8773l-6.4141-6.5268-6.4141 6.5268c-0.391 0.3968-0.58601 0.91769-0.58601 1.4386 0 0.52092 0.195 1.0418 0.58601 1.4386 0.78104 0.79464 2.047 0.79464 2.8281 0l3.5861-3.6475 3.5861 3.6475c0.78104 0.79464 2.047 0.79464 2.8281 0z" fill="#4271ae" stroke-width="1.0087"/>
5
- <path d="m18.414 13.596c0.78104 0.79361 0.78104 2.0837 0 2.8773l-6.4141 6.5268-6.4141-6.5268c-0.391-0.3968-0.58601-0.91769-0.58601-1.4386 0-0.52092 0.195-1.0418 0.58601-1.4386 0.78104-0.79464 2.047-0.79464 2.8281 0l3.5861 3.6475 3.5861-3.6475c0.78104-0.79464 2.047-0.79464 2.8281 0z" fill="#4271ae" stroke-width="1.0087"/>
6
- </svg>
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect x="2" y="2" width="20" height="20" rx="1" ry="1" fill="#333" fill-opacity=".15" stroke-linecap="round" stroke-width="2"/>
4
- <path d="m13.596 18.414c0.79361 0.78104 2.0837 0.78104 2.8773 0l6.5268-6.4141-6.5268-6.4141c-0.3968-0.391-0.91769-0.58601-1.4386-0.58601-0.52092 0-1.0418 0.195-1.4386 0.58601-0.79464 0.78104-0.79464 2.047 0 2.8281l3.6475 3.5861-3.6475 3.5861c-0.79464 0.78104-0.79464 2.047 0 2.8281z" fill="#4271ae" stroke-width="1.0087"/>
5
- <path d="m10.404 18.414c-0.79361 0.78104-2.0837 0.78104-2.8773 0l-6.5268-6.4141 6.5268-6.4141c0.3968-0.391 0.91769-0.58601 1.4386-0.58601 0.52092 0 1.0418 0.195 1.4386 0.58601 0.79464 0.78104 0.79464 2.047 0 2.8281l-3.6475 3.5861 3.6475 3.5861c0.79464 0.78104 0.79464 2.047 0 2.8281z" fill="#4271ae" stroke-width="1.0087"/>
6
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="4" height="24" version="1.2" viewBox="0 0 4 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect y="1" width="4" height="22" rx="2" ry="2" fill="#848484" stroke-width="0"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="4" height="24" version="1.2" viewBox="0 0 4 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect y="1" width="4" height="22" rx="2" ry="2" fill="#718c00" stroke-width="0"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="4" height="24" version="1.2" viewBox="0 0 4 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect y="1" width="4" height="22" rx="2" ry="2" fill="#c82829" stroke-width="0"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="20" height="24" version="1.2" viewBox="0 0 20 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect x="16" y="1" width="4" height="22" rx="2" ry="2" fill="#c82829" stroke-width="0"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="4" height="24" version="1.2" viewBox="0 0 4 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect y="1" width="4" height="22" rx="2" ry="2" fill="#4271ae" stroke-width="0"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="36" height="24" version="1.2" viewBox="0 0 36 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect x="32" y="1" width="4" height="22" rx="2" ry="2" fill="#4271ae" stroke-width="0"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="4" height="24" version="1.2" viewBox="0 0 4 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect y="1" width="4" height="22" rx="2" ry="2" fill="#333" stroke-width="0"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="52" height="24" version="1.2" viewBox="0 0 52 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect x="48" y="1" width="4" height="22" rx="2" ry="2" fill="#333" stroke-width="0"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="4" height="24" version="1.2" viewBox="0 0 4 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect y="1" width="4" height="22" rx="2" ry="2" fill="#ad8700" stroke-width="0"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m9.7 18.2 6.3-6.2-6.3-6.2c-0.2-0.2-0.5-0.3-0.7-0.3s-0.5 0.1-0.7 0.3-0.3 0.4-0.3 0.7v11c0 0.3 0.1 0.5 0.3 0.7s0.5 0.3 0.7 0.3 0.5-0.1 0.7-0.3z" fill="#848484"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m2.5744 5.8208v-4.2853h-1.4527v-1.0064h4.1067v1.0064h-1.4527v4.2853z" fill-opacity=".78039" stroke-width="1.1503"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m17.853 2.0017c-0.14248-0.00428-0.28548-1.936e-4 -0.42925 0.01171h-11.135c-2.3531-0.068148-4.4276 2.1102-4.2808 4.4518 0.00689 3.8473-0.014486 7.6959 0.00976 11.542 0.12963 2.1674 2.0751 4.0505 4.2711 3.9912 3.8794-0.0037 7.7592 0.0071 11.639-0.0059 2.3157-0.05864 4.2507-2.2581 4.0603-4.5591-0.0037-3.7862 0.0071-7.5728-0.0059-11.359-0.054966-2.1716-1.9914-4.0089-4.1286-4.0732zm-11.533 2.8514c0.10262-0.00515 0.20595 1.374e-4 0.30828 0.015613 2.2719-0.00131 4.5437 0.0026 6.8153-0.00195 1.5163 0.01818 3.0369-0.036922 4.5501 0.029275 0.83106 0.14317 1.246 1.0195 1.1395 1.7956-0.0023 1.7714-9.95e-4 3.543 0 5.3144h-14.271c-9.495e-4 -1.9468-0.0019-3.8929 0.00585-5.8394 0.049778-0.75434 0.73334-1.2775 1.4517-1.3135z" fill-opacity=".78039" stroke-width=".99912"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m1.3715 3.0659q-0.32092-0.25674-0.44928-0.44928-0.12836-0.19255-0.12837-0.44928 0-0.42361 0.28241-0.69319 0.28241-0.28241 0.68035-0.28241 0.25674 0 0.44928 0.10269 0.19255 0.089858 0.3466 0.23106 0.24391 0.4878 0.24391 1.0141 0 0.42361-0.14121 0.82157-0.12837 0.38511-0.37227 0.71886-0.23106 0.33377-0.55199 0.61618-0.30808 0.26958-0.65467 0.46213l-0.25674-0.41078q0.29525-0.21822 0.57766-0.53914 0.28241-0.33375 0.46213-0.73171zm2.7598 0q-0.32092-0.25674-0.44928-0.44928-0.12837-0.19255-0.12837-0.44928 0-0.42361 0.28241-0.69319 0.28241-0.28241 0.68035-0.28241 0.25674 0 0.44928 0.10269 0.19255 0.089858 0.3466 0.23106 0.24391 0.4878 0.24391 1.0141 0 0.42361-0.14121 0.82157-0.12837 0.38511-0.37227 0.71886-0.23106 0.33377-0.55199 0.61618-0.30808 0.26958-0.65467 0.46213l-0.25674-0.41078q0.29525-0.21822 0.57766-0.53914 0.28241-0.33375 0.46213-0.73171z" fill-opacity=".78039" stroke-width="1.8194"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m4.7011 4.89c0.30621 0 0.56797-0.10344 0.75071-0.29061l0.0889 0.24135h0.44944v-1.4383c0-0.65019-0.37042-1.0048-1.0767-1.0048-0.34572 0-0.7112 0.083774-0.99272 0.23151l0.14817 0.43838c0.24694-0.098534 0.48895-0.14776 0.7112-0.14776 0.38523 0 0.59267 0.14776 0.59267 0.43345v0.064027c-1.0421 0.01476-1.5014 0.25121-1.5014 0.75854 0 0.43345 0.32597 0.71421 0.82973 0.71421zm-0.19756-0.79795c0-0.21673 0.25188-0.31524 0.86924-0.32509v0.45316c-0.11853 0.11329-0.28152 0.17732-0.46426 0.17732-0.24201 0-0.40499-0.12314-0.40499-0.30539zm-4.1437 0.74869h0.67663l0.28152-0.85705h1.3137l0.28152 0.85705h0.70626l-1.1903-3.4184h-0.81492zm1.1458-1.4235 0.47413-1.4481 0.46919 1.4481z" fill-opacity=".78039" style="font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m3.4396 4.8828h1.1593c0.75197 0 1.222-0.40993 1.222-1.0619 0-0.42968-0.2059-0.74083-0.56398-0.88406 0.19695-0.14323 0.3178-0.39511 0.3178-0.66675 0-0.52846-0.38942-0.81492-1.1056-0.81492h-1.0295zm0.57293-2.9139h0.4118c0.36256 0 0.56398 0.16792 0.56398 0.46426 0 0.1778-0.076092 0.31609-0.25066 0.42474h-0.72512zm0 2.4003v-1.0125h0.67141c0.3357 0 0.5416 0.21731 0.5416 0.54822 0 0.31609-0.17457 0.46426-0.55055 0.46426zm-3.4833 0.51364h0.61319l0.25512-0.85937h1.1906l0.25512 0.85937h0.64005l-1.0787-3.4276h-0.73852zm1.0384-1.4273 0.42968-1.452 0.42521 1.452z" fill-opacity=".78039" stroke-width=".25188" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m3.5108 3.5077h0.54822l-0.12347-0.77373 0.61242 0.49775 0.25682-0.43861-0.76553-0.32033 0.78034-0.29076-0.25188-0.43861-0.63712 0.48296 0.12841-0.79837h-0.54822l0.13829 0.79344-0.6223-0.50268-0.25188 0.43861 0.77047 0.31541-0.77541 0.30555 0.24694 0.44354 0.63218-0.50267zm-1.5557 1.4144c0.25188 0 0.41981-0.18234 0.41981-0.41889 0-0.25134-0.16792-0.43369-0.41981-0.43369-0.25682 0-0.42474 0.18234-0.42474 0.43369 0 0.23655 0.16792 0.41889 0.42474 0.41889z" fill-opacity=".78039" style="font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m0.52917 3.0427v1.8521h5.2917v-1.8521h-0.79375v1.0583h-3.7042v-1.0583z" fill-opacity=".78039"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m1.3672 5.5562v-4.7625h1.6289q0.37252 0 0.68662 0.058435 0.32139 0.051131 0.55513 0.18991 0.24104 0.13878 0.37252 0.36522 0.13878 0.22644 0.13878 0.56975 0 0.1607-0.043826 0.32139t-0.12417 0.29948q-0.080349 0.13878-0.19721 0.24835-0.10957 0.10957-0.25565 0.1607v0.029218q0.18261 0.043827 0.33601 0.13878 0.1534 0.087653 0.27027 0.22644 0.11687 0.13878 0.18261 0.3287 0.065739 0.18261 0.065739 0.42365 0 0.36522-0.14608 0.62818-0.13878 0.26295-0.39444 0.43826-0.24835 0.168-0.58435 0.25565-0.33601 0.080349-0.72313 0.080349zm1.0737-2.8561h0.50401q0.39444 0 0.56975-0.1534 0.18261-0.1534 0.18261-0.40905 0-0.27757-0.18261-0.39444t-0.56244-0.11687h-0.51131zm0 2.0233h0.60626q0.88383 0 0.88383-0.64279 0-0.31408-0.21914-0.44557-0.21914-0.13878-0.6647-0.13878h-0.60626z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".54782"/>
4
- </svg>
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m1.568 5.2917v-4.2333h1.4479q0.33113 0 0.61033 0.051942 0.28568 0.04545 0.49345 0.16881 0.21426 0.12336 0.33113 0.32464 0.12336 0.20128 0.12336 0.50644 0 0.14284-0.038957 0.28568-0.038956 0.14284-0.11037 0.2662-0.071421 0.12336-0.1753 0.22076-0.097396 0.097396-0.22724 0.14284v0.025972q0.16232 0.038957 0.29868 0.12336 0.13636 0.077914 0.24024 0.20128 0.10388 0.12336 0.16232 0.29218 0.058435 0.16232 0.058435 0.37658 0 0.32464-0.12985 0.55838-0.12336 0.23373-0.35061 0.38956-0.22076 0.14933-0.51942 0.22724-0.29868 0.071422-0.64278 0.071422zm0.9544-2.5388h0.44801q0.35061 0 0.50644-0.13636 0.16232-0.13636 0.16232-0.3636 0-0.24673-0.16232-0.35061-0.16232-0.10388-0.49995-0.10388h-0.4545zm0 1.7985h0.5389q0.78563 0 0.78563-0.57137 0-0.27918-0.19479-0.39606-0.19479-0.12336-0.59084-0.12336h-0.5389z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".48695"/>
4
- <path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#4271ae" stroke-width="1.1186"/>
5
- <path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#4271ae" stroke-width="1.1186"/>
6
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m2.3084 5.5562 0.94666-4.7625h0.78646l-0.94666 4.7625z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".54615"/>
4
- </svg>
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m2.417 5.2917 0.84148-4.2333h0.69908l-0.84148 4.2333z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".48547"/>
4
- <path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#4271ae" stroke-width="1.1186"/>
5
- <path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#4271ae" stroke-width="1.1186"/>
6
- </svg>
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
- <rect x=".26458" y=".79375" width="5.8208" height="4.7625" fill="#ad8700" fill-opacity=".8" stroke-linecap="round" stroke-width=".1354"/>
4
- <path d="m1.3229 5.2917v-4.2333h0.98087l0.6397 1.8829q0.060924 0.18829 0.11576 0.38957 0.054831 0.19479 0.11576 0.38957h0.024369q0.060924-0.19479 0.10966-0.38957 0.054831-0.20128 0.11576-0.38957l0.62752-1.8829h0.97478v4.2333h-0.81638v-1.5518q0-0.15583 0.012185-0.34412 0.012185-0.18829 0.030462-0.37658 0.018277-0.19479 0.036554-0.37658 0.018277-0.18829 0.036554-0.34412h-0.02437l-0.3229 1.0064-0.56659 1.6167h-0.49348l-0.56659-1.6167-0.3168-1.0064h-0.024369q0.018277 0.15583 0.036554 0.34412 0.018277 0.1818 0.036554 0.37658 0.018277 0.18829 0.030462 0.37658 0.012185 0.18829 0.012185 0.34412v1.5518z" fill-opacity=".78039" stroke-linecap="round" stroke-width=".11793"/>
5
- <path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#4271ae" stroke-width="1.1186"/>
6
- <path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#4271ae" stroke-width="1.1186"/>
7
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m3.1785 5.5562q-0.46361 0-0.89912-0.17561-0.42848-0.17561-0.75863-0.49873l0.47766-0.55492q0.24585 0.2318 0.56195 0.37931 0.3161 0.14049 0.63219 0.14049 0.39336 0 0.59707-0.16156t0.20371-0.42848q0-0.14049-0.056194-0.23883-0.04917-0.098341-0.14751-0.16858-0.091316-0.077267-0.22478-0.14049-0.12644-0.063219-0.28097-0.12644l-0.63219-0.27395q-0.16858-0.070243-0.33717-0.17561-0.16156-0.10537-0.29502-0.25288t-0.21775-0.34419q-0.077268-0.19668-0.077268-0.44956 0-0.27395 0.11239-0.50575 0.11941-0.23883 0.32312-0.41444t0.48468-0.27395q0.288-0.098341 0.62517-0.098341 0.40039 0 0.77268 0.16156 0.37229 0.15454 0.63921 0.42146l-0.41444 0.5198q-0.22478-0.18263-0.46361-0.288t-0.53385-0.10537q-0.33014 0-0.52683 0.14751-0.19668 0.14049-0.19668 0.39336 0 0.13346 0.056194 0.2318 0.063219 0.091316 0.16156 0.16858 0.10537 0.070244 0.23883 0.13346 0.13346 0.056194 0.27395 0.11239l0.62516 0.2599q0.20371 0.084291 0.37229 0.19668 0.16858 0.11239 0.288 0.2599 0.12644 0.14751 0.19668 0.34419 0.070244 0.18966 0.070244 0.44253 0 0.28097-0.11239 0.52683-0.11239 0.24585-0.33015 0.43551-0.21073 0.18263-0.5198 0.29502-0.30205 0.10536-0.68838 0.10536zm-2.3848-2.6458h4.7625v0.52917h-4.7625z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".52683"/>
4
- </svg>
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m3.1782 5.2917q-0.4121 0-0.79922-0.1561-0.38087-0.1561-0.67434-0.44331l0.42459-0.49326q0.21853 0.20604 0.49951 0.33716 0.28098 0.12488 0.56195 0.12488 0.34965 0 0.53073-0.14361 0.18108-0.14361 0.18108-0.38087 0-0.12488-0.04995-0.21229-0.043707-0.087414-0.13112-0.14985-0.08117-0.068682-0.1998-0.12488-0.11239-0.056194-0.24975-0.11239l-0.56195-0.24351q-0.14985-0.062438-0.29971-0.1561-0.14361-0.093662-0.26224-0.22478-0.11863-0.13112-0.19356-0.30595-0.068682-0.17483-0.068682-0.39961 0-0.24351 0.099902-0.44955 0.10614-0.21229 0.28722-0.36839 0.18108-0.1561 0.43083-0.24351 0.256-0.087414 0.55571-0.087414 0.3559 0 0.68683 0.14361 0.33092 0.13737 0.56819 0.37463l-0.36839 0.46204q-0.1998-0.16234-0.4121-0.256-0.21229-0.093662-0.47453-0.093662-0.29346 0-0.46829 0.13112-0.17483 0.12488-0.17483 0.34965 0 0.11863 0.04995 0.20604 0.056194 0.08117 0.14361 0.14985 0.093662 0.062439 0.21229 0.11863 0.11863 0.04995 0.24351 0.099902l0.5557 0.23102q0.18108 0.074925 0.33092 0.17483 0.14985 0.099902 0.256 0.23102 0.11239 0.13112 0.17483 0.30595 0.062439 0.16859 0.062439 0.39336 0 0.24975-0.099902 0.46829-0.099902 0.21853-0.29347 0.38712-0.18732 0.16234-0.46204 0.26224-0.26849 0.093653-0.61189 0.093653zm-2.1198-2.3518h4.2333v0.47037h-4.2333z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".46829"/>
4
- <path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#4271ae" stroke-width="1.1186"/>
5
- <path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#4271ae" stroke-width="1.1186"/>
6
- </svg>
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m2.2992 3.0475-0.13958 0.48548h1.0134l-0.13958-0.48548q-0.097092-0.31556-0.18812-0.64932-0.084958-0.33377-0.16992-0.66146h-0.024273q-0.084958 0.33377-0.16992 0.66752-0.084958 0.32769-0.18205 0.64325zm-1.329 2.1118 1.2926-3.9688h0.82531l1.2926 3.9688h-0.74035l-0.30949-1.0741h-1.3351l-0.30949 1.0741z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".45513"/>
4
- <path d="m3.9467 5.1593v-1.9843h0.62795q0.15323 0 0.27942 0.027308 0.12919 0.024273 0.22233 0.081922 0.09615 0.054615 0.14722 0.14868 0.054082 0.094058 0.054082 0.23059 0 0.14261-0.072107 0.26397-0.072108 0.12137-0.2013 0.16688v0.012137q0.16224 0.036409 0.2674 0.15474 0.10816 0.1153 0.10816 0.31556 0 0.14868-0.057086 0.2579-0.057085 0.10922-0.15923 0.18205-0.099158 0.072819-0.23736 0.10922-0.13821 0.033375-0.30045 0.033375zm0.34852-1.1651h0.24938q0.20732 0 0.29744-0.075853 0.093142-0.075854 0.093142-0.20328 0-0.14564-0.09615-0.20632-0.09615-0.060682-0.28843-0.060682h-0.25538zm0 0.89208h0.29445q0.21632 0 0.3335-0.078888 0.11718-0.081923 0.11718-0.2488 0-0.15778-0.11418-0.22757-0.11418-0.07282-0.33651-0.07282h-0.29445z" stroke-opacity=".78039" stroke-width=".22645"/>
5
- <path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#4271ae" stroke-width="1.1186"/>
6
- <path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#4271ae" stroke-width="1.1186"/>
7
- </svg>
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m3.9467 3.175v-1.9843h0.62793q0.15324 0 0.27942 0.027307 0.12919 0.024274 0.22233 0.081922 0.09615 0.054615 0.14722 0.14868 0.054082 0.094058 0.054082 0.23059 0 0.14261-0.072107 0.26397-0.072107 0.12137-0.2013 0.16688v0.012138q0.16224 0.03641 0.2674 0.15475 0.10816 0.1153 0.10816 0.31556 0 0.14868-0.057086 0.2579-0.057085 0.10922-0.15923 0.18204-0.099142 0.072818-0.23735 0.10922-0.13821 0.033375-0.30045 0.033375zm0.34853-1.1651h0.24937q0.20732 0 0.29744-0.075853 0.093141-0.075853 0.093141-0.20328 0-0.14564-0.09615-0.20632-0.09615-0.060682-0.28843-0.060682h-0.25538zm0 0.89208h0.29443q0.21632 0 0.3335-0.078888 0.11718-0.081923 0.11718-0.24879 0-0.15777-0.11418-0.22756-0.11418-0.07282-0.33651-0.07282h-0.29443z" stroke-opacity=".78039" stroke-width=".25475"/>
4
- <path d="m2.2992 3.0475-0.13958 0.48548h1.0134l-0.13958-0.48548q-0.097092-0.31556-0.18812-0.64932-0.084958-0.33377-0.16992-0.66146h-0.024273q-0.084958 0.33377-0.16992 0.66753-0.084958 0.32769-0.18205 0.64325zm-1.329 2.1118 1.2926-3.9688h0.82531l1.2926 3.9688h-0.74035l-0.30949-1.0741h-1.3351l-0.30949 1.0741z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".45513"/>
5
- <path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#4271ae" stroke-width="1.1186"/>
6
- <path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#4271ae" stroke-width="1.1186"/>
7
- </svg>
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.1" viewBox="0 0 6.35 6.35" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m3.1778 4.846q-0.32417 0-0.58578-0.090994-0.25592-0.096685-0.4436-0.30143-0.18199-0.20474-0.28436-0.52323-0.096684-0.32417-0.096684-0.78483v-2.0872h0.65971v2.1383q0 0.30143 0.051184 0.51185 0.056872 0.20474 0.15355 0.32985 0.10237 0.12512 0.23887 0.18199 0.13649 0.051184 0.30711 0.051184 0.17061 0 0.3128-0.051184 0.14218-0.056873 0.24455-0.18199 0.10237-0.12512 0.15924-0.32985 0.056873-0.21043 0.056873-0.51185v-2.1383h0.63128v2.0872q0 0.46067-0.096685 0.78483-0.096684 0.31848-0.28436 0.52323-0.18199 0.20474-0.4436 0.30143-0.25592 0.090994-0.5801 0.090994z" fill-opacity=".78039" stroke-opacity=".78039" stroke-width=".42654"/>
4
- <rect x="1.5875" y="5.0271" width="3.175" height=".39688" fill-opacity=".78039" stroke-width=".91291"/>
5
- <path d="m4.9555 5.5562v-0.43195h0.54619v-3.8986h-0.54619v-0.43195h1.1299v4.7624z" fill="#4271ae" stroke-width="1.1186"/>
6
- <path d="m0.26458 5.5562v-4.7624h1.1299v0.43195h-0.54083v3.8986h0.54083v0.43195z" fill="#4271ae" stroke-width="1.1186"/>
7
- </svg>
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect x="8" y="2" width="8" height="8" rx="1" ry="1" fill="none" stroke="#4271ae" stroke-linecap="round" stroke-width="2"/>
4
- <rect x="8" y="14" width="8" height="8" rx="1" ry="1" fill="none" stroke="#4271ae" stroke-linecap="round" stroke-width="2"/>
5
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m19.591 11.061c-0.92437-0.92437-2.4228-0.92437-3.3471 0l-1.8771 1.8771v-8.5714c0-1.3078-1.0605-2.3671-2.3671-2.3671-1.3078 0-2.3671 1.0593-2.3671 2.3671v8.5714l-1.8771-1.8771c-0.92437-0.92437-2.4228-0.92437-3.3471 0-0.92437 0.92437-0.92437 2.4228 0 3.3471l7.5914 7.5914 7.5914-7.5914c0.92437-0.92437 0.92437-2.4216 0-3.3471z" fill-opacity=".78" stroke-width="1.1836"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m13.25 3.5625c-0.32 0-0.64 0.12125-0.88375 0.365-0.24375 0.245-0.36625 0.565-0.36625 0.885v3.1988c-5.625 0.6225-10 5.3862-10 11.176v1.25c2.8062-4.2788 6.5625-4.9 10-4.9862v3.1112c0 0.31875 0.1225 0.64 0.36625 0.88375s0.56375 0.36625 0.88375 0.36625 0.64-0.1225 0.88375-0.36625l7.8662-7.7588-7.8662-7.76c-0.24375-0.24375-0.56375-0.365-0.88375-0.365z" fill="#718c00" stroke-width="1.25"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m15.75 2c-0.69125 0-1.25 0.56-1.25 1.25s0.55875 1.25 1.25 1.25h1.9825l-4.1162 4.1162c-0.48875 0.48875-0.48875 1.2788 0 1.7675 0.24375 0.24375 0.56375 0.36625 0.88375 0.36625s0.64-0.1225 0.88375-0.36625l4.1162-4.1162v1.9825c0 0.69 0.55875 1.25 1.25 1.25s1.25-0.56 1.25-1.25v-6.25zm-7.1338 11.616-4.1162 4.1162v-1.9825c0-0.69-0.55875-1.25-1.25-1.25s-1.25 0.56-1.25 1.25v6.2488h1.245l5.005 0.00125c0.69 0 1.25-0.56 1.25-1.25s-0.55875-1.25-1.25-1.25h-1.9825l4.1162-4.115c0.48875-0.48875 0.48875-1.2788 0-1.7675s-1.2788-0.49-1.7675-0.0012zm-2.8662-1.6162c0.69 0 1.25-0.56 1.25-1.25v-3.75h3.75c0.69125 0 1.25-0.56 1.25-1.25s-0.55875-1.25-1.25-1.25h-6.2488l-0.00125 6.25c0 0.69 0.55875 1.25 1.25 1.25zm12.5 0c-0.69125 0-1.25 0.56-1.25 1.25v3.75h-3.75c-0.69125 0-1.25 0.56-1.25 1.25s0.55875 1.25 1.25 1.25h6.25v-6.25c0-0.69-0.55875-1.25-1.25-1.25z" fill="#4271ae" stroke-width="1.25"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m4.6515 13.25c-0.69123 0-1.25 0.56001-1.25 1.25 0 0.69001 0.55873 1.25 1.25 1.25h1.8312l-4.1161 4.1163c-0.48873 0.48876-0.48873 1.2788 0 1.7675 0.24374 0.24375 0.56373 0.36626 0.88372 0.36626s0.63998-0.1225 0.88372-0.36626l4.2674-4.2676v2.1338c0 0.69001 0.55873 1.25 1.25 1.25 0.69123 0 1.0987-0.56001 1.0987-1.25v-6.2501zm1.0987-2.5c0.68998 0 1.25-0.56001 1.25-1.25v-2.5h2.4999c0.69123 0 1.25-0.56001 1.25-1.25s-0.55873-1.25-1.25-1.25h-4.9986l-0.00125 5.0001c0 0.69001 0.55873 1.25 1.25 1.25zm12.5 2.5c-0.69123 0-1.25 0.56001-1.25 1.25v2.5h-2.4999c-0.69123 0-1.25 0.56001-1.25 1.25s0.55873 1.25 1.25 1.25h4.9998v-5.0001c0-0.69001-0.55873-1.25-1.25-1.25zm1.6162-10.884-4.1161 4.1163v-1.9825c0-0.69001-0.55873-1.25-1.25-1.25-0.69123 0-1.25 0.56001-1.25 1.25v6.2501h6.2498c0.68998 0 1.25-0.56001 1.25-1.25 0-0.69001-0.55873-1.25-1.25-1.25h-1.9824l4.1161-4.1151c0.48874-0.48876 0.48874-1.2788 0-1.7675-0.48874-0.48876-1.2787-0.49001-1.7674-0.00125z" fill="#4271ae" stroke-width="1.25"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m17 6.4446h-2.3178l1.4367-1.4367c0.43444-0.43444 0.43444-1.1367 0-1.5711-0.43444-0.43444-1.1367-0.43444-1.5711 0l-4.1189 4.1189 4.1189 4.1189c0.21667 0.21667 0.50111 0.32556 0.78556 0.32556 0.28444 0 0.56889-0.10889 0.78556-0.32556 0.43444-0.43444 0.43444-1.1367 0-1.5711l-1.4367-1.4367h2.3178c1.5322 0 2.7778 1.4956 2.7778 3.3333s-1.4956 3.3333-3.3333 3.3333c-0.61444 0-1.1111 0.49778-1.1111 1.1111 0 0.61333 0.49667 1.1111 1.1111 1.1111 3.0633 0 5.5556-2.4922 5.5556-5.5556 0-3.0633-2.2433-5.5556-5-5.5556zm-9.1189 5.8811c-0.43444 0.43444-0.43444 1.1367 0 1.5711l1.4367 1.4367h-2.3178c-1.5322 0-2.7778-1.4956-2.7778-3.3333s1.4956-3.3333 3.3333-3.3333c0.61444 0 1.1111-0.49778 1.1111-1.1111 0-0.61333-0.49667-1.1111-1.1111-1.1111-3.0633 0-5.5556 2.4922-5.5556 5.5556 0 3.0633 2.2433 5.5556 5 5.5556h2.3178l-1.4367 1.4367c-0.43444 0.43444-0.43444 1.1367 0 1.5711 0.21667 0.21667 0.50111 0.32556 0.78556 0.32556 0.28444 0 0.56889-0.10889 0.78556-0.32556l4.1189-4.1189-4.1189-4.1189c-0.43444-0.43444-1.1367-0.43444-1.5711 0z" fill-opacity=".78039" stroke-width="1.1111"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m20 0h-14.667c-0.35333 0-0.69333 0.14-0.94267 0.39067l-4 4-0.076 0.082667c-0.18533 0.22-0.3 0.49733-0.31333 0.8l-0.0013333 0.070666v14.656c0 2.2053 1.7947 4 4 4h12c1.7387 0 3.2213-1.1147 3.772-2.6667h0.89467c1.8693 0 3.3333-1.756 3.3333-4v-13.333c0-2.2053-1.7947-4-4-4zm-16 21.333c-0.73467 0-1.3333-0.59733-1.3333-1.3333v-13.333h2.6667v14.667zm13.333-1.3333c0 0.736-0.59867 1.3333-1.3333 1.3333h-9.3333v-14.667h9.3333c0.73467 0 1.3333 0.59733 1.3333 1.3333zm4-2.6667c0 0.82667-0.432 1.3333-0.66667 1.3333h-0.66667v-10.667c0-2.2053-1.7947-4-4-4h-11.448l1.3333-1.3333h14.115c0.73467 0 1.3333 0.59733 1.3333 1.3333z" fill-opacity=".72157" stroke-width="1.3333"/>
4
- </svg>
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m6.9043 4.2227-1.1113 1.1113h9.541c1.8378 0 3.332 1.4943 3.332 3.332v8.8887h0.55664c0.19556-1e-6 0.55469-0.42049 0.55469-1.1094v-11.111c0-0.61333-0.49911-1.1113-1.1113-1.1113h-11.762zm-1.582 3.332v10.912h1.123v-10.912h-1.123zm2.2324 0v10.912h8.8906v-9.8008c1e-6 -0.61333-0.4991-1.1113-1.1113-1.1113h-7.7793z" fill="#aeaeae" opacity=".95"/>
4
- <path d="m4.2227 7.5547v11.111c1e-7 0.61333 0.49911 1.1113 1.1113 1.1113h1.1113v-12.223h-2.2227zm3.332 0v12.223h7.7793c0.61222 0 1.1113-0.498 1.1113-1.1113v-10c1e-6 -0.61333-0.4991-1.1113-1.1113-1.1113h-7.7793z" fill="#c82829" opacity=".95"/>
5
- <path d="m18.667 2h-12.222c-0.29444 0-0.57778 0.11667-0.78556 0.32556l-3.3333 3.3333-0.063333 0.068889c-0.15444 0.18333-0.25 0.41444-0.26111 0.66667l-0.0011115 0.058889v12.213c0 1.8378 1.4956 3.3333 3.3333 3.3333h10c1.4489 0 2.6844-0.92889 3.1433-2.2222h0.74556c1.5578 0 2.7778-1.4633 2.7778-3.3333v-11.111c0-1.8378-1.4956-3.3333-3.3333-3.3333zm-13.333 17.778c-0.61222 0-1.1111-0.49778-1.1111-1.1111v-11.111h2.2222v12.222zm11.111-1.1111c0 0.61333-0.49889 1.1111-1.1111 1.1111h-7.7778v-12.222h7.7778c0.61222 0 1.1111 0.49778 1.1111 1.1111zm3.3333-2.2222c0 0.68889-0.36 1.1111-0.55556 1.1111h-0.55556v-8.8889c0-1.8378-1.4956-3.3333-3.3333-3.3333h-9.54l1.1111-1.1111h11.762c0.61222 0 1.1111 0.49778 1.1111 1.1111z" fill="#8d1919" stroke-width="1.1111"/>
6
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m16.203 2h-8.4065c-1.738 0-3.1524 1.4144-3.1524 3.1524v14.711c0 0.54012 0.10928 0.99406 0.32365 1.3503 0.59265 0.9825 1.9072 1.0592 2.9559 0.0084l3.3332-3.3332c0.39405-0.393 1.0918-0.393 1.4858 0l3.3332 3.3332c0.51594 0.51595 1.0529 0.7776 1.5972 0.7776 0.83749 0 1.6823-0.66096 1.6823-2.1363v-14.711c0-1.738-1.4144-3.1524-3.1524-3.1524zm-8.4065 2.1016h8.4065c0.57899 0 1.0508 0.47181 1.0508 1.0508v10.408l-2.5755-2.3612c-1.4774-1.3545-3.8806-1.3534-5.3581 0l-2.5745 2.3612v-10.408c0-0.57899 0.47181-1.0508 1.0508-1.0508zm6.432 12.302c-0.59371-0.59371-1.385-0.92051-2.2288-0.92051-0.8438 0-1.6351 0.32785-2.2288 0.92051l-3.0253 3.0253v-2.4421l3.2848-3.0116c1.0855-0.99511 2.8519-0.99511 3.9374 0l3.2859 3.0116v2.4421z" fill="#4271ae" stroke-width="1.0508"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m19.778 5.5378v-0.20444c0-1.8411-1.4922-3.3333-3.3333-3.3333-1.8411 0-3.3333 1.4922-3.3333 3.3333h-2.2222c0-1.8411-1.4922-3.3333-3.3333-3.3333-1.8411 0-3.3333 1.4922-3.3333 3.3333v0.20444c-1.29 0.46111-2.2222 1.6822-2.2222 3.1289v10c0 1.8378 1.4956 3.3333 3.3333 3.3333h13.333c1.8378 0 3.3333-1.4956 3.3333-3.3333v-10c0-1.4467-0.93222-2.6678-2.2222-3.1289zm-4.4444-0.20444c0-0.61333 0.49667-1.1111 1.1111-1.1111 0.61444 0 1.1111 0.49778 1.1111 1.1111v2.2222c0 0.61333-0.49667 1.1111-1.1111 1.1111-0.61444 0-1.1111-0.49778-1.1111-1.1111zm-8.8889 0c0-0.61333 0.49667-1.1111 1.1111-1.1111 0.61444 0 1.1111 0.49778 1.1111 1.1111v2.2222c0 0.61333-0.49667 1.1111-1.1111 1.1111-0.61444 0-1.1111-0.49778-1.1111-1.1111zm13.333 13.333c0 0.61222-0.49778 1.1111-1.1111 1.1111h-13.333c-0.61333 0-1.1111-0.49889-1.1111-1.1111v-6.6667h15.556z" fill="#4271ae" stroke-width="1.1111"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m20.121 3.8786c-1.17-1.1715-3.0721-1.1715-4.2421 0l-3.8791 3.8791-3.8791-3.8791c-1.17-1.1715-3.0721-1.1715-4.2421 0-1.1715 1.1715-1.1715 3.0706 0 4.2421l3.8776 3.8791-3.8776 3.8791c-1.1715 1.1715-1.1715 3.0706 0 4.2421 0.58501 0.58651 1.353 0.87902 2.121 0.87902s1.536-0.29251 2.121-0.87902l3.8791-3.8791 3.8791 3.8791c0.58501 0.58651 1.353 0.87902 2.121 0.87902 0.76802 0 1.536-0.29251 2.121-0.87902 1.1715-1.1715 1.1715-3.0706 0-4.2421l-3.8776-3.8791 3.8776-3.8791c1.1715-1.1715 1.1715-3.0706 0-4.2421z" fill-opacity=".78039" stroke-width="1.5"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m12 2c-5.5138 0-10 4.4862-10 10s4.4862 10 10 10 10-4.4862 10-10-4.4862-10-10-10zm-6.25 10c0-1.04 0.28-2.005 0.73-2.8688l8.3888 8.3888c-0.86375 0.45-1.8288 0.73-2.8688 0.73-3.4462 0-6.25-2.8038-6.25-6.25zm11.77 2.8688-8.3888-8.3888c0.86375-0.45 1.8288-0.73 2.8688-0.73 3.4462 0 6.25 2.8038 6.25 6.25 0 1.04-0.28 2.005-0.73 2.8688z" fill="#c82829" stroke-width="1.25"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m14.526 2.5261c0-1.3958-1.1318-2.5264-2.5264-2.5264s-2.5264 1.1306-2.5264 2.5264v15.158h5.0528zm6.3159 5.0528c0-1.3958-1.1318-2.5264-2.5264-2.5264-1.3946 0-2.5264 1.1306-2.5264 2.5264v10.106h5.0527zm-12.632 3.7896c0-1.3958-1.1318-2.5264-2.5264-2.5264s-2.5264 1.1306-2.5264 2.5264v6.3159h5.0527zm12.632 10.105h-17.685c-0.69854 0-1.2632 0.56464-1.2632 1.2632 0 0.69854 0.56464 1.2632 1.2632 1.2632h17.685c0.69854 0 1.2632-0.56464 1.2632-1.2632 0-0.69854-0.56464-1.2632-1.2632-1.2632z" fill-opacity=".72" stroke-width="1.2632"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m3.7531 6.4345c-1.0042 1.0029-1.0042 2.6332 0 3.6361l8.2467 8.248 8.2467-8.248c0.50272-0.50144 0.75344-1.1597 0.75344-1.818 0-0.6583-0.25072-1.3166-0.75344-1.818-1.0042-1.0042-2.6319-1.0042-3.6361 0l-4.6107 4.6094-4.6107-4.6094c-1.0042-1.0042-2.6319-1.0042-3.6361 0z" fill="#4271ae" stroke-width="1.2857"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m17.565 3.7531c-1.0029-1.0042-2.6332-1.0042-3.6361 0l-8.248 8.2467 8.248 8.2467c0.50144 0.50272 1.1597 0.75344 1.818 0.75344 0.6583 0 1.3166-0.25072 1.818-0.75344 1.0042-1.0042 1.0042-2.6319 0-3.6361l-4.6094-4.6107 4.6094-4.6107c1.0042-1.0042 1.0042-2.6319 0-3.6361z" fill="#4271ae" stroke-width="1.2857"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m6.4345 3.7531c1.0029-1.0042 2.6332-1.0042 3.6361 0l8.248 8.2467-8.248 8.2467c-0.50144 0.50272-1.1597 0.75344-1.818 0.75344-0.6583 0-1.3166-0.25072-1.818-0.75344-1.0042-1.0042-1.0042-2.6319 0-3.6361l4.6094-4.6107-4.6094-4.6107c-1.0042-1.0042-1.0042-2.6319 0-3.6361z" fill="#4271ae" stroke-width="1.2857"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m20.247 17.565c1.0042-1.0029 1.0042-2.6332 0-3.6361l-8.2467-8.248-8.2467 8.248c-0.50272 0.50144-0.75344 1.1597-0.75344 1.818 0 0.6583 0.25072 1.3166 0.75344 1.818 1.0042 1.0042 2.6319 1.0042 3.6361 0l4.6107-4.6094 4.6107 4.6094c1.0042 1.0042 2.6319 1.0042 3.6361 0z" fill="#4271ae" stroke-width="1.2857"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m8.3269 20.077 0.64511 2.3712c0.23127 0.8528 1.2033 1.552 2.1596 1.552h1.7388c0.95636 0 1.9284-0.6992 2.1596-1.552l0.64511-2.3712c0.23126-0.8528 1.1737-1.3536 2.0918-1.1104l2.5509 0.672c0.91984 0.2416 2.0657-0.1824 2.5422-0.9456l0.86942-1.3872c0.47644-0.7632 0.30777-1.8864-0.3808-2.4992l-1.9092-1.6976c-0.68858-0.6128-0.68858-1.6128 0.0017-2.224l1.9058-1.6976c0.68862-0.6112 0.85902-1.7344 0.38258-2.4976l-0.8712-1.3872c-0.47818-0.7632-1.6223-1.1872-2.5404-0.9456l-2.5509 0.672c-0.91984 0.2416-1.8605-0.2576-2.0936-1.1104l-0.64337-2.368c-0.23126-0.8512-1.2033-1.5504-2.1596-1.5504h-1.7388c-0.95636 0-1.9284 0.6992-2.1596 1.552l-0.64337 2.368c-0.233 0.8528-1.1737 1.3536-2.0936 1.112l-2.5509-0.672c-0.91984-0.2432-2.0657 0.1824-2.5422 0.944l-0.86942 1.3872c-0.47644 0.7632-0.30777 1.8864 0.38254 2.4992l1.9058 1.6944c0.68684 0.6128 0.68684 1.6128 0 2.2256l-1.9092 1.6976c-0.68684 0.6128-0.85898 1.736-0.3808 2.4992l0.87115 1.3872c0.47644 0.7632 1.6223 1.1872 2.5422 0.9456l2.5509-0.672c0.9181-0.2448 1.8605 0.256 2.0918 1.1088zm3.6741-11.277c1.9197 0 3.4777 1.432 3.4777 3.2 0 1.7664-1.558 3.2-3.4777 3.2-1.9197 0-3.4777-1.4336-3.4777-3.2 0-1.768 1.558-3.2 3.4777-3.2z" fill-opacity=".72157" stroke-width="1.668"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m12 0c-6.6285 0-12 5.373-12 12s5.3715 12 12 12 12-5.373 12-12-5.3715-12-12-12zm5.5605 15.44c0.5865 0.5865 0.5865 1.5345 0 2.121-0.2925 0.2925-0.6765 0.4395-1.0605 0.4395s-0.768-0.147-1.0605-0.4395l-3.4395-3.4395-3.4395 3.4395c-0.2925 0.2925-0.6765 0.4395-1.0605 0.4395s-0.768-0.147-1.0605-0.4395c-0.5865-0.5865-0.5865-1.5345 0-2.121l3.4395-3.4395-3.4395-3.4395c-0.5865-0.5865-0.5865-1.5345 0-2.121s1.5345-0.5865 2.121 0l3.4395 3.4395 3.4395-3.4395c0.5865-0.5865 1.5345-0.5865 2.121 0s0.5865 1.5345 0 2.121l-3.4395 3.4395z" fill="#c82829" stroke-width="1.5"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m12 2c-5.5238 0-10 4.4775-10 10s4.4762 10 10 10 10-4.4775 10-10-4.4762-10-10-10zm4.6338 12.866c0.48875 0.48875 0.48875 1.2788 0 1.7675-0.24375 0.24375-0.56375 0.36625-0.88375 0.36625s-0.64-0.1225-0.88375-0.36625l-2.8662-2.8662-2.8662 2.8662c-0.24375 0.24375-0.56375 0.36625-0.88375 0.36625s-0.64-0.1225-0.88375-0.36625c-0.48875-0.48875-0.48875-1.2788 0-1.7675l2.8662-2.8662-2.8662-2.8662c-0.48875-0.48875-0.48875-1.2788 0-1.7675s1.2788-0.48875 1.7675 0l2.8662 2.8662 2.8662-2.8662c0.48875-0.48875 1.2788-0.48875 1.7675 0s0.48875 1.2788 0 1.7675l-2.8662 2.8662z" fill="#c82829" stroke-width="1.25"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m24 7.3333-3.6909-3.476c-0.76122-0.72133-1.9392-1.1907-2.998-1.1907h-3.9093v-0.66667c0-1.104-0.9006-2-2.0103-2-1.1097 0-2.0103 0.896-2.0103 2v0.66667h-4.6906c-2.5866 0-4.6906 2.0933-4.6906 4.6667 0 1.8613 1.1097 3.4613 2.7018 4.2093l-2.4713 2.4573 3.4322 3.4147c0.7639 0.76 1.9567 1.252 3.0395 1.252h2.9484l1.0721 5.3333h1.3402l1.0721-5.3333h3.6185c2.5879 0 4.6906-2.0933 4.6906-4.6667 0-1.2027-0.47308-2.2907-1.2263-3.1187l0.09649-0.07467zm-7.2477 8.6667h-10.051c-0.36855 0-0.88184-0.21067-1.1445-0.472l-1.5358-1.528 1.5358-1.528c0.26134-0.26 0.77329-0.472 1.1445-0.472h10.051c1.1097 0 2.0103 0.896 2.0103 2s-0.9006 2-2.0103 2zm1.7141-7.1253c-0.2667 0.25333-0.78535 0.45867-1.1552 0.45867h-12.621c-1.1097 0-2.0103-0.896-2.0103-2s0.9006-2 2.0103-2h12.621c0.36989 0 0.88854 0.20533 1.1552 0.45867l1.6364 1.5413z" fill="#4271ae" stroke-width="1.3368"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m15.667 12h-2.4444v-2.4444c0-0.67589-0.54633-1.2222-1.2222-1.2222s-1.2222 0.54633-1.2222 1.2222v2.4444h-2.4444c-0.67589 0-1.2222 0.54633-1.2222 1.2222s0.54633 1.2222 1.2222 1.2222h2.4444v2.4444c0 0.67589 0.54633 1.2222 1.2222 1.2222s1.2222-0.54633 1.2222-1.2222v-2.4444h2.4444c0.67589 0 1.2222-0.54633 1.2222-1.2222s-0.54633-1.2222-1.2222-1.2222zm5.753-5.753-4.8889-4.8889c-0.22856-0.22978-0.539-0.35811-0.86411-0.35811h-9.7778c-2.0216 0-3.6667 1.6451-3.6667 3.6667v14.667c0 2.0216 1.6451 3.6667 3.6667 3.6667h12.222c2.0216 0 3.6667-1.6451 3.6667-3.6667v-12.222c0-0.32511-0.12833-0.63556-0.35811-0.86411zm-2.5923 0.86411h-1.3273c-1.0108 0-1.8333-0.82256-1.8333-1.8333v-1.3273zm-0.71622 13.444h-12.222c-0.67467 0-1.2222-0.54756-1.2222-1.2222v-14.667c0-0.67467 0.54756-1.2222 1.2222-1.2222h8.5556v1.8333c0 1.6854 1.3701 3.0556 3.0556 3.0556h1.8333v11c0 0.67467-0.54756 1.2222-1.2222 1.2222z" fill-opacity=".78039" stroke-width="1.2222"/>
4
- </svg>
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m5.8889 3.4444c-0.67344 0-1.2222 0.54878-1.2222 1.2222v14.667c0 0.67344 0.54878 1.2222 1.2222 1.2222h12.222c0.67345 0 1.2222-0.54878 1.2222-1.2222v-14.667c0-0.67344-0.54878-1.2222-1.2222-1.2222zm1.2222 2.4444h9.7778c0.33733 0 0.61111 0.27378 0.61111 0.61111s-0.27378 0.61111-0.61111 0.61111h-9.7778c-0.33733 0-0.61111-0.27378-0.61111-0.61111 0-0.33733 0.27378-0.61111 0.61111-0.61111zm0 3.6667h9.7778c0.33733 0 0.61111 0.27378 0.61111 0.61111 0 0.33733-0.27378 0.61111-0.61111 0.61111h-9.7778c-0.33733 0-0.61111-0.27378-0.61111-0.61111 0-0.33733 0.27378-0.61111 0.61111-0.61111zm0 3.6667h9.7778c0.33733 0 0.61111 0.27378 0.61111 0.61111 0 0.33733-0.27378 0.61111-0.61111 0.61111h-9.7778c-0.33733 0-0.61111-0.27378-0.61111-0.61111 0-0.33733 0.27378-0.61111 0.61111-0.61111zm0 3.6667h9.7778c0.33733 0 0.61111 0.27378 0.61111 0.61111s-0.27378 0.61111-0.61111 0.61111h-9.7778c-0.33733 0-0.61111-0.27378-0.61111-0.61111s0.27378-0.61111 0.61111-0.61111z" fill="#ededed" opacity=".95"/>
4
- <path d="m5.8887 1c-2.0216 0-3.666 1.6445-3.666 3.666v14.668c1e-7 2.0216 1.6445 3.666 3.666 3.666h12.223c2.0216 0 3.666-1.6445 3.666-3.666v-14.668c0-2.0216-1.6445-3.666-3.666-3.666zm0 2.4453h12.223c0.67345 0 1.2227 0.54726 1.2227 1.2207v14.668c0 0.67344-0.54921 1.2207-1.2227 1.2207h-12.223c-0.67344-1e-6 -1.2227-0.54726-1.2227-1.2207v-14.668c0-0.67344 0.54921-1.2207 1.2227-1.2207zm1.2227 2.4434c-0.33733 0-0.61133 0.27399-0.61133 0.61133s0.27399 0.61133 0.61133 0.61133h9.7773c0.33733 0 0.61133-0.27399 0.61133-0.61133s-0.27399-0.61133-0.61133-0.61133zm0 3.666c-0.33733 0-0.61133 0.274-0.61133 0.61133 0 0.33733 0.27399 0.61133 0.61133 0.61133h9.7773c0.33733 0 0.61133-0.27399 0.61133-0.61133 0-0.33733-0.27399-0.61133-0.61133-0.61133zm0 3.668c-0.33733 0-0.61133 0.27399-0.61133 0.61133 0 0.33733 0.27399 0.61133 0.61133 0.61133h9.7773c0.33733 1e-6 0.61133-0.274 0.61133-0.61133 0-0.33733-0.27399-0.61133-0.61133-0.61133zm0 3.666c-0.33733 0-0.61133 0.27399-0.61133 0.61133s0.27399 0.61133 0.61133 0.61133h9.7773c0.33733 0 0.61133-0.27399 0.61133-0.61133s-0.27399-0.61133-0.61133-0.61133z" fill="#333" stroke-width="1.2222"/>
5
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m21.42 6.247-4.8889-4.8889c-0.22856-0.22978-0.539-0.35811-0.86411-0.35811h-9.7778c-2.0216 0-3.6667 1.6451-3.6667 3.6667v14.667c0 2.0216 1.6451 3.6667 3.6667 3.6667h12.222c2.0216 0 3.6667-1.6451 3.6667-3.6667v-12.222c0-0.32511-0.12833-0.63556-0.35811-0.86411zm-2.5923 0.86411h-1.3273c-1.0108 0-1.8333-0.82256-1.8333-1.8333v-1.3273zm-0.71622 13.444h-12.222c-0.67467 0-1.2222-0.54756-1.2222-1.2222v-14.667c0-0.67467 0.54756-1.2222 1.2222-1.2222h8.5556v1.8333c0 1.6854 1.3701 3.0556 3.0556 3.0556h1.8333v11c0 0.67467-0.54756 1.2222-1.2222 1.2222z" fill-opacity=".78039" stroke-width="1.2222"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m6.8889 16.889v0.61111c2.0668-3.1509 4.4-4.8314 7.3333-4.8889v3.6667c0 0.67344 0.62456 1.2222 1.397 1.2222 0.44489 0 0.825-0.19311 1.0792-0.47789 2.3626-2.4799 7.3016-7.4666 7.3016-7.4666s-4.939-4.9891-7.3028-7.5008c-0.25422-0.25056-0.63311-0.44367-1.078-0.44367-0.77244 0-1.397 0.54633-1.397 1.2222v3.6667c-5.6956 0-7.3333 5.9534-7.3333 10.389zm-3.6667 5.5h17.111c0.67589 0 1.2222-0.54756 1.2222-1.2222v-7.3896c-0.81156 0.82622-1.6671 1.7026-2.4444 2.5019v3.6654h-14.667v-14.667h8.5556v-2.4444h-9.7778c-0.67589 0-1.2222 0.54756-1.2222 1.2222v17.111c0 0.67467 0.54633 1.2222 1.2222 1.2222z" fill-opacity=".72157" stroke-width="1.2222"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m6.4444 16.444v0.55556c1.8789-2.8644 4-4.3922 6.6667-4.4444v3.3333c0 0.61222 0.56778 1.1111 1.27 1.1111 0.40444 0 0.75-0.17556 0.98111-0.43444 2.1478-2.2544 6.6378-6.7878 6.6378-6.7878s-4.49-4.5356-6.6389-6.8189c-0.23111-0.22778-0.57556-0.40333-0.98-0.40333-0.70222 0-1.27 0.49667-1.27 1.1111v3.3333c-5.1778 0-6.6667 5.4122-6.6667 9.4444zm-3.3333 5h15.556c0.61444 0 1.1111-0.49778 1.1111-1.1111v-6.7178c-0.73778 0.75111-1.5156 1.5478-2.2222 2.2744v3.3322h-13.333v-13.333h7.7778v-2.2222h-8.8889c-0.61444 0-1.1111 0.49778-1.1111 1.1111v15.556c0 0.61333 0.49667 1.1111 1.1111 1.1111z" fill="#4271ae" stroke-width="1.1111"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m22.803 11.373c-0.0913-0.1309-2.2682-3.2384-5.2724-5.3626-1.5576-1.1033-3.5222-1.7105-5.5309-1.7105-2.0075 0-3.9721 0.60721-5.5331 1.7105-3.0041 2.1241-5.1789 5.2317-5.2702 5.3626-0.2618 0.3773-0.2618 0.87781 0 1.2551 0.091301 0.1309 2.266 3.2384 5.2702 5.3626 1.5609 1.1022 3.5255 1.7094 5.5331 1.7094 2.0086 0 3.9732-0.60721 5.5309-1.7105 3.0041-2.1241 5.1811-5.2317 5.2724-5.3626 0.2629-0.3762 0.2629-0.87781 0-1.254zm-10.803 4.4771c-2.1274 0-3.85-1.727-3.85-3.85 0-2.1274 1.7226-3.85 3.85-3.85 2.123 0 3.85 1.7226 3.85 3.85 0 2.123-1.727 3.85-3.85 3.85zm2.2-3.85c0 1.2122-0.98781 2.2-2.2 2.2-1.2155 0-2.2-0.98781-2.2-2.2 0-1.2155 0.98451-2.2 2.2-2.2 1.2122 0 2.2 0.98451 2.2 2.2z" fill="#4271ae" stroke-width="1.1"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m19.861 3.6198c-0.46061-0.1909-0.99019-0.084979-1.3424 0.26725-1.5567 1.5555-4.0901 1.5567-5.648 0-2.5186-2.5161-6.6136-2.5161-9.131 0-0.23154 0.23031-0.36085 0.54436-0.36085 0.87073v16.011c0 0.67983 0.55052 1.2316 1.2316 1.2316 0.68107 0 1.2316-0.55175 1.2316-1.2316v-5.6074c1.5653-1.2279 3.8438-1.122 5.2872 0.32021 2.5186 2.5161 6.6148 2.5161 9.131 0 0.23154-0.23154 0.36086-0.54436 0.36086-0.87073v-9.8527c0-0.49879-0.30051-0.94709-0.75989-1.138z" fill="#f5871f" stroke-width="1.2316"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m21.316 8.1937h-2.2836c-0.38061-1.1418-1.4273-1.903-2.6643-1.903h-5.7091c0-1.0466-0.85636-1.903-1.903-1.903h-3.9012c-1.6175 0-2.8545 1.237-2.8545 2.8545v9.5154c0 1.6175 1.237 2.8545 2.8545 2.8545h11.418c1.6175 0 3.2352-1.237 3.6157-2.8545l2.0934-7.6121c0.09515-0.57091-0.1903-0.95154-0.66605-0.95154zm-17.413 0.95154v-1.903c0-0.57091 0.38061-0.95154 0.95154-0.95154h3.8061c0 1.0466 0.85636 1.903 1.903 1.903h5.7091c0.57091 0 0.95154 0.38061 0.95154 0.95154h-10.562c-0.57091 0-1.0466 0.38061-1.237 0.95154l-1.5225 5.9945zm14.177 7.1363c-0.1903 0.76121-1.0466 1.4273-1.8079 1.4273h-11.418s-0.38061-0.1903-0.1903-0.76121l1.8079-6.6605c0-0.09515 0.1903-0.1903 0.28545-0.1903h13.035z" fill-opacity=".72157" stroke-width="1.0467"/>
4
- </svg>
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m5.334 5.25c-0.61333 0-1.1113 0.504-1.1113 1.125v2.25h15.555c0-0.621-0.498-1.125-1.1113-1.125h-6.666c-1.2267 0-2.2227-1.008-2.2227-2.25h-4.4434zm-1.1113 4.5v7.875c1e-7 0.621 0.49799 1.125 1.1113 1.125h13.332c0.61333 0 1.1113-0.504 1.1113-1.125v-7.875h-15.555z" fill="#eab700"/>
4
- <path d="m18.667 5.25h-6.6667c0-1.242-0.99556-2.25-2.2222-2.25h-4.4444c-1.8378 0-3.3333 1.5142-3.3333 3.375v11.25c0 1.8608 1.4956 3.375 3.3333 3.375h13.333c1.8378 0 3.3333-1.5142 3.3333-3.375v-9c0-1.8608-1.4956-3.375-3.3333-3.375zm-13.333 0h4.4444c0 1.242 0.99556 2.25 2.2222 2.25h6.6667c0.61333 0 1.1111 0.504 1.1111 1.125h-15.556v-2.25c0-0.621 0.49778-1.125 1.1111-1.125zm13.333 13.5h-13.333c-0.61333 0-1.1111-0.504-1.1111-1.125v-7.875h15.556v7.875c0 0.621-0.49778 1.125-1.1111 1.125z" fill="#ad8700" stroke-width="1.118"/>
5
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m10.594 21.6h-4.8c-0.6636 0-1.2 0.5364-1.2 1.2s0.5364 1.2 1.2 1.2h12c0.6636 0 1.2-0.5364 1.2-1.2s-0.5364-1.2-1.2-1.2h-4.8v-1.476c1.968-0.4452 3.7752-1.4256 5.2356-2.8872 2.04-2.04 3.1644-4.752 3.1644-7.6368 0-2.4804-0.8304-4.8348-2.3616-6.7428l0.81-0.8076c0.4692-0.4692 0.4692-1.2276 0.0012-1.698-0.4692-0.4692-1.2288-0.468-1.698-0.0012l-2.4624 2.4588 0.8496 0.8496c1.5864 1.5864 2.4612 3.6972 2.4612 5.9412s-0.8748 4.3524-2.4612 5.9388-3.6948 2.4612-5.9388 2.4612-4.3524-0.8748-5.9388-2.4612c-0.4692-0.4692-1.2276-0.4692-1.6968 0-0.4692 0.468-0.4692 1.2276 0 1.6968 2.0388 2.04 4.7508 3.1644 7.6356 3.1644zm0-19.2c1.9884 0 3.7884 0.8064 5.0916 2.1084 1.302 1.3032 2.1084 3.1032 2.1084 5.0916 0 1.9872-0.8064 3.7872-2.1084 5.0904-1.3032 1.3032-3.1032 2.1096-5.0916 2.1096-1.9896 0-3.7884-0.8064-5.0904-2.1084-1.302-1.3032-2.1072-3.1032-2.1072-5.0916s0.8052-3.7884 2.1072-5.0916c1.302-1.302 3.1008-2.1084 5.0904-2.1084z" fill-opacity=".78" stroke-width="1.2"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m7.3571 9.1429c0 1.0457 0.23714 2.0343 0.64143 2.93l-5.6414 5.6414v2.1429s1.28 2.1429 2.8571 2.1429h2.8571v-2.8571h2.8571v-2.8571h3.5714c3.9457 0 7.1429-3.1971 7.1429-7.1429 0-3.9457-3.1971-7.1429-7.1429-7.1429s-7.1429 3.1971-7.1429 7.1429zm7.1429 2.8571c-1.5771 0-2.8571-1.28-2.8571-2.8571 0-1.5786 1.28-2.86 2.8571-2.86 1.5786 0 2.8571 1.28 2.8571 2.86 0 1.5771-1.2786 2.8571-2.8571 2.8571z" fill="#a2694f" stroke-width="1.4286"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m12 5.1429c-0.31543 0-0.57143 0.256-0.57143 0.57143s0.256 0.57143 0.57143 0.57143c1.2377 0 2.2446 1.0069 2.2446 2.2446 0 0.31543 0.256 0.57143 0.57143 0.57143s0.57143-0.256 0.57143-0.57143c0-1.8674-1.52-3.3874-3.3874-3.3874zm0-5.1429c-4.7269 0-8.5714 3.8446-8.5714 8.5714 0 1.6983 0.50286 3.3394 1.456 4.76l0.091429 0.15428c2.0857 2.9783 2.4526 3.92 2.4526 4.8v3.4286c0 0.63086 0.512 1.1429 1.1429 1.1429h2.2857c0 0.29714 0.12572 0.59429 0.33143 0.81143 0.21714 0.20572 0.51429 0.33143 0.81143 0.33143s0.59428-0.12571 0.81143-0.33143c0.20571-0.21714 0.33143-0.51428 0.33143-0.81143h2.2857c0.63086 0 1.1429-0.512 1.1429-1.1429v-3.4286c0-0.89371 0.36457-1.84 2.4366-4.7989 1.0229-1.4571 1.5634-3.1566 1.5634-4.9154 0-4.7269-3.8446-8.5714-8.5714-8.5714zm2.2857 20.571h-4.5714v-1.1429h4.5714zm2.8514-8.3966c-1.6754 2.392-2.4491 3.7589-2.7257 4.968h-1.2686v-2.2857c0-0.63086-0.512-1.1429-1.1429-1.1429-0.63086 0-1.1429 0.512-1.1429 1.1429v2.2857h-1.272c-0.27428-1.1771-1.0263-2.5143-2.6354-4.8229l-0.088-0.14743c-0.75086-1.0674-1.1474-2.3131-1.1474-3.6011 0-3.4663 2.8194-6.2857 6.2857-6.2857s6.2857 2.8194 6.2857 6.2857c0 1.2869-0.39657 2.5326-1.1486 3.6034z" fill="#4271ae" stroke-width="1.1429"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m17.954 4.4261c-3.2885-3.2348-8.6201-3.2348-11.909 0-3.2885 3.2358-3.2885 8.4812 0 11.716l5.9538 5.858 5.9548-5.858c3.2885-3.2348 3.2885-8.4801 0-11.716zm-5.9548 8.6264c-0.70317 0-1.3632-0.27369-1.8611-0.77054-1.0263-1.0263-1.0263-2.6958 0-3.7222 0.49685-0.49685 1.1579-0.77054 1.8611-0.77054s1.3642 0.27369 1.8611 0.77054c1.0263 1.0263 1.0263 2.6969 0 3.7222-0.49685 0.49685-1.1579 0.77054-1.8611 0.77054z" fill="#4271ae" stroke-width="1.0526"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m6.75 3c-1.656 0-3 1.344-3 3v12c0 1.656 1.344 3 3 3 1.656 0 3-1.344 3-3v-12c0-1.656-1.344-3-3-3zm10.5 0c-1.656 0-3 1.344-3 3v12c0 1.656 1.344 3 3 3s3-1.344 3-3v-12c0-1.656-1.344-3-3-3z" fill-opacity=".78039" stroke-width="1.5"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m12 6c3.3075 0 6 2.691 6 6s-2.6925 6-6 6-6-2.691-6-6 2.6925-6 6-6m0-3c-4.971 0-9 4.029-9 9 0 4.968 4.029 9 9 9 4.968 0 9-4.032 9-9 0-4.971-4.032-9-9-9z" fill="#4271ae" stroke-width="1.5"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M 21,12 C 21,9.5145 19.992,7.2645 18.3645,5.6355 16.7355,4.008 14.4855,3 12,3 9.516,3 7.266,4.008 5.637,5.6355 4.008,7.2645 3,9.5145 3,12 3,14.484 4.008,16.734 5.637,18.363 7.266,19.992 9.516,21 12,21 14.4855,21 16.7355,19.992 18.3645,18.363 19.992,16.734 21,14.484 21,12 Z" fill="#4271ae" stroke-width="1.5"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m19.5 9.5h-15c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5h15c1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5z" fill="#c82829" stroke-width="1.25"/>
4
- </svg>
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M21 6.879l-3.879-3.879c-.293-.293-.678-.439-1.061-.439-.384 0-.767.146-1.06.439l-10.939 10.939c-.293.293-.558.727-.75 1.188-.192.463-.311.959-.311 1.373v4.5h4.5c.414 0 .908-.119 1.371-.311.463-.192.896-.457 1.189-.75l10.94-10.939c.293-.293.439-.678.439-1.061 0-.384-.146-.767-.439-1.06zm-15.232 8.182l8.293-8.293 1.232 1.232-8.293 8.293-1.232-1.232zm1.732 3.939h-1.5l-1-1v-1.5c0-.077.033-.305.158-.605.01-.02 2.967 2.938 2.967 2.938-.322.134-.548.167-.625.167zm1.439-.768l-1.232-1.232 8.293-8.293 1.232 1.232-8.293 8.293zm9-9l-3.172-3.172 1.293-1.293 3.17 3.172-1.291 1.293z" fill="#718c00"/>
4
- <path d="m3 18.414v2.5859h2.5605z" fill="#0a0a0a" opacity=".95"/>
5
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m21.322 7.3994-4.7022-4.7281c-0.88446-0.88916-2.4264-0.89857-3.3285-0.0070569-0.23052 0.23052-0.41165 0.5128-0.49163 0.73979-0.76802 1.6019-1.5925 2.6052-2.651 3.2073l-0.25522 0.12349c-1.1385 0.57043-2.6875 1.1514-5.5502 1.1514-0.31285 0-0.61277 0.061159-0.90092 0.17877-0.56925 0.23758-1.0338 0.6998-1.2726 1.2749-0.23405 0.56925-0.23405 1.2244 0 1.7936 0.12232 0.29286 0.29404 0.55396 0.51162 0.76567l3.8048 3.8048-4.4952 6.2959 6.2947-4.4952 3.7954 3.7954c0.21876 0.22229 0.47751 0.39871 0.77155 0.51868 0.29051 0.12114 0.5916 0.18113 0.90092 0.18113s0.61042-0.06116 0.89975-0.18113c0.58572-0.24111 1.0385-0.69628 1.2702-1.2679 0.12114-0.28463 0.1823-0.5963 0.1823-0.90328 0-2.8651 0.58101-4.4129 1.1503-5.5526 0.58337-1.1667 1.6101-2.0559 3.2391-2.8392 0.31873-0.12232 0.59983-0.30109 0.83624-0.5375 0.90798-0.91974 0.90328-2.4123-0.0094-3.3191zm-6.1724 5.6467c-0.96326 1.9324-1.3973 3.9636-1.4055 6.5911l-9.4009-9.3985c2.5158 0 4.4858-0.39401 6.3465-1.2749l0.27639-0.12349c1.6454-0.82212 2.9027-2.2264 3.9848-4.5093l4.6152 4.7645c-2.1912 1.0503-3.5943 2.3052-4.4164 3.9507z" fill="#4271ae" stroke-width="1.1761"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m16.642 2.3676c-0.48554-0.48803-1.2744-0.49053-1.7649-0.00499-0.12981 0.12981-0.21968 0.28333-0.28084 0.4431-1.0385 2.1668-2.1818 3.3888-3.6247 4.1102-1.6189 0.79883-3.4774 1.3543-6.473 1.3543-0.16226 0-0.32452 0.0312-0.4768 0.09486-0.3058 0.12731-0.54794 0.3707-0.67526 0.67526-0.12606 0.30455-0.12606 0.64905 0 0.9536 0.063657 0.15352 0.15477 0.29207 0.27085 0.4069l4.0478 4.0478-5.6629 7.5514 7.5514-5.6629 4.0466 4.0466c0.11483 0.11733 0.25338 0.2072 0.4069 0.27085 0.15228 0.06366 0.31454 0.09736 0.4768 0.09736 0.16226 0 0.32452-0.0337 0.4768-0.09736 0.3058-0.12731 0.54919-0.36821 0.67526-0.67526 0.06366-0.15103 0.09611-0.31454 0.09611-0.47555 0-2.9956 0.55419-4.8541 1.3518-6.448 0.72019-1.4429 1.9421-2.5862 4.1102-3.6247 0.16101-0.06115 0.31329-0.15103 0.44185-0.28084 0.48554-0.49053 0.48304-1.2794-5e-3 -1.7649z" fill="#4271ae" stroke-width="1.2482"/>
4
- </svg>