@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,665 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="156pt" height="221pt" version="1.1" viewBox="0 0 156 221" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<defs>
|
|
4
|
+
<symbol id="dd" overflow="visible">
|
|
5
|
+
<path d="m5.0781-2.7188c0.39453-0.66406 0.875-1.1445 1.4375-1.4375 0.33203-0.17578 0.67578-0.26562 1.0312-0.26562 0.63281 0 1.1328 0.29688 1.5 0.89062 0.25781 0.40625 0.39062 0.86719 0.39062 1.375 0 0.6875-0.21484 1.2578-0.64062 1.7031-0.35547 0.375-0.78125 0.5625-1.2812 0.5625-0.59375 0-1.1641-0.22656-1.7031-0.6875-0.14844-0.125-0.37109-0.36719-0.67188-0.73438l-0.23438-0.28125c-0.39844 0.66797-0.875 1.1484-1.4375 1.4375-0.33594 0.17578-0.67188 0.26562-1.0156 0.26562-0.64844 0-1.1523-0.29688-1.5156-0.89062-0.25-0.40625-0.375-0.86328-0.375-1.375 0-0.6875 0.21094-1.2539 0.64062-1.7031 0.35156-0.375 0.78125-0.5625 1.2812-0.5625 0.58203 0 1.1484 0.23047 1.7031 0.6875 0.14453 0.125 0.36328 0.37109 0.65625 0.73438l0.046875 0.046875c0.039063 0.054687 0.10156 0.13281 0.1875 0.23438zm0.26562 0.34375 0.95312 1.2344c0.007813 0 0.015625 0.007813 0.015625 0.015625l0.03125 0.03125c0.44531 0.48047 0.89062 0.71875 1.3281 0.71875 0.47656 0 0.875-0.21094 1.1875-0.64062 0.22656-0.33203 0.34375-0.71094 0.34375-1.1406 0-0.59375-0.17188-1.082-0.51562-1.4688-0.26172-0.28125-0.57812-0.4375-0.95312-0.46875h-0.125c-0.84375 0-1.5859 0.54688-2.2188 1.6406-0.011719 0.023437-0.027344 0.046875-0.046875 0.078125zm-0.6875 0.4375-0.96875-1.2344v-0.015625l-0.046875-0.03125c-0.4375-0.47656-0.88281-0.71875-1.3281-0.71875-0.48047 0-0.875 0.21484-1.1875 0.64062-0.23047 0.33594-0.34375 0.71484-0.34375 1.1406 0 0.59375 0.17578 1.0859 0.53125 1.4688 0.28125 0.32422 0.63281 0.48438 1.0625 0.48438 0.84375 0 1.582-0.54688 2.2188-1.6406 0.019531-0.03125 0.039062-0.0625 0.0625-0.09375z"/>
|
|
6
|
+
</symbol>
|
|
7
|
+
<symbol id="dc" overflow="visible">
|
|
8
|
+
<path d="m1.2188-5.1094 1.1875 4.3438 0.046875 0.14062c0 0.042969-0.039063 0.078125-0.10938 0.10938l-0.03125 0.015625c-0.10547 0.03125-0.17188 0.046875-0.20312 0.046875-0.042969 0-0.074219-0.03125-0.09375-0.09375-0.011719-0.007813-0.023437-0.03125-0.03125-0.0625l-1.7969-4.1719c-0.042969-0.10156-0.0625-0.19531-0.0625-0.28125 0-0.21875 0.10938-0.37891 0.32812-0.48438 0.070313-0.03125 0.14844-0.046875 0.23438-0.046875 0.26953 0 0.44531 0.16406 0.53125 0.48438z"/>
|
|
9
|
+
</symbol>
|
|
10
|
+
<symbol id="cl" overflow="visible">
|
|
11
|
+
<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"/>
|
|
12
|
+
</symbol>
|
|
13
|
+
<symbol id="ca" overflow="visible">
|
|
14
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
15
|
+
</symbol>
|
|
16
|
+
<symbol id="bp" overflow="visible">
|
|
17
|
+
<path d="m3.3438-3.0156-0.34375 1.3594c-0.11719 0.46094-0.17188 0.75781-0.17188 0.89062 0 0.34375 0.125 0.55469 0.375 0.625 0.050781 0.023437 0.10938 0.03125 0.17188 0.03125 0.33203 0 0.64062-0.16406 0.92188-0.5 0.17578-0.21875 0.3125-0.48828 0.40625-0.8125 0.019531-0.070313 0.066406-0.10938 0.14062-0.10938 0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.16797-0.10156 0.41406-0.29688 0.73438-0.36719 0.54297-0.79688 0.8125-1.2969 0.8125-0.44922 0-0.77734-0.1875-0.98438-0.5625-0.042969-0.0625-0.074219-0.12891-0.09375-0.20312-0.15625 0.32422-0.375 0.54688-0.65625 0.67188-0.125 0.0625-0.25781 0.09375-0.39062 0.09375-0.40625 0-0.6875-0.11328-0.84375-0.34375-0.0625-0.09375-0.09375-0.19531-0.09375-0.3125 0-0.25 0.10156-0.42188 0.3125-0.51562 0.070313-0.039062 0.14844-0.0625 0.23438-0.0625 0.19531 0 0.31641 0.085938 0.35938 0.25v0.09375c0 0.23047-0.10938 0.39844-0.32812 0.5-0.042969 0.023438-0.089844 0.039062-0.14062 0.046875 0.14453 0.085937 0.3125 0.125 0.5 0.125 0.35156 0 0.63281-0.23438 0.84375-0.70312 0.039063-0.10156 0.078125-0.21875 0.10938-0.34375 0.36328-1.3516 0.54688-2.1445 0.54688-2.375-0.042969-0.41406-0.22656-0.64062-0.54688-0.67188-0.34375 0-0.66406 0.17969-0.95312 0.53125v0.015625c-0.10547 0.13672-0.19922 0.29297-0.28125 0.46875-0.03125 0.085938-0.058594 0.16406-0.078125 0.23438l-0.03125 0.0625c-0.011719 0.074219-0.054688 0.10938-0.125 0.10938-0.085938 0-0.125-0.03125-0.125-0.09375 0-0.16406 0.10938-0.40625 0.32812-0.71875 0.35156-0.55078 0.78125-0.82812 1.2812-0.82812 0.51953 0 0.88281 0.25781 1.0938 0.76562 0.20703-0.41406 0.48828-0.66406 0.84375-0.75 0.0625-0.007812 0.12891-0.015625 0.20312-0.015625 0.39453 0 0.67188 0.10938 0.82812 0.32812 0.0625 0.09375 0.09375 0.20312 0.09375 0.32812 0 0.28125-0.12109 0.46875-0.35938 0.5625-0.0625 0.011719-0.12109 0.015625-0.17188 0.015625-0.21094 0-0.33594-0.085938-0.375-0.26562-0.011719-0.019531-0.015625-0.046875-0.015625-0.078125 0-0.19531 0.097656-0.35156 0.29688-0.46875 0.0625-0.03125 0.125-0.050781 0.1875-0.0625-0.13672-0.09375-0.30469-0.14062-0.5-0.14062-0.44922 0-0.76562 0.35547-0.95312 1.0625-0.023438 0.042969-0.03125 0.085937-0.03125 0.125z"/>
|
|
18
|
+
</symbol>
|
|
19
|
+
<symbol id="be" overflow="visible">
|
|
20
|
+
<path d="m6.875-3.2656h-5.9688c-0.21875 0-0.33594-0.066406-0.34375-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.9844c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312zm0 1.9375h-5.9844c-0.21875 0-0.32812-0.066406-0.32812-0.20312 0-0.13281 0.11328-0.20312 0.34375-0.20312h5.9688c0.20703 0 0.31641 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
21
|
+
</symbol>
|
|
22
|
+
<symbol id="at" overflow="visible">
|
|
23
|
+
<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"/>
|
|
24
|
+
</symbol>
|
|
25
|
+
<symbol id="ai" overflow="visible">
|
|
26
|
+
<path d="m4.6719-4.2344-0.46875 1.9219c-0.15625 0.63672-0.23438 1.0469-0.23438 1.2344 0 0.49219 0.17188 0.78125 0.51562 0.875 0.070313 0.03125 0.15625 0.046875 0.25 0.046875 0.46875 0 0.89062-0.23438 1.2656-0.70312 0.25781-0.28906 0.45703-0.66406 0.59375-1.125 0.03125-0.10156 0.09375-0.15625 0.1875-0.15625 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.23047-0.14062 0.5625-0.42188 1-0.51172 0.77344-1.1172 1.1562-1.8125 1.1562-0.63672 0-1.1016-0.26562-1.3906-0.79688-0.054688-0.082031-0.09375-0.17188-0.125-0.26562-0.21875 0.44922-0.52734 0.76172-0.92188 0.9375-0.17969 0.082031-0.35938 0.125-0.54688 0.125-0.5625 0-0.95312-0.16406-1.1719-0.5-0.09375-0.11328-0.14062-0.25391-0.14062-0.42188 0-0.34375 0.14844-0.58594 0.45312-0.73438 0.10156-0.050781 0.20703-0.078125 0.3125-0.078125 0.28125 0 0.45312 0.11719 0.51562 0.34375v0.14062c0 0.32422-0.15625 0.55859-0.46875 0.70312-0.054688 0.03125-0.11719 0.046875-0.1875 0.046875 0.19531 0.125 0.42969 0.1875 0.70312 0.1875 0.5 0 0.89062-0.32812 1.1719-0.98438 0.0625-0.14453 0.11328-0.30078 0.15625-0.46875 0.50781-1.9062 0.76562-3.0156 0.76562-3.3281-0.0625-0.58203-0.32031-0.89453-0.76562-0.9375-0.48047 0-0.92188 0.24609-1.3281 0.73438v0.015625c0 0.011719-0.007813 0.015625-0.015625 0.015625-0.13672 0.1875-0.26172 0.40234-0.375 0.64062-0.042969 0.11719-0.085938 0.23047-0.125 0.34375l-0.03125 0.078125c-0.023438 0.10547-0.078125 0.15625-0.17188 0.15625-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.22656 0.14453-0.56641 0.4375-1.0156 0.50781-0.75781 1.1133-1.1406 1.8125-1.1406 0.71875 0 1.2227 0.35547 1.5156 1.0625 0.28906-0.57031 0.6875-0.91406 1.1875-1.0312 0.09375-0.019531 0.1875-0.03125 0.28125-0.03125 0.55078 0 0.9375 0.15625 1.1562 0.46875 0.09375 0.125 0.14062 0.27734 0.14062 0.45312 0 0.38672-0.17188 0.64062-0.51562 0.76562-0.085937 0.03125-0.16406 0.046875-0.23438 0.046875-0.29297 0-0.46484-0.125-0.51562-0.375-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.28125 0.13281-0.5 0.40625-0.65625 0.082031-0.050781 0.17188-0.085938 0.26562-0.10938-0.19922-0.11328-0.43359-0.17188-0.70312-0.17188-0.63672 0-1.0859 0.49609-1.3438 1.4844-0.023438 0.054687-0.039062 0.10547-0.046875 0.15625z"/>
|
|
27
|
+
</symbol>
|
|
28
|
+
<symbol id="w" overflow="visible">
|
|
29
|
+
<path d="m5.0781-2.7188c0.39453-0.66406 0.875-1.1445 1.4375-1.4375 0.33203-0.17578 0.67578-0.26562 1.0312-0.26562 0.63281 0 1.1328 0.29688 1.5 0.89062 0.25781 0.40625 0.39062 0.86719 0.39062 1.375 0 0.6875-0.21484 1.2578-0.64062 1.7031-0.35547 0.375-0.78125 0.5625-1.2812 0.5625-0.59375 0-1.1641-0.22656-1.7031-0.6875-0.14844-0.125-0.37109-0.36719-0.67188-0.73438l-0.23438-0.28125c-0.39844 0.66797-0.875 1.1484-1.4375 1.4375-0.33594 0.17578-0.67188 0.26562-1.0156 0.26562-0.64844 0-1.1523-0.29688-1.5156-0.89062-0.25-0.40625-0.375-0.86328-0.375-1.375 0-0.6875 0.21094-1.2539 0.64062-1.7031 0.35156-0.375 0.78125-0.5625 1.2812-0.5625 0.58203 0 1.1484 0.23047 1.7031 0.6875 0.14453 0.125 0.36328 0.37109 0.65625 0.73438l0.046875 0.046875c0.039063 0.054687 0.10156 0.13281 0.1875 0.23438zm0.26562 0.34375 0.95312 1.2344c0.007813 0 0.015625 0.007813 0.015625 0.015625l0.03125 0.03125c0.44531 0.48047 0.89062 0.71875 1.3281 0.71875 0.47656 0 0.875-0.21094 1.1875-0.64062 0.22656-0.33203 0.34375-0.71094 0.34375-1.1406 0-0.59375-0.17188-1.082-0.51562-1.4688-0.26172-0.28125-0.57812-0.4375-0.95312-0.46875h-0.125c-0.84375 0-1.5859 0.54688-2.2188 1.6406-0.011719 0.023437-0.027344 0.046875-0.046875 0.078125zm-0.6875 0.4375-0.96875-1.2344v-0.015625l-0.046875-0.03125c-0.4375-0.47656-0.88281-0.71875-1.3281-0.71875-0.48047 0-0.875 0.21484-1.1875 0.64062-0.23047 0.33594-0.34375 0.71484-0.34375 1.1406 0 0.59375 0.17578 1.0859 0.53125 1.4688 0.28125 0.32422 0.63281 0.48438 1.0625 0.48438 0.84375 0 1.582-0.54688 2.2188-1.6406 0.019531-0.03125 0.039062-0.0625 0.0625-0.09375z"/>
|
|
30
|
+
</symbol>
|
|
31
|
+
<symbol id="k" overflow="visible">
|
|
32
|
+
<path d="m5.2188-5.2969c0.050781-0.3125 0.19531-0.50391 0.4375-0.57812 0.039062-0.019531 0.09375-0.03125 0.15625-0.03125 0.23828 0 0.375 0.125 0.40625 0.375 0 0.054688-0.03125 0.21484-0.09375 0.48438l-0.51562 1.9531c-0.13672 0.58594-0.23438 1.0078-0.29688 1.2656-0.125 0.48047-0.1875 0.82422-0.1875 1.0312 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.35156 0 0.64844-0.375 0.89062-1.125 0.050781-0.15625 0.10938-0.35938 0.17188-0.60938 0.070313-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085938 0.46484-0.25 0.98438-0.054688 0.15625-0.10938 0.29297-0.17188 0.40625-0.26172 0.51172-0.60547 0.76562-1.0312 0.76562-0.52344 0-0.90234-0.22266-1.1406-0.67188-0.0625-0.11328-0.10938-0.23828-0.14062-0.375-0.58594 0.69922-1.1875 1.0469-1.8125 1.0469-0.69922 0-1.2148-0.31641-1.5469-0.95312-0.21094-0.375-0.3125-0.80469-0.3125-1.2969 0-1 0.34766-1.9297 1.0469-2.7969 0.65625-0.78125 1.3633-1.207 2.125-1.2812 0.070313-0.007813 0.14062-0.015625 0.20312-0.015625 0.5625 0 0.98828 0.29688 1.2812 0.89062zm-0.90625 3.625 0.70312-2.7344c0.019531-0.14453 0.03125-0.22266 0.03125-0.23438 0-0.19531-0.085937-0.4375-0.25-0.71875-0.19922-0.34375-0.48047-0.51562-0.84375-0.51562-0.49219 0-0.95312 0.32031-1.3906 0.95312-0.085938 0.11719-0.16406 0.24609-0.23438 0.39062-0.27344 0.54297-0.5 1.3125-0.6875 2.3125-0.0625 0.3125-0.09375 0.5625-0.09375 0.75 0 0.63672 0.17969 1.0469 0.54688 1.2344 0.09375 0.054687 0.21094 0.078125 0.35938 0.078125 0.51953 0 1.0469-0.32812 1.5781-0.98438 0.13281-0.15625 0.22266-0.3125 0.26562-0.46875v-0.015625c0.007813-0.019531 0.015625-0.035156 0.015625-0.046875z"/>
|
|
33
|
+
</symbol>
|
|
34
|
+
<symbol id="db" overflow="visible">
|
|
35
|
+
<path d="m4.4844-1.7344-0.28125 1.7344h-3.7031c0-0.16406 0.019531-0.26953 0.0625-0.3125l0.046875-0.0625 1.9219-2.1406c0.69531-0.78125 1.0469-1.5156 1.0469-2.2031 0-0.59375-0.17969-1.0391-0.53125-1.3438l-0.015625-0.015625h-0.015625c-0.21094-0.17578-0.46875-0.26562-0.78125-0.26562-0.48047 0-0.85938 0.20312-1.1406 0.60938-0.085938 0.125-0.15234 0.26172-0.20312 0.40625 0.019531-0.007813 0.0625-0.015625 0.125-0.015625 0.26953 0 0.44141 0.12109 0.51562 0.35938v0.015625c0.007812 0.042969 0.015625 0.09375 0.015625 0.15625 0 0.26172-0.125 0.42969-0.375 0.5-0.054687 0.011719-0.10156 0.015625-0.14062 0.015625-0.25 0-0.41406-0.097656-0.48438-0.29688-0.03125-0.070312-0.046875-0.15625-0.046875-0.25 0-0.51953 0.19531-0.96094 0.59375-1.3281 0.35156-0.32031 0.78125-0.48438 1.2812-0.48438 0.72656 0 1.2969 0.24609 1.7031 0.73438 0.23828 0.29297 0.375 0.63281 0.40625 1.0156v0.1875c0 0.49219-0.18359 0.95312-0.54688 1.3906-0.1875 0.23047-0.48438 0.52734-0.89062 0.89062l-0.60938 0.54688-0.10938 0.09375-1.0625 1.0312h1.7969c0.59375 0 0.91016-0.023437 0.95312-0.078125 0.070313-0.09375 0.14453-0.39062 0.21875-0.89062z"/>
|
|
36
|
+
</symbol>
|
|
37
|
+
<symbol id="cu" overflow="visible">
|
|
38
|
+
<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"/>
|
|
39
|
+
</symbol>
|
|
40
|
+
<symbol id="ct" overflow="visible">
|
|
41
|
+
<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"/>
|
|
42
|
+
</symbol>
|
|
43
|
+
<symbol id="cs" overflow="visible">
|
|
44
|
+
<path d="m3.3438-3.0156-0.34375 1.3594c-0.11719 0.46094-0.17188 0.75781-0.17188 0.89062 0 0.34375 0.125 0.55469 0.375 0.625 0.050781 0.023437 0.10938 0.03125 0.17188 0.03125 0.33203 0 0.64062-0.16406 0.92188-0.5 0.17578-0.21875 0.3125-0.48828 0.40625-0.8125 0.019531-0.070313 0.066406-0.10938 0.14062-0.10938 0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.16797-0.10156 0.41406-0.29688 0.73438-0.36719 0.54297-0.79688 0.8125-1.2969 0.8125-0.44922 0-0.77734-0.1875-0.98438-0.5625-0.042969-0.0625-0.074219-0.12891-0.09375-0.20312-0.15625 0.32422-0.375 0.54688-0.65625 0.67188-0.125 0.0625-0.25781 0.09375-0.39062 0.09375-0.40625 0-0.6875-0.11328-0.84375-0.34375-0.0625-0.09375-0.09375-0.19531-0.09375-0.3125 0-0.25 0.10156-0.42188 0.3125-0.51562 0.070313-0.039062 0.14844-0.0625 0.23438-0.0625 0.19531 0 0.31641 0.085938 0.35938 0.25v0.09375c0 0.23047-0.10938 0.39844-0.32812 0.5-0.042969 0.023438-0.089844 0.039062-0.14062 0.046875 0.14453 0.085937 0.3125 0.125 0.5 0.125 0.35156 0 0.63281-0.23438 0.84375-0.70312 0.039063-0.10156 0.078125-0.21875 0.10938-0.34375 0.36328-1.3516 0.54688-2.1445 0.54688-2.375-0.042969-0.41406-0.22656-0.64062-0.54688-0.67188-0.34375 0-0.66406 0.17969-0.95312 0.53125v0.015625c-0.10547 0.13672-0.19922 0.29297-0.28125 0.46875-0.03125 0.085938-0.058594 0.16406-0.078125 0.23438l-0.03125 0.0625c-0.011719 0.074219-0.054688 0.10938-0.125 0.10938-0.085938 0-0.125-0.03125-0.125-0.09375 0-0.16406 0.10938-0.40625 0.32812-0.71875 0.35156-0.55078 0.78125-0.82812 1.2812-0.82812 0.51953 0 0.88281 0.25781 1.0938 0.76562 0.20703-0.41406 0.48828-0.66406 0.84375-0.75 0.0625-0.007812 0.12891-0.015625 0.20312-0.015625 0.39453 0 0.67188 0.10938 0.82812 0.32812 0.0625 0.09375 0.09375 0.20312 0.09375 0.32812 0 0.28125-0.12109 0.46875-0.35938 0.5625-0.0625 0.011719-0.12109 0.015625-0.17188 0.015625-0.21094 0-0.33594-0.085938-0.375-0.26562-0.011719-0.019531-0.015625-0.046875-0.015625-0.078125 0-0.19531 0.097656-0.35156 0.29688-0.46875 0.0625-0.03125 0.125-0.050781 0.1875-0.0625-0.13672-0.09375-0.30469-0.14062-0.5-0.14062-0.44922 0-0.76562 0.35547-0.95312 1.0625-0.023438 0.042969-0.03125 0.085937-0.03125 0.125z"/>
|
|
45
|
+
</symbol>
|
|
46
|
+
<symbol id="cr" overflow="visible">
|
|
47
|
+
<path d="m6.875-3.2656h-5.9688c-0.21875 0-0.33594-0.066406-0.34375-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.9844c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312zm0 1.9375h-5.9844c-0.21875 0-0.32812-0.066406-0.32812-0.20312 0-0.13281 0.11328-0.20312 0.34375-0.20312h5.9688c0.20703 0 0.31641 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
48
|
+
</symbol>
|
|
49
|
+
<symbol id="cq" overflow="visible">
|
|
50
|
+
<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"/>
|
|
51
|
+
</symbol>
|
|
52
|
+
<symbol id="cp" overflow="visible">
|
|
53
|
+
<path d="m4.6719-4.2344-0.46875 1.9219c-0.15625 0.63672-0.23438 1.0469-0.23438 1.2344 0 0.49219 0.17188 0.78125 0.51562 0.875 0.070313 0.03125 0.15625 0.046875 0.25 0.046875 0.46875 0 0.89062-0.23438 1.2656-0.70312 0.25781-0.28906 0.45703-0.66406 0.59375-1.125 0.03125-0.10156 0.09375-0.15625 0.1875-0.15625 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.23047-0.14062 0.5625-0.42188 1-0.51172 0.77344-1.1172 1.1562-1.8125 1.1562-0.63672 0-1.1016-0.26562-1.3906-0.79688-0.054688-0.082031-0.09375-0.17188-0.125-0.26562-0.21875 0.44922-0.52734 0.76172-0.92188 0.9375-0.17969 0.082031-0.35938 0.125-0.54688 0.125-0.5625 0-0.95312-0.16406-1.1719-0.5-0.09375-0.11328-0.14062-0.25391-0.14062-0.42188 0-0.34375 0.14844-0.58594 0.45312-0.73438 0.10156-0.050781 0.20703-0.078125 0.3125-0.078125 0.28125 0 0.45312 0.11719 0.51562 0.34375v0.14062c0 0.32422-0.15625 0.55859-0.46875 0.70312-0.054688 0.03125-0.11719 0.046875-0.1875 0.046875 0.19531 0.125 0.42969 0.1875 0.70312 0.1875 0.5 0 0.89062-0.32812 1.1719-0.98438 0.0625-0.14453 0.11328-0.30078 0.15625-0.46875 0.50781-1.9062 0.76562-3.0156 0.76562-3.3281-0.0625-0.58203-0.32031-0.89453-0.76562-0.9375-0.48047 0-0.92188 0.24609-1.3281 0.73438v0.015625c0 0.011719-0.007813 0.015625-0.015625 0.015625-0.13672 0.1875-0.26172 0.40234-0.375 0.64062-0.042969 0.11719-0.085938 0.23047-0.125 0.34375l-0.03125 0.078125c-0.023438 0.10547-0.078125 0.15625-0.17188 0.15625-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.22656 0.14453-0.56641 0.4375-1.0156 0.50781-0.75781 1.1133-1.1406 1.8125-1.1406 0.71875 0 1.2227 0.35547 1.5156 1.0625 0.28906-0.57031 0.6875-0.91406 1.1875-1.0312 0.09375-0.019531 0.1875-0.03125 0.28125-0.03125 0.55078 0 0.9375 0.15625 1.1562 0.46875 0.09375 0.125 0.14062 0.27734 0.14062 0.45312 0 0.38672-0.17188 0.64062-0.51562 0.76562-0.085937 0.03125-0.16406 0.046875-0.23438 0.046875-0.29297 0-0.46484-0.125-0.51562-0.375-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.28125 0.13281-0.5 0.40625-0.65625 0.082031-0.050781 0.17188-0.085938 0.26562-0.10938-0.19922-0.11328-0.43359-0.17188-0.70312-0.17188-0.63672 0-1.0859 0.49609-1.3438 1.4844-0.023438 0.054687-0.039062 0.10547-0.046875 0.15625z"/>
|
|
54
|
+
</symbol>
|
|
55
|
+
<symbol id="co" overflow="visible">
|
|
56
|
+
<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"/>
|
|
57
|
+
</symbol>
|
|
58
|
+
<symbol id="cn" overflow="visible">
|
|
59
|
+
<path d="m5.0781-2.7188c0.39453-0.66406 0.875-1.1445 1.4375-1.4375 0.33203-0.17578 0.67578-0.26562 1.0312-0.26562 0.63281 0 1.1328 0.29688 1.5 0.89062 0.25781 0.40625 0.39062 0.86719 0.39062 1.375 0 0.6875-0.21484 1.2578-0.64062 1.7031-0.35547 0.375-0.78125 0.5625-1.2812 0.5625-0.59375 0-1.1641-0.22656-1.7031-0.6875-0.14844-0.125-0.37109-0.36719-0.67188-0.73438l-0.23438-0.28125c-0.39844 0.66797-0.875 1.1484-1.4375 1.4375-0.33594 0.17578-0.67188 0.26562-1.0156 0.26562-0.64844 0-1.1523-0.29688-1.5156-0.89062-0.25-0.40625-0.375-0.86328-0.375-1.375 0-0.6875 0.21094-1.2539 0.64062-1.7031 0.35156-0.375 0.78125-0.5625 1.2812-0.5625 0.58203 0 1.1484 0.23047 1.7031 0.6875 0.14453 0.125 0.36328 0.37109 0.65625 0.73438l0.046875 0.046875c0.039063 0.054687 0.10156 0.13281 0.1875 0.23438zm0.26562 0.34375 0.95312 1.2344c0.007813 0 0.015625 0.007813 0.015625 0.015625l0.03125 0.03125c0.44531 0.48047 0.89062 0.71875 1.3281 0.71875 0.47656 0 0.875-0.21094 1.1875-0.64062 0.22656-0.33203 0.34375-0.71094 0.34375-1.1406 0-0.59375-0.17188-1.082-0.51562-1.4688-0.26172-0.28125-0.57812-0.4375-0.95312-0.46875h-0.125c-0.84375 0-1.5859 0.54688-2.2188 1.6406-0.011719 0.023437-0.027344 0.046875-0.046875 0.078125zm-0.6875 0.4375-0.96875-1.2344v-0.015625l-0.046875-0.03125c-0.4375-0.47656-0.88281-0.71875-1.3281-0.71875-0.48047 0-0.875 0.21484-1.1875 0.64062-0.23047 0.33594-0.34375 0.71484-0.34375 1.1406 0 0.59375 0.17578 1.0859 0.53125 1.4688 0.28125 0.32422 0.63281 0.48438 1.0625 0.48438 0.84375 0 1.582-0.54688 2.2188-1.6406 0.019531-0.03125 0.039062-0.0625 0.0625-0.09375z"/>
|
|
60
|
+
</symbol>
|
|
61
|
+
<symbol id="cm" overflow="visible">
|
|
62
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
63
|
+
</symbol>
|
|
64
|
+
<symbol id="ck" overflow="visible">
|
|
65
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
66
|
+
</symbol>
|
|
67
|
+
<symbol id="cj" overflow="visible">
|
|
68
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
69
|
+
</symbol>
|
|
70
|
+
<symbol id="ci" overflow="visible">
|
|
71
|
+
<path d="m1.7656-6.9375v6.1719c0 0.23047 0.054687 0.36719 0.17188 0.40625 0.070312 0.03125 0.27344 0.046875 0.60938 0.046875v0.3125l-1.1094-0.03125c-0.085938 0-0.45312 0.011719-1.1094 0.03125v-0.3125c0.39453 0 0.625-0.03125 0.6875-0.09375l0.03125-0.015625c0.039063-0.050781 0.0625-0.16406 0.0625-0.34375v-5.1875c0-0.25781-0.046875-0.42188-0.14062-0.48438h-0.015625c-0.074219-0.039062-0.19922-0.066406-0.375-0.078125h-0.25v-0.3125z"/>
|
|
72
|
+
</symbol>
|
|
73
|
+
<symbol id="ch" overflow="visible">
|
|
74
|
+
<path d="m3.9062-2.3125h-2.7969c0 0.67969 0.097656 1.1797 0.29688 1.5 0.32031 0.41797 0.70312 0.64062 1.1406 0.67188 0.45703 0 0.82812-0.1875 1.1094-0.5625 0.09375-0.13281 0.17188-0.28906 0.23438-0.46875 0.019531-0.09375 0.0625-0.14062 0.125-0.14062 0.09375 0 0.14062 0.042969 0.14062 0.125 0 0.14844-0.09375 0.34375-0.28125 0.59375-0.28125 0.375-0.64062 0.59766-1.0781 0.67188-0.10547 0.019531-0.21094 0.03125-0.3125 0.03125-0.625 0-1.1641-0.23828-1.6094-0.71875-0.39844-0.4375-0.59375-0.96875-0.59375-1.5938 0-0.6875 0.23828-1.2578 0.71875-1.7188 0.38281-0.375 0.83594-0.5625 1.3594-0.5625 0.75 0 1.2734 0.32422 1.5781 0.96875 0.14453 0.30469 0.21875 0.63672 0.21875 1 0 0.11719-0.027344 0.18359-0.078125 0.20312h-0.17188zm-2.7812-0.20312h2.3594c0-0.63281-0.14062-1.1133-0.42188-1.4375-0.17969-0.20703-0.41406-0.3125-0.70312-0.3125-0.34375 0-0.63281 0.15625-0.85938 0.46875-0.23047 0.30469-0.35547 0.73047-0.375 1.2812z"/>
|
|
75
|
+
</symbol>
|
|
76
|
+
<symbol id="cg" overflow="visible">
|
|
77
|
+
<path d="m1.7812-4v3.2188c0 0.21094 0.039062 0.33594 0.125 0.375v0.015625c0.09375 0.054687 0.30469 0.078125 0.64062 0.078125h0.20312v0.3125c-0.27344-0.019531-0.69531-0.03125-1.2656-0.03125 0.019531 0-0.35938 0.011719-1.1406 0.03125v-0.3125c0.39453 0 0.625-0.03125 0.6875-0.09375l0.015625-0.015625c0.050781-0.050781 0.078125-0.16406 0.078125-0.34375v-3.2344h-0.79688v-0.3125h0.79688v-1.1406c0-0.61328 0.25-1.0664 0.75-1.3594 0.25-0.15625 0.51562-0.23438 0.79688-0.23438 0.375 0 0.64453 0.13281 0.8125 0.39062 0.050781 0.09375 0.078125 0.19922 0.078125 0.3125 0 0.23047-0.10156 0.37109-0.29688 0.42188-0.042969 0.011719-0.089844 0.015625-0.14062 0.015625-0.21875 0-0.35547-0.10156-0.40625-0.3125l-0.015625-0.015625v-0.10938c0-0.19531 0.097656-0.33594 0.29688-0.42188-0.10547-0.039063-0.21484-0.0625-0.32812-0.0625-0.29297 0-0.53125 0.16406-0.71875 0.48438-0.13672 0.24219-0.20312 0.53125-0.20312 0.875v1.1562h1.1719v0.3125z"/>
|
|
78
|
+
</symbol>
|
|
79
|
+
<symbol id="cf" overflow="visible">
|
|
80
|
+
<path d="m1.7344-4v2.7812c0 0.66797 0.19141 1.0234 0.57812 1.0625 0.019531 0.011719 0.050781 0.015625 0.09375 0.015625 0.28125 0 0.47656-0.1875 0.59375-0.5625 0.039062-0.15625 0.0625-0.34375 0.0625-0.5625v-0.54688h0.25v0.57812c0 0.54297-0.15234 0.93359-0.45312 1.1719-0.14844 0.11328-0.32422 0.17188-0.53125 0.17188-0.5625 0-0.94531-0.20703-1.1406-0.625-0.09375-0.19531-0.14062-0.4375-0.14062-0.71875v-2.7656h-0.85938v-0.21875c0.59375-0.03125 0.98828-0.40625 1.1875-1.125 0.0625-0.25 0.097656-0.51953 0.10938-0.8125h0.25v1.8438h1.4219v0.3125z"/>
|
|
81
|
+
</symbol>
|
|
82
|
+
<symbol id="ce" overflow="visible">
|
|
83
|
+
<path d="m1.7188-3.7656c0.38281-0.4375 0.84375-0.65625 1.375-0.65625 0.61328 0 1.1328 0.24609 1.5625 0.73438 0.36328 0.42969 0.54688 0.9375 0.54688 1.5312 0 0.6875-0.25781 1.2617-0.76562 1.7188-0.42969 0.36719-0.91406 0.54688-1.4531 0.54688-0.53125 0-0.96094-0.22656-1.2812-0.6875-0.011719-0.007813-0.023437-0.023437-0.03125-0.046875l-0.35938 0.625h-0.25v-5.9531c0-0.25781-0.046875-0.42188-0.14062-0.48438h-0.015625c-0.074219-0.039062-0.19922-0.066406-0.375-0.078125h-0.25v-0.3125l1.4375-0.10938zm0.03125 2.625c0 0.13672 0.03125 0.25 0.09375 0.34375v0.015625l0.046875 0.0625c0.26953 0.40625 0.61719 0.60938 1.0469 0.60938 0.46875 0 0.84375-0.21094 1.125-0.64062 0.20703-0.32031 0.3125-0.79688 0.3125-1.4219 0-0.61328-0.09375-1.0781-0.28125-1.3906-0.27344-0.42578-0.62109-0.64062-1.0469-0.64062-0.46875 0-0.85156 0.19531-1.1406 0.57812l-0.046875 0.0625c-0.074219 0.14844-0.10938 0.26562-0.10938 0.35938z"/>
|
|
84
|
+
</symbol>
|
|
85
|
+
<symbol id="cd" overflow="visible">
|
|
86
|
+
<path d="m4.7031-2.1406c0 0.6875-0.25 1.2578-0.75 1.7031-0.42969 0.36719-0.91797 0.54688-1.4688 0.54688-0.63672 0-1.1719-0.23828-1.6094-0.71875-0.39844-0.4375-0.59375-0.94531-0.59375-1.5312 0-0.67578 0.24219-1.25 0.73438-1.7188 0.41406-0.41406 0.91016-0.625 1.4844-0.625 0.64453 0 1.1875 0.26172 1.625 0.78125 0.38281 0.4375 0.57812 0.96094 0.57812 1.5625zm-2.2031 2c0.44531 0 0.80078-0.1875 1.0625-0.5625l0.09375-0.17188c0.14453-0.28906 0.21875-0.73828 0.21875-1.3438 0-0.64453-0.085938-1.1094-0.25-1.3906-0.29297-0.41406-0.67188-0.63281-1.1406-0.65625-0.40625 0-0.74609 0.16797-1.0156 0.5-0.042969 0.054687-0.085938 0.10938-0.125 0.17188-0.15625 0.29297-0.23438 0.75-0.23438 1.375 0 0.64844 0.082031 1.1172 0.25 1.4062 0.28125 0.4375 0.66016 0.66406 1.1406 0.67188z"/>
|
|
87
|
+
</symbol>
|
|
88
|
+
<symbol id="cc" overflow="visible">
|
|
89
|
+
<path d="m1.7344-4v2.7812c0 0.66797 0.19141 1.0234 0.57812 1.0625 0.019531 0.011719 0.050781 0.015625 0.09375 0.015625 0.28125 0 0.47656-0.1875 0.59375-0.5625 0.039062-0.15625 0.0625-0.34375 0.0625-0.5625v-0.54688h0.25v0.57812c0 0.54297-0.15234 0.93359-0.45312 1.1719-0.14844 0.11328-0.32422 0.17188-0.53125 0.17188-0.5625 0-0.94531-0.20703-1.1406-0.625-0.09375-0.19531-0.14062-0.4375-0.14062-0.71875v-2.7656h-0.85938v-0.21875c0.59375-0.03125 0.98828-0.40625 1.1875-1.125 0.0625-0.25 0.097656-0.51953 0.10938-0.8125h0.25v1.8438h1.4219v0.3125z"/>
|
|
90
|
+
</symbol>
|
|
91
|
+
<symbol id="cb" overflow="visible">
|
|
92
|
+
<path d="m1.7344-4v2.7812c0 0.66797 0.19141 1.0234 0.57812 1.0625 0.019531 0.011719 0.050781 0.015625 0.09375 0.015625 0.28125 0 0.47656-0.1875 0.59375-0.5625 0.039062-0.15625 0.0625-0.34375 0.0625-0.5625v-0.54688h0.25v0.57812c0 0.54297-0.15234 0.93359-0.45312 1.1719-0.14844 0.11328-0.32422 0.17188-0.53125 0.17188-0.5625 0-0.94531-0.20703-1.1406-0.625-0.09375-0.19531-0.14062-0.4375-0.14062-0.71875v-2.7656h-0.85938v-0.21875c0.59375-0.03125 0.98828-0.40625 1.1875-1.125 0.0625-0.25 0.097656-0.51953 0.10938-0.8125h0.25v1.8438h1.4219v0.3125z"/>
|
|
93
|
+
</symbol>
|
|
94
|
+
<symbol id="bz" overflow="visible">
|
|
95
|
+
<path d="m4.7031-2.1406c0 0.6875-0.25 1.2578-0.75 1.7031-0.42969 0.36719-0.91797 0.54688-1.4688 0.54688-0.63672 0-1.1719-0.23828-1.6094-0.71875-0.39844-0.4375-0.59375-0.94531-0.59375-1.5312 0-0.67578 0.24219-1.25 0.73438-1.7188 0.41406-0.41406 0.91016-0.625 1.4844-0.625 0.64453 0 1.1875 0.26172 1.625 0.78125 0.38281 0.4375 0.57812 0.96094 0.57812 1.5625zm-2.2031 2c0.44531 0 0.80078-0.1875 1.0625-0.5625l0.09375-0.17188c0.14453-0.28906 0.21875-0.73828 0.21875-1.3438 0-0.64453-0.085938-1.1094-0.25-1.3906-0.29297-0.41406-0.67188-0.63281-1.1406-0.65625-0.40625 0-0.74609 0.16797-1.0156 0.5-0.042969 0.054687-0.085938 0.10938-0.125 0.17188-0.15625 0.29297-0.23438 0.75-0.23438 1.375 0 0.64844 0.082031 1.1172 0.25 1.4062 0.28125 0.4375 0.66016 0.66406 1.1406 0.67188z"/>
|
|
96
|
+
</symbol>
|
|
97
|
+
<symbol id="by" overflow="visible">
|
|
98
|
+
<path d="m1.0938-3.4375c0-0.25781-0.046875-0.42188-0.14062-0.48438-0.085937-0.039063-0.23047-0.066406-0.4375-0.078125h-0.20312v-0.3125l1.4219-0.10938v1.0469c0.3125-0.69531 0.80078-1.0469 1.4688-1.0469 0.78125 0 1.2266 0.32812 1.3438 0.98438 0.19531-0.45703 0.50781-0.75781 0.9375-0.90625 0.15625-0.050781 0.32031-0.078125 0.5-0.078125 0.5 0 0.85156 0.125 1.0625 0.375 0.17578 0.21094 0.27344 0.49219 0.29688 0.84375v0.6875 1.9062c0.007812 0.15625 0.10938 0.25 0.29688 0.28125 0.082031 0.011719 0.24219 0.015625 0.48438 0.015625v0.3125c-0.67969-0.019531-1.0469-0.03125-1.1094-0.03125-0.054687 0-0.43359 0.011719-1.1406 0.03125v-0.3125c0.39453 0 0.625-0.03125 0.6875-0.09375l0.03125-0.015625c0.039062-0.050781 0.0625-0.16406 0.0625-0.34375v-2.3281c0-0.65625-0.1875-1.0195-0.5625-1.0938-0.054688-0.007812-0.10938-0.015625-0.17188-0.015625-0.40625 0-0.74609 0.17969-1.0156 0.53125-0.23047 0.29297-0.34375 0.65234-0.34375 1.0781v1.8281c0 0.23047 0.054688 0.36719 0.17188 0.40625 0.070313 0.03125 0.27344 0.046875 0.60938 0.046875v0.3125c-0.67969-0.019531-1.0469-0.03125-1.1094-0.03125-0.054687 0-0.43359 0.011719-1.1406 0.03125v-0.3125c0.39453 0 0.62891-0.03125 0.70312-0.09375l0.015625-0.015625c0.039062-0.050781 0.0625-0.16406 0.0625-0.34375v-2.3281c0-0.65625-0.1875-1.0195-0.5625-1.0938-0.054688-0.007812-0.10938-0.015625-0.17188-0.015625-0.40625 0-0.74609 0.17969-1.0156 0.53125-0.21875 0.29297-0.32812 0.65234-0.32812 1.0781v1.8281c0 0.23047 0.050781 0.36719 0.15625 0.40625 0.070313 0.03125 0.27344 0.046875 0.60938 0.046875v0.3125c-0.67969-0.019531-1.0469-0.03125-1.1094-0.03125-0.054687 0-0.43359 0.011719-1.1406 0.03125v-0.3125c0.39453 0 0.62891-0.03125 0.70312-0.09375l0.015625-0.015625c0.039062-0.050781 0.0625-0.16406 0.0625-0.34375z"/>
|
|
99
|
+
</symbol>
|
|
100
|
+
<symbol id="bx" overflow="visible">
|
|
101
|
+
<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"/>
|
|
102
|
+
</symbol>
|
|
103
|
+
<symbol id="bw" overflow="visible">
|
|
104
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
105
|
+
</symbol>
|
|
106
|
+
<symbol id="bv" overflow="visible">
|
|
107
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
108
|
+
</symbol>
|
|
109
|
+
<symbol id="bu" overflow="visible">
|
|
110
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
111
|
+
</symbol>
|
|
112
|
+
<symbol id="bt" overflow="visible">
|
|
113
|
+
<path d="m1.7188-0.78125c0 0.21094 0.039062 0.33594 0.125 0.375v0.015625c0.09375 0.054687 0.30469 0.078125 0.64062 0.078125h0.20312v0.3125c-0.26172-0.019531-0.68359-0.03125-1.2656-0.03125 0.019531 0-0.35938 0.011719-1.1406 0.03125v-0.3125c0.39453 0 0.625-0.03125 0.6875-0.09375l0.015625-0.015625c0.050781-0.050781 0.078125-0.16406 0.078125-0.34375v-2.6719c0-0.25781-0.054688-0.42188-0.15625-0.48438-0.074219-0.039063-0.21484-0.066406-0.42188-0.078125h-0.20312v-0.3125l1.3906-0.10938v1.1094c0.17578-0.5625 0.47266-0.91406 0.89062-1.0625 0.10156-0.03125 0.21875-0.046875 0.34375-0.046875 0.3125 0 0.53125 0.12109 0.65625 0.35938 0.050781 0.074219 0.078125 0.15625 0.078125 0.25 0 0.24219-0.10938 0.38672-0.32812 0.4375h-0.10938c-0.19922 0-0.32812-0.085938-0.39062-0.26562-0.023438-0.039063-0.03125-0.09375-0.03125-0.15625 0-0.17578 0.078125-0.30469 0.23438-0.39062-0.023437-0.007812-0.058594-0.015625-0.10938-0.015625-0.44922 0-0.78125 0.27734-1 0.82812-0.125 0.3125-0.1875 0.66797-0.1875 1.0625z"/>
|
|
114
|
+
</symbol>
|
|
115
|
+
<symbol id="bs" overflow="visible">
|
|
116
|
+
<path d="m1.7656-4.4219v3.6719c0 0.21094 0.039063 0.33594 0.125 0.375 0.082031 0.042969 0.27344 0.0625 0.57812 0.0625v0.3125c-0.67969-0.019531-1.0234-0.03125-1.0312-0.03125-0.09375 0-0.46484 0.011719-1.1094 0.03125v-0.3125c0.39453 0 0.625-0.03125 0.6875-0.09375l0.03125-0.015625c0.039063-0.050781 0.0625-0.16406 0.0625-0.34375v-2.6875c0-0.25781-0.054687-0.42188-0.15625-0.48438h-0.015625c-0.09375-0.039062-0.28125-0.0625-0.5625-0.0625v-0.3125zm0.046875-1.7344c0 0.24219-0.10938 0.40234-0.32812 0.48438-0.074219 0.03125-0.14062 0.046875-0.20312 0.046875-0.23047 0-0.39062-0.10938-0.48438-0.32812-0.03125-0.070313-0.046875-0.14062-0.046875-0.20312 0-0.20703 0.09375-0.36328 0.28125-0.46875 0.070312-0.039062 0.15625-0.0625 0.25-0.0625 0.22656 0 0.39062 0.10156 0.48438 0.29688 0.03125 0.074219 0.046875 0.15234 0.046875 0.23438z"/>
|
|
117
|
+
</symbol>
|
|
118
|
+
<symbol id="br" overflow="visible">
|
|
119
|
+
<path d="m2.2188-1.7188c0.28906 0 0.53125-0.13281 0.71875-0.40625 0.10156-0.17578 0.15625-0.45312 0.15625-0.82812-0.03125-0.80078-0.32422-1.2109-0.875-1.2344-0.29297 0-0.52734 0.13281-0.70312 0.39062-0.11719 0.1875-0.17188 0.46875-0.17188 0.84375 0.03125 0.80469 0.32031 1.2148 0.875 1.2344zm-0.98438-0.078125c-0.11719 0.13672-0.17188 0.29297-0.17188 0.46875 0 0.27344 0.10156 0.46875 0.3125 0.59375 0.070312 0.042969 0.14453 0.070313 0.21875 0.078125h0.75c0.6875 0 1.1875 0.0625 1.5 0.1875 0.070312 0.023438 0.14453 0.054688 0.21875 0.09375 0.40625 0.27344 0.61719 0.64844 0.64062 1.1406 0 0.4375-0.27734 0.78125-0.82812 1.0312-0.40625 0.17578-0.87109 0.26562-1.3906 0.26562-0.77344 0-1.3711-0.18359-1.7969-0.54688-0.27344-0.21094-0.40625-0.44922-0.40625-0.71875 0-0.33594 0.17188-0.60938 0.51562-0.82812 0.11328-0.082031 0.25-0.14062 0.40625-0.17188-0.27344-0.21875-0.41797-0.51562-0.4375-0.89062 0-0.3125 0.097656-0.59375 0.29688-0.84375-0.29297-0.28125-0.44922-0.61719-0.46875-1.0156 0-0.46875 0.20312-0.84766 0.60938-1.1406 0.28906-0.21875 0.62891-0.32812 1.0156-0.32812 0.39453 0 0.75 0.12109 1.0625 0.35938 0.32031-0.3125 0.67578-0.46875 1.0625-0.46875 0.25781 0 0.42188 0.12109 0.48438 0.35938 0.007813 0.042969 0.015625 0.085937 0.015625 0.125-0.023438 0.17969-0.11719 0.28125-0.28125 0.3125-0.14844 0-0.24219-0.070313-0.28125-0.21875-0.011719-0.019531-0.015625-0.046875-0.015625-0.078125 0-0.13281 0.054687-0.22266 0.17188-0.26562-0.023438-0.007813-0.058594-0.015625-0.10938-0.015625-0.32422 0-0.62109 0.13281-0.89062 0.39062 0.26953 0.25 0.40625 0.57422 0.40625 0.96875 0 0.46094-0.20312 0.83984-0.60938 1.1406-0.29297 0.21875-0.63281 0.32812-1.0156 0.32812-0.375 0-0.70312-0.10156-0.98438-0.3125zm1.2656 3.625c0.63281 0 1.1133-0.16797 1.4375-0.5 0.16406-0.16797 0.25-0.34375 0.25-0.53125 0-0.5-0.39062-0.78125-1.1719-0.84375h-0.015625c-0.17969-0.0078125-0.44531-0.015625-0.79688-0.015625h-0.57812c-0.3125 0.011719-0.55469 0.15625-0.71875 0.4375-0.074219 0.125-0.10938 0.26562-0.10938 0.42188 0 0.3125 0.19141 0.56641 0.57812 0.76562 0.3125 0.17578 0.6875 0.26562 1.125 0.26562z"/>
|
|
120
|
+
</symbol>
|
|
121
|
+
<symbol id="bq" overflow="visible">
|
|
122
|
+
<path d="m4.5625-2.5156v1.9062c0.007812 0.15625 0.10938 0.25 0.29688 0.28125 0.082031 0.011719 0.24219 0.015625 0.48438 0.015625v0.3125c-0.67969-0.019531-1.0469-0.03125-1.1094-0.03125-0.054687 0-0.43359 0.011719-1.1406 0.03125v-0.3125c0.39453 0 0.62891-0.03125 0.70312-0.09375l0.015625-0.015625c0.039062-0.050781 0.0625-0.16406 0.0625-0.34375v-2.3281c0-0.65625-0.1875-1.0195-0.5625-1.0938-0.054688-0.007812-0.10938-0.015625-0.17188-0.015625-0.40625 0-0.74609 0.17969-1.0156 0.53125-0.21875 0.29297-0.32812 0.65234-0.32812 1.0781v1.8281c0 0.23047 0.050781 0.36719 0.15625 0.40625 0.070313 0.03125 0.27344 0.046875 0.60938 0.046875v0.3125c-0.67969-0.019531-1.0469-0.03125-1.1094-0.03125-0.054687 0-0.43359 0.011719-1.1406 0.03125v-0.3125c0.39453 0 0.62891-0.03125 0.70312-0.09375l0.015625-0.015625c0.039062-0.050781 0.0625-0.16406 0.0625-0.34375v-5.1875c0-0.25781-0.046875-0.42188-0.14062-0.48438-0.074219-0.039062-0.20312-0.066406-0.39062-0.078125h-0.25v-0.3125l1.4531-0.10938v3.4844c0.1875-0.40625 0.47266-0.69141 0.85938-0.85938 0.20703-0.0625 0.39844-0.097656 0.57812-0.10938 0.5 0 0.85156 0.125 1.0625 0.375 0.17578 0.21094 0.27344 0.49219 0.29688 0.84375v0.6875z"/>
|
|
123
|
+
</symbol>
|
|
124
|
+
<symbol id="bo" overflow="visible">
|
|
125
|
+
<path d="m1.7344-4v2.7812c0 0.66797 0.19141 1.0234 0.57812 1.0625 0.019531 0.011719 0.050781 0.015625 0.09375 0.015625 0.28125 0 0.47656-0.1875 0.59375-0.5625 0.039062-0.15625 0.0625-0.34375 0.0625-0.5625v-0.54688h0.25v0.57812c0 0.54297-0.15234 0.93359-0.45312 1.1719-0.14844 0.11328-0.32422 0.17188-0.53125 0.17188-0.5625 0-0.94531-0.20703-1.1406-0.625-0.09375-0.19531-0.14062-0.4375-0.14062-0.71875v-2.7656h-0.85938v-0.21875c0.59375-0.03125 0.98828-0.40625 1.1875-1.125 0.0625-0.25 0.097656-0.51953 0.10938-0.8125h0.25v1.8438h1.4219v0.3125z"/>
|
|
126
|
+
</symbol>
|
|
127
|
+
<symbol id="bn" overflow="visible">
|
|
128
|
+
<path d="m1.7188-3.7656c0.38281-0.4375 0.84375-0.65625 1.375-0.65625 0.61328 0 1.1328 0.24609 1.5625 0.73438 0.36328 0.42969 0.54688 0.9375 0.54688 1.5312 0 0.6875-0.25781 1.2617-0.76562 1.7188-0.42969 0.36719-0.91406 0.54688-1.4531 0.54688-0.53125 0-0.96094-0.22656-1.2812-0.6875-0.011719-0.007813-0.023437-0.023437-0.03125-0.046875l-0.35938 0.625h-0.25v-5.9531c0-0.25781-0.046875-0.42188-0.14062-0.48438h-0.015625c-0.074219-0.039062-0.19922-0.066406-0.375-0.078125h-0.25v-0.3125l1.4375-0.10938zm0.03125 2.625c0 0.13672 0.03125 0.25 0.09375 0.34375v0.015625l0.046875 0.0625c0.26953 0.40625 0.61719 0.60938 1.0469 0.60938 0.46875 0 0.84375-0.21094 1.125-0.64062 0.20703-0.32031 0.3125-0.79688 0.3125-1.4219 0-0.61328-0.09375-1.0781-0.28125-1.3906-0.27344-0.42578-0.62109-0.64062-1.0469-0.64062-0.46875 0-0.85156 0.19531-1.1406 0.57812l-0.046875 0.0625c-0.074219 0.14844-0.10938 0.26562-0.10938 0.35938z"/>
|
|
129
|
+
</symbol>
|
|
130
|
+
<symbol id="bm" overflow="visible">
|
|
131
|
+
<path d="m4.7031-2.1406c0 0.6875-0.25 1.2578-0.75 1.7031-0.42969 0.36719-0.91797 0.54688-1.4688 0.54688-0.63672 0-1.1719-0.23828-1.6094-0.71875-0.39844-0.4375-0.59375-0.94531-0.59375-1.5312 0-0.67578 0.24219-1.25 0.73438-1.7188 0.41406-0.41406 0.91016-0.625 1.4844-0.625 0.64453 0 1.1875 0.26172 1.625 0.78125 0.38281 0.4375 0.57812 0.96094 0.57812 1.5625zm-2.2031 2c0.44531 0 0.80078-0.1875 1.0625-0.5625l0.09375-0.17188c0.14453-0.28906 0.21875-0.73828 0.21875-1.3438 0-0.64453-0.085938-1.1094-0.25-1.3906-0.29297-0.41406-0.67188-0.63281-1.1406-0.65625-0.40625 0-0.74609 0.16797-1.0156 0.5-0.042969 0.054687-0.085938 0.10938-0.125 0.17188-0.15625 0.29297-0.23438 0.75-0.23438 1.375 0 0.64844 0.082031 1.1172 0.25 1.4062 0.28125 0.4375 0.66016 0.66406 1.1406 0.67188z"/>
|
|
132
|
+
</symbol>
|
|
133
|
+
<symbol id="bl" overflow="visible">
|
|
134
|
+
<path d="m1.7344-4v2.7812c0 0.66797 0.19141 1.0234 0.57812 1.0625 0.019531 0.011719 0.050781 0.015625 0.09375 0.015625 0.28125 0 0.47656-0.1875 0.59375-0.5625 0.039062-0.15625 0.0625-0.34375 0.0625-0.5625v-0.54688h0.25v0.57812c0 0.54297-0.15234 0.93359-0.45312 1.1719-0.14844 0.11328-0.32422 0.17188-0.53125 0.17188-0.5625 0-0.94531-0.20703-1.1406-0.625-0.09375-0.19531-0.14062-0.4375-0.14062-0.71875v-2.7656h-0.85938v-0.21875c0.59375-0.03125 0.98828-0.40625 1.1875-1.125 0.0625-0.25 0.097656-0.51953 0.10938-0.8125h0.25v1.8438h1.4219v0.3125z"/>
|
|
135
|
+
</symbol>
|
|
136
|
+
<symbol id="bk" overflow="visible">
|
|
137
|
+
<path d="m1.7344-4v2.7812c0 0.66797 0.19141 1.0234 0.57812 1.0625 0.019531 0.011719 0.050781 0.015625 0.09375 0.015625 0.28125 0 0.47656-0.1875 0.59375-0.5625 0.039062-0.15625 0.0625-0.34375 0.0625-0.5625v-0.54688h0.25v0.57812c0 0.54297-0.15234 0.93359-0.45312 1.1719-0.14844 0.11328-0.32422 0.17188-0.53125 0.17188-0.5625 0-0.94531-0.20703-1.1406-0.625-0.09375-0.19531-0.14062-0.4375-0.14062-0.71875v-2.7656h-0.85938v-0.21875c0.59375-0.03125 0.98828-0.40625 1.1875-1.125 0.0625-0.25 0.097656-0.51953 0.10938-0.8125h0.25v1.8438h1.4219v0.3125z"/>
|
|
138
|
+
</symbol>
|
|
139
|
+
<symbol id="bj" overflow="visible">
|
|
140
|
+
<path d="m4.7031-2.1406c0 0.6875-0.25 1.2578-0.75 1.7031-0.42969 0.36719-0.91797 0.54688-1.4688 0.54688-0.63672 0-1.1719-0.23828-1.6094-0.71875-0.39844-0.4375-0.59375-0.94531-0.59375-1.5312 0-0.67578 0.24219-1.25 0.73438-1.7188 0.41406-0.41406 0.91016-0.625 1.4844-0.625 0.64453 0 1.1875 0.26172 1.625 0.78125 0.38281 0.4375 0.57812 0.96094 0.57812 1.5625zm-2.2031 2c0.44531 0 0.80078-0.1875 1.0625-0.5625l0.09375-0.17188c0.14453-0.28906 0.21875-0.73828 0.21875-1.3438 0-0.64453-0.085938-1.1094-0.25-1.3906-0.29297-0.41406-0.67188-0.63281-1.1406-0.65625-0.40625 0-0.74609 0.16797-1.0156 0.5-0.042969 0.054687-0.085938 0.10938-0.125 0.17188-0.15625 0.29297-0.23438 0.75-0.23438 1.375 0 0.64844 0.082031 1.1172 0.25 1.4062 0.28125 0.4375 0.66016 0.66406 1.1406 0.67188z"/>
|
|
141
|
+
</symbol>
|
|
142
|
+
<symbol id="bi" overflow="visible">
|
|
143
|
+
<path d="m1.0938-3.4375c0-0.25781-0.046875-0.42188-0.14062-0.48438-0.085937-0.039063-0.23047-0.066406-0.4375-0.078125h-0.20312v-0.3125l1.4219-0.10938v1.0469c0.3125-0.69531 0.80078-1.0469 1.4688-1.0469 0.78125 0 1.2266 0.32812 1.3438 0.98438 0.19531-0.45703 0.50781-0.75781 0.9375-0.90625 0.15625-0.050781 0.32031-0.078125 0.5-0.078125 0.5 0 0.85156 0.125 1.0625 0.375 0.17578 0.21094 0.27344 0.49219 0.29688 0.84375v0.6875 1.9062c0.007812 0.15625 0.10938 0.25 0.29688 0.28125 0.082031 0.011719 0.24219 0.015625 0.48438 0.015625v0.3125c-0.67969-0.019531-1.0469-0.03125-1.1094-0.03125-0.054687 0-0.43359 0.011719-1.1406 0.03125v-0.3125c0.39453 0 0.625-0.03125 0.6875-0.09375l0.03125-0.015625c0.039062-0.050781 0.0625-0.16406 0.0625-0.34375v-2.3281c0-0.65625-0.1875-1.0195-0.5625-1.0938-0.054688-0.007812-0.10938-0.015625-0.17188-0.015625-0.40625 0-0.74609 0.17969-1.0156 0.53125-0.23047 0.29297-0.34375 0.65234-0.34375 1.0781v1.8281c0 0.23047 0.054688 0.36719 0.17188 0.40625 0.070313 0.03125 0.27344 0.046875 0.60938 0.046875v0.3125c-0.67969-0.019531-1.0469-0.03125-1.1094-0.03125-0.054687 0-0.43359 0.011719-1.1406 0.03125v-0.3125c0.39453 0 0.62891-0.03125 0.70312-0.09375l0.015625-0.015625c0.039062-0.050781 0.0625-0.16406 0.0625-0.34375v-2.3281c0-0.65625-0.1875-1.0195-0.5625-1.0938-0.054688-0.007812-0.10938-0.015625-0.17188-0.015625-0.40625 0-0.74609 0.17969-1.0156 0.53125-0.21875 0.29297-0.32812 0.65234-0.32812 1.0781v1.8281c0 0.23047 0.050781 0.36719 0.15625 0.40625 0.070313 0.03125 0.27344 0.046875 0.60938 0.046875v0.3125c-0.67969-0.019531-1.0469-0.03125-1.1094-0.03125-0.054687 0-0.43359 0.011719-1.1406 0.03125v-0.3125c0.39453 0 0.62891-0.03125 0.70312-0.09375l0.015625-0.015625c0.039062-0.050781 0.0625-0.16406 0.0625-0.34375z"/>
|
|
144
|
+
</symbol>
|
|
145
|
+
<symbol id="bh" overflow="visible">
|
|
146
|
+
<path d="m3.7969-0.60938c-0.36719 0.48047-0.80859 0.71875-1.3281 0.71875-0.625 0-1.1523-0.25-1.5781-0.75-0.36719-0.4375-0.54688-0.94141-0.54688-1.5156 0-0.69531 0.25781-1.2695 0.78125-1.7188 0.41406-0.36328 0.89062-0.54688 1.4219-0.54688 0.53906 0 0.96094 0.25781 1.2656 0.76562 0.03125 0.054688 0.054688 0.10156 0.078125 0.14062l0.375-0.90625h0.21875v5.6094c0 0.21875 0.054687 0.34766 0.17188 0.39062 0.070312 0.03125 0.27344 0.046875 0.60938 0.046875v0.3125c-0.69922-0.023438-1.0742-0.03125-1.125-0.03125-0.0625 0-0.4375 0.007812-1.125 0.03125v-0.3125c0.39453 0 0.625-0.027344 0.6875-0.078125l0.03125-0.03125c0.039063-0.054687 0.0625-0.16406 0.0625-0.32812zm0.03125-2.1562c0-0.36328-0.125-0.69531-0.375-1-0.24219-0.26953-0.52344-0.40625-0.84375-0.40625-0.41797 0-0.77344 0.21875-1.0625 0.65625-0.25 0.375-0.375 0.82812-0.375 1.3594 0 0.71094 0.1875 1.2656 0.5625 1.6719 0.22656 0.25 0.48828 0.375 0.78125 0.375 0.35156 0 0.66016-0.13281 0.92188-0.40625 0.25781-0.28906 0.39062-0.57031 0.39062-0.84375z"/>
|
|
147
|
+
</symbol>
|
|
148
|
+
<symbol id="bg" overflow="visible">
|
|
149
|
+
<path d="m3.9062-0.79688c-0.28125 0.60547-0.71094 0.90625-1.2812 0.90625-0.82422 0-1.3086-0.28516-1.4531-0.85938-0.054687-0.17578-0.078125-0.45312-0.078125-0.82812v-1.5c0-0.4375-0.027344-0.69531-0.078125-0.78125l-0.0625-0.0625c-0.074219-0.050781-0.28906-0.078125-0.64062-0.078125v-0.3125l1.4844-0.10938v3.3281c0 0.40625 0.070313 0.67188 0.21875 0.79688 0.14453 0.125 0.36328 0.1875 0.65625 0.1875 0.44531 0 0.78516-0.22266 1.0156-0.67188 0.125-0.25 0.1875-0.53906 0.1875-0.875v-1.7812c0-0.25781-0.046875-0.42188-0.14062-0.48438h-0.015625c-0.09375-0.050781-0.30469-0.078125-0.625-0.078125v-0.3125l1.4688-0.10938v3.5469c0 0.26172 0.050781 0.42188 0.15625 0.48438h0.015625c0.09375 0.054687 0.29688 0.078125 0.60938 0.078125v0.3125l-1.4375 0.10938z"/>
|
|
150
|
+
</symbol>
|
|
151
|
+
<symbol id="bf" overflow="visible">
|
|
152
|
+
<path d="m1.7656-4.4219v3.6719c0 0.21094 0.039063 0.33594 0.125 0.375 0.082031 0.042969 0.27344 0.0625 0.57812 0.0625v0.3125c-0.67969-0.019531-1.0234-0.03125-1.0312-0.03125-0.09375 0-0.46484 0.011719-1.1094 0.03125v-0.3125c0.39453 0 0.625-0.03125 0.6875-0.09375l0.03125-0.015625c0.039063-0.050781 0.0625-0.16406 0.0625-0.34375v-2.6875c0-0.25781-0.054687-0.42188-0.15625-0.48438h-0.015625c-0.09375-0.039062-0.28125-0.0625-0.5625-0.0625v-0.3125zm0.046875-1.7344c0 0.24219-0.10938 0.40234-0.32812 0.48438-0.074219 0.03125-0.14062 0.046875-0.20312 0.046875-0.23047 0-0.39062-0.10938-0.48438-0.32812-0.03125-0.070313-0.046875-0.14062-0.046875-0.20312 0-0.20703 0.09375-0.36328 0.28125-0.46875 0.070312-0.039062 0.15625-0.0625 0.25-0.0625 0.22656 0 0.39062 0.10156 0.48438 0.29688 0.03125 0.074219 0.046875 0.15234 0.046875 0.23438z"/>
|
|
153
|
+
</symbol>
|
|
154
|
+
<symbol id="bd" overflow="visible">
|
|
155
|
+
<path d="m1.7344-4v2.7812c0 0.66797 0.19141 1.0234 0.57812 1.0625 0.019531 0.011719 0.050781 0.015625 0.09375 0.015625 0.28125 0 0.47656-0.1875 0.59375-0.5625 0.039062-0.15625 0.0625-0.34375 0.0625-0.5625v-0.54688h0.25v0.57812c0 0.54297-0.15234 0.93359-0.45312 1.1719-0.14844 0.11328-0.32422 0.17188-0.53125 0.17188-0.5625 0-0.94531-0.20703-1.1406-0.625-0.09375-0.19531-0.14062-0.4375-0.14062-0.71875v-2.7656h-0.85938v-0.21875c0.59375-0.03125 0.98828-0.40625 1.1875-1.125 0.0625-0.25 0.097656-0.51953 0.10938-0.8125h0.25v1.8438h1.4219v0.3125z"/>
|
|
156
|
+
</symbol>
|
|
157
|
+
<symbol id="bc" overflow="visible">
|
|
158
|
+
<path d="m3.9062-2.3125h-2.7969c0 0.67969 0.097656 1.1797 0.29688 1.5 0.32031 0.41797 0.70312 0.64062 1.1406 0.67188 0.45703 0 0.82812-0.1875 1.1094-0.5625 0.09375-0.13281 0.17188-0.28906 0.23438-0.46875 0.019531-0.09375 0.0625-0.14062 0.125-0.14062 0.09375 0 0.14062 0.042969 0.14062 0.125 0 0.14844-0.09375 0.34375-0.28125 0.59375-0.28125 0.375-0.64062 0.59766-1.0781 0.67188-0.10547 0.019531-0.21094 0.03125-0.3125 0.03125-0.625 0-1.1641-0.23828-1.6094-0.71875-0.39844-0.4375-0.59375-0.96875-0.59375-1.5938 0-0.6875 0.23828-1.2578 0.71875-1.7188 0.38281-0.375 0.83594-0.5625 1.3594-0.5625 0.75 0 1.2734 0.32422 1.5781 0.96875 0.14453 0.30469 0.21875 0.63672 0.21875 1 0 0.11719-0.027344 0.18359-0.078125 0.20312h-0.17188zm-2.7812-0.20312h2.3594c0-0.63281-0.14062-1.1133-0.42188-1.4375-0.17969-0.20703-0.41406-0.3125-0.70312-0.3125-0.34375 0-0.63281 0.15625-0.85938 0.46875-0.23047 0.30469-0.35547 0.73047-0.375 1.2812z"/>
|
|
159
|
+
</symbol>
|
|
160
|
+
<symbol id="bb" overflow="visible">
|
|
161
|
+
<path d="m1.7656-6.9375v6.1719c0 0.23047 0.054687 0.36719 0.17188 0.40625 0.070312 0.03125 0.27344 0.046875 0.60938 0.046875v0.3125l-1.1094-0.03125c-0.085938 0-0.45312 0.011719-1.1094 0.03125v-0.3125c0.39453 0 0.625-0.03125 0.6875-0.09375l0.03125-0.015625c0.039063-0.050781 0.0625-0.16406 0.0625-0.34375v-5.1875c0-0.25781-0.046875-0.42188-0.14062-0.48438h-0.015625c-0.074219-0.039062-0.19922-0.066406-0.375-0.078125h-0.25v-0.3125z"/>
|
|
162
|
+
</symbol>
|
|
163
|
+
<symbol id="ba" overflow="visible">
|
|
164
|
+
<path d="m4.7031-2.1406c0 0.6875-0.25 1.2578-0.75 1.7031-0.42969 0.36719-0.91797 0.54688-1.4688 0.54688-0.63672 0-1.1719-0.23828-1.6094-0.71875-0.39844-0.4375-0.59375-0.94531-0.59375-1.5312 0-0.67578 0.24219-1.25 0.73438-1.7188 0.41406-0.41406 0.91016-0.625 1.4844-0.625 0.64453 0 1.1875 0.26172 1.625 0.78125 0.38281 0.4375 0.57812 0.96094 0.57812 1.5625zm-2.2031 2c0.44531 0 0.80078-0.1875 1.0625-0.5625l0.09375-0.17188c0.14453-0.28906 0.21875-0.73828 0.21875-1.3438 0-0.64453-0.085938-1.1094-0.25-1.3906-0.29297-0.41406-0.67188-0.63281-1.1406-0.65625-0.40625 0-0.74609 0.16797-1.0156 0.5-0.042969 0.054687-0.085938 0.10938-0.125 0.17188-0.15625 0.29297-0.23438 0.75-0.23438 1.375 0 0.64844 0.082031 1.1172 0.25 1.4062 0.28125 0.4375 0.66016 0.66406 1.1406 0.67188z"/>
|
|
165
|
+
</symbol>
|
|
166
|
+
<symbol id="az" overflow="visible">
|
|
167
|
+
<path d="m1.0938-3.4375c0-0.25781-0.046875-0.42188-0.14062-0.48438-0.085937-0.039063-0.23047-0.066406-0.4375-0.078125h-0.20312v-0.3125l1.4219-0.10938v1.0469c0.3125-0.69531 0.80078-1.0469 1.4688-1.0469 0.5 0 0.85156 0.125 1.0625 0.375 0.17578 0.21094 0.27344 0.49219 0.29688 0.84375v0.6875 1.9062c0.007812 0.15625 0.10938 0.25 0.29688 0.28125 0.082031 0.011719 0.24219 0.015625 0.48438 0.015625v0.3125c-0.67969-0.019531-1.0469-0.03125-1.1094-0.03125-0.054687 0-0.43359 0.011719-1.1406 0.03125v-0.3125c0.39453 0 0.62891-0.03125 0.70312-0.09375l0.015625-0.015625c0.039062-0.050781 0.0625-0.16406 0.0625-0.34375v-2.3281c0-0.65625-0.1875-1.0195-0.5625-1.0938-0.054688-0.007812-0.10938-0.015625-0.17188-0.015625-0.40625 0-0.74609 0.17969-1.0156 0.53125-0.21875 0.29297-0.32812 0.65234-0.32812 1.0781v1.8281c0 0.23047 0.050781 0.36719 0.15625 0.40625 0.070313 0.03125 0.27344 0.046875 0.60938 0.046875v0.3125c-0.67969-0.019531-1.0469-0.03125-1.1094-0.03125-0.054687 0-0.43359 0.011719-1.1406 0.03125v-0.3125c0.39453 0 0.62891-0.03125 0.70312-0.09375l0.015625-0.015625c0.039062-0.050781 0.0625-0.16406 0.0625-0.34375z"/>
|
|
168
|
+
</symbol>
|
|
169
|
+
<symbol id="ay" overflow="visible">
|
|
170
|
+
<path d="m2.2188-1.7188c0.28906 0 0.53125-0.13281 0.71875-0.40625 0.10156-0.17578 0.15625-0.45312 0.15625-0.82812-0.03125-0.80078-0.32422-1.2109-0.875-1.2344-0.29297 0-0.52734 0.13281-0.70312 0.39062-0.11719 0.1875-0.17188 0.46875-0.17188 0.84375 0.03125 0.80469 0.32031 1.2148 0.875 1.2344zm-0.98438-0.078125c-0.11719 0.13672-0.17188 0.29297-0.17188 0.46875 0 0.27344 0.10156 0.46875 0.3125 0.59375 0.070312 0.042969 0.14453 0.070313 0.21875 0.078125h0.75c0.6875 0 1.1875 0.0625 1.5 0.1875 0.070312 0.023438 0.14453 0.054688 0.21875 0.09375 0.40625 0.27344 0.61719 0.64844 0.64062 1.1406 0 0.4375-0.27734 0.78125-0.82812 1.0312-0.40625 0.17578-0.87109 0.26562-1.3906 0.26562-0.77344 0-1.3711-0.18359-1.7969-0.54688-0.27344-0.21094-0.40625-0.44922-0.40625-0.71875 0-0.33594 0.17188-0.60938 0.51562-0.82812 0.11328-0.082031 0.25-0.14062 0.40625-0.17188-0.27344-0.21875-0.41797-0.51562-0.4375-0.89062 0-0.3125 0.097656-0.59375 0.29688-0.84375-0.29297-0.28125-0.44922-0.61719-0.46875-1.0156 0-0.46875 0.20312-0.84766 0.60938-1.1406 0.28906-0.21875 0.62891-0.32812 1.0156-0.32812 0.39453 0 0.75 0.12109 1.0625 0.35938 0.32031-0.3125 0.67578-0.46875 1.0625-0.46875 0.25781 0 0.42188 0.12109 0.48438 0.35938 0.007813 0.042969 0.015625 0.085937 0.015625 0.125-0.023438 0.17969-0.11719 0.28125-0.28125 0.3125-0.14844 0-0.24219-0.070313-0.28125-0.21875-0.011719-0.019531-0.015625-0.046875-0.015625-0.078125 0-0.13281 0.054687-0.22266 0.17188-0.26562-0.023438-0.007813-0.058594-0.015625-0.10938-0.015625-0.32422 0-0.62109 0.13281-0.89062 0.39062 0.26953 0.25 0.40625 0.57422 0.40625 0.96875 0 0.46094-0.20312 0.83984-0.60938 1.1406-0.29297 0.21875-0.63281 0.32812-1.0156 0.32812-0.375 0-0.70312-0.10156-0.98438-0.3125zm1.2656 3.625c0.63281 0 1.1133-0.16797 1.4375-0.5 0.16406-0.16797 0.25-0.34375 0.25-0.53125 0-0.5-0.39062-0.78125-1.1719-0.84375h-0.015625c-0.17969-0.0078125-0.44531-0.015625-0.79688-0.015625h-0.57812c-0.3125 0.011719-0.55469 0.15625-0.71875 0.4375-0.074219 0.125-0.10938 0.26562-0.10938 0.42188 0 0.3125 0.19141 0.56641 0.57812 0.76562 0.3125 0.17578 0.6875 0.26562 1.125 0.26562z"/>
|
|
171
|
+
</symbol>
|
|
172
|
+
<symbol id="ax" overflow="visible">
|
|
173
|
+
<path d="m1.7344-4v2.7812c0 0.66797 0.19141 1.0234 0.57812 1.0625 0.019531 0.011719 0.050781 0.015625 0.09375 0.015625 0.28125 0 0.47656-0.1875 0.59375-0.5625 0.039062-0.15625 0.0625-0.34375 0.0625-0.5625v-0.54688h0.25v0.57812c0 0.54297-0.15234 0.93359-0.45312 1.1719-0.14844 0.11328-0.32422 0.17188-0.53125 0.17188-0.5625 0-0.94531-0.20703-1.1406-0.625-0.09375-0.19531-0.14062-0.4375-0.14062-0.71875v-2.7656h-0.85938v-0.21875c0.59375-0.03125 0.98828-0.40625 1.1875-1.125 0.0625-0.25 0.097656-0.51953 0.10938-0.8125h0.25v1.8438h1.4219v0.3125z"/>
|
|
174
|
+
</symbol>
|
|
175
|
+
<symbol id="aw" overflow="visible">
|
|
176
|
+
<path d="m3.9062-2.3125h-2.7969c0 0.67969 0.097656 1.1797 0.29688 1.5 0.32031 0.41797 0.70312 0.64062 1.1406 0.67188 0.45703 0 0.82812-0.1875 1.1094-0.5625 0.09375-0.13281 0.17188-0.28906 0.23438-0.46875 0.019531-0.09375 0.0625-0.14062 0.125-0.14062 0.09375 0 0.14062 0.042969 0.14062 0.125 0 0.14844-0.09375 0.34375-0.28125 0.59375-0.28125 0.375-0.64062 0.59766-1.0781 0.67188-0.10547 0.019531-0.21094 0.03125-0.3125 0.03125-0.625 0-1.1641-0.23828-1.6094-0.71875-0.39844-0.4375-0.59375-0.96875-0.59375-1.5938 0-0.6875 0.23828-1.2578 0.71875-1.7188 0.38281-0.375 0.83594-0.5625 1.3594-0.5625 0.75 0 1.2734 0.32422 1.5781 0.96875 0.14453 0.30469 0.21875 0.63672 0.21875 1 0 0.11719-0.027344 0.18359-0.078125 0.20312h-0.17188zm-2.7812-0.20312h2.3594c0-0.63281-0.14062-1.1133-0.42188-1.4375-0.17969-0.20703-0.41406-0.3125-0.70312-0.3125-0.34375 0-0.63281 0.15625-0.85938 0.46875-0.23047 0.30469-0.35547 0.73047-0.375 1.2812z"/>
|
|
177
|
+
</symbol>
|
|
178
|
+
<symbol id="av" overflow="visible">
|
|
179
|
+
<path d="m2.875-2.3438 1.3281 1.7188c0.14453 0.17969 0.32812 0.28125 0.54688 0.3125h0.40625v0.3125c-0.30469-0.019531-0.62109-0.03125-0.95312-0.03125-0.125 0-0.48438 0.011719-1.0781 0.03125v-0.3125c0.20703 0 0.32812-0.082031 0.35938-0.25 0-0.019531-0.074219-0.12891-0.21875-0.32812l-0.75-1c-0.51172 0.60547-0.79688 0.97656-0.85938 1.1094-0.03125 0.0625-0.046875 0.11719-0.046875 0.15625 0 0.1875 0.097656 0.29297 0.29688 0.3125v0.3125c-0.48047-0.019531-0.79688-0.03125-0.95312-0.03125-0.29297 0-0.57031 0.011719-0.82812 0.03125v-0.3125c0.51953 0 0.94531-0.19531 1.2812-0.59375l0.9375-1.1875-1-1.2969c-0.23047-0.30078-0.39844-0.47656-0.5-0.53125-0.03125-0.019531-0.070312-0.03125-0.10938-0.03125-0.09375-0.03125-0.28125-0.046875-0.5625-0.046875v-0.3125c0.26953 0.023438 0.58594 0.03125 0.95312 0.03125 0.19531 0 0.55469-0.007812 1.0781-0.03125v0.3125c-0.23047 0.011719-0.35156 0.09375-0.35938 0.25 0 0.054688 0.03125 0.11719 0.09375 0.1875l0.78125 1 0.625-0.78125c0.09375-0.11328 0.14062-0.22656 0.14062-0.34375 0-0.1875-0.09375-0.28906-0.28125-0.3125v-0.3125c0.25781 0.023438 0.57812 0.03125 0.95312 0.03125 0.28906 0 0.56641-0.007812 0.82812-0.03125v0.3125c-0.51172 0.011719-0.90625 0.18359-1.1875 0.51562-0.13672 0.14844-0.44531 0.52734-0.92188 1.1406z"/>
|
|
180
|
+
</symbol>
|
|
181
|
+
<symbol id="au" overflow="visible">
|
|
182
|
+
<path d="m1.7344-4v2.7812c0 0.66797 0.19141 1.0234 0.57812 1.0625 0.019531 0.011719 0.050781 0.015625 0.09375 0.015625 0.28125 0 0.47656-0.1875 0.59375-0.5625 0.039062-0.15625 0.0625-0.34375 0.0625-0.5625v-0.54688h0.25v0.57812c0 0.54297-0.15234 0.93359-0.45312 1.1719-0.14844 0.11328-0.32422 0.17188-0.53125 0.17188-0.5625 0-0.94531-0.20703-1.1406-0.625-0.09375-0.19531-0.14062-0.4375-0.14062-0.71875v-2.7656h-0.85938v-0.21875c0.59375-0.03125 0.98828-0.40625 1.1875-1.125 0.0625-0.25 0.097656-0.51953 0.10938-0.8125h0.25v1.8438h1.4219v0.3125z"/>
|
|
183
|
+
</symbol>
|
|
184
|
+
<symbol id="as" overflow="visible">
|
|
185
|
+
<path d="m4.6719-4.2344-0.46875 1.9219c-0.15625 0.63672-0.23438 1.0469-0.23438 1.2344 0 0.49219 0.17188 0.78125 0.51562 0.875 0.070313 0.03125 0.15625 0.046875 0.25 0.046875 0.46875 0 0.89062-0.23438 1.2656-0.70312 0.25781-0.28906 0.45703-0.66406 0.59375-1.125 0.03125-0.10156 0.09375-0.15625 0.1875-0.15625 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.23047-0.14062 0.5625-0.42188 1-0.51172 0.77344-1.1172 1.1562-1.8125 1.1562-0.63672 0-1.1016-0.26562-1.3906-0.79688-0.054688-0.082031-0.09375-0.17188-0.125-0.26562-0.21875 0.44922-0.52734 0.76172-0.92188 0.9375-0.17969 0.082031-0.35938 0.125-0.54688 0.125-0.5625 0-0.95312-0.16406-1.1719-0.5-0.09375-0.11328-0.14062-0.25391-0.14062-0.42188 0-0.34375 0.14844-0.58594 0.45312-0.73438 0.10156-0.050781 0.20703-0.078125 0.3125-0.078125 0.28125 0 0.45312 0.11719 0.51562 0.34375v0.14062c0 0.32422-0.15625 0.55859-0.46875 0.70312-0.054688 0.03125-0.11719 0.046875-0.1875 0.046875 0.19531 0.125 0.42969 0.1875 0.70312 0.1875 0.5 0 0.89062-0.32812 1.1719-0.98438 0.0625-0.14453 0.11328-0.30078 0.15625-0.46875 0.50781-1.9062 0.76562-3.0156 0.76562-3.3281-0.0625-0.58203-0.32031-0.89453-0.76562-0.9375-0.48047 0-0.92188 0.24609-1.3281 0.73438v0.015625c0 0.011719-0.007813 0.015625-0.015625 0.015625-0.13672 0.1875-0.26172 0.40234-0.375 0.64062-0.042969 0.11719-0.085938 0.23047-0.125 0.34375l-0.03125 0.078125c-0.023438 0.10547-0.078125 0.15625-0.17188 0.15625-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.22656 0.14453-0.56641 0.4375-1.0156 0.50781-0.75781 1.1133-1.1406 1.8125-1.1406 0.71875 0 1.2227 0.35547 1.5156 1.0625 0.28906-0.57031 0.6875-0.91406 1.1875-1.0312 0.09375-0.019531 0.1875-0.03125 0.28125-0.03125 0.55078 0 0.9375 0.15625 1.1562 0.46875 0.09375 0.125 0.14062 0.27734 0.14062 0.45312 0 0.38672-0.17188 0.64062-0.51562 0.76562-0.085937 0.03125-0.16406 0.046875-0.23438 0.046875-0.29297 0-0.46484-0.125-0.51562-0.375-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.28125 0.13281-0.5 0.40625-0.65625 0.082031-0.050781 0.17188-0.085938 0.26562-0.10938-0.19922-0.11328-0.43359-0.17188-0.70312-0.17188-0.63672 0-1.0859 0.49609-1.3438 1.4844-0.023438 0.054687-0.039062 0.10547-0.046875 0.15625z"/>
|
|
186
|
+
</symbol>
|
|
187
|
+
<symbol id="ar" overflow="visible">
|
|
188
|
+
<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"/>
|
|
189
|
+
</symbol>
|
|
190
|
+
<symbol id="aq" overflow="visible">
|
|
191
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
192
|
+
</symbol>
|
|
193
|
+
<symbol id="ap" overflow="visible">
|
|
194
|
+
<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"/>
|
|
195
|
+
</symbol>
|
|
196
|
+
<symbol id="ao" overflow="visible">
|
|
197
|
+
<path d="m6.75-4.9844-5.25 2.4844 5.25 2.4844c0.125 0.0625 0.1875 0.13281 0.1875 0.21875 0 0.10156-0.046875 0.16406-0.14062 0.1875-0.023437 0.007813-0.042969 0.015625-0.0625 0.015625-0.03125 0-0.089844-0.027344-0.17188-0.078125l-5.5469-2.6094c-0.125-0.0625-0.1875-0.13281-0.1875-0.21875 0-0.082031 0.0625-0.15625 0.1875-0.21875l5.5469-2.6094c0.082031-0.050781 0.14062-0.078125 0.17188-0.078125 0.11328 0 0.17969 0.054688 0.20312 0.15625v0.046875c0 0.085937-0.0625 0.15625-0.1875 0.21875z"/>
|
|
198
|
+
</symbol>
|
|
199
|
+
<symbol id="an" overflow="visible">
|
|
200
|
+
<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"/>
|
|
201
|
+
</symbol>
|
|
202
|
+
<symbol id="am" overflow="visible">
|
|
203
|
+
<path d="m2.0312-0.015625c0 0.64453-0.21094 1.2109-0.625 1.7031-0.11719 0.13281-0.21094 0.21875-0.28125 0.25-0.074219 0-0.10938-0.042969-0.10938-0.125 0-0.03125 0.035156-0.085938 0.10938-0.15625 0.40625-0.39844 0.62891-0.88672 0.67188-1.4688 0.007813-0.0625 0.015625-0.13281 0.015625-0.20312 0-0.09375-0.007812-0.14062-0.015625-0.14062-0.011719 0-0.03125 0.011719-0.0625 0.03125-0.09375 0.085938-0.21094 0.125-0.34375 0.125-0.25 0-0.41406-0.11328-0.48438-0.34375-0.03125-0.0625-0.046875-0.125-0.046875-0.1875 0-0.23828 0.10156-0.39844 0.3125-0.48438 0.0625-0.03125 0.13281-0.046875 0.21875-0.046875 0.28906 0 0.48828 0.19531 0.59375 0.57812 0.03125 0.14844 0.046875 0.30469 0.046875 0.46875z"/>
|
|
204
|
+
</symbol>
|
|
205
|
+
<symbol id="al" overflow="visible">
|
|
206
|
+
<path d="m1.2344-0.82812 0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.09375-0.48438 0.28125-1.0156 0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.03125l0.125-0.29688c0.20703-0.375 0.41406-0.60938 0.625-0.70312 0.13281-0.0625 0.27344-0.09375 0.42188-0.09375 0.51953 0 0.89844 0.21875 1.1406 0.65625 0.082031 0.16797 0.12891 0.35547 0.14062 0.5625 0.60156-0.8125 1.332-1.2188 2.1875-1.2188 0.80078 0 1.3125 0.30859 1.5312 0.92188 0.050781 0.16797 0.078125 0.35938 0.078125 0.57812 0 0.48047-0.28125 1.5078-0.84375 3.0781-0.16797 0.40625-0.25 0.74219-0.25 1 0 0.30469 0.10938 0.45312 0.32812 0.45312 0.61328 0 1.0859-0.57812 1.4219-1.7344 0.050781-0.14453 0.097656-0.22266 0.14062-0.23438v-0.015625h0.078125c0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.15625-0.10156 0.44922-0.29688 0.875-0.40625 0.85547-0.92188 1.2812-1.5469 1.2812-0.46875 0-0.80859-0.20312-1.0156-0.60938-0.085937-0.16406-0.125-0.34766-0.125-0.54688 0-0.1875 0.046875-0.39844 0.14062-0.64062 0.60156-1.6328 0.90625-2.7227 0.90625-3.2656 0-0.64453-0.25-0.96875-0.75-0.96875-0.84375 0-1.5547 0.46484-2.125 1.3906-0.0625 0.10547-0.11719 0.21094-0.15625 0.3125l-0.1875 0.70312c-0.054688 0.21094-0.13281 0.52344-0.23438 0.9375l-0.3125 1.25c-0.15625 0.64844-0.24609 0.99609-0.26562 1.0469-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938z"/>
|
|
207
|
+
</symbol>
|
|
208
|
+
<symbol id="ak" overflow="visible">
|
|
209
|
+
<path d="m4.7031-2.1406c0 0.6875-0.25 1.2578-0.75 1.7031-0.42969 0.36719-0.91797 0.54688-1.4688 0.54688-0.63672 0-1.1719-0.23828-1.6094-0.71875-0.39844-0.4375-0.59375-0.94531-0.59375-1.5312 0-0.67578 0.24219-1.25 0.73438-1.7188 0.41406-0.41406 0.91016-0.625 1.4844-0.625 0.64453 0 1.1875 0.26172 1.625 0.78125 0.38281 0.4375 0.57812 0.96094 0.57812 1.5625zm-2.2031 2c0.44531 0 0.80078-0.1875 1.0625-0.5625l0.09375-0.17188c0.14453-0.28906 0.21875-0.73828 0.21875-1.3438 0-0.64453-0.085938-1.1094-0.25-1.3906-0.29297-0.41406-0.67188-0.63281-1.1406-0.65625-0.40625 0-0.74609 0.16797-1.0156 0.5-0.042969 0.054687-0.085938 0.10938-0.125 0.17188-0.15625 0.29297-0.23438 0.75-0.23438 1.375 0 0.64844 0.082031 1.1172 0.25 1.4062 0.28125 0.4375 0.66016 0.66406 1.1406 0.67188z"/>
|
|
210
|
+
</symbol>
|
|
211
|
+
<symbol id="aj" overflow="visible">
|
|
212
|
+
<path d="m3.7969-0.54688c-0.34375 0.4375-0.79297 0.65625-1.3438 0.65625-0.60547 0-1.1211-0.24219-1.5469-0.73438-0.375-0.42578-0.5625-0.9375-0.5625-1.5312 0-0.6875 0.25781-1.2578 0.78125-1.7188 0.41406-0.36328 0.89453-0.54688 1.4375-0.54688 0.50781 0 0.92969 0.21094 1.2656 0.625v-2.1562c0-0.25781-0.046875-0.42188-0.14062-0.48438-0.09375-0.050781-0.30859-0.078125-0.64062-0.078125v-0.3125l1.4375-0.10938v6.0625c0 0.26172 0.050781 0.42188 0.15625 0.48438h0.015625c0.09375 0.054687 0.29688 0.078125 0.60938 0.078125v0.3125l-1.4688 0.10938zm0-2.6875c0-0.13281-0.03125-0.24219-0.09375-0.32812l-0.015625-0.03125c-0.27344-0.40625-0.63281-0.60938-1.0781-0.60938-0.46875 0-0.84375 0.21484-1.125 0.64062-0.21094 0.32422-0.3125 0.79688-0.3125 1.4219s0.09375 1.0898 0.28125 1.3906c0.26953 0.42969 0.625 0.64062 1.0625 0.64062 0.47656 0 0.86328-0.21875 1.1562-0.65625l0.015625-0.046875c0.070312-0.13281 0.10938-0.25781 0.10938-0.375z"/>
|
|
213
|
+
</symbol>
|
|
214
|
+
<symbol id="ah" overflow="visible">
|
|
215
|
+
<path d="m3.7969-0.54688c-0.34375 0.4375-0.79297 0.65625-1.3438 0.65625-0.60547 0-1.1211-0.24219-1.5469-0.73438-0.375-0.42578-0.5625-0.9375-0.5625-1.5312 0-0.6875 0.25781-1.2578 0.78125-1.7188 0.41406-0.36328 0.89453-0.54688 1.4375-0.54688 0.50781 0 0.92969 0.21094 1.2656 0.625v-2.1562c0-0.25781-0.046875-0.42188-0.14062-0.48438-0.09375-0.050781-0.30859-0.078125-0.64062-0.078125v-0.3125l1.4375-0.10938v6.0625c0 0.26172 0.050781 0.42188 0.15625 0.48438h0.015625c0.09375 0.054687 0.29688 0.078125 0.60938 0.078125v0.3125l-1.4688 0.10938zm0-2.6875c0-0.13281-0.03125-0.24219-0.09375-0.32812l-0.015625-0.03125c-0.27344-0.40625-0.63281-0.60938-1.0781-0.60938-0.46875 0-0.84375 0.21484-1.125 0.64062-0.21094 0.32422-0.3125 0.79688-0.3125 1.4219s0.09375 1.0898 0.28125 1.3906c0.26953 0.42969 0.625 0.64062 1.0625 0.64062 0.47656 0 0.86328-0.21875 1.1562-0.65625l0.015625-0.046875c0.070312-0.13281 0.10938-0.25781 0.10938-0.375z"/>
|
|
216
|
+
</symbol>
|
|
217
|
+
<symbol id="ag" overflow="visible">
|
|
218
|
+
<path d="m1.2344-0.82812 0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.09375-0.48438 0.28125-1.0156 0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.03125l0.125-0.29688c0.20703-0.375 0.41406-0.60938 0.625-0.70312 0.13281-0.0625 0.27344-0.09375 0.42188-0.09375 0.51953 0 0.89844 0.21875 1.1406 0.65625 0.082031 0.16797 0.12891 0.35547 0.14062 0.5625 0.60156-0.8125 1.332-1.2188 2.1875-1.2188 0.80078 0 1.3125 0.30859 1.5312 0.92188 0.050781 0.16797 0.078125 0.35938 0.078125 0.57812 0 0.48047-0.28125 1.5078-0.84375 3.0781-0.16797 0.40625-0.25 0.74219-0.25 1 0 0.30469 0.10938 0.45312 0.32812 0.45312 0.61328 0 1.0859-0.57812 1.4219-1.7344 0.050781-0.14453 0.097656-0.22266 0.14062-0.23438v-0.015625h0.078125c0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.15625-0.10156 0.44922-0.29688 0.875-0.40625 0.85547-0.92188 1.2812-1.5469 1.2812-0.46875 0-0.80859-0.20312-1.0156-0.60938-0.085937-0.16406-0.125-0.34766-0.125-0.54688 0-0.1875 0.046875-0.39844 0.14062-0.64062 0.60156-1.6328 0.90625-2.7227 0.90625-3.2656 0-0.64453-0.25-0.96875-0.75-0.96875-0.84375 0-1.5547 0.46484-2.125 1.3906-0.0625 0.10547-0.11719 0.21094-0.15625 0.3125l-0.1875 0.70312c-0.054688 0.21094-0.13281 0.52344-0.23438 0.9375l-0.3125 1.25c-0.15625 0.64844-0.24609 0.99609-0.26562 1.0469-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938z"/>
|
|
219
|
+
</symbol>
|
|
220
|
+
<symbol id="af" overflow="visible">
|
|
221
|
+
<path d="m9.9062-3.2656-1.2812 3.0312c-0.054688 0.125-0.12109 0.19922-0.20312 0.21875h-0.015625c-0.03125 0.011719-0.10547 0.015625-0.21875 0.015625h-7.2656c-0.23047 0-0.35547-0.035156-0.375-0.10938-0.011719-0.007813-0.015625-0.03125-0.015625-0.0625 0-0.15625 0.070312-0.24219 0.21875-0.26562h0.17188c0.60156 0 0.96875-0.0625 1.0938-0.1875 0.050781-0.070312 0.10938-0.20312 0.17188-0.39062 0-0.007813 0.003906-0.035156 0.015625-0.078125l1.8438-7.4062c0.039063-0.16406 0.0625-0.27344 0.0625-0.32812 0-0.16406-0.21484-0.25391-0.64062-0.26562h-0.26562c-0.24219 0-0.37109-0.046875-0.39062-0.14062 0-0.16406 0.070312-0.25781 0.21875-0.28125h7.2656c0.22656 0 0.35156 0.03125 0.375 0.09375h0.015625c0.007812 0.054687 0.007812 0.14844 0 0.28125l-0.28125 2.4219c-0.074219 0.21875-0.14062 0.33594-0.20312 0.34375-0.11719 0-0.17188-0.050781-0.17188-0.15625l0.015625-0.25v-0.015625c0.039063-0.25 0.0625-0.49219 0.0625-0.73438 0-0.65625-0.18359-1.082-0.54688-1.2812-0.3125-0.1875-0.83984-0.28125-1.5781-0.28125h-1.9844c-0.34375 0-0.54688 0.054688-0.60938 0.15625h-0.015625v0.015625c-0.03125 0.042969-0.054688 0.10156-0.0625 0.17188v0.015625l-0.015625 0.015625c-0.011719 0.03125-0.027344 0.089844-0.046875 0.17188l-0.84375 3.375h1.3125c0.71875 0 1.1914-0.14062 1.4219-0.42188 0.14453-0.17578 0.28516-0.49219 0.42188-0.95312 0.03125-0.16406 0.09375-0.25 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062l-0.79688 3.2812c-0.042969 0.17969-0.10938 0.27344-0.20312 0.28125-0.125 0-0.1875-0.050781-0.1875-0.15625 0-0.03125 0.015625-0.082031 0.046875-0.15625 0.0625-0.28125 0.09375-0.50781 0.09375-0.6875 0-0.25-0.074219-0.41016-0.21875-0.48438-0.17969-0.10156-0.5-0.15625-0.96875-0.15625h-1.3906l-0.95312 3.8281c-0.042969 0.16797-0.0625 0.27344-0.0625 0.3125 0 0.085938 0.039062 0.13281 0.125 0.14062h0.046875c0.0625 0.011719 0.16406 0.015625 0.3125 0.015625h2.0469c1.1328 0 1.9727-0.25781 2.5156-0.78125 0.35156-0.33203 0.73828-0.96094 1.1562-1.8906 0.039063-0.10156 0.085937-0.21094 0.14062-0.32812 0.039062-0.11328 0.10156-0.17188 0.1875-0.17188 0.11328 0 0.17188 0.054687 0.17188 0.15625 0 0.011719-0.027344 0.074219-0.078125 0.1875z"/>
|
|
222
|
+
</symbol>
|
|
223
|
+
<symbol id="ae" overflow="visible">
|
|
224
|
+
<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"/>
|
|
225
|
+
</symbol>
|
|
226
|
+
<symbol id="ad" overflow="visible">
|
|
227
|
+
<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"/>
|
|
228
|
+
</symbol>
|
|
229
|
+
<symbol id="ac" overflow="visible">
|
|
230
|
+
<path d="m6.75-4.9844-5.25 2.4844 5.25 2.4844c0.125 0.0625 0.1875 0.13281 0.1875 0.21875 0 0.10156-0.046875 0.16406-0.14062 0.1875-0.023437 0.007813-0.042969 0.015625-0.0625 0.015625-0.03125 0-0.089844-0.027344-0.17188-0.078125l-5.5469-2.6094c-0.125-0.0625-0.1875-0.13281-0.1875-0.21875 0-0.082031 0.0625-0.15625 0.1875-0.21875l5.5469-2.6094c0.082031-0.050781 0.14062-0.078125 0.17188-0.078125 0.11328 0 0.17969 0.054688 0.20312 0.15625v0.046875c0 0.085937-0.0625 0.15625-0.1875 0.21875z"/>
|
|
231
|
+
</symbol>
|
|
232
|
+
<symbol id="ab" overflow="visible">
|
|
233
|
+
<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"/>
|
|
234
|
+
</symbol>
|
|
235
|
+
<symbol id="aa" overflow="visible">
|
|
236
|
+
<path d="m2.0312-0.015625c0 0.64453-0.21094 1.2109-0.625 1.7031-0.11719 0.13281-0.21094 0.21875-0.28125 0.25-0.074219 0-0.10938-0.042969-0.10938-0.125 0-0.03125 0.035156-0.085938 0.10938-0.15625 0.40625-0.39844 0.62891-0.88672 0.67188-1.4688 0.007813-0.0625 0.015625-0.13281 0.015625-0.20312 0-0.09375-0.007812-0.14062-0.015625-0.14062-0.011719 0-0.03125 0.011719-0.0625 0.03125-0.09375 0.085938-0.21094 0.125-0.34375 0.125-0.25 0-0.41406-0.11328-0.48438-0.34375-0.03125-0.0625-0.046875-0.125-0.046875-0.1875 0-0.23828 0.10156-0.39844 0.3125-0.48438 0.0625-0.03125 0.13281-0.046875 0.21875-0.046875 0.28906 0 0.48828 0.19531 0.59375 0.57812 0.03125 0.14844 0.046875 0.30469 0.046875 0.46875z"/>
|
|
237
|
+
</symbol>
|
|
238
|
+
<symbol id="z" overflow="visible">
|
|
239
|
+
<path d="m1.2344-0.82812 0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.09375-0.48438 0.28125-1.0156 0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.03125l0.125-0.29688c0.20703-0.375 0.41406-0.60938 0.625-0.70312 0.13281-0.0625 0.27344-0.09375 0.42188-0.09375 0.51953 0 0.89844 0.21875 1.1406 0.65625 0.082031 0.16797 0.12891 0.35547 0.14062 0.5625 0.60156-0.8125 1.332-1.2188 2.1875-1.2188 0.80078 0 1.3125 0.30859 1.5312 0.92188 0.050781 0.16797 0.078125 0.35938 0.078125 0.57812 0 0.48047-0.28125 1.5078-0.84375 3.0781-0.16797 0.40625-0.25 0.74219-0.25 1 0 0.30469 0.10938 0.45312 0.32812 0.45312 0.61328 0 1.0859-0.57812 1.4219-1.7344 0.050781-0.14453 0.097656-0.22266 0.14062-0.23438v-0.015625h0.078125c0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.15625-0.10156 0.44922-0.29688 0.875-0.40625 0.85547-0.92188 1.2812-1.5469 1.2812-0.46875 0-0.80859-0.20312-1.0156-0.60938-0.085937-0.16406-0.125-0.34766-0.125-0.54688 0-0.1875 0.046875-0.39844 0.14062-0.64062 0.60156-1.6328 0.90625-2.7227 0.90625-3.2656 0-0.64453-0.25-0.96875-0.75-0.96875-0.84375 0-1.5547 0.46484-2.125 1.3906-0.0625 0.10547-0.11719 0.21094-0.15625 0.3125l-0.1875 0.70312c-0.054688 0.21094-0.13281 0.52344-0.23438 0.9375l-0.3125 1.25c-0.15625 0.64844-0.24609 0.99609-0.26562 1.0469-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938z"/>
|
|
240
|
+
</symbol>
|
|
241
|
+
<symbol id="y" overflow="visible">
|
|
242
|
+
<path d="m4.7031-2.1406c0 0.6875-0.25 1.2578-0.75 1.7031-0.42969 0.36719-0.91797 0.54688-1.4688 0.54688-0.63672 0-1.1719-0.23828-1.6094-0.71875-0.39844-0.4375-0.59375-0.94531-0.59375-1.5312 0-0.67578 0.24219-1.25 0.73438-1.7188 0.41406-0.41406 0.91016-0.625 1.4844-0.625 0.64453 0 1.1875 0.26172 1.625 0.78125 0.38281 0.4375 0.57812 0.96094 0.57812 1.5625zm-2.2031 2c0.44531 0 0.80078-0.1875 1.0625-0.5625l0.09375-0.17188c0.14453-0.28906 0.21875-0.73828 0.21875-1.3438 0-0.64453-0.085938-1.1094-0.25-1.3906-0.29297-0.41406-0.67188-0.63281-1.1406-0.65625-0.40625 0-0.74609 0.16797-1.0156 0.5-0.042969 0.054687-0.085938 0.10938-0.125 0.17188-0.15625 0.29297-0.23438 0.75-0.23438 1.375 0 0.64844 0.082031 1.1172 0.25 1.4062 0.28125 0.4375 0.66016 0.66406 1.1406 0.67188z"/>
|
|
243
|
+
</symbol>
|
|
244
|
+
<symbol id="x" overflow="visible">
|
|
245
|
+
<path d="m3.7969-0.54688c-0.34375 0.4375-0.79297 0.65625-1.3438 0.65625-0.60547 0-1.1211-0.24219-1.5469-0.73438-0.375-0.42578-0.5625-0.9375-0.5625-1.5312 0-0.6875 0.25781-1.2578 0.78125-1.7188 0.41406-0.36328 0.89453-0.54688 1.4375-0.54688 0.50781 0 0.92969 0.21094 1.2656 0.625v-2.1562c0-0.25781-0.046875-0.42188-0.14062-0.48438-0.09375-0.050781-0.30859-0.078125-0.64062-0.078125v-0.3125l1.4375-0.10938v6.0625c0 0.26172 0.050781 0.42188 0.15625 0.48438h0.015625c0.09375 0.054687 0.29688 0.078125 0.60938 0.078125v0.3125l-1.4688 0.10938zm0-2.6875c0-0.13281-0.03125-0.24219-0.09375-0.32812l-0.015625-0.03125c-0.27344-0.40625-0.63281-0.60938-1.0781-0.60938-0.46875 0-0.84375 0.21484-1.125 0.64062-0.21094 0.32422-0.3125 0.79688-0.3125 1.4219s0.09375 1.0898 0.28125 1.3906c0.26953 0.42969 0.625 0.64062 1.0625 0.64062 0.47656 0 0.86328-0.21875 1.1562-0.65625l0.015625-0.046875c0.070312-0.13281 0.10938-0.25781 0.10938-0.375z"/>
|
|
246
|
+
</symbol>
|
|
247
|
+
<symbol id="v" overflow="visible">
|
|
248
|
+
<path d="m3.7969-0.54688c-0.34375 0.4375-0.79297 0.65625-1.3438 0.65625-0.60547 0-1.1211-0.24219-1.5469-0.73438-0.375-0.42578-0.5625-0.9375-0.5625-1.5312 0-0.6875 0.25781-1.2578 0.78125-1.7188 0.41406-0.36328 0.89453-0.54688 1.4375-0.54688 0.50781 0 0.92969 0.21094 1.2656 0.625v-2.1562c0-0.25781-0.046875-0.42188-0.14062-0.48438-0.09375-0.050781-0.30859-0.078125-0.64062-0.078125v-0.3125l1.4375-0.10938v6.0625c0 0.26172 0.050781 0.42188 0.15625 0.48438h0.015625c0.09375 0.054687 0.29688 0.078125 0.60938 0.078125v0.3125l-1.4688 0.10938zm0-2.6875c0-0.13281-0.03125-0.24219-0.09375-0.32812l-0.015625-0.03125c-0.27344-0.40625-0.63281-0.60938-1.0781-0.60938-0.46875 0-0.84375 0.21484-1.125 0.64062-0.21094 0.32422-0.3125 0.79688-0.3125 1.4219s0.09375 1.0898 0.28125 1.3906c0.26953 0.42969 0.625 0.64062 1.0625 0.64062 0.47656 0 0.86328-0.21875 1.1562-0.65625l0.015625-0.046875c0.070312-0.13281 0.10938-0.25781 0.10938-0.375z"/>
|
|
249
|
+
</symbol>
|
|
250
|
+
<symbol id="u" overflow="visible">
|
|
251
|
+
<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"/>
|
|
252
|
+
</symbol>
|
|
253
|
+
<symbol id="t" overflow="visible">
|
|
254
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
255
|
+
</symbol>
|
|
256
|
+
<symbol id="s" overflow="visible">
|
|
257
|
+
<path d="m1.2344-0.82812 0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.09375-0.48438 0.28125-1.0156 0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.03125l0.125-0.29688c0.20703-0.375 0.41406-0.60938 0.625-0.70312 0.13281-0.0625 0.27344-0.09375 0.42188-0.09375 0.51953 0 0.89844 0.21875 1.1406 0.65625 0.082031 0.16797 0.12891 0.35547 0.14062 0.5625 0.60156-0.8125 1.332-1.2188 2.1875-1.2188 0.80078 0 1.3125 0.30859 1.5312 0.92188 0.050781 0.16797 0.078125 0.35938 0.078125 0.57812 0 0.48047-0.28125 1.5078-0.84375 3.0781-0.16797 0.40625-0.25 0.74219-0.25 1 0 0.30469 0.10938 0.45312 0.32812 0.45312 0.61328 0 1.0859-0.57812 1.4219-1.7344 0.050781-0.14453 0.097656-0.22266 0.14062-0.23438v-0.015625h0.078125c0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.15625-0.10156 0.44922-0.29688 0.875-0.40625 0.85547-0.92188 1.2812-1.5469 1.2812-0.46875 0-0.80859-0.20312-1.0156-0.60938-0.085937-0.16406-0.125-0.34766-0.125-0.54688 0-0.1875 0.046875-0.39844 0.14062-0.64062 0.60156-1.6328 0.90625-2.7227 0.90625-3.2656 0-0.64453-0.25-0.96875-0.75-0.96875-0.84375 0-1.5547 0.46484-2.125 1.3906-0.0625 0.10547-0.11719 0.21094-0.15625 0.3125l-0.1875 0.70312c-0.054688 0.21094-0.13281 0.52344-0.23438 0.9375l-0.3125 1.25c-0.15625 0.64844-0.24609 0.99609-0.26562 1.0469-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938z"/>
|
|
258
|
+
</symbol>
|
|
259
|
+
<symbol id="r" overflow="visible">
|
|
260
|
+
<path d="m9.9062-3.2656-1.2812 3.0312c-0.054688 0.125-0.12109 0.19922-0.20312 0.21875h-0.015625c-0.03125 0.011719-0.10547 0.015625-0.21875 0.015625h-7.2656c-0.23047 0-0.35547-0.035156-0.375-0.10938-0.011719-0.007813-0.015625-0.03125-0.015625-0.0625 0-0.15625 0.070312-0.24219 0.21875-0.26562h0.17188c0.60156 0 0.96875-0.0625 1.0938-0.1875 0.050781-0.070312 0.10938-0.20312 0.17188-0.39062 0-0.007813 0.003906-0.035156 0.015625-0.078125l1.8438-7.4062c0.039063-0.16406 0.0625-0.27344 0.0625-0.32812 0-0.16406-0.21484-0.25391-0.64062-0.26562h-0.26562c-0.24219 0-0.37109-0.046875-0.39062-0.14062 0-0.16406 0.070312-0.25781 0.21875-0.28125h7.2656c0.22656 0 0.35156 0.03125 0.375 0.09375h0.015625c0.007812 0.054687 0.007812 0.14844 0 0.28125l-0.28125 2.4219c-0.074219 0.21875-0.14062 0.33594-0.20312 0.34375-0.11719 0-0.17188-0.050781-0.17188-0.15625l0.015625-0.25v-0.015625c0.039063-0.25 0.0625-0.49219 0.0625-0.73438 0-0.65625-0.18359-1.082-0.54688-1.2812-0.3125-0.1875-0.83984-0.28125-1.5781-0.28125h-1.9844c-0.34375 0-0.54688 0.054688-0.60938 0.15625h-0.015625v0.015625c-0.03125 0.042969-0.054688 0.10156-0.0625 0.17188v0.015625l-0.015625 0.015625c-0.011719 0.03125-0.027344 0.089844-0.046875 0.17188l-0.84375 3.375h1.3125c0.71875 0 1.1914-0.14062 1.4219-0.42188 0.14453-0.17578 0.28516-0.49219 0.42188-0.95312 0.03125-0.16406 0.09375-0.25 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062l-0.79688 3.2812c-0.042969 0.17969-0.10938 0.27344-0.20312 0.28125-0.125 0-0.1875-0.050781-0.1875-0.15625 0-0.03125 0.015625-0.082031 0.046875-0.15625 0.0625-0.28125 0.09375-0.50781 0.09375-0.6875 0-0.25-0.074219-0.41016-0.21875-0.48438-0.17969-0.10156-0.5-0.15625-0.96875-0.15625h-1.3906l-0.95312 3.8281c-0.042969 0.16797-0.0625 0.27344-0.0625 0.3125 0 0.085938 0.039062 0.13281 0.125 0.14062h0.046875c0.0625 0.011719 0.16406 0.015625 0.3125 0.015625h2.0469c1.1328 0 1.9727-0.25781 2.5156-0.78125 0.35156-0.33203 0.73828-0.96094 1.1562-1.8906 0.039063-0.10156 0.085937-0.21094 0.14062-0.32812 0.039062-0.11328 0.10156-0.17188 0.1875-0.17188 0.11328 0 0.17188 0.054687 0.17188 0.15625 0 0.011719-0.027344 0.074219-0.078125 0.1875z"/>
|
|
261
|
+
</symbol>
|
|
262
|
+
<symbol id="q" overflow="visible">
|
|
263
|
+
<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"/>
|
|
264
|
+
</symbol>
|
|
265
|
+
<symbol id="p" overflow="visible">
|
|
266
|
+
<path d="m12.969-8.4844-1.8594 7.4688c-0.054687 0.16797-0.078125 0.27734-0.078125 0.32812 0 0.15625 0.21875 0.24219 0.65625 0.25h0.25c0.25 0 0.37891 0.054688 0.39062 0.15625 0 0.1875-0.089844 0.28125-0.26562 0.28125l-1.7344-0.046875h-0.015625l-1.7188 0.046875h-0.015625c-0.13672 0-0.20312-0.054688-0.20312-0.17188 0-0.15625 0.070312-0.24219 0.21875-0.26562h0.17188c0.60156 0 0.96875-0.0625 1.0938-0.1875 0.050781-0.070312 0.10938-0.20312 0.17188-0.39062v-0.078125l2.0156-8.0156h-0.015625l-5.6562 8.8594c-0.11719 0.15625-0.21875 0.24219-0.3125 0.25-0.10547 0-0.17188-0.10938-0.20312-0.32812l-1.2188-8.6719-1.9062 7.625c-0.042969 0.14844-0.0625 0.25781-0.0625 0.32812 0 0.34375 0.22266 0.54297 0.67188 0.59375 0.082031 0.011719 0.17578 0.015625 0.28125 0.015625 0.16406 0 0.25 0.054688 0.25 0.15625 0 0.1875-0.085938 0.28125-0.25 0.28125l-1.4062-0.046875h-0.03125l-1.3906 0.046875h-0.015625c-0.125 0-0.1875-0.054688-0.1875-0.17188 0-0.17578 0.082031-0.26562 0.25-0.26562 0.73828-0.019531 1.2031-0.25391 1.3906-0.70312 0.039063-0.09375 0.082031-0.20703 0.125-0.34375l1.7656-7.125c0.039062-0.14453 0.0625-0.23438 0.0625-0.26562 0-0.11328-0.074219-0.1875-0.21875-0.21875h-0.015625-0.078125c-0.21875-0.019531-0.41797-0.03125-0.59375-0.03125-0.25 0-0.38281-0.035156-0.39062-0.10938-0.011719-0.019531-0.015625-0.039063-0.015625-0.0625 0-0.15625 0.078125-0.24219 0.23438-0.26562h2.0938c0.21875 0 0.34766 0.027344 0.39062 0.078125 0.007812 0.042969 0.023438 0.125 0.046875 0.25l1.0938 7.9219 5.1094-7.9844c0.10156-0.15625 0.19531-0.23828 0.28125-0.25 0.039062-0.007813 0.12891-0.015625 0.26562-0.015625h1.8438c0.23828 0 0.36328 0.054688 0.375 0.15625 0 0.15625-0.0625 0.24609-0.1875 0.26562-0.054687 0.011719-0.13672 0.015625-0.25 0.015625-0.59375 0-0.94531 0.074219-1.0469 0.21875l-0.015625 0.015625v0.015625c-0.054687 0.0625-0.10156 0.19531-0.14062 0.39062z"/>
|
|
267
|
+
</symbol>
|
|
268
|
+
<symbol id="o" overflow="visible">
|
|
269
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
270
|
+
</symbol>
|
|
271
|
+
<symbol id="n" overflow="visible">
|
|
272
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
273
|
+
</symbol>
|
|
274
|
+
<symbol id="m" overflow="visible">
|
|
275
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
276
|
+
</symbol>
|
|
277
|
+
<symbol id="l" overflow="visible">
|
|
278
|
+
<path d="m3.3438-3.0156-0.34375 1.3594c-0.11719 0.46094-0.17188 0.75781-0.17188 0.89062 0 0.34375 0.125 0.55469 0.375 0.625 0.050781 0.023437 0.10938 0.03125 0.17188 0.03125 0.33203 0 0.64062-0.16406 0.92188-0.5 0.17578-0.21875 0.3125-0.48828 0.40625-0.8125 0.019531-0.070313 0.066406-0.10938 0.14062-0.10938 0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.16797-0.10156 0.41406-0.29688 0.73438-0.36719 0.54297-0.79688 0.8125-1.2969 0.8125-0.44922 0-0.77734-0.1875-0.98438-0.5625-0.042969-0.0625-0.074219-0.12891-0.09375-0.20312-0.15625 0.32422-0.375 0.54688-0.65625 0.67188-0.125 0.0625-0.25781 0.09375-0.39062 0.09375-0.40625 0-0.6875-0.11328-0.84375-0.34375-0.0625-0.09375-0.09375-0.19531-0.09375-0.3125 0-0.25 0.10156-0.42188 0.3125-0.51562 0.070313-0.039062 0.14844-0.0625 0.23438-0.0625 0.19531 0 0.31641 0.085938 0.35938 0.25v0.09375c0 0.23047-0.10938 0.39844-0.32812 0.5-0.042969 0.023438-0.089844 0.039062-0.14062 0.046875 0.14453 0.085937 0.3125 0.125 0.5 0.125 0.35156 0 0.63281-0.23438 0.84375-0.70312 0.039063-0.10156 0.078125-0.21875 0.10938-0.34375 0.36328-1.3516 0.54688-2.1445 0.54688-2.375-0.042969-0.41406-0.22656-0.64062-0.54688-0.67188-0.34375 0-0.66406 0.17969-0.95312 0.53125v0.015625c-0.10547 0.13672-0.19922 0.29297-0.28125 0.46875-0.03125 0.085938-0.058594 0.16406-0.078125 0.23438l-0.03125 0.0625c-0.011719 0.074219-0.054688 0.10938-0.125 0.10938-0.085938 0-0.125-0.03125-0.125-0.09375 0-0.16406 0.10938-0.40625 0.32812-0.71875 0.35156-0.55078 0.78125-0.82812 1.2812-0.82812 0.51953 0 0.88281 0.25781 1.0938 0.76562 0.20703-0.41406 0.48828-0.66406 0.84375-0.75 0.0625-0.007812 0.12891-0.015625 0.20312-0.015625 0.39453 0 0.67188 0.10938 0.82812 0.32812 0.0625 0.09375 0.09375 0.20312 0.09375 0.32812 0 0.28125-0.12109 0.46875-0.35938 0.5625-0.0625 0.011719-0.12109 0.015625-0.17188 0.015625-0.21094 0-0.33594-0.085938-0.375-0.26562-0.011719-0.019531-0.015625-0.046875-0.015625-0.078125 0-0.19531 0.097656-0.35156 0.29688-0.46875 0.0625-0.03125 0.125-0.050781 0.1875-0.0625-0.13672-0.09375-0.30469-0.14062-0.5-0.14062-0.44922 0-0.76562 0.35547-0.95312 1.0625-0.023438 0.042969-0.03125 0.085937-0.03125 0.125z"/>
|
|
279
|
+
</symbol>
|
|
280
|
+
<symbol id="j" overflow="visible">
|
|
281
|
+
<path d="m12.969-8.4844-1.8594 7.4688c-0.054687 0.16797-0.078125 0.27734-0.078125 0.32812 0 0.15625 0.21875 0.24219 0.65625 0.25h0.25c0.25 0 0.37891 0.054688 0.39062 0.15625 0 0.1875-0.089844 0.28125-0.26562 0.28125l-1.7344-0.046875h-0.015625l-1.7188 0.046875h-0.015625c-0.13672 0-0.20312-0.054688-0.20312-0.17188 0-0.15625 0.070312-0.24219 0.21875-0.26562h0.17188c0.60156 0 0.96875-0.0625 1.0938-0.1875 0.050781-0.070312 0.10938-0.20312 0.17188-0.39062v-0.078125l2.0156-8.0156h-0.015625l-5.6562 8.8594c-0.11719 0.15625-0.21875 0.24219-0.3125 0.25-0.10547 0-0.17188-0.10938-0.20312-0.32812l-1.2188-8.6719-1.9062 7.625c-0.042969 0.14844-0.0625 0.25781-0.0625 0.32812 0 0.34375 0.22266 0.54297 0.67188 0.59375 0.082031 0.011719 0.17578 0.015625 0.28125 0.015625 0.16406 0 0.25 0.054688 0.25 0.15625 0 0.1875-0.085938 0.28125-0.25 0.28125l-1.4062-0.046875h-0.03125l-1.3906 0.046875h-0.015625c-0.125 0-0.1875-0.054688-0.1875-0.17188 0-0.17578 0.082031-0.26562 0.25-0.26562 0.73828-0.019531 1.2031-0.25391 1.3906-0.70312 0.039063-0.09375 0.082031-0.20703 0.125-0.34375l1.7656-7.125c0.039062-0.14453 0.0625-0.23438 0.0625-0.26562 0-0.11328-0.074219-0.1875-0.21875-0.21875h-0.015625-0.078125c-0.21875-0.019531-0.41797-0.03125-0.59375-0.03125-0.25 0-0.38281-0.035156-0.39062-0.10938-0.011719-0.019531-0.015625-0.039063-0.015625-0.0625 0-0.15625 0.078125-0.24219 0.23438-0.26562h2.0938c0.21875 0 0.34766 0.027344 0.39062 0.078125 0.007812 0.042969 0.023438 0.125 0.046875 0.25l1.0938 7.9219 5.1094-7.9844c0.10156-0.15625 0.19531-0.23828 0.28125-0.25 0.039062-0.007813 0.12891-0.015625 0.26562-0.015625h1.8438c0.23828 0 0.36328 0.054688 0.375 0.15625 0 0.15625-0.0625 0.24609-0.1875 0.26562-0.054687 0.011719-0.13672 0.015625-0.25 0.015625-0.59375 0-0.94531 0.074219-1.0469 0.21875l-0.015625 0.015625v0.015625c-0.054687 0.0625-0.10156 0.19531-0.14062 0.39062z"/>
|
|
282
|
+
</symbol>
|
|
283
|
+
<symbol id="i" overflow="visible">
|
|
284
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
285
|
+
</symbol>
|
|
286
|
+
<symbol id="h" overflow="visible">
|
|
287
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
288
|
+
</symbol>
|
|
289
|
+
<symbol id="g" overflow="visible">
|
|
290
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
291
|
+
</symbol>
|
|
292
|
+
<symbol id="f" overflow="visible">
|
|
293
|
+
<path d="m3.3438-3.0156-0.34375 1.3594c-0.11719 0.46094-0.17188 0.75781-0.17188 0.89062 0 0.34375 0.125 0.55469 0.375 0.625 0.050781 0.023437 0.10938 0.03125 0.17188 0.03125 0.33203 0 0.64062-0.16406 0.92188-0.5 0.17578-0.21875 0.3125-0.48828 0.40625-0.8125 0.019531-0.070313 0.066406-0.10938 0.14062-0.10938 0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.16797-0.10156 0.41406-0.29688 0.73438-0.36719 0.54297-0.79688 0.8125-1.2969 0.8125-0.44922 0-0.77734-0.1875-0.98438-0.5625-0.042969-0.0625-0.074219-0.12891-0.09375-0.20312-0.15625 0.32422-0.375 0.54688-0.65625 0.67188-0.125 0.0625-0.25781 0.09375-0.39062 0.09375-0.40625 0-0.6875-0.11328-0.84375-0.34375-0.0625-0.09375-0.09375-0.19531-0.09375-0.3125 0-0.25 0.10156-0.42188 0.3125-0.51562 0.070313-0.039062 0.14844-0.0625 0.23438-0.0625 0.19531 0 0.31641 0.085938 0.35938 0.25v0.09375c0 0.23047-0.10938 0.39844-0.32812 0.5-0.042969 0.023438-0.089844 0.039062-0.14062 0.046875 0.14453 0.085937 0.3125 0.125 0.5 0.125 0.35156 0 0.63281-0.23438 0.84375-0.70312 0.039063-0.10156 0.078125-0.21875 0.10938-0.34375 0.36328-1.3516 0.54688-2.1445 0.54688-2.375-0.042969-0.41406-0.22656-0.64062-0.54688-0.67188-0.34375 0-0.66406 0.17969-0.95312 0.53125v0.015625c-0.10547 0.13672-0.19922 0.29297-0.28125 0.46875-0.03125 0.085938-0.058594 0.16406-0.078125 0.23438l-0.03125 0.0625c-0.011719 0.074219-0.054688 0.10938-0.125 0.10938-0.085938 0-0.125-0.03125-0.125-0.09375 0-0.16406 0.10938-0.40625 0.32812-0.71875 0.35156-0.55078 0.78125-0.82812 1.2812-0.82812 0.51953 0 0.88281 0.25781 1.0938 0.76562 0.20703-0.41406 0.48828-0.66406 0.84375-0.75 0.0625-0.007812 0.12891-0.015625 0.20312-0.015625 0.39453 0 0.67188 0.10938 0.82812 0.32812 0.0625 0.09375 0.09375 0.20312 0.09375 0.32812 0 0.28125-0.12109 0.46875-0.35938 0.5625-0.0625 0.011719-0.12109 0.015625-0.17188 0.015625-0.21094 0-0.33594-0.085938-0.375-0.26562-0.011719-0.019531-0.015625-0.046875-0.015625-0.078125 0-0.19531 0.097656-0.35156 0.29688-0.46875 0.0625-0.03125 0.125-0.050781 0.1875-0.0625-0.13672-0.09375-0.30469-0.14062-0.5-0.14062-0.44922 0-0.76562 0.35547-0.95312 1.0625-0.023438 0.042969-0.03125 0.085937-0.03125 0.125z"/>
|
|
294
|
+
</symbol>
|
|
295
|
+
<symbol id="e" overflow="visible">
|
|
296
|
+
<path d="m12.969-8.4844-1.8594 7.4688c-0.054687 0.16797-0.078125 0.27734-0.078125 0.32812 0 0.15625 0.21875 0.24219 0.65625 0.25h0.25c0.25 0 0.37891 0.054688 0.39062 0.15625 0 0.1875-0.089844 0.28125-0.26562 0.28125l-1.7344-0.046875h-0.015625l-1.7188 0.046875h-0.015625c-0.13672 0-0.20312-0.054688-0.20312-0.17188 0-0.15625 0.070312-0.24219 0.21875-0.26562h0.17188c0.60156 0 0.96875-0.0625 1.0938-0.1875 0.050781-0.070312 0.10938-0.20312 0.17188-0.39062v-0.078125l2.0156-8.0156h-0.015625l-5.6562 8.8594c-0.11719 0.15625-0.21875 0.24219-0.3125 0.25-0.10547 0-0.17188-0.10938-0.20312-0.32812l-1.2188-8.6719-1.9062 7.625c-0.042969 0.14844-0.0625 0.25781-0.0625 0.32812 0 0.34375 0.22266 0.54297 0.67188 0.59375 0.082031 0.011719 0.17578 0.015625 0.28125 0.015625 0.16406 0 0.25 0.054688 0.25 0.15625 0 0.1875-0.085938 0.28125-0.25 0.28125l-1.4062-0.046875h-0.03125l-1.3906 0.046875h-0.015625c-0.125 0-0.1875-0.054688-0.1875-0.17188 0-0.17578 0.082031-0.26562 0.25-0.26562 0.73828-0.019531 1.2031-0.25391 1.3906-0.70312 0.039063-0.09375 0.082031-0.20703 0.125-0.34375l1.7656-7.125c0.039062-0.14453 0.0625-0.23438 0.0625-0.26562 0-0.11328-0.074219-0.1875-0.21875-0.21875h-0.015625-0.078125c-0.21875-0.019531-0.41797-0.03125-0.59375-0.03125-0.25 0-0.38281-0.035156-0.39062-0.10938-0.011719-0.019531-0.015625-0.039063-0.015625-0.0625 0-0.15625 0.078125-0.24219 0.23438-0.26562h2.0938c0.21875 0 0.34766 0.027344 0.39062 0.078125 0.007812 0.042969 0.023438 0.125 0.046875 0.25l1.0938 7.9219 5.1094-7.9844c0.10156-0.15625 0.19531-0.23828 0.28125-0.25 0.039062-0.007813 0.12891-0.015625 0.26562-0.015625h1.8438c0.23828 0 0.36328 0.054688 0.375 0.15625 0 0.15625-0.0625 0.24609-0.1875 0.26562-0.054687 0.011719-0.13672 0.015625-0.25 0.015625-0.59375 0-0.94531 0.074219-1.0469 0.21875l-0.015625 0.015625v0.015625c-0.054687 0.0625-0.10156 0.19531-0.14062 0.39062z"/>
|
|
297
|
+
</symbol>
|
|
298
|
+
<symbol id="a" overflow="visible">
|
|
299
|
+
<path d="m1.7812-3.3594-1.25 2.9531c-0.03125 0.0625-0.0625 0.09375-0.09375 0.09375-0.085938 0-0.15234-0.023438-0.20312-0.078125-0.023437-0.007813-0.03125-0.023437-0.03125-0.046875 0-0.007812 0.003906-0.039062 0.015625-0.09375l0.85938-3.0625c0.050781-0.1875 0.14844-0.28906 0.29688-0.3125h0.0625c0.16406 0 0.28516 0.070312 0.35938 0.20312 0.019531 0.042969 0.03125 0.09375 0.03125 0.15625s-0.015625 0.125-0.046875 0.1875z"/>
|
|
300
|
+
</symbol>
|
|
301
|
+
<symbol id="d" overflow="visible">
|
|
302
|
+
<path d="m3.3438-3.0156-0.34375 1.3594c-0.11719 0.46094-0.17188 0.75781-0.17188 0.89062 0 0.34375 0.125 0.55469 0.375 0.625 0.050781 0.023437 0.10938 0.03125 0.17188 0.03125 0.33203 0 0.64062-0.16406 0.92188-0.5 0.17578-0.21875 0.3125-0.48828 0.40625-0.8125 0.019531-0.070313 0.066406-0.10938 0.14062-0.10938 0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.16797-0.10156 0.41406-0.29688 0.73438-0.36719 0.54297-0.79688 0.8125-1.2969 0.8125-0.44922 0-0.77734-0.1875-0.98438-0.5625-0.042969-0.0625-0.074219-0.12891-0.09375-0.20312-0.15625 0.32422-0.375 0.54688-0.65625 0.67188-0.125 0.0625-0.25781 0.09375-0.39062 0.09375-0.40625 0-0.6875-0.11328-0.84375-0.34375-0.0625-0.09375-0.09375-0.19531-0.09375-0.3125 0-0.25 0.10156-0.42188 0.3125-0.51562 0.070313-0.039062 0.14844-0.0625 0.23438-0.0625 0.19531 0 0.31641 0.085938 0.35938 0.25v0.09375c0 0.23047-0.10938 0.39844-0.32812 0.5-0.042969 0.023438-0.089844 0.039062-0.14062 0.046875 0.14453 0.085937 0.3125 0.125 0.5 0.125 0.35156 0 0.63281-0.23438 0.84375-0.70312 0.039063-0.10156 0.078125-0.21875 0.10938-0.34375 0.36328-1.3516 0.54688-2.1445 0.54688-2.375-0.042969-0.41406-0.22656-0.64062-0.54688-0.67188-0.34375 0-0.66406 0.17969-0.95312 0.53125v0.015625c-0.10547 0.13672-0.19922 0.29297-0.28125 0.46875-0.03125 0.085938-0.058594 0.16406-0.078125 0.23438l-0.03125 0.0625c-0.011719 0.074219-0.054688 0.10938-0.125 0.10938-0.085938 0-0.125-0.03125-0.125-0.09375 0-0.16406 0.10938-0.40625 0.32812-0.71875 0.35156-0.55078 0.78125-0.82812 1.2812-0.82812 0.51953 0 0.88281 0.25781 1.0938 0.76562 0.20703-0.41406 0.48828-0.66406 0.84375-0.75 0.0625-0.007812 0.12891-0.015625 0.20312-0.015625 0.39453 0 0.67188 0.10938 0.82812 0.32812 0.0625 0.09375 0.09375 0.20312 0.09375 0.32812 0 0.28125-0.12109 0.46875-0.35938 0.5625-0.0625 0.011719-0.12109 0.015625-0.17188 0.015625-0.21094 0-0.33594-0.085938-0.375-0.26562-0.011719-0.019531-0.015625-0.046875-0.015625-0.078125 0-0.19531 0.097656-0.35156 0.29688-0.46875 0.0625-0.03125 0.125-0.050781 0.1875-0.0625-0.13672-0.09375-0.30469-0.14062-0.5-0.14062-0.44922 0-0.76562 0.35547-0.95312 1.0625-0.023438 0.042969-0.03125 0.085937-0.03125 0.125z"/>
|
|
303
|
+
</symbol>
|
|
304
|
+
<symbol id="c" overflow="visible">
|
|
305
|
+
<path d="m12.969-8.4844-1.8594 7.4688c-0.054687 0.16797-0.078125 0.27734-0.078125 0.32812 0 0.15625 0.21875 0.24219 0.65625 0.25h0.25c0.25 0 0.37891 0.054688 0.39062 0.15625 0 0.1875-0.089844 0.28125-0.26562 0.28125l-1.7344-0.046875h-0.015625l-1.7188 0.046875h-0.015625c-0.13672 0-0.20312-0.054688-0.20312-0.17188 0-0.15625 0.070312-0.24219 0.21875-0.26562h0.17188c0.60156 0 0.96875-0.0625 1.0938-0.1875 0.050781-0.070312 0.10938-0.20312 0.17188-0.39062v-0.078125l2.0156-8.0156h-0.015625l-5.6562 8.8594c-0.11719 0.15625-0.21875 0.24219-0.3125 0.25-0.10547 0-0.17188-0.10938-0.20312-0.32812l-1.2188-8.6719-1.9062 7.625c-0.042969 0.14844-0.0625 0.25781-0.0625 0.32812 0 0.34375 0.22266 0.54297 0.67188 0.59375 0.082031 0.011719 0.17578 0.015625 0.28125 0.015625 0.16406 0 0.25 0.054688 0.25 0.15625 0 0.1875-0.085938 0.28125-0.25 0.28125l-1.4062-0.046875h-0.03125l-1.3906 0.046875h-0.015625c-0.125 0-0.1875-0.054688-0.1875-0.17188 0-0.17578 0.082031-0.26562 0.25-0.26562 0.73828-0.019531 1.2031-0.25391 1.3906-0.70312 0.039063-0.09375 0.082031-0.20703 0.125-0.34375l1.7656-7.125c0.039062-0.14453 0.0625-0.23438 0.0625-0.26562 0-0.11328-0.074219-0.1875-0.21875-0.21875h-0.015625-0.078125c-0.21875-0.019531-0.41797-0.03125-0.59375-0.03125-0.25 0-0.38281-0.035156-0.39062-0.10938-0.011719-0.019531-0.015625-0.039063-0.015625-0.0625 0-0.15625 0.078125-0.24219 0.23438-0.26562h2.0938c0.21875 0 0.34766 0.027344 0.39062 0.078125 0.007812 0.042969 0.023438 0.125 0.046875 0.25l1.0938 7.9219 5.1094-7.9844c0.10156-0.15625 0.19531-0.23828 0.28125-0.25 0.039062-0.007813 0.12891-0.015625 0.26562-0.015625h1.8438c0.23828 0 0.36328 0.054688 0.375 0.15625 0 0.15625-0.0625 0.24609-0.1875 0.26562-0.054687 0.011719-0.13672 0.015625-0.25 0.015625-0.59375 0-0.94531 0.074219-1.0469 0.21875l-0.015625 0.015625v0.015625c-0.054687 0.0625-0.10156 0.19531-0.14062 0.39062z"/>
|
|
306
|
+
</symbol>
|
|
307
|
+
<symbol id="b" overflow="visible">
|
|
308
|
+
<path d="m3.3438-3.0156-0.34375 1.3594c-0.11719 0.46094-0.17188 0.75781-0.17188 0.89062 0 0.34375 0.125 0.55469 0.375 0.625 0.050781 0.023437 0.10938 0.03125 0.17188 0.03125 0.33203 0 0.64062-0.16406 0.92188-0.5 0.17578-0.21875 0.3125-0.48828 0.40625-0.8125 0.019531-0.070313 0.066406-0.10938 0.14062-0.10938 0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.16797-0.10156 0.41406-0.29688 0.73438-0.36719 0.54297-0.79688 0.8125-1.2969 0.8125-0.44922 0-0.77734-0.1875-0.98438-0.5625-0.042969-0.0625-0.074219-0.12891-0.09375-0.20312-0.15625 0.32422-0.375 0.54688-0.65625 0.67188-0.125 0.0625-0.25781 0.09375-0.39062 0.09375-0.40625 0-0.6875-0.11328-0.84375-0.34375-0.0625-0.09375-0.09375-0.19531-0.09375-0.3125 0-0.25 0.10156-0.42188 0.3125-0.51562 0.070313-0.039062 0.14844-0.0625 0.23438-0.0625 0.19531 0 0.31641 0.085938 0.35938 0.25v0.09375c0 0.23047-0.10938 0.39844-0.32812 0.5-0.042969 0.023438-0.089844 0.039062-0.14062 0.046875 0.14453 0.085937 0.3125 0.125 0.5 0.125 0.35156 0 0.63281-0.23438 0.84375-0.70312 0.039063-0.10156 0.078125-0.21875 0.10938-0.34375 0.36328-1.3516 0.54688-2.1445 0.54688-2.375-0.042969-0.41406-0.22656-0.64062-0.54688-0.67188-0.34375 0-0.66406 0.17969-0.95312 0.53125v0.015625c-0.10547 0.13672-0.19922 0.29297-0.28125 0.46875-0.03125 0.085938-0.058594 0.16406-0.078125 0.23438l-0.03125 0.0625c-0.011719 0.074219-0.054688 0.10938-0.125 0.10938-0.085938 0-0.125-0.03125-0.125-0.09375 0-0.16406 0.10938-0.40625 0.32812-0.71875 0.35156-0.55078 0.78125-0.82812 1.2812-0.82812 0.51953 0 0.88281 0.25781 1.0938 0.76562 0.20703-0.41406 0.48828-0.66406 0.84375-0.75 0.0625-0.007812 0.12891-0.015625 0.20312-0.015625 0.39453 0 0.67188 0.10938 0.82812 0.32812 0.0625 0.09375 0.09375 0.20312 0.09375 0.32812 0 0.28125-0.12109 0.46875-0.35938 0.5625-0.0625 0.011719-0.12109 0.015625-0.17188 0.015625-0.21094 0-0.33594-0.085938-0.375-0.26562-0.011719-0.019531-0.015625-0.046875-0.015625-0.078125 0-0.19531 0.097656-0.35156 0.29688-0.46875 0.0625-0.03125 0.125-0.050781 0.1875-0.0625-0.13672-0.09375-0.30469-0.14062-0.5-0.14062-0.44922 0-0.76562 0.35547-0.95312 1.0625-0.023438 0.042969-0.03125 0.085937-0.03125 0.125z"/>
|
|
309
|
+
</symbol>
|
|
310
|
+
<symbol id="da" overflow="visible">
|
|
311
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
312
|
+
</symbol>
|
|
313
|
+
<symbol id="cz" overflow="visible">
|
|
314
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
315
|
+
</symbol>
|
|
316
|
+
<symbol id="cy" overflow="visible">
|
|
317
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
318
|
+
</symbol>
|
|
319
|
+
<symbol id="cx" overflow="visible">
|
|
320
|
+
<path d="m12.969-8.4844-1.8594 7.4688c-0.054687 0.16797-0.078125 0.27734-0.078125 0.32812 0 0.15625 0.21875 0.24219 0.65625 0.25h0.25c0.25 0 0.37891 0.054688 0.39062 0.15625 0 0.1875-0.089844 0.28125-0.26562 0.28125l-1.7344-0.046875h-0.015625l-1.7188 0.046875h-0.015625c-0.13672 0-0.20312-0.054688-0.20312-0.17188 0-0.15625 0.070312-0.24219 0.21875-0.26562h0.17188c0.60156 0 0.96875-0.0625 1.0938-0.1875 0.050781-0.070312 0.10938-0.20312 0.17188-0.39062v-0.078125l2.0156-8.0156h-0.015625l-5.6562 8.8594c-0.11719 0.15625-0.21875 0.24219-0.3125 0.25-0.10547 0-0.17188-0.10938-0.20312-0.32812l-1.2188-8.6719-1.9062 7.625c-0.042969 0.14844-0.0625 0.25781-0.0625 0.32812 0 0.34375 0.22266 0.54297 0.67188 0.59375 0.082031 0.011719 0.17578 0.015625 0.28125 0.015625 0.16406 0 0.25 0.054688 0.25 0.15625 0 0.1875-0.085938 0.28125-0.25 0.28125l-1.4062-0.046875h-0.03125l-1.3906 0.046875h-0.015625c-0.125 0-0.1875-0.054688-0.1875-0.17188 0-0.17578 0.082031-0.26562 0.25-0.26562 0.73828-0.019531 1.2031-0.25391 1.3906-0.70312 0.039063-0.09375 0.082031-0.20703 0.125-0.34375l1.7656-7.125c0.039062-0.14453 0.0625-0.23438 0.0625-0.26562 0-0.11328-0.074219-0.1875-0.21875-0.21875h-0.015625-0.078125c-0.21875-0.019531-0.41797-0.03125-0.59375-0.03125-0.25 0-0.38281-0.035156-0.39062-0.10938-0.011719-0.019531-0.015625-0.039063-0.015625-0.0625 0-0.15625 0.078125-0.24219 0.23438-0.26562h2.0938c0.21875 0 0.34766 0.027344 0.39062 0.078125 0.007812 0.042969 0.023438 0.125 0.046875 0.25l1.0938 7.9219 5.1094-7.9844c0.10156-0.15625 0.19531-0.23828 0.28125-0.25 0.039062-0.007813 0.12891-0.015625 0.26562-0.015625h1.8438c0.23828 0 0.36328 0.054688 0.375 0.15625 0 0.15625-0.0625 0.24609-0.1875 0.26562-0.054687 0.011719-0.13672 0.015625-0.25 0.015625-0.59375 0-0.94531 0.074219-1.0469 0.21875l-0.015625 0.015625v0.015625c-0.054687 0.0625-0.10156 0.19531-0.14062 0.39062z"/>
|
|
321
|
+
</symbol>
|
|
322
|
+
<symbol id="cw" overflow="visible">
|
|
323
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
324
|
+
</symbol>
|
|
325
|
+
<symbol id="cv" overflow="visible">
|
|
326
|
+
<path d="m1.2188-5.1094 1.1875 4.3438 0.046875 0.14062c0 0.042969-0.039063 0.078125-0.10938 0.10938l-0.03125 0.015625c-0.10547 0.03125-0.17188 0.046875-0.20312 0.046875-0.042969 0-0.074219-0.03125-0.09375-0.09375-0.011719-0.007813-0.023437-0.03125-0.03125-0.0625l-1.7969-4.1719c-0.042969-0.10156-0.0625-0.19531-0.0625-0.28125 0-0.21875 0.10938-0.37891 0.32812-0.48438 0.070313-0.03125 0.14844-0.046875 0.23438-0.046875 0.26953 0 0.44531 0.16406 0.53125 0.48438z"/>
|
|
327
|
+
</symbol>
|
|
328
|
+
<clipPath id="de">
|
|
329
|
+
<path d="m34 196h14v10h-14z"/>
|
|
330
|
+
</clipPath>
|
|
331
|
+
</defs>
|
|
332
|
+
<rect width="156" height="221" fill="#fff"/>
|
|
333
|
+
<g>
|
|
334
|
+
<use x="18.40625" y="15.621094" xlink:href="#dd"/>
|
|
335
|
+
</g>
|
|
336
|
+
<g>
|
|
337
|
+
<use x="10" y="23.863281" xlink:href="#dc"/>
|
|
338
|
+
</g>
|
|
339
|
+
<g>
|
|
340
|
+
<use x="13.195312" y="21.480469" xlink:href="#cl"/>
|
|
341
|
+
</g>
|
|
342
|
+
<g>
|
|
343
|
+
<use x="33.417969" y="23.863281" xlink:href="#ca"/>
|
|
344
|
+
</g>
|
|
345
|
+
<g>
|
|
346
|
+
<use x="14.246094" y="51.617188" xlink:href="#bp"/>
|
|
347
|
+
</g>
|
|
348
|
+
<g>
|
|
349
|
+
<use x="19.84375" y="51.617188" xlink:href="#be"/>
|
|
350
|
+
</g>
|
|
351
|
+
<g>
|
|
352
|
+
<use x="27.46875" y="51.617188" xlink:href="#at"/>
|
|
353
|
+
</g>
|
|
354
|
+
<g>
|
|
355
|
+
<use x="38.945313" y="36.179688" xlink:href="#ai"/>
|
|
356
|
+
</g>
|
|
357
|
+
<g>
|
|
358
|
+
<use x="67.292969" y="17.28125" xlink:href="#w"/>
|
|
359
|
+
</g>
|
|
360
|
+
<g>
|
|
361
|
+
<use x="49.28125" y="36.179688" xlink:href="#k"/>
|
|
362
|
+
</g>
|
|
363
|
+
<g>
|
|
364
|
+
<use x="56.679688" y="30.398438" xlink:href="#db"/>
|
|
365
|
+
</g>
|
|
366
|
+
<g>
|
|
367
|
+
<use x="56.679688" y="39.640625" xlink:href="#cu"/>
|
|
368
|
+
</g>
|
|
369
|
+
<g>
|
|
370
|
+
<use x="62.082031" y="21.480469" xlink:href="#ct"/>
|
|
371
|
+
</g>
|
|
372
|
+
<g>
|
|
373
|
+
<use x="63.128906" y="51.128906" xlink:href="#cs"/>
|
|
374
|
+
</g>
|
|
375
|
+
<g>
|
|
376
|
+
<use x="68.730469" y="51.128906" xlink:href="#cr"/>
|
|
377
|
+
</g>
|
|
378
|
+
<g>
|
|
379
|
+
<use x="76.351563" y="51.128906" xlink:href="#cq"/>
|
|
380
|
+
</g>
|
|
381
|
+
<g>
|
|
382
|
+
<use x="84.636719" y="36.179688" xlink:href="#cp"/>
|
|
383
|
+
</g>
|
|
384
|
+
<g>
|
|
385
|
+
<use x="92.636719" y="38.28125" xlink:href="#co"/>
|
|
386
|
+
</g>
|
|
387
|
+
<g>
|
|
388
|
+
<use x="64.167969" y="63.304688" xlink:href="#cn"/>
|
|
389
|
+
</g>
|
|
390
|
+
<g>
|
|
391
|
+
<use x="50.371094" y="71.550781" xlink:href="#cm"/>
|
|
392
|
+
</g>
|
|
393
|
+
<g>
|
|
394
|
+
<use x="53.066406" y="71.550781" xlink:href="#ck"/>
|
|
395
|
+
</g>
|
|
396
|
+
<g>
|
|
397
|
+
<use x="55.761719" y="71.550781" xlink:href="#cj"/>
|
|
398
|
+
</g>
|
|
399
|
+
<g>
|
|
400
|
+
<use x="10" y="90.65625" xlink:href="#ci"/>
|
|
401
|
+
</g>
|
|
402
|
+
<g>
|
|
403
|
+
<use x="12.722656" y="90.65625" xlink:href="#ch"/>
|
|
404
|
+
</g>
|
|
405
|
+
<g>
|
|
406
|
+
<use x="17.078125" y="90.65625" xlink:href="#cg"/>
|
|
407
|
+
</g>
|
|
408
|
+
<g>
|
|
409
|
+
<use x="20.070312" y="90.65625" xlink:href="#cf"/>
|
|
410
|
+
</g>
|
|
411
|
+
<g>
|
|
412
|
+
<use x="27.148437" y="90.65625" xlink:href="#ce"/>
|
|
413
|
+
</g>
|
|
414
|
+
<g>
|
|
415
|
+
<use x="32.867187" y="90.65625" xlink:href="#cd"/>
|
|
416
|
+
</g>
|
|
417
|
+
<g>
|
|
418
|
+
<use x="37.765625" y="90.65625" xlink:href="#cc"/>
|
|
419
|
+
</g>
|
|
420
|
+
<g>
|
|
421
|
+
<use x="41.578125" y="90.65625" xlink:href="#cb"/>
|
|
422
|
+
</g>
|
|
423
|
+
<g>
|
|
424
|
+
<use x="45.390625" y="90.65625" xlink:href="#bz"/>
|
|
425
|
+
</g>
|
|
426
|
+
<g>
|
|
427
|
+
<use x="50.289063" y="90.65625" xlink:href="#by"/>
|
|
428
|
+
</g>
|
|
429
|
+
<g>
|
|
430
|
+
<use x="58.957031" y="69.164063" xlink:href="#bx"/>
|
|
431
|
+
</g>
|
|
432
|
+
<g>
|
|
433
|
+
<use x="79.179688" y="71.550781" xlink:href="#bw"/>
|
|
434
|
+
</g>
|
|
435
|
+
<g>
|
|
436
|
+
<use x="81.871094" y="71.550781" xlink:href="#bv"/>
|
|
437
|
+
</g>
|
|
438
|
+
<g>
|
|
439
|
+
<use x="84.566406" y="71.550781" xlink:href="#bu"/>
|
|
440
|
+
</g>
|
|
441
|
+
<g>
|
|
442
|
+
<use x="79.179688" y="90.65625" xlink:href="#bt"/>
|
|
443
|
+
</g>
|
|
444
|
+
<g>
|
|
445
|
+
<use x="83.015625" y="90.65625" xlink:href="#bs"/>
|
|
446
|
+
</g>
|
|
447
|
+
<g>
|
|
448
|
+
<use x="85.738281" y="90.65625" xlink:href="#br"/>
|
|
449
|
+
</g>
|
|
450
|
+
<g>
|
|
451
|
+
<use x="90.636719" y="90.65625" xlink:href="#bq"/>
|
|
452
|
+
</g>
|
|
453
|
+
<g>
|
|
454
|
+
<use x="95.8125" y="90.65625" xlink:href="#bo"/>
|
|
455
|
+
</g>
|
|
456
|
+
<g>
|
|
457
|
+
<use x="102.886719" y="90.65625" xlink:href="#bn"/>
|
|
458
|
+
</g>
|
|
459
|
+
<g>
|
|
460
|
+
<use x="108.605469" y="90.65625" xlink:href="#bm"/>
|
|
461
|
+
</g>
|
|
462
|
+
<g>
|
|
463
|
+
<use x="113.503906" y="90.65625" xlink:href="#bl"/>
|
|
464
|
+
</g>
|
|
465
|
+
<g>
|
|
466
|
+
<use x="117.316406" y="90.65625" xlink:href="#bk"/>
|
|
467
|
+
</g>
|
|
468
|
+
<g>
|
|
469
|
+
<use x="121.128906" y="90.65625" xlink:href="#bj"/>
|
|
470
|
+
</g>
|
|
471
|
+
<g>
|
|
472
|
+
<use x="126.027344" y="90.65625" xlink:href="#bi"/>
|
|
473
|
+
</g>
|
|
474
|
+
<g>
|
|
475
|
+
<use x="37.488281" y="101.699219" xlink:href="#bh"/>
|
|
476
|
+
</g>
|
|
477
|
+
<g>
|
|
478
|
+
<use x="42.660156" y="101.699219" xlink:href="#bg"/>
|
|
479
|
+
</g>
|
|
480
|
+
<g>
|
|
481
|
+
<use x="48.105469" y="101.699219" xlink:href="#bf"/>
|
|
482
|
+
</g>
|
|
483
|
+
<g>
|
|
484
|
+
<use x="50.828125" y="101.699219" xlink:href="#bd"/>
|
|
485
|
+
</g>
|
|
486
|
+
<g>
|
|
487
|
+
<use x="54.640625" y="101.699219" xlink:href="#bc"/>
|
|
488
|
+
</g>
|
|
489
|
+
<g>
|
|
490
|
+
<use x="62.261719" y="101.699219" xlink:href="#bb"/>
|
|
491
|
+
</g>
|
|
492
|
+
<g>
|
|
493
|
+
<use x="64.984375" y="101.699219" xlink:href="#ba"/>
|
|
494
|
+
</g>
|
|
495
|
+
<g>
|
|
496
|
+
<use x="69.882812" y="101.699219" xlink:href="#az"/>
|
|
497
|
+
</g>
|
|
498
|
+
<g>
|
|
499
|
+
<use x="75.328125" y="101.699219" xlink:href="#ay"/>
|
|
500
|
+
</g>
|
|
501
|
+
<g>
|
|
502
|
+
<use x="83.496094" y="101.699219" xlink:href="#ax"/>
|
|
503
|
+
</g>
|
|
504
|
+
<g>
|
|
505
|
+
<use x="87.304688" y="101.699219" xlink:href="#aw"/>
|
|
506
|
+
</g>
|
|
507
|
+
<g>
|
|
508
|
+
<use x="91.660156" y="101.699219" xlink:href="#av"/>
|
|
509
|
+
</g>
|
|
510
|
+
<g>
|
|
511
|
+
<use x="96.832031" y="101.699219" xlink:href="#au"/>
|
|
512
|
+
</g>
|
|
513
|
+
<g>
|
|
514
|
+
<use x="137.027344" y="83.867188" xlink:href="#as"/>
|
|
515
|
+
</g>
|
|
516
|
+
<g>
|
|
517
|
+
<use x="25.933594" y="112.734375" xlink:href="#ar"/>
|
|
518
|
+
</g>
|
|
519
|
+
<g>
|
|
520
|
+
<use x="46.15625" y="115.117188" xlink:href="#aq"/>
|
|
521
|
+
</g>
|
|
522
|
+
<g>
|
|
523
|
+
<use x="10" y="143.363281" xlink:href="#ap"/>
|
|
524
|
+
</g>
|
|
525
|
+
<g>
|
|
526
|
+
<use x="15.882812" y="143.363281" xlink:href="#ao"/>
|
|
527
|
+
</g>
|
|
528
|
+
<g>
|
|
529
|
+
<use x="23.503906" y="143.363281" xlink:href="#an"/>
|
|
530
|
+
</g>
|
|
531
|
+
<g>
|
|
532
|
+
<use x="28.914062" y="143.363281" xlink:href="#am"/>
|
|
533
|
+
</g>
|
|
534
|
+
<g>
|
|
535
|
+
<use x="34.359375" y="143.363281" xlink:href="#al"/>
|
|
536
|
+
</g>
|
|
537
|
+
<g>
|
|
538
|
+
<use x="46.03125" y="143.363281" xlink:href="#ak"/>
|
|
539
|
+
</g>
|
|
540
|
+
<g>
|
|
541
|
+
<use x="51.203125" y="143.363281" xlink:href="#aj"/>
|
|
542
|
+
</g>
|
|
543
|
+
<g>
|
|
544
|
+
<use x="56.644531" y="143.363281" xlink:href="#ah"/>
|
|
545
|
+
</g>
|
|
546
|
+
<g>
|
|
547
|
+
<use x="64.425781" y="127.433594" xlink:href="#ag"/>
|
|
548
|
+
</g>
|
|
549
|
+
<g>
|
|
550
|
+
<use x="72.828125" y="127.433594" xlink:href="#af"/>
|
|
551
|
+
</g>
|
|
552
|
+
<g>
|
|
553
|
+
<use x="83.160156" y="129.535156" xlink:href="#ae"/>
|
|
554
|
+
</g>
|
|
555
|
+
<g>
|
|
556
|
+
<use x="10" y="159.539063" xlink:href="#ad"/>
|
|
557
|
+
</g>
|
|
558
|
+
<g>
|
|
559
|
+
<use x="15.882812" y="159.539063" xlink:href="#ac"/>
|
|
560
|
+
</g>
|
|
561
|
+
<g>
|
|
562
|
+
<use x="23.503906" y="159.539063" xlink:href="#ab"/>
|
|
563
|
+
</g>
|
|
564
|
+
<g>
|
|
565
|
+
<use x="28.914062" y="159.539063" xlink:href="#aa"/>
|
|
566
|
+
</g>
|
|
567
|
+
<g>
|
|
568
|
+
<use x="34.359375" y="159.539063" xlink:href="#z"/>
|
|
569
|
+
</g>
|
|
570
|
+
<g>
|
|
571
|
+
<use x="46.03125" y="159.539063" xlink:href="#y"/>
|
|
572
|
+
</g>
|
|
573
|
+
<g>
|
|
574
|
+
<use x="51.203125" y="159.539063" xlink:href="#x"/>
|
|
575
|
+
</g>
|
|
576
|
+
<g>
|
|
577
|
+
<use x="56.644531" y="159.539063" xlink:href="#v"/>
|
|
578
|
+
</g>
|
|
579
|
+
<g>
|
|
580
|
+
<use x="25.933594" y="166.0625" xlink:href="#u"/>
|
|
581
|
+
</g>
|
|
582
|
+
<g>
|
|
583
|
+
<use x="46.15625" y="168.445313" xlink:href="#t"/>
|
|
584
|
+
</g>
|
|
585
|
+
<g>
|
|
586
|
+
<use x="64.425781" y="180.761719" xlink:href="#s"/>
|
|
587
|
+
</g>
|
|
588
|
+
<g>
|
|
589
|
+
<use x="72.828125" y="180.761719" xlink:href="#r"/>
|
|
590
|
+
</g>
|
|
591
|
+
<g>
|
|
592
|
+
<use x="83.160156" y="182.863281" xlink:href="#q"/>
|
|
593
|
+
</g>
|
|
594
|
+
<g>
|
|
595
|
+
<use x="10" y="205.882813" xlink:href="#p"/>
|
|
596
|
+
</g>
|
|
597
|
+
<g>
|
|
598
|
+
<use x="25.109375" y="200.101563" xlink:href="#o"/>
|
|
599
|
+
</g>
|
|
600
|
+
<g>
|
|
601
|
+
<use x="27.804687" y="200.101563" xlink:href="#n"/>
|
|
602
|
+
</g>
|
|
603
|
+
<g>
|
|
604
|
+
<use x="30.5" y="200.101563" xlink:href="#m"/>
|
|
605
|
+
</g>
|
|
606
|
+
<g>
|
|
607
|
+
<use x="23.582031" y="209.34375" xlink:href="#l"/>
|
|
608
|
+
</g>
|
|
609
|
+
<g clip-path="url(#de)">
|
|
610
|
+
<g>
|
|
611
|
+
<use x="33.691406" y="205.882813" xlink:href="#j"/>
|
|
612
|
+
</g>
|
|
613
|
+
</g>
|
|
614
|
+
<g>
|
|
615
|
+
<use x="48.800781" y="200.101563" xlink:href="#i"/>
|
|
616
|
+
</g>
|
|
617
|
+
<g>
|
|
618
|
+
<use x="51.496094" y="200.101563" xlink:href="#h"/>
|
|
619
|
+
</g>
|
|
620
|
+
<g>
|
|
621
|
+
<use x="54.191406" y="200.101563" xlink:href="#g"/>
|
|
622
|
+
</g>
|
|
623
|
+
<g>
|
|
624
|
+
<use x="47.273437" y="209.34375" xlink:href="#f"/>
|
|
625
|
+
</g>
|
|
626
|
+
<g>
|
|
627
|
+
<use x="57.386719" y="205.882813" xlink:href="#e"/>
|
|
628
|
+
</g>
|
|
629
|
+
<g>
|
|
630
|
+
<use x="72.496094" y="196.109375" xlink:href="#a"/>
|
|
631
|
+
</g>
|
|
632
|
+
<g>
|
|
633
|
+
<use x="74.421875" y="196.109375" xlink:href="#a"/>
|
|
634
|
+
</g>
|
|
635
|
+
<g>
|
|
636
|
+
<use x="76.34375" y="196.109375" xlink:href="#a"/>
|
|
637
|
+
</g>
|
|
638
|
+
<g>
|
|
639
|
+
<use x="70.96875" y="209.34375" xlink:href="#d"/>
|
|
640
|
+
</g>
|
|
641
|
+
<g>
|
|
642
|
+
<use x="79.269531" y="205.882813" xlink:href="#c"/>
|
|
643
|
+
</g>
|
|
644
|
+
<g>
|
|
645
|
+
<use x="92.851563" y="207.980469" xlink:href="#b"/>
|
|
646
|
+
</g>
|
|
647
|
+
<g>
|
|
648
|
+
<use x="98.453125" y="200.097656" xlink:href="#da"/>
|
|
649
|
+
</g>
|
|
650
|
+
<g>
|
|
651
|
+
<use x="101.148438" y="200.097656" xlink:href="#cz"/>
|
|
652
|
+
</g>
|
|
653
|
+
<g>
|
|
654
|
+
<use x="103.84375" y="200.097656" xlink:href="#cy"/>
|
|
655
|
+
</g>
|
|
656
|
+
<g>
|
|
657
|
+
<use x="107.039063" y="205.882813" xlink:href="#cx"/>
|
|
658
|
+
</g>
|
|
659
|
+
<g>
|
|
660
|
+
<use x="122.144531" y="200.101563" xlink:href="#cw"/>
|
|
661
|
+
</g>
|
|
662
|
+
<g>
|
|
663
|
+
<use x="124.839844" y="200.101563" xlink:href="#cv"/>
|
|
664
|
+
</g>
|
|
665
|
+
</svg>
|