@simonklee/opentui-tex-native-source 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (529) hide show
  1. package/LICENSE +674 -0
  2. package/LICENSE-PROJECT +21 -0
  3. package/README.md +7 -0
  4. package/build.zig +112 -0
  5. package/build.zig.zon +12 -0
  6. package/native/lib.zig +280 -0
  7. package/native/nanosvg.c +4 -0
  8. package/native/vendor/.bootstrap-v5 +1 -0
  9. package/native/vendor/LICENSE-NANOSVG +18 -0
  10. package/native/vendor/microtex/.clang-format +26 -0
  11. package/native/vendor/microtex/.github/workflows/ubuntu.yml +92 -0
  12. package/native/vendor/microtex/.github/workflows/windows-gdi.yml +34 -0
  13. package/native/vendor/microtex/.github/workflows/windows-qt.yml +52 -0
  14. package/native/vendor/microtex/CMakeLists.txt +110 -0
  15. package/native/vendor/microtex/LICENSE +21 -0
  16. package/native/vendor/microtex/MicroTeXInstall.cmake +42 -0
  17. package/native/vendor/microtex/README.md +600 -0
  18. package/native/vendor/microtex/build.zig +209 -0
  19. package/native/vendor/microtex/clatexmath.wrap +6 -0
  20. package/native/vendor/microtex/doc/meson.build +38 -0
  21. package/native/vendor/microtex/doc/microtex-doc.toml.in +47 -0
  22. package/native/vendor/microtex/doc/microtex.svg +39 -0
  23. package/native/vendor/microtex/doc/urlmap.js +6 -0
  24. package/native/vendor/microtex/example/gtk/CMakeLists.txt +68 -0
  25. package/native/vendor/microtex/example/gtk/gtk_main.c +170 -0
  26. package/native/vendor/microtex/example/gtk/isamples.cpp +21 -0
  27. package/native/vendor/microtex/example/gtk/isamples.h +15 -0
  28. package/native/vendor/microtex/example/gtk/meson.build +27 -0
  29. package/native/vendor/microtex/example/gtk/microtex-gtk.gresource.xml +6 -0
  30. package/native/vendor/microtex/example/gtk/microtex-gtk.ui +117 -0
  31. package/native/vendor/microtex/example/gtkmm/CMakeLists.txt +19 -0
  32. package/native/vendor/microtex/example/gtkmm/gtkmm_main.cpp +531 -0
  33. package/native/vendor/microtex/example/gtkmm/meson.build +19 -0
  34. package/native/vendor/microtex/example/memcheck/CMakeLists.txt +12 -0
  35. package/native/vendor/microtex/example/memcheck/mem_check_main.cpp +154 -0
  36. package/native/vendor/microtex/example/qt/CMakeLists.txt +37 -0
  37. package/native/vendor/microtex/example/qt/meson.build +25 -0
  38. package/native/vendor/microtex/example/qt/qt_main.cpp +70 -0
  39. package/native/vendor/microtex/example/qt/qt_mainwindow.cpp +107 -0
  40. package/native/vendor/microtex/example/qt/qt_mainwindow.h +40 -0
  41. package/native/vendor/microtex/example/qt/qt_skiatexwidget.cpp +149 -0
  42. package/native/vendor/microtex/example/qt/qt_skiatexwidget.h +48 -0
  43. package/native/vendor/microtex/example/qt/qt_tex_render.h +15 -0
  44. package/native/vendor/microtex/example/qt/qt_texqmlitem.cpp +56 -0
  45. package/native/vendor/microtex/example/qt/qt_texqmlitem.h +31 -0
  46. package/native/vendor/microtex/example/qt/qt_texwidget.cpp +62 -0
  47. package/native/vendor/microtex/example/qt/qt_texwidget.h +31 -0
  48. package/native/vendor/microtex/example/qtpng/CMakeLists.txt +11 -0
  49. package/native/vendor/microtex/example/qtpng/latex2png.cpp +115 -0
  50. package/native/vendor/microtex/example/samples/samples.cpp +52 -0
  51. package/native/vendor/microtex/example/samples/samples.h +32 -0
  52. package/native/vendor/microtex/example/win32/CMakeLists.txt +15 -0
  53. package/native/vendor/microtex/example/win32/meson.build +18 -0
  54. package/native/vendor/microtex/example/win32/win32_main.cpp +375 -0
  55. package/native/vendor/microtex/githooks/pre-commit +19 -0
  56. package/native/vendor/microtex/githooks/pre-push +103 -0
  57. package/native/vendor/microtex/lib/CMakeLists.txt +234 -0
  58. package/native/vendor/microtex/lib/atom/atom.cpp +14 -0
  59. package/native/vendor/microtex/lib/atom/atom.h +96 -0
  60. package/native/vendor/microtex/lib/atom/atom_accent.cpp +115 -0
  61. package/native/vendor/microtex/lib/atom/atom_accent.h +53 -0
  62. package/native/vendor/microtex/lib/atom/atom_basic.cpp +146 -0
  63. package/native/vendor/microtex/lib/atom/atom_basic.h +273 -0
  64. package/native/vendor/microtex/lib/atom/atom_box.cpp +41 -0
  65. package/native/vendor/microtex/lib/atom/atom_box.h +70 -0
  66. package/native/vendor/microtex/lib/atom/atom_char.cpp +99 -0
  67. package/native/vendor/microtex/lib/atom/atom_char.h +147 -0
  68. package/native/vendor/microtex/lib/atom/atom_delim.cpp +65 -0
  69. package/native/vendor/microtex/lib/atom/atom_delim.h +58 -0
  70. package/native/vendor/microtex/lib/atom/atom_fence.cpp +65 -0
  71. package/native/vendor/microtex/lib/atom/atom_fence.h +56 -0
  72. package/native/vendor/microtex/lib/atom/atom_font.cpp +20 -0
  73. package/native/vendor/microtex/lib/atom/atom_font.h +49 -0
  74. package/native/vendor/microtex/lib/atom/atom_frac.cpp +101 -0
  75. package/native/vendor/microtex/lib/atom/atom_frac.h +42 -0
  76. package/native/vendor/microtex/lib/atom/atom_matrix.cpp +756 -0
  77. package/native/vendor/microtex/lib/atom/atom_matrix.h +268 -0
  78. package/native/vendor/microtex/lib/atom/atom_misc.cpp +230 -0
  79. package/native/vendor/microtex/lib/atom/atom_misc.h +200 -0
  80. package/native/vendor/microtex/lib/atom/atom_operator.cpp +51 -0
  81. package/native/vendor/microtex/lib/atom/atom_operator.h +41 -0
  82. package/native/vendor/microtex/lib/atom/atom_root.cpp +61 -0
  83. package/native/vendor/microtex/lib/atom/atom_root.h +27 -0
  84. package/native/vendor/microtex/lib/atom/atom_row.cpp +334 -0
  85. package/native/vendor/microtex/lib/atom/atom_row.h +176 -0
  86. package/native/vendor/microtex/lib/atom/atom_scripts.cpp +182 -0
  87. package/native/vendor/microtex/lib/atom/atom_scripts.h +52 -0
  88. package/native/vendor/microtex/lib/atom/atom_sideset.cpp +92 -0
  89. package/native/vendor/microtex/lib/atom/atom_sideset.h +24 -0
  90. package/native/vendor/microtex/lib/atom/atom_space.cpp +22 -0
  91. package/native/vendor/microtex/lib/atom/atom_space.h +38 -0
  92. package/native/vendor/microtex/lib/atom/atom_stack.cpp +117 -0
  93. package/native/vendor/microtex/lib/atom/atom_stack.h +103 -0
  94. package/native/vendor/microtex/lib/atom/atom_text.cpp +17 -0
  95. package/native/vendor/microtex/lib/atom/atom_text.h +33 -0
  96. package/native/vendor/microtex/lib/atom/atom_vrow.cpp +96 -0
  97. package/native/vendor/microtex/lib/atom/atom_vrow.h +47 -0
  98. package/native/vendor/microtex/lib/atom/atom_zstack.cpp +66 -0
  99. package/native/vendor/microtex/lib/atom/atom_zstack.h +37 -0
  100. package/native/vendor/microtex/lib/atom/colors_def.cpp +157 -0
  101. package/native/vendor/microtex/lib/atom/meson.build +50 -0
  102. package/native/vendor/microtex/lib/box/box.cpp +49 -0
  103. package/native/vendor/microtex/lib/box/box.h +184 -0
  104. package/native/vendor/microtex/lib/box/box_factory.cpp +162 -0
  105. package/native/vendor/microtex/lib/box/box_factory.h +24 -0
  106. package/native/vendor/microtex/lib/box/box_group.cpp +503 -0
  107. package/native/vendor/microtex/lib/box/box_group.h +285 -0
  108. package/native/vendor/microtex/lib/box/box_single.cpp +179 -0
  109. package/native/vendor/microtex/lib/box/box_single.h +157 -0
  110. package/native/vendor/microtex/lib/box/meson.build +15 -0
  111. package/native/vendor/microtex/lib/core/debug_config.cpp +3 -0
  112. package/native/vendor/microtex/lib/core/debug_config.h +24 -0
  113. package/native/vendor/microtex/lib/core/formula.cpp +180 -0
  114. package/native/vendor/microtex/lib/core/formula.h +137 -0
  115. package/native/vendor/microtex/lib/core/formula_def.cpp +167 -0
  116. package/native/vendor/microtex/lib/core/glue.cpp +108 -0
  117. package/native/vendor/microtex/lib/core/glue.h +55 -0
  118. package/native/vendor/microtex/lib/core/localized_num.cpp +51 -0
  119. package/native/vendor/microtex/lib/core/meson.build +19 -0
  120. package/native/vendor/microtex/lib/core/parser.cpp +874 -0
  121. package/native/vendor/microtex/lib/core/parser.h +306 -0
  122. package/native/vendor/microtex/lib/core/split.cpp +185 -0
  123. package/native/vendor/microtex/lib/core/split.h +40 -0
  124. package/native/vendor/microtex/lib/env/env.cpp +141 -0
  125. package/native/vendor/microtex/lib/env/env.h +221 -0
  126. package/native/vendor/microtex/lib/env/meson.build +11 -0
  127. package/native/vendor/microtex/lib/env/units.cpp +109 -0
  128. package/native/vendor/microtex/lib/env/units.h +61 -0
  129. package/native/vendor/microtex/lib/graphic/font_style.cpp +63 -0
  130. package/native/vendor/microtex/lib/graphic/font_style.h +61 -0
  131. package/native/vendor/microtex/lib/graphic/graphic.cpp +38 -0
  132. package/native/vendor/microtex/lib/graphic/graphic.h +314 -0
  133. package/native/vendor/microtex/lib/graphic/graphic_basic.cpp +44 -0
  134. package/native/vendor/microtex/lib/graphic/graphic_basic.h +131 -0
  135. package/native/vendor/microtex/lib/graphic/meson.build +13 -0
  136. package/native/vendor/microtex/lib/macro/macro.cpp +143 -0
  137. package/native/vendor/microtex/lib/macro/macro.h +155 -0
  138. package/native/vendor/microtex/lib/macro/macro_accent.cpp +50 -0
  139. package/native/vendor/microtex/lib/macro/macro_accent.h +61 -0
  140. package/native/vendor/microtex/lib/macro/macro_boxes.h +68 -0
  141. package/native/vendor/microtex/lib/macro/macro_colors.cpp +42 -0
  142. package/native/vendor/microtex/lib/macro/macro_colors.h +42 -0
  143. package/native/vendor/microtex/lib/macro/macro_decl.h +16 -0
  144. package/native/vendor/microtex/lib/macro/macro_def.cpp +418 -0
  145. package/native/vendor/microtex/lib/macro/macro_delims.cpp +56 -0
  146. package/native/vendor/microtex/lib/macro/macro_delims.h +73 -0
  147. package/native/vendor/microtex/lib/macro/macro_env.h +212 -0
  148. package/native/vendor/microtex/lib/macro/macro_fonts.cpp +53 -0
  149. package/native/vendor/microtex/lib/macro/macro_fonts.h +78 -0
  150. package/native/vendor/microtex/lib/macro/macro_frac.cpp +138 -0
  151. package/native/vendor/microtex/lib/macro/macro_frac.h +50 -0
  152. package/native/vendor/microtex/lib/macro/macro_misc.cpp +211 -0
  153. package/native/vendor/microtex/lib/macro/macro_misc.h +217 -0
  154. package/native/vendor/microtex/lib/macro/macro_scripts.cpp +32 -0
  155. package/native/vendor/microtex/lib/macro/macro_scripts.h +17 -0
  156. package/native/vendor/microtex/lib/macro/macro_sizes.h +110 -0
  157. package/native/vendor/microtex/lib/macro/macro_space.cpp +31 -0
  158. package/native/vendor/microtex/lib/macro/macro_space.h +17 -0
  159. package/native/vendor/microtex/lib/macro/macro_styles.cpp +45 -0
  160. package/native/vendor/microtex/lib/macro/macro_styles.h +22 -0
  161. package/native/vendor/microtex/lib/macro/macro_types.h +48 -0
  162. package/native/vendor/microtex/lib/macro/meson.build +33 -0
  163. package/native/vendor/microtex/lib/meson.build +102 -0
  164. package/native/vendor/microtex/lib/microtex.cpp +208 -0
  165. package/native/vendor/microtex/lib/microtex.h +225 -0
  166. package/native/vendor/microtex/lib/microtexConfig.cmake.in +2 -0
  167. package/native/vendor/microtex/lib/microtexapi.h +22 -0
  168. package/native/vendor/microtex/lib/microtexconfig.h.in +7 -0
  169. package/native/vendor/microtex/lib/microtexexport.h +31 -0
  170. package/native/vendor/microtex/lib/otf/clm.cpp +405 -0
  171. package/native/vendor/microtex/lib/otf/clm.h +61 -0
  172. package/native/vendor/microtex/lib/otf/fontsense.cpp +191 -0
  173. package/native/vendor/microtex/lib/otf/fontsense.h +20 -0
  174. package/native/vendor/microtex/lib/otf/glyph.cpp +53 -0
  175. package/native/vendor/microtex/lib/otf/glyph.h +384 -0
  176. package/native/vendor/microtex/lib/otf/math_consts.h +154 -0
  177. package/native/vendor/microtex/lib/otf/meson.build +18 -0
  178. package/native/vendor/microtex/lib/otf/otf.cpp +84 -0
  179. package/native/vendor/microtex/lib/otf/otf.h +177 -0
  180. package/native/vendor/microtex/lib/otf/otfconfig.h +32 -0
  181. package/native/vendor/microtex/lib/otf/path.cpp +187 -0
  182. package/native/vendor/microtex/lib/otf/path.h +120 -0
  183. package/native/vendor/microtex/lib/render/builder.cpp +68 -0
  184. package/native/vendor/microtex/lib/render/builder.h +73 -0
  185. package/native/vendor/microtex/lib/render/meson.build +11 -0
  186. package/native/vendor/microtex/lib/render/render.cpp +136 -0
  187. package/native/vendor/microtex/lib/render/render.h +59 -0
  188. package/native/vendor/microtex/lib/unimath/font_meta.h +22 -0
  189. package/native/vendor/microtex/lib/unimath/font_src.cpp +21 -0
  190. package/native/vendor/microtex/lib/unimath/font_src.h +61 -0
  191. package/native/vendor/microtex/lib/unimath/math_type.cpp +318 -0
  192. package/native/vendor/microtex/lib/unimath/math_type.h +105 -0
  193. package/native/vendor/microtex/lib/unimath/meson.build +18 -0
  194. package/native/vendor/microtex/lib/unimath/uni_char.cpp +121 -0
  195. package/native/vendor/microtex/lib/unimath/uni_char.h +109 -0
  196. package/native/vendor/microtex/lib/unimath/uni_font.cpp +248 -0
  197. package/native/vendor/microtex/lib/unimath/uni_font.h +139 -0
  198. package/native/vendor/microtex/lib/unimath/uni_symbol.cpp +2929 -0
  199. package/native/vendor/microtex/lib/unimath/uni_symbol.h +31 -0
  200. package/native/vendor/microtex/lib/utils/dict_tree.h +68 -0
  201. package/native/vendor/microtex/lib/utils/exceptions.h +61 -0
  202. package/native/vendor/microtex/lib/utils/log.h +34 -0
  203. package/native/vendor/microtex/lib/utils/meson.build +18 -0
  204. package/native/vendor/microtex/lib/utils/nums.h +24 -0
  205. package/native/vendor/microtex/lib/utils/string_utils.cpp +85 -0
  206. package/native/vendor/microtex/lib/utils/string_utils.h +130 -0
  207. package/native/vendor/microtex/lib/utils/types.h +152 -0
  208. package/native/vendor/microtex/lib/utils/utf.cpp +115 -0
  209. package/native/vendor/microtex/lib/utils/utf.h +58 -0
  210. package/native/vendor/microtex/lib/utils/utils.cpp +40 -0
  211. package/native/vendor/microtex/lib/utils/utils.h +88 -0
  212. package/native/vendor/microtex/lib/wrapper/byte_seq.cpp +46 -0
  213. package/native/vendor/microtex/lib/wrapper/byte_seq.h +70 -0
  214. package/native/vendor/microtex/lib/wrapper/callback.cpp +10 -0
  215. package/native/vendor/microtex/lib/wrapper/callback.h +72 -0
  216. package/native/vendor/microtex/lib/wrapper/cwrapper.cpp +206 -0
  217. package/native/vendor/microtex/lib/wrapper/cwrapper.h +305 -0
  218. package/native/vendor/microtex/lib/wrapper/graphic_wrapper.cpp +211 -0
  219. package/native/vendor/microtex/lib/wrapper/graphic_wrapper.h +159 -0
  220. package/native/vendor/microtex/lib/wrapper/meson.build +22 -0
  221. package/native/vendor/microtex/meson.build +75 -0
  222. package/native/vendor/microtex/meson_options.txt +29 -0
  223. package/native/vendor/microtex/platform/cairo/CMakeLists.txt +36 -0
  224. package/native/vendor/microtex/platform/cairo/graphic_cairo.cpp +384 -0
  225. package/native/vendor/microtex/platform/cairo/graphic_cairo.h +119 -0
  226. package/native/vendor/microtex/platform/cairo/meson.build +47 -0
  227. package/native/vendor/microtex/platform/cairo/microtex-cairoConfig.cmake.in +11 -0
  228. package/native/vendor/microtex/platform/flutter/microtex/.metadata +10 -0
  229. package/native/vendor/microtex/platform/flutter/microtex/CHANGELOG.md +3 -0
  230. package/native/vendor/microtex/platform/flutter/microtex/LICENSE +1 -0
  231. package/native/vendor/microtex/platform/flutter/microtex/README.md +15 -0
  232. package/native/vendor/microtex/platform/flutter/microtex/analysis_options.yaml +4 -0
  233. package/native/vendor/microtex/platform/flutter/microtex/android/build.gradle +56 -0
  234. package/native/vendor/microtex/platform/flutter/microtex/android/settings.gradle +1 -0
  235. package/native/vendor/microtex/platform/flutter/microtex/android/src/main/AndroidManifest.xml +3 -0
  236. package/native/vendor/microtex/platform/flutter/microtex/android/src/main/kotlin/io/nano/microtex/microtex/MicrotexPlugin.kt +35 -0
  237. package/native/vendor/microtex/platform/flutter/microtex/example/.metadata +10 -0
  238. package/native/vendor/microtex/platform/flutter/microtex/example/README.md +16 -0
  239. package/native/vendor/microtex/platform/flutter/microtex/example/analysis_options.yaml +31 -0
  240. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/build.gradle +68 -0
  241. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/debug/AndroidManifest.xml +7 -0
  242. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/AndroidManifest.xml +34 -0
  243. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/kotlin/io/nano/microtex/microtex_example/MainActivity.kt +6 -0
  244. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable/launch_background.xml +12 -0
  245. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable-v21/launch_background.xml +12 -0
  246. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  247. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  248. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  249. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  250. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  251. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values/styles.xml +18 -0
  252. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values-night/styles.xml +18 -0
  253. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/profile/AndroidManifest.xml +7 -0
  254. package/native/vendor/microtex/platform/flutter/microtex/example/android/build.gradle +31 -0
  255. package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle/wrapper/gradle-wrapper.properties +6 -0
  256. package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle.properties +3 -0
  257. package/native/vendor/microtex/platform/flutter/microtex/example/android/settings.gradle +11 -0
  258. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/AppFrameworkInfo.plist +26 -0
  259. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Debug.xcconfig +2 -0
  260. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Release.xcconfig +2 -0
  261. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile +41 -0
  262. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile.lock +22 -0
  263. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/AppDelegate.swift +13 -0
  264. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +122 -0
  265. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png +0 -0
  266. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png +0 -0
  267. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png +0 -0
  268. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png +0 -0
  269. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png +0 -0
  270. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png +0 -0
  271. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png +0 -0
  272. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png +0 -0
  273. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png +0 -0
  274. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png +0 -0
  275. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png +0 -0
  276. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png +0 -0
  277. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png +0 -0
  278. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png +0 -0
  279. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png +0 -0
  280. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +23 -0
  281. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png +0 -0
  282. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png +0 -0
  283. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png +0 -0
  284. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +5 -0
  285. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/LaunchScreen.storyboard +37 -0
  286. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/Main.storyboard +26 -0
  287. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Info.plist +49 -0
  288. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Runner-Bridging-Header.h +1 -0
  289. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.pbxproj +549 -0
  290. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  291. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  292. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
  293. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
  294. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/contents.xcworkspacedata +10 -0
  295. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  296. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
  297. package/native/vendor/microtex/platform/flutter/microtex/example/lib/main.dart +23 -0
  298. package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_in_one.dart +0 -0
  299. package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_screen.dart +208 -0
  300. package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/convert_spans.dart +63 -0
  301. package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/string_ext.dart +10 -0
  302. package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/cmp.dart +118 -0
  303. package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/draggable.dart +75 -0
  304. package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/rich.dart +23 -0
  305. package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/split.dart +72 -0
  306. package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_highlight_controller.dart +66 -0
  307. package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_input_controller.dart +19 -0
  308. package/native/vendor/microtex/platform/flutter/microtex/example/linux/CMakeLists.txt +116 -0
  309. package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/CMakeLists.txt +87 -0
  310. package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.cc +15 -0
  311. package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.h +15 -0
  312. package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugins.cmake +24 -0
  313. package/native/vendor/microtex/platform/flutter/microtex/example/linux/main.cc +6 -0
  314. package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.cc +104 -0
  315. package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.h +18 -0
  316. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Debug.xcconfig +2 -0
  317. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Release.xcconfig +2 -0
  318. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/GeneratedPluginRegistrant.swift +12 -0
  319. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile +40 -0
  320. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile.lock +22 -0
  321. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/AppDelegate.swift +9 -0
  322. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
  323. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png +0 -0
  324. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png +0 -0
  325. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png +0 -0
  326. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png +0 -0
  327. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png +0 -0
  328. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png +0 -0
  329. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png +0 -0
  330. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Base.lproj/MainMenu.xib +343 -0
  331. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/AppInfo.xcconfig +14 -0
  332. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Debug.xcconfig +2 -0
  333. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Release.xcconfig +2 -0
  334. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Warnings.xcconfig +13 -0
  335. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/DebugProfile.entitlements +12 -0
  336. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Info.plist +32 -0
  337. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/MainFlutterWindow.swift +15 -0
  338. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Release.entitlements +8 -0
  339. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.pbxproj +633 -0
  340. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  341. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
  342. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/contents.xcworkspacedata +10 -0
  343. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  344. package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.lock +191 -0
  345. package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.yaml +56 -0
  346. package/native/vendor/microtex/platform/flutter/microtex/example/test/widget_test.dart +26 -0
  347. package/native/vendor/microtex/platform/flutter/microtex/example/windows/CMakeLists.txt +95 -0
  348. package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/CMakeLists.txt +103 -0
  349. package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.cc +14 -0
  350. package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.h +15 -0
  351. package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugins.cmake +24 -0
  352. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/CMakeLists.txt +17 -0
  353. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/Runner.rc +121 -0
  354. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.cpp +61 -0
  355. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.h +33 -0
  356. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/main.cpp +43 -0
  357. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resource.h +16 -0
  358. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resources/app_icon.ico +0 -0
  359. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/runner.exe.manifest +20 -0
  360. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.cpp +64 -0
  361. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.h +19 -0
  362. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.cpp +245 -0
  363. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.h +98 -0
  364. package/native/vendor/microtex/platform/flutter/microtex/ios/Assets/.gitkeep +0 -0
  365. package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.h +4 -0
  366. package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.m +19 -0
  367. package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/SwiftMicrotexPlugin.swift +14 -0
  368. package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/dummy.h +4 -0
  369. package/native/vendor/microtex/platform/flutter/microtex/ios/microtex.podspec +27 -0
  370. package/native/vendor/microtex/platform/flutter/microtex/lib/microtex.dart +7 -0
  371. package/native/vendor/microtex/platform/flutter/microtex/lib/src/bindings.dart +218 -0
  372. package/native/vendor/microtex/platform/flutter/microtex/lib/src/bounds.dart +10 -0
  373. package/native/vendor/microtex/platform/flutter/microtex/lib/src/context.dart +205 -0
  374. package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontdesc.dart +14 -0
  375. package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontmeta.dart +14 -0
  376. package/native/vendor/microtex/platform/flutter/microtex/lib/src/pathcache.dart +17 -0
  377. package/native/vendor/microtex/platform/flutter/microtex/lib/src/render.dart +291 -0
  378. package/native/vendor/microtex/platform/flutter/microtex/lib/src/texstyle.dart +11 -0
  379. package/native/vendor/microtex/platform/flutter/microtex/lib/src/textlayout.dart +93 -0
  380. package/native/vendor/microtex/platform/flutter/microtex/lib/src/widget.dart +163 -0
  381. package/native/vendor/microtex/platform/flutter/microtex/linux/CMakeLists.txt +33 -0
  382. package/native/vendor/microtex/platform/flutter/microtex/linux/include/microtex/microtex_plugin.h +26 -0
  383. package/native/vendor/microtex/platform/flutter/microtex/linux/microtex_plugin.cc +70 -0
  384. package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/MicrotexPlugin.swift +20 -0
  385. package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/dummy.h +4 -0
  386. package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/microtex-Bridging-Header.h +1 -0
  387. package/native/vendor/microtex/platform/flutter/microtex/macos/microtex.podspec +26 -0
  388. package/native/vendor/microtex/platform/flutter/microtex/nativelib/CMakeLists.txt +44 -0
  389. package/native/vendor/microtex/platform/flutter/microtex/nativelib/builddarwin.sh +108 -0
  390. package/native/vendor/microtex/platform/flutter/microtex/pubspec.yaml +37 -0
  391. package/native/vendor/microtex/platform/flutter/microtex/test/microtex_test.dart +23 -0
  392. package/native/vendor/microtex/platform/flutter/microtex/windows/CMakeLists.txt +32 -0
  393. package/native/vendor/microtex/platform/flutter/microtex/windows/include/microtex/microtex_plugin.h +23 -0
  394. package/native/vendor/microtex/platform/flutter/microtex/windows/microtex_plugin.cpp +82 -0
  395. package/native/vendor/microtex/platform/gdi_win/CMakeLists.txt +20 -0
  396. package/native/vendor/microtex/platform/gdi_win/graphic_win32.cpp +352 -0
  397. package/native/vendor/microtex/platform/gdi_win/graphic_win32.h +137 -0
  398. package/native/vendor/microtex/platform/gdi_win/meson.build +39 -0
  399. package/native/vendor/microtex/platform/gtk/CMakeLists.txt +36 -0
  400. package/native/vendor/microtex/platform/gtk/meson.build +65 -0
  401. package/native/vendor/microtex/platform/gtk/microtex-gtkConfig.cmake.in +11 -0
  402. package/native/vendor/microtex/platform/gtk/microtexequation.cpp +708 -0
  403. package/native/vendor/microtex/platform/gtk/microtexequation.h +72 -0
  404. package/native/vendor/microtex/platform/qt/CMakeLists.txt +37 -0
  405. package/native/vendor/microtex/platform/qt/graphic_qt.cpp +355 -0
  406. package/native/vendor/microtex/platform/qt/graphic_qt.h +116 -0
  407. package/native/vendor/microtex/platform/qt/meson.build +38 -0
  408. package/native/vendor/microtex/platform/qt/microtex-qtConfig.cmake.in +7 -0
  409. package/native/vendor/microtex/platform/skia/CMakeLists.txt +46 -0
  410. package/native/vendor/microtex/platform/skia/graphic_skia.cpp +306 -0
  411. package/native/vendor/microtex/platform/skia/graphic_skia.h +125 -0
  412. package/native/vendor/microtex/platform/skia/microtex-skiaConfig.cmake.in +6 -0
  413. package/native/vendor/microtex/platform/wasm/CMakeLists.txt +38 -0
  414. package/native/vendor/microtex/platform/wasm/emscripten.cross +31 -0
  415. package/native/vendor/microtex/platform/wasm/main.cpp +15 -0
  416. package/native/vendor/microtex/platform/wasm/meson.build +8 -0
  417. package/native/vendor/microtex/platform/wasm/prebuild-example-meson.sh +21 -0
  418. package/native/vendor/microtex/platform/wasm/prebuild-example.sh +21 -0
  419. package/native/vendor/microtex/platform/wasm/prebuild-lib-meson.sh +28 -0
  420. package/native/vendor/microtex/platform/wasm/prebuild-lib.sh +31 -0
  421. package/native/vendor/microtex/platform/wasm/web/.babelrc +10 -0
  422. package/native/vendor/microtex/platform/wasm/web/example/examples.js +43 -0
  423. package/native/vendor/microtex/platform/wasm/web/example/hello.js +31 -0
  424. package/native/vendor/microtex/platform/wasm/web/example/index.html +55 -0
  425. package/native/vendor/microtex/platform/wasm/web/example/index.js +243 -0
  426. package/native/vendor/microtex/platform/wasm/web/example/styles.css +86 -0
  427. package/native/vendor/microtex/platform/wasm/web/example/utils.js +47 -0
  428. package/native/vendor/microtex/platform/wasm/web/lib/context.js +271 -0
  429. package/native/vendor/microtex/platform/wasm/web/lib/index.js +10 -0
  430. package/native/vendor/microtex/platform/wasm/web/lib/render.js +293 -0
  431. package/native/vendor/microtex/platform/wasm/web/lib/runtime.js +14 -0
  432. package/native/vendor/microtex/platform/wasm/web/lib/svg.js +237 -0
  433. package/native/vendor/microtex/platform/wasm/web/lib/textlayout.js +88 -0
  434. package/native/vendor/microtex/platform/wasm/web/package-lock.json +5931 -0
  435. package/native/vendor/microtex/platform/wasm/web/package.json +45 -0
  436. package/native/vendor/microtex/platform/wasm/web/publish-example.sh +17 -0
  437. package/native/vendor/microtex/platform/wasm/web/rollup.config.example.js +24 -0
  438. package/native/vendor/microtex/platform/wasm/web/rollup.config.lib.js +16 -0
  439. package/native/vendor/microtex/prebuilt/otf2clm.py +807 -0
  440. package/native/vendor/microtex/prebuilt/otf2clm.sh +9 -0
  441. package/native/vendor/microtex/prebuilt/preclms.sh +17 -0
  442. package/native/vendor/microtex/readme/example_bw_false.svg +680 -0
  443. package/native/vendor/microtex/readme/example_bw_true.svg +680 -0
  444. package/native/vendor/microtex/readme/example_cjk_trying.svg +54 -0
  445. package/native/vendor/microtex/readme/example_custom_symbols.svg +92 -0
  446. package/native/vendor/microtex/readme/example_debug.svg +764 -0
  447. package/native/vendor/microtex/readme/example_emoji.svg +199 -0
  448. package/native/vendor/microtex/readme/example_have_log.svg +79 -0
  449. package/native/vendor/microtex/readme/example_keep_trying.svg +101 -0
  450. package/native/vendor/microtex/readme/example_logos.svg +50 -0
  451. package/native/vendor/microtex/readme/example_ubuntu.png +0 -0
  452. package/native/vendor/microtex/readme/example_windows.png +0 -0
  453. package/native/vendor/microtex/readme/samples/sample_0.svg +665 -0
  454. package/native/vendor/microtex/readme/samples/sample_1.svg +1259 -0
  455. package/native/vendor/microtex/readme/samples/sample_10.svg +333 -0
  456. package/native/vendor/microtex/readme/samples/sample_11.svg +306 -0
  457. package/native/vendor/microtex/readme/samples/sample_2.svg +2461 -0
  458. package/native/vendor/microtex/readme/samples/sample_3.svg +2653 -0
  459. package/native/vendor/microtex/readme/samples/sample_4.svg +554 -0
  460. package/native/vendor/microtex/readme/samples/sample_5.svg +247 -0
  461. package/native/vendor/microtex/readme/samples/sample_6.svg +1082 -0
  462. package/native/vendor/microtex/readme/samples/sample_7.svg +518 -0
  463. package/native/vendor/microtex/readme/samples/sample_8.svg +529 -0
  464. package/native/vendor/microtex/readme/samples/sample_9.svg +1702 -0
  465. package/native/vendor/microtex/readme/samples.md +301 -0
  466. package/native/vendor/microtex/readme/tex_logo.svg +19 -0
  467. package/native/vendor/microtex/res/EXAMPLE.txt +25 -0
  468. package/native/vendor/microtex/res/SAMPLES.tex +946 -0
  469. package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm1 +0 -0
  470. package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm2 +0 -0
  471. package/native/vendor/microtex/res/firamath/FiraMath-Regular.otf +0 -0
  472. package/native/vendor/microtex/res/firamath/README.md +42 -0
  473. package/native/vendor/microtex/res/lm-math/README +92 -0
  474. package/native/vendor/microtex/res/lm-math/latinmodern-math.clm1 +0 -0
  475. package/native/vendor/microtex/res/lm-math/latinmodern-math.clm2 +0 -0
  476. package/native/vendor/microtex/res/lm-math/latinmodern-math.otf +0 -0
  477. package/native/vendor/microtex/res/tex-gyre/README-TeX-Gyre-DejaVu-Math.txt +82 -0
  478. package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm1 +0 -0
  479. package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm2 +0 -0
  480. package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.otf +0 -0
  481. package/native/vendor/microtex/res/xits/FONTLOG.txt +246 -0
  482. package/native/vendor/microtex/res/xits/OFL.txt +98 -0
  483. package/native/vendor/microtex/res/xits/README.txt +15 -0
  484. package/native/vendor/microtex/res/xits/XITS-Bold.clm1 +0 -0
  485. package/native/vendor/microtex/res/xits/XITS-Bold.clm2 +0 -0
  486. package/native/vendor/microtex/res/xits/XITS-Bold.otf +0 -0
  487. package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm1 +0 -0
  488. package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm2 +0 -0
  489. package/native/vendor/microtex/res/xits/XITS-BoldItalic.otf +0 -0
  490. package/native/vendor/microtex/res/xits/XITS-Italic.clm1 +0 -0
  491. package/native/vendor/microtex/res/xits/XITS-Italic.clm2 +0 -0
  492. package/native/vendor/microtex/res/xits/XITS-Italic.otf +0 -0
  493. package/native/vendor/microtex/res/xits/XITS-Regular.clm1 +0 -0
  494. package/native/vendor/microtex/res/xits/XITS-Regular.clm2 +0 -0
  495. package/native/vendor/microtex/res/xits/XITS-Regular.otf +0 -0
  496. package/native/vendor/microtex/res/xits/XITSMath-Bold.clm1 +0 -0
  497. package/native/vendor/microtex/res/xits/XITSMath-Bold.clm2 +0 -0
  498. package/native/vendor/microtex/res/xits/XITSMath-Bold.otf +0 -0
  499. package/native/vendor/microtex/res/xits/XITSMath-Regular.clm1 +0 -0
  500. package/native/vendor/microtex/res/xits/XITSMath-Regular.clm2 +0 -0
  501. package/native/vendor/microtex/res/xits/XITSMath-Regular.otf +0 -0
  502. package/native/vendor/microtex/test/clm/meson.build +10 -0
  503. package/native/vendor/microtex/test/clm/test_clm.cpp +140 -0
  504. package/native/vendor/microtex/test/env/meson.build +10 -0
  505. package/native/vendor/microtex/test/env/test_env.cpp +100 -0
  506. package/native/vendor/microtex/test/fuzzer/afl.native +20 -0
  507. package/native/vendor/microtex/test/fuzzer/fuzz.sh +135 -0
  508. package/native/vendor/microtex/test/fuzzer/fuzzer.cpp +61 -0
  509. package/native/vendor/microtex/test/fuzzer/generateSeed.java +33 -0
  510. package/native/vendor/microtex/test/fuzzer/meson.build +9 -0
  511. package/native/vendor/microtex/test/fuzzer/microtex.dict +3708 -0
  512. package/native/vendor/microtex/test/fuzzer/platform_none.cpp +100 -0
  513. package/native/vendor/microtex/test/has_filesystem.cpp +8 -0
  514. package/native/vendor/microtex/test/meson.build +6 -0
  515. package/native/vendor/nanosvg.h +3278 -0
  516. package/native/vendor/nanosvgrast.h +1472 -0
  517. package/native/vendor/zigtex/.github/assets/example.svg +27 -0
  518. package/native/vendor/zigtex/LICENSE +674 -0
  519. package/native/vendor/zigtex/README.md +52 -0
  520. package/native/vendor/zigtex/build.zig +52 -0
  521. package/native/vendor/zigtex/build.zig.zon +16 -0
  522. package/native/vendor/zigtex/fonts/latinmodern-math.clm2 +0 -0
  523. package/native/vendor/zigtex/src/main.zig +22 -0
  524. package/native/vendor/zigtex/src/root.zig +124 -0
  525. package/native/vendor/zigtex/src/svg.zig +273 -0
  526. package/native/vendor/zigtex/src/tex.zig +383 -0
  527. package/native/zigtex-0.16.patch +35 -0
  528. package/package.json +27 -0
  529. package/scripts/bootstrap-native +89 -0
@@ -0,0 +1,247 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="349pt" height="115pt" version="1.1" viewBox="0 0 349 115" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <defs>
4
+ <symbol id="g" overflow="visible">
5
+ <path d="m5.5781-9.75 3.0156 8.75c0.09375 0.27344 0.24219 0.4375 0.45312 0.5 0.1875 0.042969 0.42969 0.0625 0.73438 0.0625h0.25v0.4375c-0.58594-0.03125-1.1953-0.046875-1.8281-0.046875-1.0117 0-1.6836 0.015625-2.0156 0.046875v-0.4375c0.76953 0 1.1562-0.14062 1.1562-0.42188 0-0.007813-0.011719-0.070313-0.03125-0.1875l-0.75-2.1406h-3.4531l-0.64062 1.8281c-0.023438 0.042969-0.03125 0.11719-0.03125 0.21875 0 0.30469 0.17969 0.51562 0.54688 0.64062h0.015625c0.13281 0.042969 0.29688 0.0625 0.48438 0.0625v0.4375c-0.89844-0.03125-1.4336-0.046875-1.6094-0.046875-0.3125 0-0.78906 0.015625-1.4219 0.046875v-0.4375c0.78906-0.019531 1.2969-0.30078 1.5156-0.84375 0.019531-0.03125 0.035156-0.0625 0.046875-0.09375l2.8906-8.375c0.0625-0.15625 0.14062-0.24219 0.23438-0.26562 0.03125-0.007813 0.066406-0.015625 0.10938-0.015625 0.13281 0 0.23438 0.070312 0.29688 0.20312v0.03125zm-0.75 1.5781-1.5625 4.5469h3.1406z"/>
6
+ </symbol>
7
+ <symbol id="j" overflow="visible">
8
+ <path d="m2.4844-5.5938v4.5c0 0.29297 0.054687 0.46875 0.17188 0.53125l0.015625 0.015625c0.13281 0.074219 0.42969 0.10938 0.89062 0.10938h0.28125v0.4375c-0.36719-0.03125-0.95312-0.046875-1.7656-0.046875 0.019531 0-0.51562 0.015625-1.6094 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.03125-0.03125c0.0625-0.070312 0.09375-0.22656 0.09375-0.46875v-4.5312h-1.0938v-0.4375h1.0938v-1.6094c0-0.86328 0.35156-1.5 1.0625-1.9062 0.35156-0.21875 0.72266-0.32812 1.1094-0.32812 0.51953 0 0.89844 0.18359 1.1406 0.54688 0.082031 0.13672 0.125 0.28125 0.125 0.4375 0 0.32422-0.14844 0.52734-0.4375 0.60938h-0.1875c-0.30469 0-0.49219-0.14062-0.5625-0.42188l-0.015625-0.015625v-0.015625c-0.011719-0.050781-0.015625-0.097656-0.015625-0.14062 0-0.28125 0.14062-0.47656 0.42188-0.59375-0.14844-0.0625-0.30469-0.09375-0.46875-0.09375-0.40625 0-0.74219 0.23047-1 0.6875-0.1875 0.33594-0.28125 0.74219-0.28125 1.2188v1.625h1.6406v0.4375z"/>
9
+ </symbol>
10
+ <symbol id="i" overflow="visible">
11
+ <path d="m2.4062-1.0938c0 0.29297 0.054688 0.46875 0.17188 0.53125l0.015625 0.015625c0.125 0.074219 0.41406 0.10938 0.875 0.10938h0.29688v0.4375c-0.375-0.03125-0.96875-0.046875-1.7812-0.046875 0.03125 0-0.5 0.015625-1.5938 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.03125-0.03125c0.0625-0.070312 0.09375-0.22656 0.09375-0.46875v-3.75c0-0.36328-0.070313-0.58594-0.20312-0.67188-0.11719-0.070313-0.32031-0.10938-0.60938-0.10938h-0.28125v-0.4375l1.9531-0.15625v1.5469c0.25-0.78906 0.66016-1.2852 1.2344-1.4844 0.15625-0.039062 0.31641-0.0625 0.48438-0.0625 0.4375 0 0.75 0.16406 0.9375 0.48438 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.32422-0.15234 0.52344-0.45312 0.59375-0.054687 0.011719-0.10156 0.015625-0.14062 0.015625-0.29297 0-0.48047-0.125-0.5625-0.375-0.03125-0.0625-0.046875-0.13281-0.046875-0.21875 0-0.25781 0.10938-0.44141 0.32812-0.54688-0.023438-0.007813-0.074219-0.015625-0.15625-0.015625-0.625 0-1.0898 0.38281-1.3906 1.1406-0.17969 0.4375-0.26562 0.93359-0.26562 1.4844z"/>
12
+ </symbol>
13
+ <symbol id="e" overflow="visible">
14
+ <path d="m4.6562-1.0625c-0.23047 0.57422-0.63672 0.94922-1.2188 1.125-0.1875 0.0625-0.39062 0.09375-0.60938 0.09375-0.79297 0-1.4023-0.19141-1.8281-0.57812-0.27344-0.23828-0.40625-0.53906-0.40625-0.90625 0-0.71875 0.39453-1.2891 1.1875-1.7188 0.0625-0.039063 0.12891-0.078125 0.20312-0.10938 0.57031-0.26953 1.4102-0.4375 2.5156-0.5h0.0625v-0.51562c0-0.78906-0.28906-1.3359-0.85938-1.6406-0.1875-0.10156-0.39844-0.15625-0.625-0.15625-0.61719 0-1.0898 0.18359-1.4219 0.54688-0.03125 0.042969-0.0625 0.078125-0.09375 0.10938 0.4375 0.054688 0.67578 0.26562 0.71875 0.64062 0 0.3125-0.14844 0.51562-0.4375 0.60938-0.0625 0.023438-0.13281 0.03125-0.20312 0.03125-0.33594 0-0.54297-0.15625-0.625-0.46875-0.011719-0.039062-0.015625-0.10156-0.015625-0.1875 0-0.5625 0.28906-0.99219 0.875-1.2969 0.36328-0.1875 0.77344-0.28125 1.2344-0.28125 0.75781 0 1.3984 0.25781 1.9219 0.76562 0.32031 0.33594 0.48828 0.79688 0.5 1.3906v3.0625c0 0.27344 0.082031 0.46875 0.25 0.59375 0.070312 0.074219 0.16016 0.10938 0.26562 0.10938 0.32031 0 0.48828-0.30078 0.5-0.90625v-0.78125h0.35938v0.78125c0 0.6875-0.28125 1.1172-0.84375 1.2812-0.11719 0.03125-0.21875 0.046875-0.3125 0.046875-0.46094 0-0.78125-0.23828-0.96875-0.71875-0.0625-0.13281-0.10547-0.27344-0.125-0.42188zm-0.09375-2.2969c-1.4375 0.054687-2.3555 0.49219-2.75 1.3125-0.09375 0.23047-0.14062 0.46484-0.14062 0.70312 0 0.48047 0.21094 0.82812 0.64062 1.0469 0.1875 0.09375 0.39062 0.14062 0.60938 0.14062 0.48828 0 0.89453-0.19141 1.2188-0.57812 0.28125-0.3125 0.42188-0.71875 0.42188-1.2188z"/>
15
+ </symbol>
16
+ <symbol id="h" overflow="visible">
17
+ <path d="m1.5469-4.8125c0-0.36328-0.074219-0.58594-0.21875-0.67188-0.11719-0.070313-0.3125-0.10938-0.59375-0.10938h-0.28125v-0.4375l1.9688-0.15625v1.4688c0.4375-0.97656 1.1289-1.4688 2.0781-1.4688 1.082 0 1.7031 0.46094 1.8594 1.375 0.28125-0.63281 0.71875-1.0547 1.3125-1.2656 0.22656-0.070313 0.46875-0.10938 0.71875-0.10938 0.69531 0 1.1875 0.17188 1.4688 0.51562 0.25 0.29297 0.39062 0.6875 0.42188 1.1875 0.007812 0.17969 0.015625 0.49609 0.015625 0.95312v2.6719c0 0.23047 0.13281 0.35938 0.40625 0.39062 0.10156 0.023438 0.32812 0.03125 0.67188 0.03125v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.015625-0.03125c0.070312-0.070312 0.10938-0.22656 0.10938-0.46875v-3.2656c0-0.92578-0.26562-1.4375-0.79688-1.5312-0.085938-0.007813-0.16797-0.015625-0.25-0.015625-0.5625 0-1.0391 0.24609-1.4219 0.73438-0.3125 0.40625-0.46875 0.90625-0.46875 1.5v2.5781c0 0.3125 0.078125 0.5 0.23438 0.5625 0.10156 0.042969 0.39062 0.0625 0.85938 0.0625v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.015625-0.03125c0.070313-0.070312 0.10938-0.22656 0.10938-0.46875v-3.2656c0-0.92578-0.26562-1.4375-0.79688-1.5312-0.085937-0.007813-0.16797-0.015625-0.25-0.015625-0.5625 0-1.0391 0.24609-1.4219 0.73438-0.3125 0.40625-0.46875 0.90625-0.46875 1.5v2.5781c0 0.3125 0.078125 0.5 0.23438 0.5625 0.10156 0.042969 0.39062 0.0625 0.85938 0.0625v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.86719-0.039062 0.95312-0.125l0.03125-0.03125c0.070312-0.070312 0.10938-0.22656 0.10938-0.46875z"/>
18
+ </symbol>
19
+ <symbol id="d" overflow="visible">
20
+ <path d="m5.4531-3.2344h-3.9062c0 0.94922 0.14062 1.6484 0.42188 2.0938 0.44531 0.58594 0.97656 0.89844 1.5938 0.9375 0.63281 0 1.1484-0.25781 1.5469-0.78125 0.13281-0.1875 0.25-0.40625 0.34375-0.65625 0.019531-0.125 0.078125-0.1875 0.17188-0.1875 0.125 0 0.1875 0.054687 0.1875 0.15625 0 0.21094-0.13281 0.49219-0.39062 0.84375-0.38672 0.52344-0.89062 0.83203-1.5156 0.9375-0.13672 0.03125-0.28125 0.046875-0.4375 0.046875-0.875 0-1.6211-0.33594-2.2344-1.0156-0.5625-0.61328-0.84375-1.3516-0.84375-2.2188 0-0.96875 0.33594-1.7695 1.0156-2.4062 0.53906-0.51953 1.1719-0.78125 1.8906-0.78125 1.0625 0 1.8008 0.44922 2.2188 1.3438 0.19531 0.41797 0.29688 0.88281 0.29688 1.3906 0 0.15625-0.03125 0.25-0.09375 0.28125-0.03125 0.011719-0.12109 0.015625-0.26562 0.015625zm-3.8906-0.29688h3.3281c0-0.88281-0.19922-1.5508-0.59375-2-0.26172-0.28906-0.59375-0.4375-1-0.4375-0.46875 0-0.87109 0.21875-1.2031 0.65625-0.32422 0.42969-0.5 1.0234-0.53125 1.7812z"/>
21
+ </symbol>
22
+ <symbol id="b" overflow="visible">
23
+ <path d="m5.3125-0.76562c-0.48047 0.61719-1.1055 0.92188-1.875 0.92188-0.85547 0-1.5781-0.34375-2.1719-1.0312-0.53125-0.60156-0.79688-1.3164-0.79688-2.1406 0-0.96875 0.36328-1.7695 1.0938-2.4062 0.59375-0.50781 1.2695-0.76562 2.0312-0.76562 0.70703 0 1.2969 0.29297 1.7656 0.875v-3.0312c0-0.36328-0.0625-0.58594-0.1875-0.67188h-0.015625c-0.125-0.070313-0.42188-0.10938-0.89062-0.10938v-0.4375l2.0156-0.15625v8.5c0 0.36719 0.070312 0.58984 0.21875 0.67188h0.015625c0.125 0.074219 0.41016 0.10938 0.85938 0.10938v0.4375l-2.0625 0.15625zm0-3.75c0-0.1875-0.042969-0.34375-0.125-0.46875l-0.015625-0.0625c-0.38672-0.55078-0.89062-0.82812-1.5156-0.82812-0.65625 0-1.1836 0.29688-1.5781 0.89062-0.29297 0.44922-0.4375 1.1094-0.4375 1.9844s0.13281 1.5273 0.40625 1.9531c0.375 0.59375 0.86328 0.89062 1.4688 0.89062 0.66406 0 1.207-0.30469 1.625-0.92188l0.03125-0.0625c0.09375-0.1875 0.14062-0.35938 0.14062-0.51562z"/>
24
+ </symbol>
25
+ <symbol id="c" overflow="visible">
26
+ <path d="m2.4062-5.2812c0.53906-0.60156 1.1797-0.90625 1.9219-0.90625 0.85156 0 1.582 0.33984 2.1875 1.0156 0.51953 0.61719 0.78125 1.3281 0.78125 2.1406 0 0.98047-0.35938 1.7891-1.0781 2.4219-0.60547 0.51172-1.2891 0.76562-2.0469 0.76562-0.75 0-1.3516-0.32031-1.7969-0.96875-0.011719-0.019531-0.023438-0.039062-0.03125-0.0625l-0.51562 0.875h-0.34375v-8.3438c0-0.36328-0.070313-0.58594-0.20312-0.67188-0.10547-0.050781-0.28906-0.085937-0.54688-0.10938h-0.34375v-0.4375l2.0156-0.15625zm0.046875 3.6875c0 0.1875 0.046875 0.35156 0.14062 0.48438v0.015625l0.046875 0.078125c0.375 0.57422 0.86328 0.85938 1.4688 0.85938 0.65625 0 1.1875-0.29688 1.5938-0.89062 0.28125-0.44531 0.42188-1.1094 0.42188-1.9844s-0.13672-1.5234-0.40625-1.9531c-0.36719-0.59375-0.85547-0.89062-1.4688-0.89062-0.64844 0-1.1797 0.27344-1.5938 0.8125l-0.046875 0.078125c-0.10547 0.21094-0.15625 0.375-0.15625 0.5z"/>
27
+ </symbol>
28
+ <symbol id="a" overflow="visible">
29
+ <path d="m6.5938-3c0 0.96875-0.35547 1.7656-1.0625 2.3906-0.59375 0.51172-1.2773 0.76562-2.0469 0.76562-0.89844 0-1.6523-0.33594-2.2656-1.0156-0.55469-0.60156-0.82812-1.3164-0.82812-2.1406 0-0.94531 0.33594-1.75 1.0156-2.4062 0.59375-0.57031 1.2891-0.85938 2.0938-0.85938 0.90625 0 1.6641 0.35938 2.2812 1.0781 0.53906 0.625 0.8125 1.3555 0.8125 2.1875zm-3.0938 2.7969c0.625 0 1.1172-0.25781 1.4844-0.78125l0.14062-0.25c0.20703-0.40625 0.3125-1.0312 0.3125-1.875 0-0.89453-0.125-1.5391-0.375-1.9375-0.39844-0.58203-0.92188-0.89062-1.5781-0.92188-0.57422 0-1.0469 0.23438-1.4219 0.70312-0.074219 0.074219-0.13281 0.15234-0.17188 0.23438-0.23047 0.41797-0.34375 1.0586-0.34375 1.9219 0 0.90625 0.11719 1.5625 0.35938 1.9688 0.38281 0.61719 0.91406 0.92969 1.5938 0.9375z"/>
30
+ </symbol>
31
+ <symbol id="f" overflow="visible">
32
+ <path d="m4.0156-3.2969 1.875 2.4219c0.19531 0.25 0.45312 0.39062 0.76562 0.42188 0.11328 0.011719 0.30078 0.015625 0.5625 0.015625v0.4375c-0.41797-0.03125-0.86719-0.046875-1.3438-0.046875-0.16797 0-0.66797 0.015625-1.5 0.046875v-0.4375c0.28125-0.007812 0.44531-0.125 0.5-0.34375 0-0.039062-0.10156-0.19531-0.29688-0.46875l-1.0625-1.3906c-0.71094 0.83594-1.1094 1.3516-1.2031 1.5469-0.042969 0.085938-0.0625 0.15625-0.0625 0.21875 0 0.26172 0.13281 0.40625 0.40625 0.4375v0.4375c-0.66797-0.03125-1.1094-0.046875-1.3281-0.046875-0.40625 0-0.79297 0.015625-1.1562 0.046875v-0.4375c0.72656 0 1.3203-0.28125 1.7812-0.84375l1.3281-1.6562-1.3906-1.8125c-0.32422-0.41406-0.55859-0.66016-0.70312-0.73438-0.042969-0.03125-0.09375-0.050781-0.15625-0.0625h-0.015625c-0.125-0.03125-0.38672-0.046875-0.78125-0.046875v-0.4375c0.38281 0.03125 0.82812 0.046875 1.3281 0.046875 0.28125 0 0.78516-0.015625 1.5156-0.046875v0.4375c-0.3125 0.011719-0.47656 0.125-0.48438 0.34375 0 0.074219 0.039062 0.15625 0.125 0.25l1.0938 1.4219 0.85938-1.0938c0.14453-0.16406 0.21875-0.33203 0.21875-0.5 0-0.25781-0.13672-0.39844-0.40625-0.42188v-0.4375c0.36328 0.03125 0.8125 0.046875 1.3438 0.046875 0.39453 0 0.77344-0.015625 1.1406-0.046875v0.4375c-0.71094 0.011719-1.2617 0.25-1.6562 0.71875-0.17969 0.19922-0.60938 0.72656-1.2969 1.5781z"/>
33
+ </symbol>
34
+ <symbol id="m" overflow="visible">
35
+ <path d="m8.6719-4.7031-1.6406 4.5938c-0.0625 0.15625-0.15625 0.24219-0.28125 0.26562-0.125 0-0.21875-0.089844-0.28125-0.26562l-1.4219-3.9844-1.4219 3.9688c-0.054688 0.15625-0.11719 0.24219-0.1875 0.26562-0.03125 0.007813-0.0625 0.015625-0.09375 0.015625-0.125 0-0.21484-0.078125-0.26562-0.23438-0.011719-0.0078125-0.023437-0.035156-0.03125-0.078125l-1.7656-4.9531c-0.09375-0.25-0.23047-0.39844-0.40625-0.45312-0.11719-0.019531-0.32422-0.03125-0.625-0.03125v-0.4375c0.50781 0.03125 0.94141 0.046875 1.2969 0.046875 0.17578 0 0.6875-0.015625 1.5312-0.046875v0.4375c-0.55469 0-0.82812 0.125-0.82812 0.375 0 0.054688 0.023438 0.13672 0.078125 0.25l1.3281 3.7344 1.2031-3.3906c-0.16797-0.45703-0.27734-0.71094-0.32812-0.76562-0.16797-0.13281-0.46094-0.20312-0.875-0.20312v-0.4375c0.41406 0.03125 0.83203 0.046875 1.25 0.046875 0.15625 0 0.64062-0.015625 1.4531-0.046875v0.4375c-0.55469 0-0.82812 0.125-0.82812 0.375 0 0.03125 0.019531 0.12109 0.0625 0.26562l1.3906 3.9062 1.2812-3.5938c0.039063-0.11328 0.0625-0.20703 0.0625-0.28125 0-0.36328-0.20312-0.58594-0.60938-0.67188h-0.20312v-0.4375c0.53125 0.03125 0.96094 0.046875 1.2969 0.046875 0.375 0 0.71875-0.015625 1.0312-0.046875v0.4375c-0.58594 0.011719-0.97656 0.30859-1.1719 0.89062z"/>
36
+ </symbol>
37
+ <symbol id="t" overflow="visible">
38
+ <path d="m2.4844-6.1875v5.1406c0 0.29297 0.050781 0.46875 0.15625 0.53125 0.11328 0.054687 0.38281 0.078125 0.8125 0.078125v0.4375c-0.94922-0.03125-1.4336-0.046875-1.4531-0.046875-0.125 0-0.63672 0.015625-1.5312 0.046875v-0.4375c0.53906 0 0.85938-0.039062 0.95312-0.125l0.03125-0.03125c0.0625-0.070312 0.09375-0.22656 0.09375-0.46875v-3.7656c0-0.375-0.074219-0.59766-0.21875-0.67188h-0.015625l-0.015625-0.015625c-0.11719-0.050781-0.375-0.078125-0.78125-0.078125v-0.4375zm0.046875-2.4375c0 0.34375-0.15234 0.57422-0.45312 0.6875-0.09375 0.042969-0.1875 0.0625-0.28125 0.0625-0.33594 0-0.5625-0.14844-0.6875-0.45312v-0.015625c-0.042969-0.09375-0.0625-0.1875-0.0625-0.28125 0-0.28906 0.12891-0.50391 0.39062-0.64062 0.10156-0.0625 0.22266-0.09375 0.35938-0.09375 0.3125 0 0.53516 0.13672 0.67188 0.40625 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
39
+ </symbol>
40
+ <symbol id="s" overflow="visible">
41
+ <path d="m2.4219-5.5938v3.8906c0 0.92969 0.26953 1.4297 0.8125 1.5h0.125c0.40625 0 0.6875-0.25781 0.84375-0.78125 0.0625-0.21875 0.09375-0.47656 0.09375-0.78125v-0.76562h0.34375v0.79688c0 0.76172-0.21484 1.3125-0.64062 1.6562-0.19922 0.15625-0.44531 0.23438-0.73438 0.23438-0.78125 0-1.3203-0.29688-1.6094-0.89062-0.13672-0.26953-0.20312-0.60156-0.20312-1v-3.8594h-1.1875v-0.3125c0.83203-0.039062 1.3828-0.5625 1.6562-1.5625 0.09375-0.36328 0.14453-0.74219 0.15625-1.1406h0.34375v2.5781h2v0.4375z"/>
42
+ </symbol>
43
+ <symbol id="l" overflow="visible">
44
+ <path d="m6.3906-3.5312v2.6719c0.007813 0.23047 0.14453 0.35938 0.40625 0.39062 0.11328 0.023438 0.34375 0.03125 0.6875 0.03125v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.015625-0.03125c0.070313-0.070312 0.10938-0.22656 0.10938-0.46875v-3.2656c0-0.92578-0.26562-1.4375-0.79688-1.5312-0.085937-0.007813-0.16797-0.015625-0.25-0.015625-0.5625 0-1.0391 0.24609-1.4219 0.73438-0.3125 0.40625-0.46875 0.90625-0.46875 1.5v2.5781c0 0.3125 0.078125 0.5 0.23438 0.5625 0.10156 0.042969 0.39062 0.0625 0.85938 0.0625v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.86719-0.039062 0.95312-0.125l0.03125-0.03125c0.070312-0.070312 0.10938-0.22656 0.10938-0.46875v-7.2812c0-0.36328-0.070313-0.58594-0.20312-0.67188h-0.015625c-0.10547-0.050781-0.28125-0.085937-0.53125-0.10938h-0.34375v-0.4375l2.0156-0.15625v4.875h0.015625c0.25-0.57031 0.64844-0.96875 1.2031-1.1875 0.28125-0.09375 0.55078-0.14453 0.8125-0.15625 0.69531 0 1.1875 0.17188 1.4688 0.51562 0.25 0.29297 0.39062 0.6875 0.42188 1.1875v0.95312z"/>
45
+ </symbol>
46
+ <symbol id="r" overflow="visible">
47
+ <path d="m2.9062-2.7188c-0.80469-0.15625-1.3281-0.30469-1.5781-0.45312-0.09375-0.050781-0.18359-0.11328-0.26562-0.1875-0.39844-0.32031-0.59375-0.71875-0.59375-1.1875 0-0.65625 0.28516-1.1328 0.85938-1.4375 0.36328-0.1875 0.82031-0.28125 1.375-0.28125 0.51953 0 0.95703 0.13281 1.3125 0.39062 0.10156-0.082031 0.17969-0.16016 0.23438-0.23438 0.125-0.10156 0.21875-0.15625 0.28125-0.15625 0.09375 0.085937 0.14453 0.19531 0.15625 0.32812v1.4219c0 0.1875-0.027344 0.29297-0.078125 0.3125h-0.015625l-0.015625 0.015625h-0.0625c-0.10547 0-0.16406-0.039062-0.17188-0.125-0.074219-0.9375-0.46484-1.4883-1.1719-1.6562-0.14844-0.019531-0.30469-0.03125-0.46875-0.03125-0.875 0-1.3906 0.27344-1.5469 0.8125-0.011719 0.085938-0.015625 0.16797-0.015625 0.25 0 0.46875 0.35938 0.80469 1.0781 1 0.13281 0.042969 0.34766 0.089844 0.64062 0.14062 0.66406 0.13672 1.1445 0.32031 1.4375 0.54688 0.050781 0.042969 0.10156 0.085938 0.15625 0.125 0.39453 0.39844 0.59375 0.83984 0.59375 1.3281 0 0.79297-0.32812 1.3555-0.98438 1.6875-0.35547 0.17578-0.78125 0.26562-1.2812 0.26562-0.60547 0-1.1172-0.20312-1.5312-0.60938l-0.28125 0.32812c-0.1875 0.1875-0.30859 0.28125-0.35938 0.28125-0.09375-0.085938-0.14062-0.19531-0.14062-0.34375v-1.8438c0-0.20703 0.03125-0.31641 0.09375-0.32812l0.015625-0.015625h0.0625c0.09375 0 0.15625 0.054688 0.1875 0.15625 0 0.011719 0.003906 0.039062 0.015625 0.078125 0.23828 1.0859 0.69531 1.7266 1.375 1.9219 0.17578 0.042969 0.36328 0.0625 0.5625 0.0625 0.84375 0 1.3516-0.28906 1.5312-0.875 0.039062-0.125 0.0625-0.25391 0.0625-0.39062 0-0.6875-0.49219-1.1172-1.4688-1.2969z"/>
48
+ </symbol>
49
+ <symbol id="q" overflow="visible">
50
+ <path d="m5.4688-1.1094c-0.38672 0.84375-0.98438 1.2656-1.7969 1.2656-1.1484 0-1.8242-0.39844-2.0312-1.2031-0.0625-0.23828-0.09375-0.62891-0.09375-1.1719v-2.0938c0-0.60156-0.046875-0.96875-0.14062-1.0938l-0.078125-0.078125c-0.10547-0.070313-0.39844-0.10938-0.875-0.10938v-0.4375l2.0469-0.15625v4.6406c0 0.57422 0.10156 0.95312 0.3125 1.1406h0.015625c0.19531 0.16797 0.5 0.25 0.90625 0.25 0.63281 0 1.1094-0.3125 1.4219-0.9375 0.1875-0.35156 0.28125-0.76562 0.28125-1.2344v-2.4844c0-0.36328-0.074219-0.58594-0.21875-0.67188h-0.015625c-0.125-0.070313-0.41406-0.10938-0.85938-0.10938v-0.4375l2.0469-0.15625v4.9688c0 0.36719 0.070313 0.58984 0.21875 0.67188h0.015625c0.125 0.074219 0.41016 0.10938 0.85938 0.10938v0.4375l-2.0156 0.15625z"/>
51
+ </symbol>
52
+ <symbol id="k" overflow="visible">
53
+ <path d="m2.4844-9.7188v8.6562c0 0.3125 0.070313 0.5 0.21875 0.5625 0.10156 0.042969 0.39062 0.0625 0.85938 0.0625v0.4375l-1.5469-0.046875c-0.11719 0-0.63281 0.015625-1.5469 0.046875v-0.4375c0.53906 0 0.85938-0.039062 0.95312-0.125l0.03125-0.03125c0.0625-0.070312 0.09375-0.22656 0.09375-0.46875v-7.2812c0-0.36328-0.0625-0.58594-0.1875-0.67188h-0.015625c-0.10547-0.050781-0.28125-0.085937-0.53125-0.10938h-0.34375v-0.4375z"/>
54
+ </symbol>
55
+ <symbol id="p" overflow="visible">
56
+ <path d="m1.5469-4.8125c0-0.36328-0.074219-0.58594-0.21875-0.67188-0.11719-0.070313-0.3125-0.10938-0.59375-0.10938h-0.28125v-0.4375l1.9688-0.15625v1.4688c0.4375-0.97656 1.1289-1.4688 2.0781-1.4688 0.69531 0 1.1875 0.17188 1.4688 0.51562 0.25 0.29297 0.39062 0.6875 0.42188 1.1875v0.95312 2.6719c0.007813 0.23047 0.14453 0.35938 0.40625 0.39062 0.11328 0.023438 0.34375 0.03125 0.6875 0.03125v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.015625-0.03125c0.070313-0.070312 0.10938-0.22656 0.10938-0.46875v-3.2656c0-0.92578-0.26562-1.4375-0.79688-1.5312-0.085937-0.007813-0.16797-0.015625-0.25-0.015625-0.5625 0-1.0391 0.24609-1.4219 0.73438-0.3125 0.40625-0.46875 0.90625-0.46875 1.5v2.5781c0 0.3125 0.078125 0.5 0.23438 0.5625 0.10156 0.042969 0.39062 0.0625 0.85938 0.0625v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.86719-0.039062 0.95312-0.125l0.03125-0.03125c0.070312-0.070312 0.10938-0.22656 0.10938-0.46875z"/>
57
+ </symbol>
58
+ <symbol id="o" overflow="visible">
59
+ <path d="m5.8281-4.6562-1.8438 4.5469c-0.074219 0.17578-0.16797 0.26562-0.28125 0.26562-0.11719 0-0.20312-0.058594-0.26562-0.17188 0-0.019531-0.011719-0.050781-0.03125-0.09375l-2.0156-4.9688c-0.10547-0.25-0.21875-0.39453-0.34375-0.4375v-0.015625c-0.125-0.039062-0.38672-0.0625-0.78125-0.0625v-0.4375c0.41406 0.03125 0.86719 0.046875 1.3594 0.046875 0.17578 0 0.6875-0.015625 1.5312-0.046875v0.4375c-0.53125 0-0.79688 0.12109-0.79688 0.35938 0 0.03125 0.023437 0.10938 0.078125 0.23438l1.5625 3.9062 1.4375-3.5625c0.050781-0.16406 0.078125-0.28125 0.078125-0.34375 0-0.32031-0.16406-0.51953-0.48438-0.59375h-0.1875v-0.4375c0.47656 0.03125 0.88281 0.046875 1.2188 0.046875 0.38281 0 0.73438-0.015625 1.0469-0.046875v0.4375c-0.60547 0-1.0234 0.28125-1.25 0.84375v0.015625c-0.011719 0.023437-0.023437 0.046875-0.03125 0.078125z"/>
60
+ </symbol>
61
+ <symbol id="n" overflow="visible">
62
+ <path d="m0.85938-17.156 7.1094-7.1094c0.21875-0.21875 0.45312-0.39844 0.70312-0.54688v-1.4844c0-0.070313 0.023437-0.13281 0.078125-0.1875 0.050781-0.0625 0.11719-0.09375 0.20312-0.09375h1.5469c0.070312 0 0.13281 0.03125 0.1875 0.09375 0.0625 0.054687 0.09375 0.11719 0.09375 0.1875v1.4844c0.23828 0.14844 0.47266 0.32812 0.70312 0.54688l7.0938 7.1094c0.58203 0.58594 0.875 1.1719 0.875 1.7656 0 0.58594-0.29297 1.1641-0.875 1.7344l-7.0938 7.125c-0.23047 0.21875-0.46484 0.40234-0.70312 0.54688v5.4219h5.1719c0.070313 0 0.13281 0.03125 0.1875 0.09375 0.050781 0.054688 0.078125 0.11719 0.078125 0.1875 0 0.074219-0.027344 0.14062-0.078125 0.20312-0.054687 0.054688-0.11719 0.078125-0.1875 0.078125h-12.453c-0.074219 0-0.14062-0.023438-0.20312-0.078125-0.054687-0.0625-0.078125-0.12891-0.078125-0.20312 0-0.070312 0.023438-0.13281 0.078125-0.1875 0.0625-0.0625 0.12891-0.09375 0.20312-0.09375h5.1719v-5.4219c-0.25-0.14453-0.48438-0.32812-0.70312-0.54688l-7.1094-7.125c-0.57422-0.5625-0.85938-1.1406-0.85938-1.7344 0-0.60156 0.28516-1.1914 0.85938-1.7656zm8.8594-7.4062c-0.21094 0-0.42188 0.054688-0.64062 0.15625-0.21094 0.10547-0.44922 0.28125-0.71875 0.53125l-7.0938 7.1094c-0.46875 0.46875-0.70312 0.92969-0.70312 1.375 0 0.4375 0.23438 0.88672 0.70312 1.3438l7.0938 7.1094c0.26953 0.26172 0.50781 0.44531 0.71875 0.54688 0.21875 0.09375 0.42969 0.14062 0.64062 0.14062 0.20703 0 0.42578-0.046875 0.65625-0.14062 0.21875-0.11328 0.45312-0.29688 0.70312-0.54688l7.1094-7.1094c0.46875-0.45703 0.70312-0.90625 0.70312-1.3438 0-0.44531-0.23438-0.90625-0.70312-1.375l-7.1094-7.1094c-0.25-0.23828-0.48438-0.41406-0.70312-0.53125-0.23047-0.10156-0.44922-0.15625-0.65625-0.15625zm-3.4531 9.4219 6.2188-2.3281c0.125-0.050781 0.20312-0.11328 0.23438-0.1875 0.03125-0.082031 0.035156-0.14844 0.015625-0.20312-0.023437-0.050781-0.046875-0.082031-0.078125-0.09375l-6.2344-1.1562 0.375-1.9219 6.2031 1.1719c0.53125 0.09375 0.94141 0.33594 1.2344 0.71875 0.28906 0.38672 0.44141 0.80469 0.45312 1.25 0.019531 0.4375-0.10547 0.875-0.375 1.3125-0.26172 0.42969-0.64062 0.73438-1.1406 0.92188l-6.2188 2.3281c-0.11719 0.042969-0.19531 0.10547-0.23438 0.1875-0.03125 0.085937-0.039062 0.15234-0.015625 0.20312 0.03125 0.054688 0.0625 0.078125 0.09375 0.078125l6.2031 1.1719-0.34375 1.9219-6.2344-1.1875c-0.51172-0.09375-0.91406-0.32812-1.2031-0.70312-0.29297-0.38281-0.44922-0.79688-0.46875-1.2344-0.011719-0.44531 0.11328-0.89062 0.375-1.3281 0.25781-0.4375 0.64062-0.74219 1.1406-0.92188zm2.9531 14.578h1v-5.1719c-0.13672 0.03125-0.30469 0.046875-0.5 0.046875-0.1875 0-0.35547-0.015625-0.5-0.046875zm0-25.453v0.95312c0.14453-0.03125 0.3125-0.046875 0.5-0.046875 0.19531 0 0.36328 0.015625 0.5 0.046875v-0.95312z"/>
63
+ </symbol>
64
+ </defs>
65
+ <rect width="349" height="115" fill="#fff"/>
66
+ <path transform="scale(14)" d="m1.2344 0.9495h11.371v3.24h-11.371z" fill="none" stroke="#000" stroke-miterlimit="0" stroke-width=".039999"/>
67
+ <g>
68
+ <use x="26.660156" y="49.273438" xlink:href="#g"/>
69
+ </g>
70
+ <g>
71
+ <use x="41.828125" y="49.273438" xlink:href="#j"/>
72
+ </g>
73
+ <g>
74
+ <use x="46.105469" y="49.273438" xlink:href="#i"/>
75
+ </g>
76
+ <g>
77
+ <use x="51.585938" y="49.273438" xlink:href="#e"/>
78
+ </g>
79
+ <g>
80
+ <use x="58.585938" y="49.273438" xlink:href="#h"/>
81
+ </g>
82
+ <g>
83
+ <use x="70.253906" y="49.273438" xlink:href="#d"/>
84
+ </g>
85
+ <g>
86
+ <use x="76.476562" y="49.273438" xlink:href="#b"/>
87
+ </g>
88
+ <g>
89
+ <use x="88.921875" y="49.273438" xlink:href="#c"/>
90
+ </g>
91
+ <g>
92
+ <use x="97.089844" y="49.273438" xlink:href="#a"/>
93
+ </g>
94
+ <g>
95
+ <use x="103.699219" y="49.273438" xlink:href="#f"/>
96
+ </g>
97
+ <g>
98
+ <use x="115.753906" y="49.273438" xlink:href="#m"/>
99
+ </g>
100
+ <g>
101
+ <use x="125.867188" y="49.273438" xlink:href="#t"/>
102
+ </g>
103
+ <g>
104
+ <use x="129.753906" y="49.273438" xlink:href="#s"/>
105
+ </g>
106
+ <g>
107
+ <use x="135.199219" y="49.273438" xlink:href="#l"/>
108
+ </g>
109
+ <g>
110
+ <use x="147.644531" y="49.273438" xlink:href="#n"/>
111
+ </g>
112
+ <g>
113
+ <use x="209.769531" y="49.273438" xlink:href="#g"/>
114
+ </g>
115
+ <g>
116
+ <use x="224.9375" y="49.273438" xlink:href="#r"/>
117
+ </g>
118
+ <g>
119
+ <use x="230.460938" y="49.273438" xlink:href="#l"/>
120
+ </g>
121
+ <g>
122
+ <use x="238.238281" y="49.273438" xlink:href="#e"/>
123
+ </g>
124
+ <g>
125
+ <use x="245.238281" y="49.273438" xlink:href="#b"/>
126
+ </g>
127
+ <g>
128
+ <use x="253.015625" y="49.273438" xlink:href="#a"/>
129
+ </g>
130
+ <g>
131
+ <use x="259.625" y="49.273438" xlink:href="#m"/>
132
+ </g>
133
+ <g>
134
+ <use x="269.347656" y="49.273438" xlink:href="#d"/>
135
+ </g>
136
+ <g>
137
+ <use x="275.570312" y="49.273438" xlink:href="#b"/>
138
+ </g>
139
+ <g>
140
+ <use x="288.015625" y="49.273438" xlink:href="#c"/>
141
+ </g>
142
+ <g>
143
+ <use x="296.183594" y="49.273438" xlink:href="#a"/>
144
+ </g>
145
+ <g>
146
+ <use x="302.792969" y="49.273438" xlink:href="#f"/>
147
+ </g>
148
+ <path transform="scale(14)" d="m14.314 2.1551h8.5123v2.0343h-8.5123z" fill="none" stroke="#000" stroke-miterlimit="0" stroke-width=".039999"/>
149
+ <path d="m201.35 57.934h119.73v2.2383h-119.73z"/>
150
+ <path d="m318.84 32.41h2.2383v26.523h-2.2383z"/>
151
+ <path transform="scale(14)" d="m1.4874 4.8301h10.864v2.3058h-10.864z" fill="none" stroke="#000" stroke-miterlimit="0" stroke-width=".059998"/>
152
+ <path transform="scale(14)" d="m1.6283 4.9707h10.583v2.0246h-10.583z" fill="none" stroke="#000" stroke-miterlimit="0" stroke-width=".029999"/>
153
+ <g>
154
+ <use x="32.105469" y="88.625" xlink:href="#g"/>
155
+ </g>
156
+ <g>
157
+ <use x="47.273437" y="88.625" xlink:href="#b"/>
158
+ </g>
159
+ <g>
160
+ <use x="55.050781" y="88.625" xlink:href="#a"/>
161
+ </g>
162
+ <g>
163
+ <use x="62.050781" y="88.625" xlink:href="#q"/>
164
+ </g>
165
+ <g>
166
+ <use x="69.828125" y="88.625" xlink:href="#c"/>
167
+ </g>
168
+ <g>
169
+ <use x="77.605469" y="88.625" xlink:href="#k"/>
170
+ </g>
171
+ <g>
172
+ <use x="81.496094" y="88.625" xlink:href="#d"/>
173
+ </g>
174
+ <g>
175
+ <use x="92.382812" y="88.625" xlink:href="#j"/>
176
+ </g>
177
+ <g>
178
+ <use x="96.660156" y="88.625" xlink:href="#i"/>
179
+ </g>
180
+ <g>
181
+ <use x="102.144531" y="88.625" xlink:href="#e"/>
182
+ </g>
183
+ <g>
184
+ <use x="109.144531" y="88.625" xlink:href="#h"/>
185
+ </g>
186
+ <g>
187
+ <use x="120.8125" y="88.625" xlink:href="#d"/>
188
+ </g>
189
+ <g>
190
+ <use x="127.035156" y="88.625" xlink:href="#b"/>
191
+ </g>
192
+ <g>
193
+ <use x="139.476562" y="88.625" xlink:href="#c"/>
194
+ </g>
195
+ <g>
196
+ <use x="147.644531" y="88.625" xlink:href="#a"/>
197
+ </g>
198
+ <g>
199
+ <use x="154.253906" y="88.625" xlink:href="#f"/>
200
+ </g>
201
+ <g>
202
+ <use x="200.410156" y="88.625" xlink:href="#g"/>
203
+ </g>
204
+ <g>
205
+ <use x="210.910156" y="88.625" xlink:href="#p"/>
206
+ </g>
207
+ <g>
208
+ <use x="223.355469" y="88.625" xlink:href="#a"/>
209
+ </g>
210
+ <g>
211
+ <use x="229.964844" y="88.625" xlink:href="#o"/>
212
+ </g>
213
+ <g>
214
+ <use x="236.964844" y="88.625" xlink:href="#e"/>
215
+ </g>
216
+ <g>
217
+ <use x="243.964844" y="88.625" xlink:href="#k"/>
218
+ </g>
219
+ <g>
220
+ <use x="252.519531" y="88.625" xlink:href="#j"/>
221
+ </g>
222
+ <g>
223
+ <use x="256.796875" y="88.625" xlink:href="#i"/>
224
+ </g>
225
+ <g>
226
+ <use x="262.28125" y="88.625" xlink:href="#e"/>
227
+ </g>
228
+ <g>
229
+ <use x="269.28125" y="88.625" xlink:href="#h"/>
230
+ </g>
231
+ <g>
232
+ <use x="280.949219" y="88.625" xlink:href="#d"/>
233
+ </g>
234
+ <g>
235
+ <use x="287.171875" y="88.625" xlink:href="#b"/>
236
+ </g>
237
+ <g>
238
+ <use x="299.617188" y="88.625" xlink:href="#c"/>
239
+ </g>
240
+ <g>
241
+ <use x="307.78125" y="88.625" xlink:href="#a"/>
242
+ </g>
243
+ <g>
244
+ <use x="314.394531" y="88.625" xlink:href="#f"/>
245
+ </g>
246
+ <path transform="scale(14)" d="m13.645 5.3728c0-0.22489 0.18192-0.40681 0.40681-0.40681h9.1956c0.22489 0 0.40709 0.18192 0.40709 0.40681v1.2207c0 0.22461-0.1822 0.40681-0.40709 0.40681h-9.1956c-0.22489 0-0.40681-0.1822-0.40681-0.40681z" fill="none" stroke="#000" stroke-miterlimit="0" stroke-width=".039999"/>
247
+ </svg>