@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.
- package/LICENSE +674 -0
- package/LICENSE-PROJECT +21 -0
- package/README.md +7 -0
- package/build.zig +112 -0
- package/build.zig.zon +12 -0
- package/native/lib.zig +280 -0
- package/native/nanosvg.c +4 -0
- package/native/vendor/.bootstrap-v5 +1 -0
- package/native/vendor/LICENSE-NANOSVG +18 -0
- package/native/vendor/microtex/.clang-format +26 -0
- package/native/vendor/microtex/.github/workflows/ubuntu.yml +92 -0
- package/native/vendor/microtex/.github/workflows/windows-gdi.yml +34 -0
- package/native/vendor/microtex/.github/workflows/windows-qt.yml +52 -0
- package/native/vendor/microtex/CMakeLists.txt +110 -0
- package/native/vendor/microtex/LICENSE +21 -0
- package/native/vendor/microtex/MicroTeXInstall.cmake +42 -0
- package/native/vendor/microtex/README.md +600 -0
- package/native/vendor/microtex/build.zig +209 -0
- package/native/vendor/microtex/clatexmath.wrap +6 -0
- package/native/vendor/microtex/doc/meson.build +38 -0
- package/native/vendor/microtex/doc/microtex-doc.toml.in +47 -0
- package/native/vendor/microtex/doc/microtex.svg +39 -0
- package/native/vendor/microtex/doc/urlmap.js +6 -0
- package/native/vendor/microtex/example/gtk/CMakeLists.txt +68 -0
- package/native/vendor/microtex/example/gtk/gtk_main.c +170 -0
- package/native/vendor/microtex/example/gtk/isamples.cpp +21 -0
- package/native/vendor/microtex/example/gtk/isamples.h +15 -0
- package/native/vendor/microtex/example/gtk/meson.build +27 -0
- package/native/vendor/microtex/example/gtk/microtex-gtk.gresource.xml +6 -0
- package/native/vendor/microtex/example/gtk/microtex-gtk.ui +117 -0
- package/native/vendor/microtex/example/gtkmm/CMakeLists.txt +19 -0
- package/native/vendor/microtex/example/gtkmm/gtkmm_main.cpp +531 -0
- package/native/vendor/microtex/example/gtkmm/meson.build +19 -0
- package/native/vendor/microtex/example/memcheck/CMakeLists.txt +12 -0
- package/native/vendor/microtex/example/memcheck/mem_check_main.cpp +154 -0
- package/native/vendor/microtex/example/qt/CMakeLists.txt +37 -0
- package/native/vendor/microtex/example/qt/meson.build +25 -0
- package/native/vendor/microtex/example/qt/qt_main.cpp +70 -0
- package/native/vendor/microtex/example/qt/qt_mainwindow.cpp +107 -0
- package/native/vendor/microtex/example/qt/qt_mainwindow.h +40 -0
- package/native/vendor/microtex/example/qt/qt_skiatexwidget.cpp +149 -0
- package/native/vendor/microtex/example/qt/qt_skiatexwidget.h +48 -0
- package/native/vendor/microtex/example/qt/qt_tex_render.h +15 -0
- package/native/vendor/microtex/example/qt/qt_texqmlitem.cpp +56 -0
- package/native/vendor/microtex/example/qt/qt_texqmlitem.h +31 -0
- package/native/vendor/microtex/example/qt/qt_texwidget.cpp +62 -0
- package/native/vendor/microtex/example/qt/qt_texwidget.h +31 -0
- package/native/vendor/microtex/example/qtpng/CMakeLists.txt +11 -0
- package/native/vendor/microtex/example/qtpng/latex2png.cpp +115 -0
- package/native/vendor/microtex/example/samples/samples.cpp +52 -0
- package/native/vendor/microtex/example/samples/samples.h +32 -0
- package/native/vendor/microtex/example/win32/CMakeLists.txt +15 -0
- package/native/vendor/microtex/example/win32/meson.build +18 -0
- package/native/vendor/microtex/example/win32/win32_main.cpp +375 -0
- package/native/vendor/microtex/githooks/pre-commit +19 -0
- package/native/vendor/microtex/githooks/pre-push +103 -0
- package/native/vendor/microtex/lib/CMakeLists.txt +234 -0
- package/native/vendor/microtex/lib/atom/atom.cpp +14 -0
- package/native/vendor/microtex/lib/atom/atom.h +96 -0
- package/native/vendor/microtex/lib/atom/atom_accent.cpp +115 -0
- package/native/vendor/microtex/lib/atom/atom_accent.h +53 -0
- package/native/vendor/microtex/lib/atom/atom_basic.cpp +146 -0
- package/native/vendor/microtex/lib/atom/atom_basic.h +273 -0
- package/native/vendor/microtex/lib/atom/atom_box.cpp +41 -0
- package/native/vendor/microtex/lib/atom/atom_box.h +70 -0
- package/native/vendor/microtex/lib/atom/atom_char.cpp +99 -0
- package/native/vendor/microtex/lib/atom/atom_char.h +147 -0
- package/native/vendor/microtex/lib/atom/atom_delim.cpp +65 -0
- package/native/vendor/microtex/lib/atom/atom_delim.h +58 -0
- package/native/vendor/microtex/lib/atom/atom_fence.cpp +65 -0
- package/native/vendor/microtex/lib/atom/atom_fence.h +56 -0
- package/native/vendor/microtex/lib/atom/atom_font.cpp +20 -0
- package/native/vendor/microtex/lib/atom/atom_font.h +49 -0
- package/native/vendor/microtex/lib/atom/atom_frac.cpp +101 -0
- package/native/vendor/microtex/lib/atom/atom_frac.h +42 -0
- package/native/vendor/microtex/lib/atom/atom_matrix.cpp +756 -0
- package/native/vendor/microtex/lib/atom/atom_matrix.h +268 -0
- package/native/vendor/microtex/lib/atom/atom_misc.cpp +230 -0
- package/native/vendor/microtex/lib/atom/atom_misc.h +200 -0
- package/native/vendor/microtex/lib/atom/atom_operator.cpp +51 -0
- package/native/vendor/microtex/lib/atom/atom_operator.h +41 -0
- package/native/vendor/microtex/lib/atom/atom_root.cpp +61 -0
- package/native/vendor/microtex/lib/atom/atom_root.h +27 -0
- package/native/vendor/microtex/lib/atom/atom_row.cpp +334 -0
- package/native/vendor/microtex/lib/atom/atom_row.h +176 -0
- package/native/vendor/microtex/lib/atom/atom_scripts.cpp +182 -0
- package/native/vendor/microtex/lib/atom/atom_scripts.h +52 -0
- package/native/vendor/microtex/lib/atom/atom_sideset.cpp +92 -0
- package/native/vendor/microtex/lib/atom/atom_sideset.h +24 -0
- package/native/vendor/microtex/lib/atom/atom_space.cpp +22 -0
- package/native/vendor/microtex/lib/atom/atom_space.h +38 -0
- package/native/vendor/microtex/lib/atom/atom_stack.cpp +117 -0
- package/native/vendor/microtex/lib/atom/atom_stack.h +103 -0
- package/native/vendor/microtex/lib/atom/atom_text.cpp +17 -0
- package/native/vendor/microtex/lib/atom/atom_text.h +33 -0
- package/native/vendor/microtex/lib/atom/atom_vrow.cpp +96 -0
- package/native/vendor/microtex/lib/atom/atom_vrow.h +47 -0
- package/native/vendor/microtex/lib/atom/atom_zstack.cpp +66 -0
- package/native/vendor/microtex/lib/atom/atom_zstack.h +37 -0
- package/native/vendor/microtex/lib/atom/colors_def.cpp +157 -0
- package/native/vendor/microtex/lib/atom/meson.build +50 -0
- package/native/vendor/microtex/lib/box/box.cpp +49 -0
- package/native/vendor/microtex/lib/box/box.h +184 -0
- package/native/vendor/microtex/lib/box/box_factory.cpp +162 -0
- package/native/vendor/microtex/lib/box/box_factory.h +24 -0
- package/native/vendor/microtex/lib/box/box_group.cpp +503 -0
- package/native/vendor/microtex/lib/box/box_group.h +285 -0
- package/native/vendor/microtex/lib/box/box_single.cpp +179 -0
- package/native/vendor/microtex/lib/box/box_single.h +157 -0
- package/native/vendor/microtex/lib/box/meson.build +15 -0
- package/native/vendor/microtex/lib/core/debug_config.cpp +3 -0
- package/native/vendor/microtex/lib/core/debug_config.h +24 -0
- package/native/vendor/microtex/lib/core/formula.cpp +180 -0
- package/native/vendor/microtex/lib/core/formula.h +137 -0
- package/native/vendor/microtex/lib/core/formula_def.cpp +167 -0
- package/native/vendor/microtex/lib/core/glue.cpp +108 -0
- package/native/vendor/microtex/lib/core/glue.h +55 -0
- package/native/vendor/microtex/lib/core/localized_num.cpp +51 -0
- package/native/vendor/microtex/lib/core/meson.build +19 -0
- package/native/vendor/microtex/lib/core/parser.cpp +874 -0
- package/native/vendor/microtex/lib/core/parser.h +306 -0
- package/native/vendor/microtex/lib/core/split.cpp +185 -0
- package/native/vendor/microtex/lib/core/split.h +40 -0
- package/native/vendor/microtex/lib/env/env.cpp +141 -0
- package/native/vendor/microtex/lib/env/env.h +221 -0
- package/native/vendor/microtex/lib/env/meson.build +11 -0
- package/native/vendor/microtex/lib/env/units.cpp +109 -0
- package/native/vendor/microtex/lib/env/units.h +61 -0
- package/native/vendor/microtex/lib/graphic/font_style.cpp +63 -0
- package/native/vendor/microtex/lib/graphic/font_style.h +61 -0
- package/native/vendor/microtex/lib/graphic/graphic.cpp +38 -0
- package/native/vendor/microtex/lib/graphic/graphic.h +314 -0
- package/native/vendor/microtex/lib/graphic/graphic_basic.cpp +44 -0
- package/native/vendor/microtex/lib/graphic/graphic_basic.h +131 -0
- package/native/vendor/microtex/lib/graphic/meson.build +13 -0
- package/native/vendor/microtex/lib/macro/macro.cpp +143 -0
- package/native/vendor/microtex/lib/macro/macro.h +155 -0
- package/native/vendor/microtex/lib/macro/macro_accent.cpp +50 -0
- package/native/vendor/microtex/lib/macro/macro_accent.h +61 -0
- package/native/vendor/microtex/lib/macro/macro_boxes.h +68 -0
- package/native/vendor/microtex/lib/macro/macro_colors.cpp +42 -0
- package/native/vendor/microtex/lib/macro/macro_colors.h +42 -0
- package/native/vendor/microtex/lib/macro/macro_decl.h +16 -0
- package/native/vendor/microtex/lib/macro/macro_def.cpp +418 -0
- package/native/vendor/microtex/lib/macro/macro_delims.cpp +56 -0
- package/native/vendor/microtex/lib/macro/macro_delims.h +73 -0
- package/native/vendor/microtex/lib/macro/macro_env.h +212 -0
- package/native/vendor/microtex/lib/macro/macro_fonts.cpp +53 -0
- package/native/vendor/microtex/lib/macro/macro_fonts.h +78 -0
- package/native/vendor/microtex/lib/macro/macro_frac.cpp +138 -0
- package/native/vendor/microtex/lib/macro/macro_frac.h +50 -0
- package/native/vendor/microtex/lib/macro/macro_misc.cpp +211 -0
- package/native/vendor/microtex/lib/macro/macro_misc.h +217 -0
- package/native/vendor/microtex/lib/macro/macro_scripts.cpp +32 -0
- package/native/vendor/microtex/lib/macro/macro_scripts.h +17 -0
- package/native/vendor/microtex/lib/macro/macro_sizes.h +110 -0
- package/native/vendor/microtex/lib/macro/macro_space.cpp +31 -0
- package/native/vendor/microtex/lib/macro/macro_space.h +17 -0
- package/native/vendor/microtex/lib/macro/macro_styles.cpp +45 -0
- package/native/vendor/microtex/lib/macro/macro_styles.h +22 -0
- package/native/vendor/microtex/lib/macro/macro_types.h +48 -0
- package/native/vendor/microtex/lib/macro/meson.build +33 -0
- package/native/vendor/microtex/lib/meson.build +102 -0
- package/native/vendor/microtex/lib/microtex.cpp +208 -0
- package/native/vendor/microtex/lib/microtex.h +225 -0
- package/native/vendor/microtex/lib/microtexConfig.cmake.in +2 -0
- package/native/vendor/microtex/lib/microtexapi.h +22 -0
- package/native/vendor/microtex/lib/microtexconfig.h.in +7 -0
- package/native/vendor/microtex/lib/microtexexport.h +31 -0
- package/native/vendor/microtex/lib/otf/clm.cpp +405 -0
- package/native/vendor/microtex/lib/otf/clm.h +61 -0
- package/native/vendor/microtex/lib/otf/fontsense.cpp +191 -0
- package/native/vendor/microtex/lib/otf/fontsense.h +20 -0
- package/native/vendor/microtex/lib/otf/glyph.cpp +53 -0
- package/native/vendor/microtex/lib/otf/glyph.h +384 -0
- package/native/vendor/microtex/lib/otf/math_consts.h +154 -0
- package/native/vendor/microtex/lib/otf/meson.build +18 -0
- package/native/vendor/microtex/lib/otf/otf.cpp +84 -0
- package/native/vendor/microtex/lib/otf/otf.h +177 -0
- package/native/vendor/microtex/lib/otf/otfconfig.h +32 -0
- package/native/vendor/microtex/lib/otf/path.cpp +187 -0
- package/native/vendor/microtex/lib/otf/path.h +120 -0
- package/native/vendor/microtex/lib/render/builder.cpp +68 -0
- package/native/vendor/microtex/lib/render/builder.h +73 -0
- package/native/vendor/microtex/lib/render/meson.build +11 -0
- package/native/vendor/microtex/lib/render/render.cpp +136 -0
- package/native/vendor/microtex/lib/render/render.h +59 -0
- package/native/vendor/microtex/lib/unimath/font_meta.h +22 -0
- package/native/vendor/microtex/lib/unimath/font_src.cpp +21 -0
- package/native/vendor/microtex/lib/unimath/font_src.h +61 -0
- package/native/vendor/microtex/lib/unimath/math_type.cpp +318 -0
- package/native/vendor/microtex/lib/unimath/math_type.h +105 -0
- package/native/vendor/microtex/lib/unimath/meson.build +18 -0
- package/native/vendor/microtex/lib/unimath/uni_char.cpp +121 -0
- package/native/vendor/microtex/lib/unimath/uni_char.h +109 -0
- package/native/vendor/microtex/lib/unimath/uni_font.cpp +248 -0
- package/native/vendor/microtex/lib/unimath/uni_font.h +139 -0
- package/native/vendor/microtex/lib/unimath/uni_symbol.cpp +2929 -0
- package/native/vendor/microtex/lib/unimath/uni_symbol.h +31 -0
- package/native/vendor/microtex/lib/utils/dict_tree.h +68 -0
- package/native/vendor/microtex/lib/utils/exceptions.h +61 -0
- package/native/vendor/microtex/lib/utils/log.h +34 -0
- package/native/vendor/microtex/lib/utils/meson.build +18 -0
- package/native/vendor/microtex/lib/utils/nums.h +24 -0
- package/native/vendor/microtex/lib/utils/string_utils.cpp +85 -0
- package/native/vendor/microtex/lib/utils/string_utils.h +130 -0
- package/native/vendor/microtex/lib/utils/types.h +152 -0
- package/native/vendor/microtex/lib/utils/utf.cpp +115 -0
- package/native/vendor/microtex/lib/utils/utf.h +58 -0
- package/native/vendor/microtex/lib/utils/utils.cpp +40 -0
- package/native/vendor/microtex/lib/utils/utils.h +88 -0
- package/native/vendor/microtex/lib/wrapper/byte_seq.cpp +46 -0
- package/native/vendor/microtex/lib/wrapper/byte_seq.h +70 -0
- package/native/vendor/microtex/lib/wrapper/callback.cpp +10 -0
- package/native/vendor/microtex/lib/wrapper/callback.h +72 -0
- package/native/vendor/microtex/lib/wrapper/cwrapper.cpp +206 -0
- package/native/vendor/microtex/lib/wrapper/cwrapper.h +305 -0
- package/native/vendor/microtex/lib/wrapper/graphic_wrapper.cpp +211 -0
- package/native/vendor/microtex/lib/wrapper/graphic_wrapper.h +159 -0
- package/native/vendor/microtex/lib/wrapper/meson.build +22 -0
- package/native/vendor/microtex/meson.build +75 -0
- package/native/vendor/microtex/meson_options.txt +29 -0
- package/native/vendor/microtex/platform/cairo/CMakeLists.txt +36 -0
- package/native/vendor/microtex/platform/cairo/graphic_cairo.cpp +384 -0
- package/native/vendor/microtex/platform/cairo/graphic_cairo.h +119 -0
- package/native/vendor/microtex/platform/cairo/meson.build +47 -0
- package/native/vendor/microtex/platform/cairo/microtex-cairoConfig.cmake.in +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/.metadata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/CHANGELOG.md +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/LICENSE +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/README.md +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/analysis_options.yaml +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/build.gradle +56 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/settings.gradle +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/src/main/AndroidManifest.xml +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/src/main/kotlin/io/nano/microtex/microtex/MicrotexPlugin.kt +35 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/.metadata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/README.md +16 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/analysis_options.yaml +31 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/build.gradle +68 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/debug/AndroidManifest.xml +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/AndroidManifest.xml +34 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/kotlin/io/nano/microtex/microtex_example/MainActivity.kt +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable/launch_background.xml +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable-v21/launch_background.xml +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values/styles.xml +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values-night/styles.xml +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/profile/AndroidManifest.xml +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/build.gradle +31 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle.properties +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/settings.gradle +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/AppFrameworkInfo.plist +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile +41 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile.lock +22 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/AppDelegate.swift +13 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +122 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +5 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/LaunchScreen.storyboard +37 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/Main.storyboard +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Info.plist +49 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Runner-Bridging-Header.h +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.pbxproj +549 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/contents.xcworkspacedata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/main.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_in_one.dart +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_screen.dart +208 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/convert_spans.dart +63 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/string_ext.dart +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/cmp.dart +118 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/draggable.dart +75 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/rich.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/split.dart +72 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_highlight_controller.dart +66 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_input_controller.dart +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/CMakeLists.txt +116 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/CMakeLists.txt +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.cc +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.h +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugins.cmake +24 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/main.cc +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.cc +104 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.h +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/GeneratedPluginRegistrant.swift +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile +40 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile.lock +22 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/AppDelegate.swift +9 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Base.lproj/MainMenu.xib +343 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/AppInfo.xcconfig +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Warnings.xcconfig +13 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/DebugProfile.entitlements +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Info.plist +32 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/MainFlutterWindow.swift +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Release.entitlements +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.pbxproj +633 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/contents.xcworkspacedata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.lock +191 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.yaml +56 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/test/widget_test.dart +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/CMakeLists.txt +95 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/CMakeLists.txt +103 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.cc +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.h +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugins.cmake +24 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/CMakeLists.txt +17 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/Runner.rc +121 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.cpp +61 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.h +33 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/main.cpp +43 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resource.h +16 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resources/app_icon.ico +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/runner.exe.manifest +20 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.cpp +64 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.h +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.cpp +245 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.h +98 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Assets/.gitkeep +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.m +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/SwiftMicrotexPlugin.swift +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/dummy.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/microtex.podspec +27 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/microtex.dart +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/bindings.dart +218 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/bounds.dart +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/context.dart +205 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontdesc.dart +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontmeta.dart +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/pathcache.dart +17 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/render.dart +291 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/texstyle.dart +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/textlayout.dart +93 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/widget.dart +163 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/CMakeLists.txt +33 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/include/microtex/microtex_plugin.h +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/microtex_plugin.cc +70 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/MicrotexPlugin.swift +20 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/dummy.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/microtex-Bridging-Header.h +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/microtex.podspec +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/nativelib/CMakeLists.txt +44 -0
- package/native/vendor/microtex/platform/flutter/microtex/nativelib/builddarwin.sh +108 -0
- package/native/vendor/microtex/platform/flutter/microtex/pubspec.yaml +37 -0
- package/native/vendor/microtex/platform/flutter/microtex/test/microtex_test.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/CMakeLists.txt +32 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/include/microtex/microtex_plugin.h +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/microtex_plugin.cpp +82 -0
- package/native/vendor/microtex/platform/gdi_win/CMakeLists.txt +20 -0
- package/native/vendor/microtex/platform/gdi_win/graphic_win32.cpp +352 -0
- package/native/vendor/microtex/platform/gdi_win/graphic_win32.h +137 -0
- package/native/vendor/microtex/platform/gdi_win/meson.build +39 -0
- package/native/vendor/microtex/platform/gtk/CMakeLists.txt +36 -0
- package/native/vendor/microtex/platform/gtk/meson.build +65 -0
- package/native/vendor/microtex/platform/gtk/microtex-gtkConfig.cmake.in +11 -0
- package/native/vendor/microtex/platform/gtk/microtexequation.cpp +708 -0
- package/native/vendor/microtex/platform/gtk/microtexequation.h +72 -0
- package/native/vendor/microtex/platform/qt/CMakeLists.txt +37 -0
- package/native/vendor/microtex/platform/qt/graphic_qt.cpp +355 -0
- package/native/vendor/microtex/platform/qt/graphic_qt.h +116 -0
- package/native/vendor/microtex/platform/qt/meson.build +38 -0
- package/native/vendor/microtex/platform/qt/microtex-qtConfig.cmake.in +7 -0
- package/native/vendor/microtex/platform/skia/CMakeLists.txt +46 -0
- package/native/vendor/microtex/platform/skia/graphic_skia.cpp +306 -0
- package/native/vendor/microtex/platform/skia/graphic_skia.h +125 -0
- package/native/vendor/microtex/platform/skia/microtex-skiaConfig.cmake.in +6 -0
- package/native/vendor/microtex/platform/wasm/CMakeLists.txt +38 -0
- package/native/vendor/microtex/platform/wasm/emscripten.cross +31 -0
- package/native/vendor/microtex/platform/wasm/main.cpp +15 -0
- package/native/vendor/microtex/platform/wasm/meson.build +8 -0
- package/native/vendor/microtex/platform/wasm/prebuild-example-meson.sh +21 -0
- package/native/vendor/microtex/platform/wasm/prebuild-example.sh +21 -0
- package/native/vendor/microtex/platform/wasm/prebuild-lib-meson.sh +28 -0
- package/native/vendor/microtex/platform/wasm/prebuild-lib.sh +31 -0
- package/native/vendor/microtex/platform/wasm/web/.babelrc +10 -0
- package/native/vendor/microtex/platform/wasm/web/example/examples.js +43 -0
- package/native/vendor/microtex/platform/wasm/web/example/hello.js +31 -0
- package/native/vendor/microtex/platform/wasm/web/example/index.html +55 -0
- package/native/vendor/microtex/platform/wasm/web/example/index.js +243 -0
- package/native/vendor/microtex/platform/wasm/web/example/styles.css +86 -0
- package/native/vendor/microtex/platform/wasm/web/example/utils.js +47 -0
- package/native/vendor/microtex/platform/wasm/web/lib/context.js +271 -0
- package/native/vendor/microtex/platform/wasm/web/lib/index.js +10 -0
- package/native/vendor/microtex/platform/wasm/web/lib/render.js +293 -0
- package/native/vendor/microtex/platform/wasm/web/lib/runtime.js +14 -0
- package/native/vendor/microtex/platform/wasm/web/lib/svg.js +237 -0
- package/native/vendor/microtex/platform/wasm/web/lib/textlayout.js +88 -0
- package/native/vendor/microtex/platform/wasm/web/package-lock.json +5931 -0
- package/native/vendor/microtex/platform/wasm/web/package.json +45 -0
- package/native/vendor/microtex/platform/wasm/web/publish-example.sh +17 -0
- package/native/vendor/microtex/platform/wasm/web/rollup.config.example.js +24 -0
- package/native/vendor/microtex/platform/wasm/web/rollup.config.lib.js +16 -0
- package/native/vendor/microtex/prebuilt/otf2clm.py +807 -0
- package/native/vendor/microtex/prebuilt/otf2clm.sh +9 -0
- package/native/vendor/microtex/prebuilt/preclms.sh +17 -0
- package/native/vendor/microtex/readme/example_bw_false.svg +680 -0
- package/native/vendor/microtex/readme/example_bw_true.svg +680 -0
- package/native/vendor/microtex/readme/example_cjk_trying.svg +54 -0
- package/native/vendor/microtex/readme/example_custom_symbols.svg +92 -0
- package/native/vendor/microtex/readme/example_debug.svg +764 -0
- package/native/vendor/microtex/readme/example_emoji.svg +199 -0
- package/native/vendor/microtex/readme/example_have_log.svg +79 -0
- package/native/vendor/microtex/readme/example_keep_trying.svg +101 -0
- package/native/vendor/microtex/readme/example_logos.svg +50 -0
- package/native/vendor/microtex/readme/example_ubuntu.png +0 -0
- package/native/vendor/microtex/readme/example_windows.png +0 -0
- package/native/vendor/microtex/readme/samples/sample_0.svg +665 -0
- package/native/vendor/microtex/readme/samples/sample_1.svg +1259 -0
- package/native/vendor/microtex/readme/samples/sample_10.svg +333 -0
- package/native/vendor/microtex/readme/samples/sample_11.svg +306 -0
- package/native/vendor/microtex/readme/samples/sample_2.svg +2461 -0
- package/native/vendor/microtex/readme/samples/sample_3.svg +2653 -0
- package/native/vendor/microtex/readme/samples/sample_4.svg +554 -0
- package/native/vendor/microtex/readme/samples/sample_5.svg +247 -0
- package/native/vendor/microtex/readme/samples/sample_6.svg +1082 -0
- package/native/vendor/microtex/readme/samples/sample_7.svg +518 -0
- package/native/vendor/microtex/readme/samples/sample_8.svg +529 -0
- package/native/vendor/microtex/readme/samples/sample_9.svg +1702 -0
- package/native/vendor/microtex/readme/samples.md +301 -0
- package/native/vendor/microtex/readme/tex_logo.svg +19 -0
- package/native/vendor/microtex/res/EXAMPLE.txt +25 -0
- package/native/vendor/microtex/res/SAMPLES.tex +946 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.otf +0 -0
- package/native/vendor/microtex/res/firamath/README.md +42 -0
- package/native/vendor/microtex/res/lm-math/README +92 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.clm1 +0 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.clm2 +0 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.otf +0 -0
- package/native/vendor/microtex/res/tex-gyre/README-TeX-Gyre-DejaVu-Math.txt +82 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm1 +0 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm2 +0 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.otf +0 -0
- package/native/vendor/microtex/res/xits/FONTLOG.txt +246 -0
- package/native/vendor/microtex/res/xits/OFL.txt +98 -0
- package/native/vendor/microtex/res/xits/README.txt +15 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.otf +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.otf +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.otf +0 -0
- package/native/vendor/microtex/test/clm/meson.build +10 -0
- package/native/vendor/microtex/test/clm/test_clm.cpp +140 -0
- package/native/vendor/microtex/test/env/meson.build +10 -0
- package/native/vendor/microtex/test/env/test_env.cpp +100 -0
- package/native/vendor/microtex/test/fuzzer/afl.native +20 -0
- package/native/vendor/microtex/test/fuzzer/fuzz.sh +135 -0
- package/native/vendor/microtex/test/fuzzer/fuzzer.cpp +61 -0
- package/native/vendor/microtex/test/fuzzer/generateSeed.java +33 -0
- package/native/vendor/microtex/test/fuzzer/meson.build +9 -0
- package/native/vendor/microtex/test/fuzzer/microtex.dict +3708 -0
- package/native/vendor/microtex/test/fuzzer/platform_none.cpp +100 -0
- package/native/vendor/microtex/test/has_filesystem.cpp +8 -0
- package/native/vendor/microtex/test/meson.build +6 -0
- package/native/vendor/nanosvg.h +3278 -0
- package/native/vendor/nanosvgrast.h +1472 -0
- package/native/vendor/zigtex/.github/assets/example.svg +27 -0
- package/native/vendor/zigtex/LICENSE +674 -0
- package/native/vendor/zigtex/README.md +52 -0
- package/native/vendor/zigtex/build.zig +52 -0
- package/native/vendor/zigtex/build.zig.zon +16 -0
- package/native/vendor/zigtex/fonts/latinmodern-math.clm2 +0 -0
- package/native/vendor/zigtex/src/main.zig +22 -0
- package/native/vendor/zigtex/src/root.zig +124 -0
- package/native/vendor/zigtex/src/svg.zig +273 -0
- package/native/vendor/zigtex/src/tex.zig +383 -0
- package/native/zigtex-0.16.patch +35 -0
- package/package.json +27 -0
- package/scripts/bootstrap-native +89 -0
|
@@ -0,0 +1,333 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="124pt" height="189pt" version="1.1" viewBox="0 0 124 189" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<defs>
|
|
4
|
+
<symbol id="bb" overflow="visible">
|
|
5
|
+
<path d="m0.92188 14c-0.09375 0-0.14062-0.054688-0.14062-0.15625 0-0.042969 0.015625-0.074219 0.046875-0.09375l5.0938-6.2344-5.0938-7.0156c-0.03125-0.023438-0.046875-0.042969-0.046875-0.0625v-0.3125c0-0.03125 0.015625-0.0625 0.046875-0.09375 0.03125-0.023438 0.0625-0.03125 0.09375-0.03125h11.859l1.2031 3.2812h-0.40625c-0.23047-0.64844-0.58594-1.1562-1.0625-1.5312-0.46875-0.375-1.0078-0.65234-1.6094-0.82812-0.60547-0.16797-1.1953-0.27344-1.7656-0.3125-0.57422-0.03125-1.2734-0.046875-2.0938-0.046875h-4.6875l4.625 6.3438c0.03125 0.03125 0.046875 0.0625 0.046875 0.09375 0 0.039062-0.015625 0.070312-0.046875 0.09375l-5 6.1094h5.1406c0.8125 0 1.5-0.023437 2.0625-0.0625 0.57031-0.042969 1.1602-0.14844 1.7656-0.3125 0.60156-0.16797 1.1328-0.44531 1.5938-0.82812 0.46875-0.375 0.8125-0.88281 1.0312-1.5156h0.40625l-1.2031 3.5156z"/>
|
|
6
|
+
</symbol>
|
|
7
|
+
<symbol id="ba" overflow="visible">
|
|
8
|
+
<path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.0625-0.35156 0.1875-0.71875v-0.015625c0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.015625l0.09375-0.20312c0.14453-0.26953 0.29688-0.4375 0.45312-0.5 0.09375-0.050781 0.19141-0.078125 0.29688-0.078125 0.375 0 0.64453 0.15625 0.8125 0.46875 0.050781 0.125 0.085938 0.26172 0.10938 0.40625 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.58203 0 0.94531 0.21875 1.0938 0.65625 0.039062 0.125 0.0625 0.26562 0.0625 0.42188 0 0.33594-0.20312 1.0625-0.60938 2.1875-0.11719 0.30469-0.17188 0.54297-0.17188 0.71875 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.4375 0 0.77344-0.41016 1.0156-1.2344 0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.11719-0.070313 0.32812-0.20312 0.64062-0.29297 0.60547-0.65625 0.90625-1.0938 0.90625-0.34375 0-0.58984-0.14062-0.73438-0.42188-0.0625-0.125-0.09375-0.25391-0.09375-0.39062 0-0.13281 0.035156-0.28906 0.10938-0.46875 0.42578-1.1641 0.64062-1.9414 0.64062-2.3281 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.60547 0-1.1094 0.33594-1.5156 1-0.054688 0.074219-0.09375 0.14844-0.125 0.21875l-0.125 0.5c-0.03125 0.15625-0.089844 0.38281-0.17188 0.67188l-0.21875 0.90625c-0.11719 0.46094-0.17969 0.70312-0.1875 0.73438-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
|
|
9
|
+
</symbol>
|
|
10
|
+
<symbol id="ao" overflow="visible">
|
|
11
|
+
<path d="m6.75-2.2812-5.5469 2.6094c-0.085937 0.050781-0.14062 0.078125-0.17188 0.078125-0.10547 0-0.16797-0.054688-0.1875-0.15625-0.011719-0.023438-0.015625-0.039062-0.015625-0.046875 0-0.085937 0.0625-0.15625 0.1875-0.21875l5.25-2.4844-5.25-2.4844c-0.125-0.0625-0.1875-0.13281-0.1875-0.21875 0-0.10156 0.050781-0.16406 0.15625-0.1875 0.019531-0.007813 0.035156-0.015625 0.046875-0.015625 0.03125 0 0.085938 0.027344 0.17188 0.078125l5.5469 2.6094c0.125 0.0625 0.1875 0.13672 0.1875 0.21875 0 0.085938-0.0625 0.15625-0.1875 0.21875z"/>
|
|
12
|
+
</symbol>
|
|
13
|
+
<symbol id="ac" overflow="visible">
|
|
14
|
+
<path d="m4.5938-3.2031c0 0.98047-0.12109 1.7344-0.35938 2.2656-0.39844 0.75-0.98047 1.1328-1.75 1.1562-0.60547 0-1.0898-0.23828-1.4531-0.71875-0.074219-0.082031-0.13672-0.17969-0.1875-0.29688-0.30469-0.55078-0.45312-1.3516-0.45312-2.4062 0-0.97656 0.125-1.7344 0.375-2.2656 0.33203-0.75 0.86719-1.1445 1.6094-1.1875h0.125c0.59375 0 1.0781 0.23438 1.4531 0.70312v0.015625c0.09375 0.11719 0.17578 0.24609 0.25 0.39062 0.25781 0.57422 0.39062 1.3555 0.39062 2.3438zm-2.1094 3.2031c0.42578 0 0.75-0.20312 0.96875-0.60938 0.09375-0.17578 0.16016-0.39062 0.20312-0.64062 0.070312-0.42578 0.10938-1.1133 0.10938-2.0625 0-0.92578-0.03125-1.5781-0.09375-1.9531-0.125-0.63281-0.43359-1.0156-0.92188-1.1406-0.085938-0.019531-0.17188-0.03125-0.26562-0.03125-0.46094 0-0.79688 0.23438-1.0156 0.70312-0.074219 0.15625-0.13281 0.35156-0.17188 0.57812-0.054687 0.35547-0.078125 0.96875-0.078125 1.8438 0 1 0.035156 1.7031 0.10938 2.1094 0.125 0.63672 0.41406 1.0234 0.875 1.1562 0.09375 0.03125 0.1875 0.046875 0.28125 0.046875z"/>
|
|
15
|
+
</symbol>
|
|
16
|
+
<symbol id="r" overflow="visible">
|
|
17
|
+
<path d="m1.8594-1.1562c0.082031-0.03125 0.20703-0.046875 0.375-0.046875 0.25 0 0.57812 0.078125 0.98438 0.23438 0.36328 0.125 0.64062 0.1875 0.82812 0.1875 0.48828 0 0.91016-0.17578 1.2656-0.53125 0.1875-0.17578 0.32031-0.39062 0.40625-0.64062 0.0625-0.125 0.12891-0.1875 0.20312-0.1875 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.24219-0.15234 0.58594-0.45312 1.0312-0.5 0.75-1.0859 1.125-1.75 1.125-0.3125 0-0.60938-0.17188-0.89062-0.51562-0.26172-0.3125-0.47656-0.48438-0.64062-0.51562-0.042969-0.007812-0.10156-0.015625-0.17188-0.015625-0.41797 0-0.8125 0.28906-1.1875 0.85938-0.074219 0.125-0.15234 0.1875-0.23438 0.1875-0.10547 0-0.15625-0.046875-0.15625-0.14062 0-0.11328 0.21094-0.42969 0.64062-0.95312 0.23828-0.30078 0.50391-0.59375 0.79688-0.875l1.25-1.1875c0.92578-0.78125 1.5781-1.3906 1.9531-1.8281-0.33594 0-0.69531-0.070313-1.0781-0.21875-0.40625-0.13281-0.69922-0.20312-0.875-0.20312-0.54297 0-0.91797 0.17969-1.125 0.53125-0.03125 0.042969-0.058594 0.085938-0.078125 0.125-0.03125 0.10547-0.089844 0.15625-0.17188 0.15625-0.11719 0-0.17188-0.050781-0.17188-0.15625 0-0.20703 0.13281-0.48828 0.40625-0.84375 0.375-0.5 0.80078-0.75 1.2812-0.75 0.3125 0 0.60156 0.16406 0.875 0.48438l0.015625 0.015625c0.019531 0.03125 0.046875 0.0625 0.078125 0.09375 0.22656 0.26172 0.41016 0.40625 0.54688 0.4375 0.0625 0.011719 0.11719 0.015625 0.17188 0.015625 0.3125 0 0.64453-0.26953 1-0.8125l0.046875-0.078125c0.0625-0.10156 0.13281-0.15625 0.21875-0.15625 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.11719-0.19531 0.41406-0.57812 0.89062-0.28125 0.34375-0.63281 0.72656-1.0469 1.1406-0.0625 0.054687-0.51172 0.46094-1.3438 1.2188l-0.03125 0.03125c-0.60547 0.53125-1.1641 1.0703-1.6719 1.6094z"/>
|
|
18
|
+
</symbol>
|
|
19
|
+
<symbol id="f" overflow="visible">
|
|
20
|
+
<path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.0625-0.35156 0.1875-0.71875v-0.015625c0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.015625l0.09375-0.20312c0.14453-0.26953 0.29688-0.4375 0.45312-0.5 0.09375-0.050781 0.19141-0.078125 0.29688-0.078125 0.375 0 0.64453 0.15625 0.8125 0.46875 0.050781 0.125 0.085938 0.26172 0.10938 0.40625 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.58203 0 0.94531 0.21875 1.0938 0.65625 0.039062 0.125 0.0625 0.26562 0.0625 0.42188 0 0.33594-0.20312 1.0625-0.60938 2.1875-0.11719 0.30469-0.17188 0.54297-0.17188 0.71875 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.4375 0 0.77344-0.41016 1.0156-1.2344 0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.11719-0.070313 0.32812-0.20312 0.64062-0.29297 0.60547-0.65625 0.90625-1.0938 0.90625-0.34375 0-0.58984-0.14062-0.73438-0.42188-0.0625-0.125-0.09375-0.25391-0.09375-0.39062 0-0.13281 0.035156-0.28906 0.10938-0.46875 0.42578-1.1641 0.64062-1.9414 0.64062-2.3281 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.60547 0-1.1094 0.33594-1.5156 1-0.054688 0.074219-0.09375 0.14844-0.125 0.21875l-0.125 0.5c-0.03125 0.15625-0.089844 0.38281-0.17188 0.67188l-0.21875 0.90625c-0.11719 0.46094-0.17969 0.70312-0.1875 0.73438-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
|
|
21
|
+
</symbol>
|
|
22
|
+
<symbol id="d" overflow="visible">
|
|
23
|
+
<path d="m0.78125 14v-0.5625c0.96875 0 1.4531-0.3125 1.4531-0.9375v-11c0-0.625-0.48438-0.9375-1.4531-0.9375v-0.5625h11.641v0.5625c-0.96094 0-1.4375 0.3125-1.4375 0.9375v11c0 0.625 0.47656 0.9375 1.4375 0.9375v0.5625h-4.2969v-0.5625c0.95703 0 1.4375-0.3125 1.4375-0.9375v-11.938h-5.9219v11.938c0 0.625 0.47656 0.9375 1.4375 0.9375v0.5625z"/>
|
|
24
|
+
</symbol>
|
|
25
|
+
<symbol id="c" overflow="visible">
|
|
26
|
+
<path d="m2.9375-6.4062v5.6094c0 0.21094 0.039062 0.33984 0.125 0.39062 0.11328 0.0625 0.38281 0.09375 0.8125 0.09375h0.3125v0.3125c-0.23047-0.019531-0.77344-0.03125-1.625-0.03125-0.84375 0-1.3828 0.011719-1.6094 0.03125v-0.3125h0.3125c0.51953 0 0.81641-0.054688 0.89062-0.17188v-0.015625c0.03125-0.050781 0.046875-0.14844 0.046875-0.29688v-5.1719c-0.34375 0.17969-0.78125 0.26562-1.3125 0.26562v-0.3125c0.80078 0 1.4062-0.21094 1.8125-0.64062 0.13281 0 0.21094 0.023438 0.23438 0.0625v0.015625 0.17188z"/>
|
|
27
|
+
</symbol>
|
|
28
|
+
<symbol id="b" overflow="visible">
|
|
29
|
+
<path d="m6.7656-5.9531-5.2656 2.5 5.25 2.4688c0.11328 0.09375 0.17578 0.16797 0.1875 0.21875 0 0.10547-0.046875 0.16797-0.14062 0.1875-0.023437 0.011719-0.042969 0.015625-0.0625 0.015625-0.03125 0-0.089844-0.019531-0.17188-0.0625l-5.5469-2.625c-0.125-0.050781-0.1875-0.11719-0.1875-0.20312 0-0.09375 0.0625-0.17188 0.1875-0.23438l5.5625-2.6094c0.070313-0.039063 0.125-0.0625 0.15625-0.0625 0.11328 0 0.17969 0.054687 0.20312 0.15625v0.046875c0 0.09375-0.058594 0.16406-0.17188 0.20312zm-0.15625 7.3281h-5.4531c-0.21094 0-0.32031-0.070312-0.32812-0.20312 0-0.13672 0.11328-0.20312 0.34375-0.20312h5.4219c0.21875 0 0.33203 0.066406 0.34375 0.20312 0 0.13281-0.10938 0.20312-0.32812 0.20312z"/>
|
|
30
|
+
</symbol>
|
|
31
|
+
<symbol id="a" overflow="visible">
|
|
32
|
+
<path d="m2.875-6.8281-1.0469 4.2188c0.28906-0.11328 0.66016-0.42578 1.1094-0.9375 0.53125-0.58203 1.0195-0.875 1.4688-0.875 0.3125 0 0.52344 0.13672 0.64062 0.40625 0.019531 0.074219 0.03125 0.14844 0.03125 0.21875 0 0.28125-0.11719 0.47656-0.34375 0.57812-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.078125c0-0.1875 0.082031-0.33203 0.25-0.4375v-0.015625c0.09375-0.050781 0.19531-0.078125 0.3125-0.078125l-0.03125-0.046875c-0.0625-0.039063-0.13672-0.066406-0.21875-0.078125-0.011719-0.007812-0.042969-0.015625-0.09375-0.015625-0.35547 0-0.78125 0.27344-1.2812 0.8125-0.03125 0.03125-0.058594 0.0625-0.078125 0.09375l-0.0625 0.0625c-0.34375 0.35547-0.63281 0.60156-0.85938 0.73438 0.97656 0.125 1.4688 0.47656 1.4688 1.0469 0 0.09375-0.011719 0.19922-0.03125 0.3125-0.054688 0.21875-0.078125 0.40625-0.078125 0.5625 0 0.3125 0.10156 0.46875 0.3125 0.46875 0.3125 0 0.5625-0.27344 0.75-0.82812 0.039063-0.11328 0.082031-0.25 0.125-0.40625 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.11719-0.070312 0.33594-0.20312 0.65625-0.054687 0.13672-0.10547 0.25781-0.15625 0.35938-0.21875 0.35547-0.48438 0.53125-0.79688 0.53125-0.36719 0-0.63281-0.16016-0.79688-0.48438-0.085937-0.14453-0.125-0.3125-0.125-0.5 0-0.070312 0.015625-0.19141 0.046875-0.35938 0.019531-0.0625 0.03125-0.12891 0.03125-0.20312 0-0.41406-0.30469-0.6875-0.90625-0.8125-0.085938-0.019531-0.17188-0.035156-0.26562-0.046875-0.33594 1.3984-0.51562 2.1328-0.54688 2.2031-0.074219 0.125-0.1875 0.19141-0.34375 0.20312-0.16797 0-0.26172-0.070312-0.28125-0.20312-0.011719-0.03125-0.015625-0.054688-0.015625-0.078125 0-0.050781 0.015625-0.125 0.046875-0.21875l1.4531-5.7656 0.015625-0.1875c0-0.070312-0.042969-0.11719-0.125-0.14062-0.085938-0.019531-0.21094-0.03125-0.375-0.03125-0.14844 0-0.22656-0.039063-0.23438-0.125 0-0.11328 0.0625-0.17969 0.1875-0.20312l1.2188-0.09375c0.09375 0 0.14062 0.039062 0.14062 0.10938z"/>
|
|
33
|
+
</symbol>
|
|
34
|
+
<symbol id="az" overflow="visible">
|
|
35
|
+
<path d="m6.7656-5.9531-5.2656 2.5 5.25 2.4688c0.11328 0.09375 0.17578 0.16797 0.1875 0.21875 0 0.10547-0.046875 0.16797-0.14062 0.1875-0.023437 0.011719-0.042969 0.015625-0.0625 0.015625-0.03125 0-0.089844-0.019531-0.17188-0.0625l-5.5469-2.625c-0.125-0.050781-0.1875-0.11719-0.1875-0.20312 0-0.09375 0.0625-0.17188 0.1875-0.23438l5.5625-2.6094c0.070313-0.039063 0.125-0.0625 0.15625-0.0625 0.11328 0 0.17969 0.054687 0.20312 0.15625v0.046875c0 0.09375-0.058594 0.16406-0.17188 0.20312zm-0.15625 7.3281h-5.4531c-0.21094 0-0.32031-0.070312-0.32812-0.20312 0-0.13672 0.11328-0.20312 0.34375-0.20312h5.4219c0.21875 0 0.33203 0.066406 0.34375 0.20312 0 0.13281-0.10938 0.20312-0.32812 0.20312z"/>
|
|
36
|
+
</symbol>
|
|
37
|
+
<symbol id="ay" overflow="visible">
|
|
38
|
+
<path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.0625-0.35156 0.1875-0.71875v-0.015625c0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.015625l0.09375-0.20312c0.14453-0.26953 0.29688-0.4375 0.45312-0.5 0.09375-0.050781 0.19141-0.078125 0.29688-0.078125 0.375 0 0.64453 0.15625 0.8125 0.46875 0.050781 0.125 0.085938 0.26172 0.10938 0.40625 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.58203 0 0.94531 0.21875 1.0938 0.65625 0.039062 0.125 0.0625 0.26562 0.0625 0.42188 0 0.33594-0.20312 1.0625-0.60938 2.1875-0.11719 0.30469-0.17188 0.54297-0.17188 0.71875 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.4375 0 0.77344-0.41016 1.0156-1.2344 0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.11719-0.070313 0.32812-0.20312 0.64062-0.29297 0.60547-0.65625 0.90625-1.0938 0.90625-0.34375 0-0.58984-0.14062-0.73438-0.42188-0.0625-0.125-0.09375-0.25391-0.09375-0.39062 0-0.13281 0.035156-0.28906 0.10938-0.46875 0.42578-1.1641 0.64062-1.9414 0.64062-2.3281 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.60547 0-1.1094 0.33594-1.5156 1-0.054688 0.074219-0.09375 0.14844-0.125 0.21875l-0.125 0.5c-0.03125 0.15625-0.089844 0.38281-0.17188 0.67188l-0.21875 0.90625c-0.11719 0.46094-0.17969 0.70312-0.1875 0.73438-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
|
|
39
|
+
</symbol>
|
|
40
|
+
<symbol id="ax" overflow="visible">
|
|
41
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
42
|
+
</symbol>
|
|
43
|
+
<symbol id="aw" overflow="visible">
|
|
44
|
+
<path d="m4.1094-8.9531v7.8438c0 0.28125 0.054687 0.46094 0.17188 0.53125 0.15625 0.09375 0.53516 0.14062 1.1406 0.14062h0.4375v0.4375c-0.32422-0.03125-1.0781-0.046875-2.2656-0.046875s-1.9453 0.015625-2.2656 0.046875v-0.4375h0.45312c0.71875 0 1.1289-0.082031 1.2344-0.25l0.015625-0.015625c0.03125-0.070313 0.046875-0.20703 0.046875-0.40625v-7.25c-0.48047 0.24219-1.0898 0.35938-1.8281 0.35938v-0.42188c1.1133 0 1.9609-0.30078 2.5469-0.90625 0.17578 0 0.28125 0.039063 0.3125 0.10938v0.26562z"/>
|
|
45
|
+
</symbol>
|
|
46
|
+
<symbol id="av" overflow="visible">
|
|
47
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
48
|
+
</symbol>
|
|
49
|
+
<symbol id="au" overflow="visible">
|
|
50
|
+
<path d="m6.3281-6.0312-1.9375 7.7812c-0.03125 0.16406-0.046875 0.26953-0.046875 0.3125 0 0.10156 0.054688 0.16406 0.17188 0.1875 0.10156 0.019531 0.26953 0.03125 0.5 0.03125 0.21875 0 0.33594 0.050781 0.35938 0.15625 0 0.1875-0.085938 0.28125-0.25 0.28125l-1.4219-0.046875h-0.015625l-1.3906 0.046875h-0.015625c-0.125 0-0.1875-0.054688-0.1875-0.15625 0.082031-0.17969 0.19141-0.27344 0.32812-0.28125 0.48828-0.011719 0.78125-0.074219 0.875-0.1875 0.050781-0.054688 0.097656-0.14844 0.14062-0.28125l0.625-2.5c-0.5625 0.5625-1.1172 0.84375-1.6562 0.84375-0.65625 0-1.1562-0.29688-1.5-0.89062-0.23047-0.375-0.34375-0.82812-0.34375-1.3594 0-0.98828 0.34766-1.9141 1.0469-2.7812 0.64453-0.78906 1.3516-1.2227 2.125-1.2969 0.070313-0.007813 0.14062-0.015625 0.20312-0.015625 0.59375 0 1.0234 0.32812 1.2969 0.98438 0.19531-0.34375 0.44531-0.63281 0.75-0.875l0.03125-0.015625c0.070313-0.050781 0.12891-0.078125 0.17188-0.078125 0.09375 0 0.14062 0.046875 0.14062 0.14062zm-3.875 5.875c0.48828 0 0.99219-0.30078 1.5156-0.90625 0.10156-0.14453 0.19141-0.26953 0.26562-0.375 0.050781-0.070312 0.30078-1.0508 0.75-2.9375 0.039063-0.16406 0.0625-0.25391 0.0625-0.26562 0-0.20703-0.089844-0.44531-0.26562-0.71875-0.19922-0.34375-0.48047-0.51562-0.84375-0.51562-0.46094 0-0.89844 0.28125-1.3125 0.84375-0.16797 0.24219-0.30859 0.5-0.42188 0.78125-0.26172 0.64844-0.46094 1.3984-0.59375 2.25-0.042969 0.21094-0.0625 0.38672-0.0625 0.53125 0 0.60547 0.16406 1.0078 0.5 1.2031l0.015625 0.015625c0.10156 0.0625 0.23438 0.09375 0.39062 0.09375z"/>
|
|
51
|
+
</symbol>
|
|
52
|
+
<symbol id="at" overflow="visible">
|
|
53
|
+
<path d="m2.875-6.8281-1.0469 4.2188c0.28906-0.11328 0.66016-0.42578 1.1094-0.9375 0.53125-0.58203 1.0195-0.875 1.4688-0.875 0.3125 0 0.52344 0.13672 0.64062 0.40625 0.019531 0.074219 0.03125 0.14844 0.03125 0.21875 0 0.28125-0.11719 0.47656-0.34375 0.57812-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.078125c0-0.1875 0.082031-0.33203 0.25-0.4375v-0.015625c0.09375-0.050781 0.19531-0.078125 0.3125-0.078125l-0.03125-0.046875c-0.0625-0.039063-0.13672-0.066406-0.21875-0.078125-0.011719-0.007812-0.042969-0.015625-0.09375-0.015625-0.35547 0-0.78125 0.27344-1.2812 0.8125-0.03125 0.03125-0.058594 0.0625-0.078125 0.09375l-0.0625 0.0625c-0.34375 0.35547-0.63281 0.60156-0.85938 0.73438 0.97656 0.125 1.4688 0.47656 1.4688 1.0469 0 0.09375-0.011719 0.19922-0.03125 0.3125-0.054688 0.21875-0.078125 0.40625-0.078125 0.5625 0 0.3125 0.10156 0.46875 0.3125 0.46875 0.3125 0 0.5625-0.27344 0.75-0.82812 0.039063-0.11328 0.082031-0.25 0.125-0.40625 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.11719-0.070312 0.33594-0.20312 0.65625-0.054687 0.13672-0.10547 0.25781-0.15625 0.35938-0.21875 0.35547-0.48438 0.53125-0.79688 0.53125-0.36719 0-0.63281-0.16016-0.79688-0.48438-0.085937-0.14453-0.125-0.3125-0.125-0.5 0-0.070312 0.015625-0.19141 0.046875-0.35938 0.019531-0.0625 0.03125-0.12891 0.03125-0.20312 0-0.41406-0.30469-0.6875-0.90625-0.8125-0.085938-0.019531-0.17188-0.035156-0.26562-0.046875-0.33594 1.3984-0.51562 2.1328-0.54688 2.2031-0.074219 0.125-0.1875 0.19141-0.34375 0.20312-0.16797 0-0.26172-0.070312-0.28125-0.20312-0.011719-0.03125-0.015625-0.054688-0.015625-0.078125 0-0.050781 0.015625-0.125 0.046875-0.21875l1.4531-5.7656 0.015625-0.1875c0-0.070312-0.042969-0.11719-0.125-0.14062-0.085938-0.019531-0.21094-0.03125-0.375-0.03125-0.14844 0-0.22656-0.039063-0.23438-0.125 0-0.11328 0.0625-0.17969 0.1875-0.20312l1.2188-0.09375c0.09375 0 0.14062 0.039062 0.14062 0.10938z"/>
|
|
54
|
+
</symbol>
|
|
55
|
+
<symbol id="as" overflow="visible">
|
|
56
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
57
|
+
</symbol>
|
|
58
|
+
<symbol id="ar" overflow="visible">
|
|
59
|
+
<path d="m0.92188 19.594c-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.015625-0.078125 0.046875-0.10938l7.3906-8.6094-7.3906-10.125c-0.03125-0.023437-0.046875-0.042969-0.046875-0.0625v-0.42188c0-0.03125 0.015625-0.0625 0.046875-0.09375 0.03125-0.023438 0.0625-0.03125 0.09375-0.03125h16.797l1.7031 3.9375h-0.40625c-0.4375-1-1.168-1.7422-2.1875-2.2188-1.0117-0.48047-2.0703-0.77734-3.1719-0.89062-1.1055-0.10547-2.3906-0.15625-3.8594-0.15625h-6.4688l6.6094 9.0312c0.019531 0.03125 0.03125 0.0625 0.03125 0.09375s-0.011719 0.066406-0.03125 0.10938l-7.2656 8.4531h7.2656c1.4375 0 2.707-0.058594 3.8125-0.17188 1.1133-0.11719 2.1719-0.41406 3.1719-0.89062 1.0078-0.48047 1.707-1.2148 2.0938-2.2031h0.40625l-1.7031 4.5z"/>
|
|
60
|
+
</symbol>
|
|
61
|
+
<symbol id="aq" overflow="visible">
|
|
62
|
+
<path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.0625-0.35156 0.1875-0.71875v-0.015625c0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.015625l0.09375-0.20312c0.14453-0.26953 0.29688-0.4375 0.45312-0.5 0.09375-0.050781 0.19141-0.078125 0.29688-0.078125 0.375 0 0.64453 0.15625 0.8125 0.46875 0.050781 0.125 0.085938 0.26172 0.10938 0.40625 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.58203 0 0.94531 0.21875 1.0938 0.65625 0.039062 0.125 0.0625 0.26562 0.0625 0.42188 0 0.33594-0.20312 1.0625-0.60938 2.1875-0.11719 0.30469-0.17188 0.54297-0.17188 0.71875 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.4375 0 0.77344-0.41016 1.0156-1.2344 0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.11719-0.070313 0.32812-0.20312 0.64062-0.29297 0.60547-0.65625 0.90625-1.0938 0.90625-0.34375 0-0.58984-0.14062-0.73438-0.42188-0.0625-0.125-0.09375-0.25391-0.09375-0.39062 0-0.13281 0.035156-0.28906 0.10938-0.46875 0.42578-1.1641 0.64062-1.9414 0.64062-2.3281 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.60547 0-1.1094 0.33594-1.5156 1-0.054688 0.074219-0.09375 0.14844-0.125 0.21875l-0.125 0.5c-0.03125 0.15625-0.089844 0.38281-0.17188 0.67188l-0.21875 0.90625c-0.11719 0.46094-0.17969 0.70312-0.1875 0.73438-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
|
|
63
|
+
</symbol>
|
|
64
|
+
<symbol id="ap" overflow="visible">
|
|
65
|
+
<path d="m6.75-2.2812-5.5469 2.6094c-0.085937 0.050781-0.14062 0.078125-0.17188 0.078125-0.10547 0-0.16797-0.054688-0.1875-0.15625-0.011719-0.023438-0.015625-0.039062-0.015625-0.046875 0-0.085937 0.0625-0.15625 0.1875-0.21875l5.25-2.4844-5.25-2.4844c-0.125-0.0625-0.1875-0.13281-0.1875-0.21875 0-0.10156 0.050781-0.16406 0.15625-0.1875 0.019531-0.007813 0.035156-0.015625 0.046875-0.015625 0.03125 0 0.085938 0.027344 0.17188 0.078125l5.5469 2.6094c0.125 0.0625 0.1875 0.13672 0.1875 0.21875 0 0.085938-0.0625 0.15625-0.1875 0.21875z"/>
|
|
66
|
+
</symbol>
|
|
67
|
+
<symbol id="an" overflow="visible">
|
|
68
|
+
<path d="m4.5938-3.2031c0 0.98047-0.12109 1.7344-0.35938 2.2656-0.39844 0.75-0.98047 1.1328-1.75 1.1562-0.60547 0-1.0898-0.23828-1.4531-0.71875-0.074219-0.082031-0.13672-0.17969-0.1875-0.29688-0.30469-0.55078-0.45312-1.3516-0.45312-2.4062 0-0.97656 0.125-1.7344 0.375-2.2656 0.33203-0.75 0.86719-1.1445 1.6094-1.1875h0.125c0.59375 0 1.0781 0.23438 1.4531 0.70312v0.015625c0.09375 0.11719 0.17578 0.24609 0.25 0.39062 0.25781 0.57422 0.39062 1.3555 0.39062 2.3438zm-2.1094 3.2031c0.42578 0 0.75-0.20312 0.96875-0.60938 0.09375-0.17578 0.16016-0.39062 0.20312-0.64062 0.070312-0.42578 0.10938-1.1133 0.10938-2.0625 0-0.92578-0.03125-1.5781-0.09375-1.9531-0.125-0.63281-0.43359-1.0156-0.92188-1.1406-0.085938-0.019531-0.17188-0.03125-0.26562-0.03125-0.46094 0-0.79688 0.23438-1.0156 0.70312-0.074219 0.15625-0.13281 0.35156-0.17188 0.57812-0.054687 0.35547-0.078125 0.96875-0.078125 1.8438 0 1 0.035156 1.7031 0.10938 2.1094 0.125 0.63672 0.41406 1.0234 0.875 1.1562 0.09375 0.03125 0.1875 0.046875 0.28125 0.046875z"/>
|
|
69
|
+
</symbol>
|
|
70
|
+
<symbol id="am" overflow="visible">
|
|
71
|
+
<path d="m1.8594-1.1562c0.082031-0.03125 0.20703-0.046875 0.375-0.046875 0.25 0 0.57812 0.078125 0.98438 0.23438 0.36328 0.125 0.64062 0.1875 0.82812 0.1875 0.48828 0 0.91016-0.17578 1.2656-0.53125 0.1875-0.17578 0.32031-0.39062 0.40625-0.64062 0.0625-0.125 0.12891-0.1875 0.20312-0.1875 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.24219-0.15234 0.58594-0.45312 1.0312-0.5 0.75-1.0859 1.125-1.75 1.125-0.3125 0-0.60938-0.17188-0.89062-0.51562-0.26172-0.3125-0.47656-0.48438-0.64062-0.51562-0.042969-0.007812-0.10156-0.015625-0.17188-0.015625-0.41797 0-0.8125 0.28906-1.1875 0.85938-0.074219 0.125-0.15234 0.1875-0.23438 0.1875-0.10547 0-0.15625-0.046875-0.15625-0.14062 0-0.11328 0.21094-0.42969 0.64062-0.95312 0.23828-0.30078 0.50391-0.59375 0.79688-0.875l1.25-1.1875c0.92578-0.78125 1.5781-1.3906 1.9531-1.8281-0.33594 0-0.69531-0.070313-1.0781-0.21875-0.40625-0.13281-0.69922-0.20312-0.875-0.20312-0.54297 0-0.91797 0.17969-1.125 0.53125-0.03125 0.042969-0.058594 0.085938-0.078125 0.125-0.03125 0.10547-0.089844 0.15625-0.17188 0.15625-0.11719 0-0.17188-0.050781-0.17188-0.15625 0-0.20703 0.13281-0.48828 0.40625-0.84375 0.375-0.5 0.80078-0.75 1.2812-0.75 0.3125 0 0.60156 0.16406 0.875 0.48438l0.015625 0.015625c0.019531 0.03125 0.046875 0.0625 0.078125 0.09375 0.22656 0.26172 0.41016 0.40625 0.54688 0.4375 0.0625 0.011719 0.11719 0.015625 0.17188 0.015625 0.3125 0 0.64453-0.26953 1-0.8125l0.046875-0.078125c0.0625-0.10156 0.13281-0.15625 0.21875-0.15625 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.11719-0.19531 0.41406-0.57812 0.89062-0.28125 0.34375-0.63281 0.72656-1.0469 1.1406-0.0625 0.054687-0.51172 0.46094-1.3438 1.2188l-0.03125 0.03125c-0.60547 0.53125-1.1641 1.0703-1.6719 1.6094z"/>
|
|
72
|
+
</symbol>
|
|
73
|
+
<symbol id="al" overflow="visible">
|
|
74
|
+
<path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.0625-0.35156 0.1875-0.71875v-0.015625c0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.015625l0.09375-0.20312c0.14453-0.26953 0.29688-0.4375 0.45312-0.5 0.09375-0.050781 0.19141-0.078125 0.29688-0.078125 0.375 0 0.64453 0.15625 0.8125 0.46875 0.050781 0.125 0.085938 0.26172 0.10938 0.40625 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.58203 0 0.94531 0.21875 1.0938 0.65625 0.039062 0.125 0.0625 0.26562 0.0625 0.42188 0 0.33594-0.20312 1.0625-0.60938 2.1875-0.11719 0.30469-0.17188 0.54297-0.17188 0.71875 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.4375 0 0.77344-0.41016 1.0156-1.2344 0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.11719-0.070313 0.32812-0.20312 0.64062-0.29297 0.60547-0.65625 0.90625-1.0938 0.90625-0.34375 0-0.58984-0.14062-0.73438-0.42188-0.0625-0.125-0.09375-0.25391-0.09375-0.39062 0-0.13281 0.035156-0.28906 0.10938-0.46875 0.42578-1.1641 0.64062-1.9414 0.64062-2.3281 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.60547 0-1.1094 0.33594-1.5156 1-0.054688 0.074219-0.09375 0.14844-0.125 0.21875l-0.125 0.5c-0.03125 0.15625-0.089844 0.38281-0.17188 0.67188l-0.21875 0.90625c-0.11719 0.46094-0.17969 0.70312-0.1875 0.73438-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
|
|
75
|
+
</symbol>
|
|
76
|
+
<symbol id="ak" overflow="visible">
|
|
77
|
+
<path d="m0.78125 19.594v-0.75c1.5312 0 2.2969-0.46484 2.2969-1.3906v-15.297c0-0.92969-0.76562-1.3906-2.2969-1.3906v-0.76562h16.312v0.76562c-1.5312 0-2.2969 0.46094-2.2969 1.3906v15.297c0 0.92578 0.76562 1.3906 2.2969 1.3906v0.75h-6.7969v-0.75c1.5312 0 2.2969-0.46484 2.2969-1.3906v-16.688h-7.3125v16.688c0 0.92578 0.76562 1.3906 2.2969 1.3906v0.75z"/>
|
|
78
|
+
</symbol>
|
|
79
|
+
<symbol id="aj" overflow="visible">
|
|
80
|
+
<path d="m2.9375-6.4062v5.6094c0 0.21094 0.039062 0.33984 0.125 0.39062 0.11328 0.0625 0.38281 0.09375 0.8125 0.09375h0.3125v0.3125c-0.23047-0.019531-0.77344-0.03125-1.625-0.03125-0.84375 0-1.3828 0.011719-1.6094 0.03125v-0.3125h0.3125c0.51953 0 0.81641-0.054688 0.89062-0.17188v-0.015625c0.03125-0.050781 0.046875-0.14844 0.046875-0.29688v-5.1719c-0.34375 0.17969-0.78125 0.26562-1.3125 0.26562v-0.3125c0.80078 0 1.4062-0.21094 1.8125-0.64062 0.13281 0 0.21094 0.023438 0.23438 0.0625v0.015625 0.17188z"/>
|
|
81
|
+
</symbol>
|
|
82
|
+
<symbol id="ai" overflow="visible">
|
|
83
|
+
<path d="m6.7656-5.9531-5.2656 2.5 5.25 2.4688c0.11328 0.09375 0.17578 0.16797 0.1875 0.21875 0 0.10547-0.046875 0.16797-0.14062 0.1875-0.023437 0.011719-0.042969 0.015625-0.0625 0.015625-0.03125 0-0.089844-0.019531-0.17188-0.0625l-5.5469-2.625c-0.125-0.050781-0.1875-0.11719-0.1875-0.20312 0-0.09375 0.0625-0.17188 0.1875-0.23438l5.5625-2.6094c0.070313-0.039063 0.125-0.0625 0.15625-0.0625 0.11328 0 0.17969 0.054687 0.20312 0.15625v0.046875c0 0.09375-0.058594 0.16406-0.17188 0.20312zm-0.15625 7.3281h-5.4531c-0.21094 0-0.32031-0.070312-0.32812-0.20312 0-0.13672 0.11328-0.20312 0.34375-0.20312h5.4219c0.21875 0 0.33203 0.066406 0.34375 0.20312 0 0.13281-0.10938 0.20312-0.32812 0.20312z"/>
|
|
84
|
+
</symbol>
|
|
85
|
+
<symbol id="ah" overflow="visible">
|
|
86
|
+
<path d="m2.875-6.8281-1.0469 4.2188c0.28906-0.11328 0.66016-0.42578 1.1094-0.9375 0.53125-0.58203 1.0195-0.875 1.4688-0.875 0.3125 0 0.52344 0.13672 0.64062 0.40625 0.019531 0.074219 0.03125 0.14844 0.03125 0.21875 0 0.28125-0.11719 0.47656-0.34375 0.57812-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.078125c0-0.1875 0.082031-0.33203 0.25-0.4375v-0.015625c0.09375-0.050781 0.19531-0.078125 0.3125-0.078125l-0.03125-0.046875c-0.0625-0.039063-0.13672-0.066406-0.21875-0.078125-0.011719-0.007812-0.042969-0.015625-0.09375-0.015625-0.35547 0-0.78125 0.27344-1.2812 0.8125-0.03125 0.03125-0.058594 0.0625-0.078125 0.09375l-0.0625 0.0625c-0.34375 0.35547-0.63281 0.60156-0.85938 0.73438 0.97656 0.125 1.4688 0.47656 1.4688 1.0469 0 0.09375-0.011719 0.19922-0.03125 0.3125-0.054688 0.21875-0.078125 0.40625-0.078125 0.5625 0 0.3125 0.10156 0.46875 0.3125 0.46875 0.3125 0 0.5625-0.27344 0.75-0.82812 0.039063-0.11328 0.082031-0.25 0.125-0.40625 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.11719-0.070312 0.33594-0.20312 0.65625-0.054687 0.13672-0.10547 0.25781-0.15625 0.35938-0.21875 0.35547-0.48438 0.53125-0.79688 0.53125-0.36719 0-0.63281-0.16016-0.79688-0.48438-0.085937-0.14453-0.125-0.3125-0.125-0.5 0-0.070312 0.015625-0.19141 0.046875-0.35938 0.019531-0.0625 0.03125-0.12891 0.03125-0.20312 0-0.41406-0.30469-0.6875-0.90625-0.8125-0.085938-0.019531-0.17188-0.035156-0.26562-0.046875-0.33594 1.3984-0.51562 2.1328-0.54688 2.2031-0.074219 0.125-0.1875 0.19141-0.34375 0.20312-0.16797 0-0.26172-0.070312-0.28125-0.20312-0.011719-0.03125-0.015625-0.054688-0.015625-0.078125 0-0.050781 0.015625-0.125 0.046875-0.21875l1.4531-5.7656 0.015625-0.1875c0-0.070312-0.042969-0.11719-0.125-0.14062-0.085938-0.019531-0.21094-0.03125-0.375-0.03125-0.14844 0-0.22656-0.039063-0.23438-0.125 0-0.11328 0.0625-0.17969 0.1875-0.20312l1.2188-0.09375c0.09375 0 0.14062 0.039062 0.14062 0.10938z"/>
|
|
87
|
+
</symbol>
|
|
88
|
+
<symbol id="ag" overflow="visible">
|
|
89
|
+
<path d="m6.7656-5.9531-5.2656 2.5 5.25 2.4688c0.11328 0.09375 0.17578 0.16797 0.1875 0.21875 0 0.10547-0.046875 0.16797-0.14062 0.1875-0.023437 0.011719-0.042969 0.015625-0.0625 0.015625-0.03125 0-0.089844-0.019531-0.17188-0.0625l-5.5469-2.625c-0.125-0.050781-0.1875-0.11719-0.1875-0.20312 0-0.09375 0.0625-0.17188 0.1875-0.23438l5.5625-2.6094c0.070313-0.039063 0.125-0.0625 0.15625-0.0625 0.11328 0 0.17969 0.054687 0.20312 0.15625v0.046875c0 0.09375-0.058594 0.16406-0.17188 0.20312zm-0.15625 7.3281h-5.4531c-0.21094 0-0.32031-0.070312-0.32812-0.20312 0-0.13672 0.11328-0.20312 0.34375-0.20312h5.4219c0.21875 0 0.33203 0.066406 0.34375 0.20312 0 0.13281-0.10938 0.20312-0.32812 0.20312z"/>
|
|
90
|
+
</symbol>
|
|
91
|
+
<symbol id="af" overflow="visible">
|
|
92
|
+
<path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.0625-0.35156 0.1875-0.71875v-0.015625c0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.015625l0.09375-0.20312c0.14453-0.26953 0.29688-0.4375 0.45312-0.5 0.09375-0.050781 0.19141-0.078125 0.29688-0.078125 0.375 0 0.64453 0.15625 0.8125 0.46875 0.050781 0.125 0.085938 0.26172 0.10938 0.40625 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.58203 0 0.94531 0.21875 1.0938 0.65625 0.039062 0.125 0.0625 0.26562 0.0625 0.42188 0 0.33594-0.20312 1.0625-0.60938 2.1875-0.11719 0.30469-0.17188 0.54297-0.17188 0.71875 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.4375 0 0.77344-0.41016 1.0156-1.2344 0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.11719-0.070313 0.32812-0.20312 0.64062-0.29297 0.60547-0.65625 0.90625-1.0938 0.90625-0.34375 0-0.58984-0.14062-0.73438-0.42188-0.0625-0.125-0.09375-0.25391-0.09375-0.39062 0-0.13281 0.035156-0.28906 0.10938-0.46875 0.42578-1.1641 0.64062-1.9414 0.64062-2.3281 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.60547 0-1.1094 0.33594-1.5156 1-0.054688 0.074219-0.09375 0.14844-0.125 0.21875l-0.125 0.5c-0.03125 0.15625-0.089844 0.38281-0.17188 0.67188l-0.21875 0.90625c-0.11719 0.46094-0.17969 0.70312-0.1875 0.73438-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
|
|
93
|
+
</symbol>
|
|
94
|
+
<symbol id="ae" overflow="visible">
|
|
95
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
96
|
+
</symbol>
|
|
97
|
+
<symbol id="ad" overflow="visible">
|
|
98
|
+
<path d="m4.1094-8.9531v7.8438c0 0.28125 0.054687 0.46094 0.17188 0.53125 0.15625 0.09375 0.53516 0.14062 1.1406 0.14062h0.4375v0.4375c-0.32422-0.03125-1.0781-0.046875-2.2656-0.046875s-1.9453 0.015625-2.2656 0.046875v-0.4375h0.45312c0.71875 0 1.1289-0.082031 1.2344-0.25l0.015625-0.015625c0.03125-0.070313 0.046875-0.20703 0.046875-0.40625v-7.25c-0.48047 0.24219-1.0898 0.35938-1.8281 0.35938v-0.42188c1.1133 0 1.9609-0.30078 2.5469-0.90625 0.17578 0 0.28125 0.039063 0.3125 0.10938v0.26562z"/>
|
|
99
|
+
</symbol>
|
|
100
|
+
<symbol id="ab" overflow="visible">
|
|
101
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
102
|
+
</symbol>
|
|
103
|
+
<symbol id="aa" overflow="visible">
|
|
104
|
+
<path d="m6.3281-6.0312-1.9375 7.7812c-0.03125 0.16406-0.046875 0.26953-0.046875 0.3125 0 0.10156 0.054688 0.16406 0.17188 0.1875 0.10156 0.019531 0.26953 0.03125 0.5 0.03125 0.21875 0 0.33594 0.050781 0.35938 0.15625 0 0.1875-0.085938 0.28125-0.25 0.28125l-1.4219-0.046875h-0.015625l-1.3906 0.046875h-0.015625c-0.125 0-0.1875-0.054688-0.1875-0.15625 0.082031-0.17969 0.19141-0.27344 0.32812-0.28125 0.48828-0.011719 0.78125-0.074219 0.875-0.1875 0.050781-0.054688 0.097656-0.14844 0.14062-0.28125l0.625-2.5c-0.5625 0.5625-1.1172 0.84375-1.6562 0.84375-0.65625 0-1.1562-0.29688-1.5-0.89062-0.23047-0.375-0.34375-0.82812-0.34375-1.3594 0-0.98828 0.34766-1.9141 1.0469-2.7812 0.64453-0.78906 1.3516-1.2227 2.125-1.2969 0.070313-0.007813 0.14062-0.015625 0.20312-0.015625 0.59375 0 1.0234 0.32812 1.2969 0.98438 0.19531-0.34375 0.44531-0.63281 0.75-0.875l0.03125-0.015625c0.070313-0.050781 0.12891-0.078125 0.17188-0.078125 0.09375 0 0.14062 0.046875 0.14062 0.14062zm-3.875 5.875c0.48828 0 0.99219-0.30078 1.5156-0.90625 0.10156-0.14453 0.19141-0.26953 0.26562-0.375 0.050781-0.070312 0.30078-1.0508 0.75-2.9375 0.039063-0.16406 0.0625-0.25391 0.0625-0.26562 0-0.20703-0.089844-0.44531-0.26562-0.71875-0.19922-0.34375-0.48047-0.51562-0.84375-0.51562-0.46094 0-0.89844 0.28125-1.3125 0.84375-0.16797 0.24219-0.30859 0.5-0.42188 0.78125-0.26172 0.64844-0.46094 1.3984-0.59375 2.25-0.042969 0.21094-0.0625 0.38672-0.0625 0.53125 0 0.60547 0.16406 1.0078 0.5 1.2031l0.015625 0.015625c0.10156 0.0625 0.23438 0.09375 0.39062 0.09375z"/>
|
|
105
|
+
</symbol>
|
|
106
|
+
<symbol id="z" overflow="visible">
|
|
107
|
+
<path d="m2.875-6.8281-1.0469 4.2188c0.28906-0.11328 0.66016-0.42578 1.1094-0.9375 0.53125-0.58203 1.0195-0.875 1.4688-0.875 0.3125 0 0.52344 0.13672 0.64062 0.40625 0.019531 0.074219 0.03125 0.14844 0.03125 0.21875 0 0.28125-0.11719 0.47656-0.34375 0.57812-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.078125c0-0.1875 0.082031-0.33203 0.25-0.4375v-0.015625c0.09375-0.050781 0.19531-0.078125 0.3125-0.078125l-0.03125-0.046875c-0.0625-0.039063-0.13672-0.066406-0.21875-0.078125-0.011719-0.007812-0.042969-0.015625-0.09375-0.015625-0.35547 0-0.78125 0.27344-1.2812 0.8125-0.03125 0.03125-0.058594 0.0625-0.078125 0.09375l-0.0625 0.0625c-0.34375 0.35547-0.63281 0.60156-0.85938 0.73438 0.97656 0.125 1.4688 0.47656 1.4688 1.0469 0 0.09375-0.011719 0.19922-0.03125 0.3125-0.054688 0.21875-0.078125 0.40625-0.078125 0.5625 0 0.3125 0.10156 0.46875 0.3125 0.46875 0.3125 0 0.5625-0.27344 0.75-0.82812 0.039063-0.11328 0.082031-0.25 0.125-0.40625 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.11719-0.070312 0.33594-0.20312 0.65625-0.054687 0.13672-0.10547 0.25781-0.15625 0.35938-0.21875 0.35547-0.48438 0.53125-0.79688 0.53125-0.36719 0-0.63281-0.16016-0.79688-0.48438-0.085937-0.14453-0.125-0.3125-0.125-0.5 0-0.070312 0.015625-0.19141 0.046875-0.35938 0.019531-0.0625 0.03125-0.12891 0.03125-0.20312 0-0.41406-0.30469-0.6875-0.90625-0.8125-0.085938-0.019531-0.17188-0.035156-0.26562-0.046875-0.33594 1.3984-0.51562 2.1328-0.54688 2.2031-0.074219 0.125-0.1875 0.19141-0.34375 0.20312-0.16797 0-0.26172-0.070312-0.28125-0.20312-0.011719-0.03125-0.015625-0.054688-0.015625-0.078125 0-0.050781 0.015625-0.125 0.046875-0.21875l1.4531-5.7656 0.015625-0.1875c0-0.070312-0.042969-0.11719-0.125-0.14062-0.085938-0.019531-0.21094-0.03125-0.375-0.03125-0.14844 0-0.22656-0.039063-0.23438-0.125 0-0.11328 0.0625-0.17969 0.1875-0.20312l1.2188-0.09375c0.09375 0 0.14062 0.039062 0.14062 0.10938z"/>
|
|
108
|
+
</symbol>
|
|
109
|
+
<symbol id="y" overflow="visible">
|
|
110
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
111
|
+
</symbol>
|
|
112
|
+
<symbol id="x" overflow="visible">
|
|
113
|
+
<path d="m0.92188 19.594c-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.015625-0.078125 0.046875-0.10938l7.3906-8.6094-7.3906-10.125c-0.03125-0.023437-0.046875-0.042969-0.046875-0.0625v-0.42188c0-0.03125 0.015625-0.0625 0.046875-0.09375 0.03125-0.023438 0.0625-0.03125 0.09375-0.03125h16.797l1.7031 3.9375h-0.40625c-0.4375-1-1.168-1.7422-2.1875-2.2188-1.0117-0.48047-2.0703-0.77734-3.1719-0.89062-1.1055-0.10547-2.3906-0.15625-3.8594-0.15625h-6.4688l6.6094 9.0312c0.019531 0.03125 0.03125 0.0625 0.03125 0.09375s-0.011719 0.066406-0.03125 0.10938l-7.2656 8.4531h7.2656c1.4375 0 2.707-0.058594 3.8125-0.17188 1.1133-0.11719 2.1719-0.41406 3.1719-0.89062 1.0078-0.48047 1.707-1.2148 2.0938-2.2031h0.40625l-1.7031 4.5z"/>
|
|
114
|
+
</symbol>
|
|
115
|
+
<symbol id="w" overflow="visible">
|
|
116
|
+
<path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.0625-0.35156 0.1875-0.71875v-0.015625c0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.015625l0.09375-0.20312c0.14453-0.26953 0.29688-0.4375 0.45312-0.5 0.09375-0.050781 0.19141-0.078125 0.29688-0.078125 0.375 0 0.64453 0.15625 0.8125 0.46875 0.050781 0.125 0.085938 0.26172 0.10938 0.40625 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.58203 0 0.94531 0.21875 1.0938 0.65625 0.039062 0.125 0.0625 0.26562 0.0625 0.42188 0 0.33594-0.20312 1.0625-0.60938 2.1875-0.11719 0.30469-0.17188 0.54297-0.17188 0.71875 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.4375 0 0.77344-0.41016 1.0156-1.2344 0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.11719-0.070313 0.32812-0.20312 0.64062-0.29297 0.60547-0.65625 0.90625-1.0938 0.90625-0.34375 0-0.58984-0.14062-0.73438-0.42188-0.0625-0.125-0.09375-0.25391-0.09375-0.39062 0-0.13281 0.035156-0.28906 0.10938-0.46875 0.42578-1.1641 0.64062-1.9414 0.64062-2.3281 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.60547 0-1.1094 0.33594-1.5156 1-0.054688 0.074219-0.09375 0.14844-0.125 0.21875l-0.125 0.5c-0.03125 0.15625-0.089844 0.38281-0.17188 0.67188l-0.21875 0.90625c-0.11719 0.46094-0.17969 0.70312-0.1875 0.73438-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
|
|
117
|
+
</symbol>
|
|
118
|
+
<symbol id="v" overflow="visible">
|
|
119
|
+
<path d="m6.75-2.2812-5.5469 2.6094c-0.085937 0.050781-0.14062 0.078125-0.17188 0.078125-0.10547 0-0.16797-0.054688-0.1875-0.15625-0.011719-0.023438-0.015625-0.039062-0.015625-0.046875 0-0.085937 0.0625-0.15625 0.1875-0.21875l5.25-2.4844-5.25-2.4844c-0.125-0.0625-0.1875-0.13281-0.1875-0.21875 0-0.10156 0.050781-0.16406 0.15625-0.1875 0.019531-0.007813 0.035156-0.015625 0.046875-0.015625 0.03125 0 0.085938 0.027344 0.17188 0.078125l5.5469 2.6094c0.125 0.0625 0.1875 0.13672 0.1875 0.21875 0 0.085938-0.0625 0.15625-0.1875 0.21875z"/>
|
|
120
|
+
</symbol>
|
|
121
|
+
<symbol id="u" overflow="visible">
|
|
122
|
+
<path d="m4.5938-3.2031c0 0.98047-0.12109 1.7344-0.35938 2.2656-0.39844 0.75-0.98047 1.1328-1.75 1.1562-0.60547 0-1.0898-0.23828-1.4531-0.71875-0.074219-0.082031-0.13672-0.17969-0.1875-0.29688-0.30469-0.55078-0.45312-1.3516-0.45312-2.4062 0-0.97656 0.125-1.7344 0.375-2.2656 0.33203-0.75 0.86719-1.1445 1.6094-1.1875h0.125c0.59375 0 1.0781 0.23438 1.4531 0.70312v0.015625c0.09375 0.11719 0.17578 0.24609 0.25 0.39062 0.25781 0.57422 0.39062 1.3555 0.39062 2.3438zm-2.1094 3.2031c0.42578 0 0.75-0.20312 0.96875-0.60938 0.09375-0.17578 0.16016-0.39062 0.20312-0.64062 0.070312-0.42578 0.10938-1.1133 0.10938-2.0625 0-0.92578-0.03125-1.5781-0.09375-1.9531-0.125-0.63281-0.43359-1.0156-0.92188-1.1406-0.085938-0.019531-0.17188-0.03125-0.26562-0.03125-0.46094 0-0.79688 0.23438-1.0156 0.70312-0.074219 0.15625-0.13281 0.35156-0.17188 0.57812-0.054687 0.35547-0.078125 0.96875-0.078125 1.8438 0 1 0.035156 1.7031 0.10938 2.1094 0.125 0.63672 0.41406 1.0234 0.875 1.1562 0.09375 0.03125 0.1875 0.046875 0.28125 0.046875z"/>
|
|
123
|
+
</symbol>
|
|
124
|
+
<symbol id="t" overflow="visible">
|
|
125
|
+
<path d="m1.8594-1.1562c0.082031-0.03125 0.20703-0.046875 0.375-0.046875 0.25 0 0.57812 0.078125 0.98438 0.23438 0.36328 0.125 0.64062 0.1875 0.82812 0.1875 0.48828 0 0.91016-0.17578 1.2656-0.53125 0.1875-0.17578 0.32031-0.39062 0.40625-0.64062 0.0625-0.125 0.12891-0.1875 0.20312-0.1875 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.24219-0.15234 0.58594-0.45312 1.0312-0.5 0.75-1.0859 1.125-1.75 1.125-0.3125 0-0.60938-0.17188-0.89062-0.51562-0.26172-0.3125-0.47656-0.48438-0.64062-0.51562-0.042969-0.007812-0.10156-0.015625-0.17188-0.015625-0.41797 0-0.8125 0.28906-1.1875 0.85938-0.074219 0.125-0.15234 0.1875-0.23438 0.1875-0.10547 0-0.15625-0.046875-0.15625-0.14062 0-0.11328 0.21094-0.42969 0.64062-0.95312 0.23828-0.30078 0.50391-0.59375 0.79688-0.875l1.25-1.1875c0.92578-0.78125 1.5781-1.3906 1.9531-1.8281-0.33594 0-0.69531-0.070313-1.0781-0.21875-0.40625-0.13281-0.69922-0.20312-0.875-0.20312-0.54297 0-0.91797 0.17969-1.125 0.53125-0.03125 0.042969-0.058594 0.085938-0.078125 0.125-0.03125 0.10547-0.089844 0.15625-0.17188 0.15625-0.11719 0-0.17188-0.050781-0.17188-0.15625 0-0.20703 0.13281-0.48828 0.40625-0.84375 0.375-0.5 0.80078-0.75 1.2812-0.75 0.3125 0 0.60156 0.16406 0.875 0.48438l0.015625 0.015625c0.019531 0.03125 0.046875 0.0625 0.078125 0.09375 0.22656 0.26172 0.41016 0.40625 0.54688 0.4375 0.0625 0.011719 0.11719 0.015625 0.17188 0.015625 0.3125 0 0.64453-0.26953 1-0.8125l0.046875-0.078125c0.0625-0.10156 0.13281-0.15625 0.21875-0.15625 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.11719-0.19531 0.41406-0.57812 0.89062-0.28125 0.34375-0.63281 0.72656-1.0469 1.1406-0.0625 0.054687-0.51172 0.46094-1.3438 1.2188l-0.03125 0.03125c-0.60547 0.53125-1.1641 1.0703-1.6719 1.6094z"/>
|
|
126
|
+
</symbol>
|
|
127
|
+
<symbol id="s" overflow="visible">
|
|
128
|
+
<path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.0625-0.35156 0.1875-0.71875v-0.015625c0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.015625l0.09375-0.20312c0.14453-0.26953 0.29688-0.4375 0.45312-0.5 0.09375-0.050781 0.19141-0.078125 0.29688-0.078125 0.375 0 0.64453 0.15625 0.8125 0.46875 0.050781 0.125 0.085938 0.26172 0.10938 0.40625 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.58203 0 0.94531 0.21875 1.0938 0.65625 0.039062 0.125 0.0625 0.26562 0.0625 0.42188 0 0.33594-0.20312 1.0625-0.60938 2.1875-0.11719 0.30469-0.17188 0.54297-0.17188 0.71875 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.4375 0 0.77344-0.41016 1.0156-1.2344 0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.11719-0.070313 0.32812-0.20312 0.64062-0.29297 0.60547-0.65625 0.90625-1.0938 0.90625-0.34375 0-0.58984-0.14062-0.73438-0.42188-0.0625-0.125-0.09375-0.25391-0.09375-0.39062 0-0.13281 0.035156-0.28906 0.10938-0.46875 0.42578-1.1641 0.64062-1.9414 0.64062-2.3281 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.60547 0-1.1094 0.33594-1.5156 1-0.054688 0.074219-0.09375 0.14844-0.125 0.21875l-0.125 0.5c-0.03125 0.15625-0.089844 0.38281-0.17188 0.67188l-0.21875 0.90625c-0.11719 0.46094-0.17969 0.70312-0.1875 0.73438-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
|
|
129
|
+
</symbol>
|
|
130
|
+
<symbol id="q" overflow="visible">
|
|
131
|
+
<path d="m0.78125 19.594v-0.75c1.5312 0 2.2969-0.46484 2.2969-1.3906v-15.297c0-0.92969-0.76562-1.3906-2.2969-1.3906v-0.76562h16.312v0.76562c-1.5312 0-2.2969 0.46094-2.2969 1.3906v15.297c0 0.92578 0.76562 1.3906 2.2969 1.3906v0.75h-6.7969v-0.75c1.5312 0 2.2969-0.46484 2.2969-1.3906v-16.688h-7.3125v16.688c0 0.92578 0.76562 1.3906 2.2969 1.3906v0.75z"/>
|
|
132
|
+
</symbol>
|
|
133
|
+
<symbol id="p" overflow="visible">
|
|
134
|
+
<path d="m2.9375-6.4062v5.6094c0 0.21094 0.039062 0.33984 0.125 0.39062 0.11328 0.0625 0.38281 0.09375 0.8125 0.09375h0.3125v0.3125c-0.23047-0.019531-0.77344-0.03125-1.625-0.03125-0.84375 0-1.3828 0.011719-1.6094 0.03125v-0.3125h0.3125c0.51953 0 0.81641-0.054688 0.89062-0.17188v-0.015625c0.03125-0.050781 0.046875-0.14844 0.046875-0.29688v-5.1719c-0.34375 0.17969-0.78125 0.26562-1.3125 0.26562v-0.3125c0.80078 0 1.4062-0.21094 1.8125-0.64062 0.13281 0 0.21094 0.023438 0.23438 0.0625v0.015625 0.17188z"/>
|
|
135
|
+
</symbol>
|
|
136
|
+
<symbol id="o" overflow="visible">
|
|
137
|
+
<path d="m6.7656-5.9531-5.2656 2.5 5.25 2.4688c0.11328 0.09375 0.17578 0.16797 0.1875 0.21875 0 0.10547-0.046875 0.16797-0.14062 0.1875-0.023437 0.011719-0.042969 0.015625-0.0625 0.015625-0.03125 0-0.089844-0.019531-0.17188-0.0625l-5.5469-2.625c-0.125-0.050781-0.1875-0.11719-0.1875-0.20312 0-0.09375 0.0625-0.17188 0.1875-0.23438l5.5625-2.6094c0.070313-0.039063 0.125-0.0625 0.15625-0.0625 0.11328 0 0.17969 0.054687 0.20312 0.15625v0.046875c0 0.09375-0.058594 0.16406-0.17188 0.20312zm-0.15625 7.3281h-5.4531c-0.21094 0-0.32031-0.070312-0.32812-0.20312 0-0.13672 0.11328-0.20312 0.34375-0.20312h5.4219c0.21875 0 0.33203 0.066406 0.34375 0.20312 0 0.13281-0.10938 0.20312-0.32812 0.20312z"/>
|
|
138
|
+
</symbol>
|
|
139
|
+
<symbol id="n" overflow="visible">
|
|
140
|
+
<path d="m2.875-6.8281-1.0469 4.2188c0.28906-0.11328 0.66016-0.42578 1.1094-0.9375 0.53125-0.58203 1.0195-0.875 1.4688-0.875 0.3125 0 0.52344 0.13672 0.64062 0.40625 0.019531 0.074219 0.03125 0.14844 0.03125 0.21875 0 0.28125-0.11719 0.47656-0.34375 0.57812-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.078125c0-0.1875 0.082031-0.33203 0.25-0.4375v-0.015625c0.09375-0.050781 0.19531-0.078125 0.3125-0.078125l-0.03125-0.046875c-0.0625-0.039063-0.13672-0.066406-0.21875-0.078125-0.011719-0.007812-0.042969-0.015625-0.09375-0.015625-0.35547 0-0.78125 0.27344-1.2812 0.8125-0.03125 0.03125-0.058594 0.0625-0.078125 0.09375l-0.0625 0.0625c-0.34375 0.35547-0.63281 0.60156-0.85938 0.73438 0.97656 0.125 1.4688 0.47656 1.4688 1.0469 0 0.09375-0.011719 0.19922-0.03125 0.3125-0.054688 0.21875-0.078125 0.40625-0.078125 0.5625 0 0.3125 0.10156 0.46875 0.3125 0.46875 0.3125 0 0.5625-0.27344 0.75-0.82812 0.039063-0.11328 0.082031-0.25 0.125-0.40625 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.11719-0.070312 0.33594-0.20312 0.65625-0.054687 0.13672-0.10547 0.25781-0.15625 0.35938-0.21875 0.35547-0.48438 0.53125-0.79688 0.53125-0.36719 0-0.63281-0.16016-0.79688-0.48438-0.085937-0.14453-0.125-0.3125-0.125-0.5 0-0.070312 0.015625-0.19141 0.046875-0.35938 0.019531-0.0625 0.03125-0.12891 0.03125-0.20312 0-0.41406-0.30469-0.6875-0.90625-0.8125-0.085938-0.019531-0.17188-0.035156-0.26562-0.046875-0.33594 1.3984-0.51562 2.1328-0.54688 2.2031-0.074219 0.125-0.1875 0.19141-0.34375 0.20312-0.16797 0-0.26172-0.070312-0.28125-0.20312-0.011719-0.03125-0.015625-0.054688-0.015625-0.078125 0-0.050781 0.015625-0.125 0.046875-0.21875l1.4531-5.7656 0.015625-0.1875c0-0.070312-0.042969-0.11719-0.125-0.14062-0.085938-0.019531-0.21094-0.03125-0.375-0.03125-0.14844 0-0.22656-0.039063-0.23438-0.125 0-0.11328 0.0625-0.17969 0.1875-0.20312l1.2188-0.09375c0.09375 0 0.14062 0.039062 0.14062 0.10938z"/>
|
|
141
|
+
</symbol>
|
|
142
|
+
<symbol id="m" overflow="visible">
|
|
143
|
+
<path d="m6.7656-5.9531-5.2656 2.5 5.25 2.4688c0.11328 0.09375 0.17578 0.16797 0.1875 0.21875 0 0.10547-0.046875 0.16797-0.14062 0.1875-0.023437 0.011719-0.042969 0.015625-0.0625 0.015625-0.03125 0-0.089844-0.019531-0.17188-0.0625l-5.5469-2.625c-0.125-0.050781-0.1875-0.11719-0.1875-0.20312 0-0.09375 0.0625-0.17188 0.1875-0.23438l5.5625-2.6094c0.070313-0.039063 0.125-0.0625 0.15625-0.0625 0.11328 0 0.17969 0.054687 0.20312 0.15625v0.046875c0 0.09375-0.058594 0.16406-0.17188 0.20312zm-0.15625 7.3281h-5.4531c-0.21094 0-0.32031-0.070312-0.32812-0.20312 0-0.13672 0.11328-0.20312 0.34375-0.20312h5.4219c0.21875 0 0.33203 0.066406 0.34375 0.20312 0 0.13281-0.10938 0.20312-0.32812 0.20312z"/>
|
|
144
|
+
</symbol>
|
|
145
|
+
<symbol id="l" overflow="visible">
|
|
146
|
+
<path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.0625-0.35156 0.1875-0.71875v-0.015625c0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.015625l0.09375-0.20312c0.14453-0.26953 0.29688-0.4375 0.45312-0.5 0.09375-0.050781 0.19141-0.078125 0.29688-0.078125 0.375 0 0.64453 0.15625 0.8125 0.46875 0.050781 0.125 0.085938 0.26172 0.10938 0.40625 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.58203 0 0.94531 0.21875 1.0938 0.65625 0.039062 0.125 0.0625 0.26562 0.0625 0.42188 0 0.33594-0.20312 1.0625-0.60938 2.1875-0.11719 0.30469-0.17188 0.54297-0.17188 0.71875 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.4375 0 0.77344-0.41016 1.0156-1.2344 0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.11719-0.070313 0.32812-0.20312 0.64062-0.29297 0.60547-0.65625 0.90625-1.0938 0.90625-0.34375 0-0.58984-0.14062-0.73438-0.42188-0.0625-0.125-0.09375-0.25391-0.09375-0.39062 0-0.13281 0.035156-0.28906 0.10938-0.46875 0.42578-1.1641 0.64062-1.9414 0.64062-2.3281 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.60547 0-1.1094 0.33594-1.5156 1-0.054688 0.074219-0.09375 0.14844-0.125 0.21875l-0.125 0.5c-0.03125 0.15625-0.089844 0.38281-0.17188 0.67188l-0.21875 0.90625c-0.11719 0.46094-0.17969 0.70312-0.1875 0.73438-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
|
|
147
|
+
</symbol>
|
|
148
|
+
<symbol id="k" overflow="visible">
|
|
149
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
150
|
+
</symbol>
|
|
151
|
+
<symbol id="j" overflow="visible">
|
|
152
|
+
<path d="m4.1094-8.9531v7.8438c0 0.28125 0.054687 0.46094 0.17188 0.53125 0.15625 0.09375 0.53516 0.14062 1.1406 0.14062h0.4375v0.4375c-0.32422-0.03125-1.0781-0.046875-2.2656-0.046875s-1.9453 0.015625-2.2656 0.046875v-0.4375h0.45312c0.71875 0 1.1289-0.082031 1.2344-0.25l0.015625-0.015625c0.03125-0.070313 0.046875-0.20703 0.046875-0.40625v-7.25c-0.48047 0.24219-1.0898 0.35938-1.8281 0.35938v-0.42188c1.1133 0 1.9609-0.30078 2.5469-0.90625 0.17578 0 0.28125 0.039063 0.3125 0.10938v0.26562z"/>
|
|
153
|
+
</symbol>
|
|
154
|
+
<symbol id="i" overflow="visible">
|
|
155
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
156
|
+
</symbol>
|
|
157
|
+
<symbol id="h" overflow="visible">
|
|
158
|
+
<path d="m6.3281-6.0312-1.9375 7.7812c-0.03125 0.16406-0.046875 0.26953-0.046875 0.3125 0 0.10156 0.054688 0.16406 0.17188 0.1875 0.10156 0.019531 0.26953 0.03125 0.5 0.03125 0.21875 0 0.33594 0.050781 0.35938 0.15625 0 0.1875-0.085938 0.28125-0.25 0.28125l-1.4219-0.046875h-0.015625l-1.3906 0.046875h-0.015625c-0.125 0-0.1875-0.054688-0.1875-0.15625 0.082031-0.17969 0.19141-0.27344 0.32812-0.28125 0.48828-0.011719 0.78125-0.074219 0.875-0.1875 0.050781-0.054688 0.097656-0.14844 0.14062-0.28125l0.625-2.5c-0.5625 0.5625-1.1172 0.84375-1.6562 0.84375-0.65625 0-1.1562-0.29688-1.5-0.89062-0.23047-0.375-0.34375-0.82812-0.34375-1.3594 0-0.98828 0.34766-1.9141 1.0469-2.7812 0.64453-0.78906 1.3516-1.2227 2.125-1.2969 0.070313-0.007813 0.14062-0.015625 0.20312-0.015625 0.59375 0 1.0234 0.32812 1.2969 0.98438 0.19531-0.34375 0.44531-0.63281 0.75-0.875l0.03125-0.015625c0.070313-0.050781 0.12891-0.078125 0.17188-0.078125 0.09375 0 0.14062 0.046875 0.14062 0.14062zm-3.875 5.875c0.48828 0 0.99219-0.30078 1.5156-0.90625 0.10156-0.14453 0.19141-0.26953 0.26562-0.375 0.050781-0.070312 0.30078-1.0508 0.75-2.9375 0.039063-0.16406 0.0625-0.25391 0.0625-0.26562 0-0.20703-0.089844-0.44531-0.26562-0.71875-0.19922-0.34375-0.48047-0.51562-0.84375-0.51562-0.46094 0-0.89844 0.28125-1.3125 0.84375-0.16797 0.24219-0.30859 0.5-0.42188 0.78125-0.26172 0.64844-0.46094 1.3984-0.59375 2.25-0.042969 0.21094-0.0625 0.38672-0.0625 0.53125 0 0.60547 0.16406 1.0078 0.5 1.2031l0.015625 0.015625c0.10156 0.0625 0.23438 0.09375 0.39062 0.09375z"/>
|
|
159
|
+
</symbol>
|
|
160
|
+
<symbol id="g" overflow="visible">
|
|
161
|
+
<path d="m2.875-6.8281-1.0469 4.2188c0.28906-0.11328 0.66016-0.42578 1.1094-0.9375 0.53125-0.58203 1.0195-0.875 1.4688-0.875 0.3125 0 0.52344 0.13672 0.64062 0.40625 0.019531 0.074219 0.03125 0.14844 0.03125 0.21875 0 0.28125-0.11719 0.47656-0.34375 0.57812-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.078125c0-0.1875 0.082031-0.33203 0.25-0.4375v-0.015625c0.09375-0.050781 0.19531-0.078125 0.3125-0.078125l-0.03125-0.046875c-0.0625-0.039063-0.13672-0.066406-0.21875-0.078125-0.011719-0.007812-0.042969-0.015625-0.09375-0.015625-0.35547 0-0.78125 0.27344-1.2812 0.8125-0.03125 0.03125-0.058594 0.0625-0.078125 0.09375l-0.0625 0.0625c-0.34375 0.35547-0.63281 0.60156-0.85938 0.73438 0.97656 0.125 1.4688 0.47656 1.4688 1.0469 0 0.09375-0.011719 0.19922-0.03125 0.3125-0.054688 0.21875-0.078125 0.40625-0.078125 0.5625 0 0.3125 0.10156 0.46875 0.3125 0.46875 0.3125 0 0.5625-0.27344 0.75-0.82812 0.039063-0.11328 0.082031-0.25 0.125-0.40625 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.11719-0.070312 0.33594-0.20312 0.65625-0.054687 0.13672-0.10547 0.25781-0.15625 0.35938-0.21875 0.35547-0.48438 0.53125-0.79688 0.53125-0.36719 0-0.63281-0.16016-0.79688-0.48438-0.085937-0.14453-0.125-0.3125-0.125-0.5 0-0.070312 0.015625-0.19141 0.046875-0.35938 0.019531-0.0625 0.03125-0.12891 0.03125-0.20312 0-0.41406-0.30469-0.6875-0.90625-0.8125-0.085938-0.019531-0.17188-0.035156-0.26562-0.046875-0.33594 1.3984-0.51562 2.1328-0.54688 2.2031-0.074219 0.125-0.1875 0.19141-0.34375 0.20312-0.16797 0-0.26172-0.070312-0.28125-0.20312-0.011719-0.03125-0.015625-0.054688-0.015625-0.078125 0-0.050781 0.015625-0.125 0.046875-0.21875l1.4531-5.7656 0.015625-0.1875c0-0.070312-0.042969-0.11719-0.125-0.14062-0.085938-0.019531-0.21094-0.03125-0.375-0.03125-0.14844 0-0.22656-0.039063-0.23438-0.125 0-0.11328 0.0625-0.17969 0.1875-0.20312l1.2188-0.09375c0.09375 0 0.14062 0.039062 0.14062 0.10938z"/>
|
|
162
|
+
</symbol>
|
|
163
|
+
<symbol id="e" overflow="visible">
|
|
164
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
165
|
+
</symbol>
|
|
166
|
+
</defs>
|
|
167
|
+
<rect width="124" height="189" fill="#fff"/>
|
|
168
|
+
<g>
|
|
169
|
+
<use x="33.175781" y="10" xlink:href="#bb"/>
|
|
170
|
+
</g>
|
|
171
|
+
<g>
|
|
172
|
+
<use x="47.953125" y="24.488281" xlink:href="#ba"/>
|
|
173
|
+
</g>
|
|
174
|
+
<g>
|
|
175
|
+
<use x="53.835938" y="24.488281" xlink:href="#ao"/>
|
|
176
|
+
</g>
|
|
177
|
+
<g>
|
|
178
|
+
<use x="61.457031" y="24.488281" xlink:href="#ac"/>
|
|
179
|
+
</g>
|
|
180
|
+
<g>
|
|
181
|
+
<use x="71.800781" y="20.5" xlink:href="#r"/>
|
|
182
|
+
</g>
|
|
183
|
+
<g>
|
|
184
|
+
<use x="78.929688" y="15.417969" xlink:href="#f"/>
|
|
185
|
+
</g>
|
|
186
|
+
<path transform="matrix(14 0 0 14 -1.6497e-6 -6.0552e-7)" d="m0.83426 1.9166h6.7946" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
187
|
+
<g>
|
|
188
|
+
<use x="11.679687" y="29.4375" xlink:href="#d"/>
|
|
189
|
+
</g>
|
|
190
|
+
<g>
|
|
191
|
+
<use x="24.902344" y="43.925781" xlink:href="#c"/>
|
|
192
|
+
</g>
|
|
193
|
+
<g>
|
|
194
|
+
<use x="29.800781" y="43.925781" xlink:href="#b"/>
|
|
195
|
+
</g>
|
|
196
|
+
<g>
|
|
197
|
+
<use x="37.425781" y="43.925781" xlink:href="#a"/>
|
|
198
|
+
</g>
|
|
199
|
+
<g>
|
|
200
|
+
<use x="42.835938" y="43.925781" xlink:href="#az"/>
|
|
201
|
+
</g>
|
|
202
|
+
<g>
|
|
203
|
+
<use x="50.457031" y="43.925781" xlink:href="#ay"/>
|
|
204
|
+
</g>
|
|
205
|
+
<g>
|
|
206
|
+
<use x="59.449219" y="39.9375" xlink:href="#ax"/>
|
|
207
|
+
</g>
|
|
208
|
+
<g>
|
|
209
|
+
<use x="64.894531" y="39.9375" xlink:href="#aw"/>
|
|
210
|
+
</g>
|
|
211
|
+
<g>
|
|
212
|
+
<use x="75.007813" y="39.9375" xlink:href="#av"/>
|
|
213
|
+
</g>
|
|
214
|
+
<g>
|
|
215
|
+
<use x="89.007813" y="39.9375" xlink:href="#au"/>
|
|
216
|
+
</g>
|
|
217
|
+
<g>
|
|
218
|
+
<use x="95.757813" y="35.890625" xlink:href="#at"/>
|
|
219
|
+
</g>
|
|
220
|
+
<g>
|
|
221
|
+
<use x="101.359375" y="39.9375" xlink:href="#as"/>
|
|
222
|
+
</g>
|
|
223
|
+
<g>
|
|
224
|
+
<use x="33.042969" y="51.324219" xlink:href="#ar"/>
|
|
225
|
+
</g>
|
|
226
|
+
<g>
|
|
227
|
+
<use x="33.953125" y="80.976563" xlink:href="#aq"/>
|
|
228
|
+
</g>
|
|
229
|
+
<g>
|
|
230
|
+
<use x="39.835938" y="80.976563" xlink:href="#ap"/>
|
|
231
|
+
</g>
|
|
232
|
+
<g>
|
|
233
|
+
<use x="47.457031" y="80.976563" xlink:href="#an"/>
|
|
234
|
+
</g>
|
|
235
|
+
<g>
|
|
236
|
+
<use x="55.597656" y="66.027344" xlink:href="#am"/>
|
|
237
|
+
</g>
|
|
238
|
+
<g>
|
|
239
|
+
<use x="62.726563" y="60.246094" xlink:href="#al"/>
|
|
240
|
+
</g>
|
|
241
|
+
<path transform="matrix(14 0 0 14 -4.8182e-6 -4.4113e-6)" d="m0.83426 6.0513h5.6281" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
242
|
+
<g>
|
|
243
|
+
<use x="18.453125" y="88.078125" xlink:href="#ak"/>
|
|
244
|
+
</g>
|
|
245
|
+
<g>
|
|
246
|
+
<use x="11.679687" y="118.21875" xlink:href="#aj"/>
|
|
247
|
+
</g>
|
|
248
|
+
<g>
|
|
249
|
+
<use x="16.578125" y="118.21875" xlink:href="#ai"/>
|
|
250
|
+
</g>
|
|
251
|
+
<g>
|
|
252
|
+
<use x="24.203125" y="118.21875" xlink:href="#ah"/>
|
|
253
|
+
</g>
|
|
254
|
+
<g>
|
|
255
|
+
<use x="29.613281" y="118.21875" xlink:href="#ag"/>
|
|
256
|
+
</g>
|
|
257
|
+
<g>
|
|
258
|
+
<use x="37.234375" y="118.21875" xlink:href="#af"/>
|
|
259
|
+
</g>
|
|
260
|
+
<g>
|
|
261
|
+
<use x="43.117188" y="102.777344" xlink:href="#ae"/>
|
|
262
|
+
</g>
|
|
263
|
+
<g>
|
|
264
|
+
<use x="48.5625" y="102.777344" xlink:href="#ad"/>
|
|
265
|
+
</g>
|
|
266
|
+
<g>
|
|
267
|
+
<use x="58.671875" y="102.777344" xlink:href="#ab"/>
|
|
268
|
+
</g>
|
|
269
|
+
<g>
|
|
270
|
+
<use x="72.671875" y="102.777344" xlink:href="#aa"/>
|
|
271
|
+
</g>
|
|
272
|
+
<g>
|
|
273
|
+
<use x="79.425781" y="96.996094" xlink:href="#z"/>
|
|
274
|
+
</g>
|
|
275
|
+
<g>
|
|
276
|
+
<use x="85.027344" y="102.777344" xlink:href="#y"/>
|
|
277
|
+
</g>
|
|
278
|
+
<g>
|
|
279
|
+
<use x="32.785156" y="127.015625" xlink:href="#x"/>
|
|
280
|
+
</g>
|
|
281
|
+
<g>
|
|
282
|
+
<use x="53.007813" y="148.507813" xlink:href="#w"/>
|
|
283
|
+
</g>
|
|
284
|
+
<g>
|
|
285
|
+
<use x="58.890625" y="148.507813" xlink:href="#v"/>
|
|
286
|
+
</g>
|
|
287
|
+
<g>
|
|
288
|
+
<use x="66.511719" y="148.507813" xlink:href="#u"/>
|
|
289
|
+
</g>
|
|
290
|
+
<g>
|
|
291
|
+
<use x="76.855469" y="141.714844" xlink:href="#t"/>
|
|
292
|
+
</g>
|
|
293
|
+
<g>
|
|
294
|
+
<use x="83.984375" y="135.9375" xlink:href="#s"/>
|
|
295
|
+
</g>
|
|
296
|
+
<path transform="matrix(14 0 0 14 -7.9594e-6 -1.3059e-5)" d="m0.83426 10.775h7.1281" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
297
|
+
<g>
|
|
298
|
+
<use x="11.679687" y="154.210938" xlink:href="#q"/>
|
|
299
|
+
</g>
|
|
300
|
+
<g>
|
|
301
|
+
<use x="29.570312" y="175.699219" xlink:href="#p"/>
|
|
302
|
+
</g>
|
|
303
|
+
<g>
|
|
304
|
+
<use x="34.46875" y="175.699219" xlink:href="#o"/>
|
|
305
|
+
</g>
|
|
306
|
+
<g>
|
|
307
|
+
<use x="42.089844" y="175.699219" xlink:href="#n"/>
|
|
308
|
+
</g>
|
|
309
|
+
<g>
|
|
310
|
+
<use x="47.5" y="175.699219" xlink:href="#m"/>
|
|
311
|
+
</g>
|
|
312
|
+
<g>
|
|
313
|
+
<use x="55.125" y="175.699219" xlink:href="#l"/>
|
|
314
|
+
</g>
|
|
315
|
+
<g>
|
|
316
|
+
<use x="64.117188" y="168.910156" xlink:href="#k"/>
|
|
317
|
+
</g>
|
|
318
|
+
<g>
|
|
319
|
+
<use x="69.5625" y="168.910156" xlink:href="#j"/>
|
|
320
|
+
</g>
|
|
321
|
+
<g>
|
|
322
|
+
<use x="79.671875" y="168.910156" xlink:href="#i"/>
|
|
323
|
+
</g>
|
|
324
|
+
<g>
|
|
325
|
+
<use x="93.671875" y="168.910156" xlink:href="#h"/>
|
|
326
|
+
</g>
|
|
327
|
+
<g>
|
|
328
|
+
<use x="100.425781" y="163.128906" xlink:href="#g"/>
|
|
329
|
+
</g>
|
|
330
|
+
<g>
|
|
331
|
+
<use x="106.027344" y="168.910156" xlink:href="#e"/>
|
|
332
|
+
</g>
|
|
333
|
+
</svg>
|