@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,2461 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="515pt" height="443pt" version="1.1" viewBox="0 0 515 443" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<defs>
|
|
4
|
+
<symbol id="nd" overflow="visible">
|
|
5
|
+
<path d="m7.7188-9.1875-3.5312 9.2188c-0.0625 0.17578-0.16406 0.26953-0.29688 0.28125-0.125 0-0.21484-0.074219-0.26562-0.21875-0.011719-0.023438-0.027344-0.054688-0.046875-0.09375l-3.5156-9.2031c-0.042969-0.10156-0.0625-0.17969-0.0625-0.23438 0-0.13281 0.070312-0.22266 0.21875-0.26562 0.019531-0.007813 0.039062-0.015625 0.0625-0.015625 0.125 0 0.21094 0.074219 0.26562 0.21875 0.007813 0.011719 0.023437 0.042969 0.046875 0.09375l1.1719 3.0938h4.25l1.1875-3.125c0.082031-0.17578 0.17969-0.26953 0.29688-0.28125 0.15625 0 0.25 0.09375 0.28125 0.28125 0 0.054688-0.023438 0.13672-0.0625 0.25zm-5.7344 3.4375 1.9062 4.9844 1.9062-4.9844z"/>
|
|
6
|
+
</symbol>
|
|
7
|
+
<symbol id="nc" overflow="visible">
|
|
8
|
+
<path d="m7.7031-3.2188h-5.9688c0.09375 1.043 0.56641 1.8711 1.4219 2.4844 0.66406 0.49219 1.4375 0.73438 2.3125 0.73438h2.2344c0.28906 0 0.44141 0.09375 0.45312 0.28125 0 0.1875-0.15234 0.28125-0.45312 0.28125h-2.2656c-1.1797 0-2.1836-0.39062-3.0156-1.1719-0.84375-0.80078-1.2656-1.7656-1.2656-2.8906 0-1.1875 0.44531-2.1758 1.3438-2.9688 0.83203-0.72656 1.8047-1.0938 2.9219-1.0938h2.2812c0.28906 0 0.44141 0.09375 0.45312 0.28125 0 0.1875-0.15234 0.28125-0.45312 0.28125h-2.25c-1.0859 0-1.9922 0.36719-2.7188 1.0938-0.59375 0.58594-0.92969 1.293-1 2.125h5.9688c0.28906 0 0.44141 0.09375 0.45312 0.28125 0 0.1875-0.15234 0.28125-0.45312 0.28125z"/>
|
|
9
|
+
</symbol>
|
|
10
|
+
<symbol id="nb" overflow="visible">
|
|
11
|
+
<path d="m1.9688-3.1719c-0.60547 0.29297-0.99609 0.71094-1.1719 1.25-0.042969 0.13672-0.0625 0.26172-0.0625 0.375 0 0.69922 0.53125 1.1016 1.5938 1.2031h0.4375c1.1016 0 1.8164-0.24219 2.1406-0.73438 0.019531-0.019531 0.046875-0.050781 0.078125-0.09375 0.039063-0.070313 0.085937-0.10938 0.14062-0.10938 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.15625-0.14062 0.37109-0.42188 0.64062-0.57422 0.53906-1.3125 0.8125-2.2188 0.8125-0.94922 0-1.625-0.30859-2.0312-0.92188-0.16797-0.25781-0.25-0.53906-0.25-0.84375 0-0.5625 0.25781-1.0703 0.78125-1.5312 0.14453-0.13281 0.3125-0.25391 0.5-0.35938-0.375-0.28125-0.5625-0.61328-0.5625-1 0-0.55078 0.33594-1.0312 1.0156-1.4375 0.625-0.375 1.3281-0.5625 2.1094-0.5625 0.60156 0 1.1172 0.16406 1.5469 0.48438 0.16406 0.11719 0.25 0.21875 0.25 0.3125 0 0.16797-0.085938 0.28906-0.25 0.35938-0.042969 0.011719-0.085938 0.015625-0.125 0.015625-0.054688 0-0.14844-0.046875-0.28125-0.14062-0.375-0.25781-0.80469-0.39062-1.2812-0.39062-0.90625 0-1.625 0.1875-2.1562 0.5625-0.32422 0.24219-0.48438 0.50781-0.48438 0.79688 0 0.34375 0.1875 0.61719 0.5625 0.8125 0.38281-0.17578 0.82031-0.26562 1.3125-0.26562 0.65625 0 0.99219 0.125 1.0156 0.375 0 0.29297-0.38281 0.4375-1.1406 0.4375-0.49219 0-0.89062-0.0625-1.2031-0.1875zm0.46875-0.1875c0.17578 0.042969 0.42188 0.0625 0.73438 0.0625 0.35156 0 0.61328-0.035156 0.78125-0.10938-0.21094-0.050781-0.42969-0.078125-0.65625-0.078125-0.33594 0-0.62109 0.042969-0.85938 0.125z"/>
|
|
12
|
+
</symbol>
|
|
13
|
+
<symbol id="ha" overflow="visible">
|
|
14
|
+
<path d="m3.75-4.3906v3.1094c0 0.375 0.054688 0.60156 0.17188 0.67188 0.10156 0.085937 0.33203 0.125 0.6875 0.125 0.25781 0 0.39062 0.078125 0.39062 0.23438-0.085938 0.15625-0.24219 0.24219-0.46875 0.25h-3.8281c-0.28125 0-0.4375-0.054688-0.46875-0.17188-0.011719-0.019531-0.015625-0.046875-0.015625-0.078125 0-0.15625 0.12891-0.23438 0.39062-0.23438 0.4375 0 0.69531-0.066406 0.78125-0.20312 0.039063-0.070312 0.066406-0.20312 0.078125-0.39062v-7.2188c0-0.39453-0.0625-0.62891-0.1875-0.70312-0.09375-0.0625-0.32031-0.09375-0.67188-0.09375-0.26172 0-0.39062-0.082031-0.39062-0.25 0.082031-0.15625 0.24219-0.23828 0.48438-0.25h4.3906c1.2188 0 2.1758 0.28125 2.875 0.84375l0.015625 0.015625c0.375 0.3125 0.625 0.69922 0.75 1.1562 0.050781 0.1875 0.078125 0.39062 0.078125 0.60938 0 1.1992-0.65625 1.9688-1.9688 2.3125-0.14844 0.042969-0.30859 0.078125-0.48438 0.10938 0.38281 0.61719 0.96094 1.4766 1.7344 2.5781 0.6875 0.90625 1.1953 1.4023 1.5312 1.4844 0.14453 0.023437 0.21875 0.10156 0.21875 0.23438-0.085938 0.15625-0.24219 0.24219-0.46875 0.25h-1.9219c-0.23047 0-0.36719-0.03125-0.40625-0.09375-0.023437-0.019531-0.042969-0.046875-0.0625-0.078125l-0.625-0.96875-2.1094-3.25zm2.7031-0.6875c1.1328-0.20703 1.75-0.74219 1.8438-1.6094 0.007813-0.09375 0.015625-0.1875 0.015625-0.28125 0-0.90625-0.52344-1.5234-1.5625-1.8594-0.13672-0.050781-0.26562-0.09375-0.39062-0.125 0.35156 0.46094 0.53125 1.125 0.53125 2 0 0.86719-0.14844 1.4922-0.4375 1.875zm-2.7031-3.2656v3.4531c1.0938 0 1.8008-0.10938 2.125-0.32812 0.082031-0.0625 0.16016-0.14062 0.23438-0.23438 0.1875-0.26953 0.28125-0.76953 0.28125-1.5 0-1.082-0.28906-1.75-0.85938-2-0.23047-0.09375-0.53125-0.14062-0.90625-0.14062-0.55469 0-0.84375 0.19922-0.875 0.59375zm-1.9062 7.8594h1.5312c-0.074219-0.16406-0.10938-0.42578-0.10938-0.78125v-7.125c0-0.32031 0.054687-0.55469 0.17188-0.70312h-1.5938c0.070312 0.16797 0.10938 0.42188 0.10938 0.76562v7.0625c0 0.35547-0.039063 0.61719-0.10938 0.78125zm2.9844-3.9062 2.5156 3.9062h1.3594c-0.6875-0.69531-1.6484-2.0312-2.875-4-0.28125 0.042969-0.52734 0.0625-0.73438 0.0625-0.042969 0-0.13281 0.011719-0.26562 0.03125z"/>
|
|
15
|
+
</symbol>
|
|
16
|
+
<symbol id="ek" overflow="visible">
|
|
17
|
+
<path d="m2.6094-2.2969 0.14062 1.5938c0.019531 0.24219-0.070312 0.35938-0.26562 0.35938-0.11719 0-0.19531-0.050781-0.23438-0.15625-0.011719-0.03125-0.015625-0.066406-0.015625-0.10938v-0.046875l0.14062-1.6406-1.25 0.92188c-0.085938 0.0625-0.15234 0.09375-0.20312 0.09375-0.125 0-0.21094-0.054688-0.25-0.17188-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.11328 0.066406-0.19531 0.20312-0.25l1.4062-0.6875-1.4062-0.67188c-0.13672-0.0625-0.20312-0.14844-0.20312-0.26562 0-0.125 0.0625-0.20703 0.1875-0.25 0.019531-0.007812 0.046875-0.015625 0.078125-0.015625 0.039063 0 0.10938 0.03125 0.20312 0.09375l1.25 0.92188-0.14062-1.5938v-0.10938c-0.023437-0.10156 0.023437-0.17969 0.14062-0.23438h0.03125c0.03125-0.019531 0.0625-0.03125 0.09375-0.03125 0.1875 0 0.26953 0.12109 0.25 0.35938l-0.14062 1.6094 1.2656-0.9375c0.070312-0.050781 0.13281-0.078125 0.1875-0.078125 0.125 0 0.20703 0.058594 0.25 0.17188 0.019531 0.03125 0.03125 0.0625 0.03125 0.09375 0 0.11719-0.074219 0.20312-0.21875 0.26562l-1.4219 0.6875 1.4531 0.67188c0.125 0.0625 0.1875 0.14844 0.1875 0.25 0 0.125-0.0625 0.21484-0.1875 0.26562-0.03125 0.011719-0.0625 0.015625-0.09375 0.015625-0.054688 0-0.17188-0.070312-0.35938-0.21875z"/>
|
|
18
|
+
</symbol>
|
|
19
|
+
<symbol id="dz" overflow="visible">
|
|
20
|
+
<path d="m4.0938-2.2969v2.7969c0 0.20703-0.070312 0.31641-0.20312 0.32812-0.13672 0-0.20312-0.10938-0.20312-0.32812v-2.7969h-2.7969c-0.21875 0-0.32812-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h2.7969v-2.7969c0-0.20703 0.066406-0.31641 0.20312-0.32812 0.13281 0 0.20312 0.10938 0.20312 0.32812v2.7969h2.7812c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
21
|
+
</symbol>
|
|
22
|
+
<symbol id="dm" overflow="visible">
|
|
23
|
+
<path d="m6.9844-9.25v8.7812c0 0.26172-0.058594 0.40625-0.17188 0.4375-0.054688 0.023438-0.14844 0.03125-0.28125 0.03125h-5.2812c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h5.1719v-4.0156h-4.9844c-0.29297 0-0.44531-0.09375-0.45312-0.28125 0-0.1875 0.14844-0.28125 0.45312-0.28125h4.9844v-4.0156h-5.1719c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h5.2812c0.25 0 0.39062 0.058594 0.42188 0.17188 0.019531 0.054687 0.03125 0.15234 0.03125 0.29688z"/>
|
|
24
|
+
</symbol>
|
|
25
|
+
<symbol id="dl" overflow="visible">
|
|
26
|
+
<path d="m2.2188-10.031v13.062c0 0.30078-0.089844 0.45703-0.26562 0.46875-0.1875 0-0.28125-0.15625-0.28125-0.46875v-13.062c0-0.30078 0.09375-0.45703 0.28125-0.46875 0.17578 0 0.26562 0.15625 0.26562 0.46875z"/>
|
|
27
|
+
</symbol>
|
|
28
|
+
<symbol id="dk" overflow="visible">
|
|
29
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
30
|
+
</symbol>
|
|
31
|
+
<symbol id="cz" overflow="visible">
|
|
32
|
+
<path d="m6.8281-3.875-1.5938 6.3438c-0.10547 0.36328-0.29688 0.55078-0.57812 0.5625-0.21094 0-0.33594-0.10156-0.375-0.29688-0.011719-0.03125-0.015625-0.0625-0.015625-0.09375s0.015625-0.10547 0.046875-0.21875l1.5938-6.4375c0.09375-0.375 0.14062-0.67188 0.14062-0.89062 0-0.64453-0.25-0.96875-0.75-0.96875-0.44922 0-0.89844 0.16406-1.3438 0.48438-0.34375 0.27344-0.65234 0.67188-0.92188 1.2031l-0.03125 0.078125c-0.042969 0.23047-0.09375 0.44531-0.15625 0.64062-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.60938l0.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.082031-0.45703 0.25-0.9375 0.0625-0.16406 0.125-0.30469 0.1875-0.42188 0.21875-0.45703 0.5-0.71875 0.84375-0.78125 0.0625-0.007813 0.125-0.015625 0.1875-0.015625 0.5 0 0.875 0.21094 1.125 0.625 0.09375 0.17969 0.14453 0.375 0.15625 0.59375 0.47656-0.6875 1.0859-1.082 1.8281-1.1875 0.11328-0.019531 0.22656-0.03125 0.34375-0.03125 0.83203 0 1.3477 0.32422 1.5469 0.96875v0.015625c0.039062 0.15625 0.0625 0.32812 0.0625 0.51562 0 0.27344-0.039062 0.54297-0.10938 0.8125z"/>
|
|
33
|
+
</symbol>
|
|
34
|
+
<symbol id="cy" overflow="visible">
|
|
35
|
+
<path d="m9.4531-3.1875-7.7656 3.6562c-0.11719 0.0625-0.19922 0.09375-0.25 0.09375-0.14844 0-0.23438-0.074219-0.26562-0.21875-0.011719-0.023438-0.015625-0.042969-0.015625-0.0625 0-0.11719 0.085938-0.21875 0.26562-0.3125l7.3594-3.4688-7.3594-3.4688c-0.17969-0.09375-0.26562-0.19531-0.26562-0.3125 0-0.14453 0.070312-0.23438 0.21875-0.26562 0.019531-0.007813 0.039062-0.015625 0.0625-0.015625 0.050781 0 0.13281 0.03125 0.25 0.09375l7.7656 3.6562c0.17578 0.085938 0.26562 0.1875 0.26562 0.3125s-0.089844 0.23047-0.26562 0.3125z"/>
|
|
36
|
+
</symbol>
|
|
37
|
+
<symbol id="o" overflow="visible">
|
|
38
|
+
<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"/>
|
|
39
|
+
</symbol>
|
|
40
|
+
<symbol id="cj" overflow="visible">
|
|
41
|
+
<path d="m6.4375-4.4844c0 1.3672-0.17188 2.4219-0.51562 3.1719-0.55469 1.043-1.3672 1.582-2.4375 1.625-0.84375 0-1.5273-0.33594-2.0469-1.0156-0.10547-0.11328-0.19531-0.25-0.26562-0.40625-0.41797-0.76953-0.625-1.8945-0.625-3.375 0-1.3633 0.17188-2.4219 0.51562-3.1719 0.46875-1.0391 1.2227-1.5977 2.2656-1.6719h0.17188c0.83203 0 1.5078 0.33594 2.0312 1v0.015625c0.125 0.16797 0.23828 0.35547 0.34375 0.5625 0.375 0.79297 0.5625 1.8828 0.5625 3.2656zm-2.9531 4.4844c0.59375 0 1.0469-0.28516 1.3594-0.85938 0.13281-0.25 0.22656-0.54688 0.28125-0.89062 0.10156-0.59375 0.15625-1.5547 0.15625-2.8906 0-1.3008-0.046875-2.2109-0.14062-2.7344-0.16797-0.88281-0.60156-1.4141-1.2969-1.5938-0.11719-0.03125-0.23438-0.046875-0.35938-0.046875-0.65625 0-1.1328 0.32812-1.4219 0.98438-0.10547 0.21875-0.1875 0.49219-0.25 0.8125-0.074219 0.5-0.10938 1.3594-0.10938 2.5781 0 1.4062 0.050781 2.3906 0.15625 2.9531 0.16406 0.89844 0.57812 1.4375 1.2344 1.625 0.13281 0.042969 0.26562 0.0625 0.39062 0.0625z"/>
|
|
42
|
+
</symbol>
|
|
43
|
+
<symbol id="bu" overflow="visible">
|
|
44
|
+
<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"/>
|
|
45
|
+
</symbol>
|
|
46
|
+
<symbol id="m" overflow="visible">
|
|
47
|
+
<path d="m2.2188-10.031v13.062c0 0.30078-0.089844 0.45703-0.26562 0.46875-0.1875 0-0.28125-0.15625-0.28125-0.46875v-13.062c0-0.30078 0.09375-0.45703 0.28125-0.46875 0.17578 0 0.26562 0.15625 0.26562 0.46875z"/>
|
|
48
|
+
</symbol>
|
|
49
|
+
<symbol id="bj" overflow="visible">
|
|
50
|
+
<path d="m9.4688-8.3281-7.375 3.4844 7.3594 3.4688c0.15625 0.125 0.24219 0.22656 0.26562 0.29688 0 0.14844-0.074219 0.23438-0.21875 0.26562-0.023438 0.011719-0.042969 0.015625-0.0625 0.015625-0.054688 0-0.13281-0.023437-0.23438-0.078125l-7.7812-3.6719c-0.17969-0.070313-0.26562-0.17188-0.26562-0.29688s0.085938-0.22656 0.26562-0.3125l7.7969-3.6562c0.09375-0.0625 0.16406-0.09375 0.21875-0.09375 0.14453 0 0.23438 0.074219 0.26562 0.21875 0.007813 0.023438 0.015625 0.042969 0.015625 0.0625 0 0.13672-0.085938 0.23438-0.25 0.29688zm-0.21875 10.25h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h7.5938c0.30078 0 0.46094 0.09375 0.48438 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
51
|
+
</symbol>
|
|
52
|
+
<symbol id="bi" overflow="visible">
|
|
53
|
+
<path d="m9.8906-4.5781h-8.625c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.25c-0.74219-0.82031-1.2031-1.5039-1.3906-2.0469 0-0.10156 0.09375-0.15625 0.28125-0.15625 0.10156 0 0.17188 0.011719 0.20312 0.03125l0.1875 0.3125c0.90625 1.6797 2.3008 2.7812 4.1875 3.3125 0.13281 0.042969 0.20703 0.10547 0.21875 0.1875 0 0.085938-0.078125 0.14844-0.23438 0.1875-1.9062 0.54297-3.3125 1.6719-4.2188 3.3906-0.09375 0.16406-0.16406 0.25391-0.20312 0.26562h-0.14062c-0.1875 0-0.28125-0.054688-0.28125-0.15625 0-0.125 0.14453-0.40625 0.4375-0.84375 0.25781-0.38281 0.57812-0.78516 0.95312-1.2031h-8.25c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.625c0.15625 0 0.28125-0.03125 0.375-0.09375l0.015625-0.015625 0.015625-0.03125c0.55078-0.39453 1.0859-0.70703 1.6094-0.9375-0.5625-0.25-1.0938-0.5625-1.5938-0.9375-0.11719-0.09375-0.25781-0.14062-0.42188-0.14062z"/>
|
|
54
|
+
</symbol>
|
|
55
|
+
<symbol id="bh" overflow="visible">
|
|
56
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
57
|
+
</symbol>
|
|
58
|
+
<symbol id="na" overflow="visible">
|
|
59
|
+
<path d="m6.8281-3.875-1.5938 6.3438c-0.10547 0.36328-0.29688 0.55078-0.57812 0.5625-0.21094 0-0.33594-0.10156-0.375-0.29688-0.011719-0.03125-0.015625-0.0625-0.015625-0.09375s0.015625-0.10547 0.046875-0.21875l1.5938-6.4375c0.09375-0.375 0.14062-0.67188 0.14062-0.89062 0-0.64453-0.25-0.96875-0.75-0.96875-0.44922 0-0.89844 0.16406-1.3438 0.48438-0.34375 0.27344-0.65234 0.67188-0.92188 1.2031l-0.03125 0.078125c-0.042969 0.23047-0.09375 0.44531-0.15625 0.64062-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.60938l0.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.082031-0.45703 0.25-0.9375 0.0625-0.16406 0.125-0.30469 0.1875-0.42188 0.21875-0.45703 0.5-0.71875 0.84375-0.78125 0.0625-0.007813 0.125-0.015625 0.1875-0.015625 0.5 0 0.875 0.21094 1.125 0.625 0.09375 0.17969 0.14453 0.375 0.15625 0.59375 0.47656-0.6875 1.0859-1.082 1.8281-1.1875 0.11328-0.019531 0.22656-0.03125 0.34375-0.03125 0.83203 0 1.3477 0.32422 1.5469 0.96875v0.015625c0.039062 0.15625 0.0625 0.32812 0.0625 0.51562 0 0.27344-0.039062 0.54297-0.10938 0.8125z"/>
|
|
60
|
+
</symbol>
|
|
61
|
+
<symbol id="ar" overflow="visible">
|
|
62
|
+
<path d="m5.1406-5.5938-0.84375 4.4375c-0.085937 0.57422-0.25 1.2344-0.5 1.9844-0.09375 0.26953-0.1875 0.5-0.28125 0.6875-0.32422 0.6875-0.73047 1.1133-1.2188 1.2812-0.125 0.050781-0.24609 0.078125-0.35938 0.078125-0.46875 0-0.82031-0.16406-1.0469-0.48438-0.10547-0.13672-0.15625-0.29688-0.15625-0.48438 0-0.375 0.16016-0.63281 0.48438-0.76562 0.09375-0.054687 0.19141-0.078125 0.29688-0.078125 0.26953 0 0.4375 0.11328 0.5 0.34375 0.007813 0.050781 0.015625 0.097656 0.015625 0.14062 0 0.32031-0.14062 0.54688-0.42188 0.67188-0.10547 0.050781-0.21875 0.082031-0.34375 0.09375 0.17578 0.16406 0.39844 0.25 0.67188 0.25 0.40625 0 0.72266-0.46094 0.95312-1.375 0.050781-0.21094 0.10938-0.49219 0.17188-0.84375l0.09375-0.40625 1.0469-5.5312h-0.92188c-0.24219 0-0.37109-0.039062-0.39062-0.125v-0.046875c0-0.15625 0.078125-0.24219 0.23438-0.26562h1.1406c0.22656-1.1641 0.38281-1.8984 0.46875-2.2031 0.28125-0.92578 0.77344-1.4609 1.4844-1.6094 0.10156-0.019531 0.20312-0.03125 0.29688-0.03125 0.47656 0 0.83203 0.16406 1.0625 0.48438 0.10156 0.13672 0.15625 0.29688 0.15625 0.48438 0 0.375-0.16406 0.63281-0.48438 0.76562-0.09375 0.054687-0.19531 0.078125-0.29688 0.078125-0.27344 0-0.4375-0.11328-0.5-0.34375-0.011719-0.050781-0.015625-0.097656-0.015625-0.14062 0-0.28906 0.12891-0.50781 0.39062-0.65625 0.10156-0.0625 0.22656-0.097656 0.375-0.10938-0.17969-0.16406-0.40625-0.25-0.6875-0.25-0.29297 0-0.51172 0.15625-0.65625 0.46875-0.074219 0.13672-0.1875 0.625-0.34375 1.4688l-0.29688 1.5938h1.1719c0.22656 0 0.35156 0.054688 0.375 0.15625 0 0.16797-0.078125 0.26172-0.23438 0.28125z"/>
|
|
63
|
+
</symbol>
|
|
64
|
+
<symbol id="aq" overflow="visible">
|
|
65
|
+
<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"/>
|
|
66
|
+
</symbol>
|
|
67
|
+
<symbol id="ml" overflow="visible">
|
|
68
|
+
<path d="m9.625-4.5781h-8.3594c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.375c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0 2.7188h-8.375c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.3594c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
69
|
+
</symbol>
|
|
70
|
+
<symbol id="ao" overflow="visible">
|
|
71
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
72
|
+
</symbol>
|
|
73
|
+
<symbol id="mk" overflow="visible">
|
|
74
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
75
|
+
</symbol>
|
|
76
|
+
<symbol id="lz" overflow="visible">
|
|
77
|
+
<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"/>
|
|
78
|
+
</symbol>
|
|
79
|
+
<symbol id="lm" overflow="visible">
|
|
80
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
81
|
+
</symbol>
|
|
82
|
+
<symbol id="ll" overflow="visible">
|
|
83
|
+
<path d="m5.3125-0.76562c-0.48047 0.61719-1.1055 0.92188-1.875 0.92188-0.85547 0-1.5781-0.34375-2.1719-1.0312-0.53125-0.60156-0.79688-1.3164-0.79688-2.1406 0-0.96875 0.36328-1.7695 1.0938-2.4062 0.59375-0.50781 1.2695-0.76562 2.0312-0.76562 0.70703 0 1.2969 0.29297 1.7656 0.875v-3.0312c0-0.36328-0.0625-0.58594-0.1875-0.67188h-0.015625c-0.125-0.070313-0.42188-0.10938-0.89062-0.10938v-0.4375l2.0156-0.15625v8.5c0 0.36719 0.070312 0.58984 0.21875 0.67188h0.015625c0.125 0.074219 0.41016 0.10938 0.85938 0.10938v0.4375l-2.0625 0.15625zm0-3.75c0-0.1875-0.042969-0.34375-0.125-0.46875l-0.015625-0.0625c-0.38672-0.55078-0.89062-0.82812-1.5156-0.82812-0.65625 0-1.1836 0.29688-1.5781 0.89062-0.29297 0.44922-0.4375 1.1094-0.4375 1.9844s0.13281 1.5273 0.40625 1.9531c0.375 0.59375 0.86328 0.89062 1.4688 0.89062 0.66406 0 1.207-0.30469 1.625-0.92188l0.03125-0.0625c0.09375-0.1875 0.14062-0.35938 0.14062-0.51562z"/>
|
|
84
|
+
</symbol>
|
|
85
|
+
<symbol id="lk" overflow="visible">
|
|
86
|
+
<path d="m5.4531-3.2344h-3.9062c0 0.94922 0.14062 1.6484 0.42188 2.0938 0.44531 0.58594 0.97656 0.89844 1.5938 0.9375 0.63281 0 1.1484-0.25781 1.5469-0.78125 0.13281-0.1875 0.25-0.40625 0.34375-0.65625 0.019531-0.125 0.078125-0.1875 0.17188-0.1875 0.125 0 0.1875 0.054687 0.1875 0.15625 0 0.21094-0.13281 0.49219-0.39062 0.84375-0.38672 0.52344-0.89062 0.83203-1.5156 0.9375-0.13672 0.03125-0.28125 0.046875-0.4375 0.046875-0.875 0-1.6211-0.33594-2.2344-1.0156-0.5625-0.61328-0.84375-1.3516-0.84375-2.2188 0-0.96875 0.33594-1.7695 1.0156-2.4062 0.53906-0.51953 1.1719-0.78125 1.8906-0.78125 1.0625 0 1.8008 0.44922 2.2188 1.3438 0.19531 0.41797 0.29688 0.88281 0.29688 1.3906 0 0.15625-0.03125 0.25-0.09375 0.28125-0.03125 0.011719-0.12109 0.015625-0.26562 0.015625zm-3.8906-0.29688h3.3281c0-0.88281-0.19922-1.5508-0.59375-2-0.26172-0.28906-0.59375-0.4375-1-0.4375-0.46875 0-0.87109 0.21875-1.2031 0.65625-0.32422 0.42969-0.5 1.0234-0.53125 1.7812z"/>
|
|
87
|
+
</symbol>
|
|
88
|
+
<symbol id="lj" overflow="visible">
|
|
89
|
+
<path d="m2.4219-5.5938v3.8906c0 0.92969 0.26953 1.4297 0.8125 1.5h0.125c0.40625 0 0.6875-0.25781 0.84375-0.78125 0.0625-0.21875 0.09375-0.47656 0.09375-0.78125v-0.76562h0.34375v0.79688c0 0.76172-0.21484 1.3125-0.64062 1.6562-0.19922 0.15625-0.44531 0.23438-0.73438 0.23438-0.78125 0-1.3203-0.29688-1.6094-0.89062-0.13672-0.26953-0.20312-0.60156-0.20312-1v-3.8594h-1.1875v-0.3125c0.83203-0.039062 1.3828-0.5625 1.6562-1.5625 0.09375-0.36328 0.14453-0.74219 0.15625-1.1406h0.34375v2.5781h2v0.4375z"/>
|
|
90
|
+
</symbol>
|
|
91
|
+
<symbol id="ku" overflow="visible">
|
|
92
|
+
<path d="m2.2188-10.031v13.062c0 0.30078-0.089844 0.45703-0.26562 0.46875-0.1875 0-0.28125-0.15625-0.28125-0.46875v-13.062c0-0.30078 0.09375-0.45703 0.28125-0.46875 0.17578 0 0.26562 0.15625 0.26562 0.46875z"/>
|
|
93
|
+
</symbol>
|
|
94
|
+
<symbol id="kt" overflow="visible">
|
|
95
|
+
<path d="m9.4688-8.3281-7.375 3.4844 7.3594 3.4688c0.15625 0.125 0.24219 0.22656 0.26562 0.29688 0 0.14844-0.074219 0.23438-0.21875 0.26562-0.023438 0.011719-0.042969 0.015625-0.0625 0.015625-0.054688 0-0.13281-0.023437-0.23438-0.078125l-7.7812-3.6719c-0.17969-0.070313-0.26562-0.17188-0.26562-0.29688s0.085938-0.22656 0.26562-0.3125l7.7969-3.6562c0.09375-0.0625 0.16406-0.09375 0.21875-0.09375 0.14453 0 0.23438 0.074219 0.26562 0.21875 0.007813 0.023438 0.015625 0.042969 0.015625 0.0625 0 0.13672-0.085938 0.23438-0.25 0.29688zm-0.21875 10.25h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h7.5938c0.30078 0 0.46094 0.09375 0.48438 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
96
|
+
</symbol>
|
|
97
|
+
<symbol id="ke" overflow="visible">
|
|
98
|
+
<path d="m1.9688-3.1719c-0.60547 0.29297-0.99609 0.71094-1.1719 1.25-0.042969 0.13672-0.0625 0.26172-0.0625 0.375 0 0.69922 0.53125 1.1016 1.5938 1.2031h0.4375c1.1016 0 1.8164-0.24219 2.1406-0.73438 0.019531-0.019531 0.046875-0.050781 0.078125-0.09375 0.039063-0.070313 0.085937-0.10938 0.14062-0.10938 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.15625-0.14062 0.37109-0.42188 0.64062-0.57422 0.53906-1.3125 0.8125-2.2188 0.8125-0.94922 0-1.625-0.30859-2.0312-0.92188-0.16797-0.25781-0.25-0.53906-0.25-0.84375 0-0.5625 0.25781-1.0703 0.78125-1.5312 0.14453-0.13281 0.3125-0.25391 0.5-0.35938-0.375-0.28125-0.5625-0.61328-0.5625-1 0-0.55078 0.33594-1.0312 1.0156-1.4375 0.625-0.375 1.3281-0.5625 2.1094-0.5625 0.60156 0 1.1172 0.16406 1.5469 0.48438 0.16406 0.11719 0.25 0.21875 0.25 0.3125 0 0.16797-0.085938 0.28906-0.25 0.35938-0.042969 0.011719-0.085938 0.015625-0.125 0.015625-0.054688 0-0.14844-0.046875-0.28125-0.14062-0.375-0.25781-0.80469-0.39062-1.2812-0.39062-0.90625 0-1.625 0.1875-2.1562 0.5625-0.32422 0.24219-0.48438 0.50781-0.48438 0.79688 0 0.34375 0.1875 0.61719 0.5625 0.8125 0.38281-0.17578 0.82031-0.26562 1.3125-0.26562 0.65625 0 0.99219 0.125 1.0156 0.375 0 0.29297-0.38281 0.4375-1.1406 0.4375-0.49219 0-0.89062-0.0625-1.2031-0.1875zm0.46875-0.1875c0.17578 0.042969 0.42188 0.0625 0.73438 0.0625 0.35156 0 0.61328-0.035156 0.78125-0.10938-0.21094-0.050781-0.42969-0.078125-0.65625-0.078125-0.33594 0-0.62109 0.042969-0.85938 0.125z"/>
|
|
99
|
+
</symbol>
|
|
100
|
+
<symbol id="kd" overflow="visible">
|
|
101
|
+
<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"/>
|
|
102
|
+
</symbol>
|
|
103
|
+
<symbol id="jq" overflow="visible">
|
|
104
|
+
<path d="m4.5469 24.641v-25.188h4.7031v1.0312h-3.6875v24.156z"/>
|
|
105
|
+
</symbol>
|
|
106
|
+
<symbol id="ad" overflow="visible">
|
|
107
|
+
<path d="m4.5469 8.4219v-8.4375h1.0156v8.4375z"/>
|
|
108
|
+
</symbol>
|
|
109
|
+
<symbol id="jp" overflow="visible">
|
|
110
|
+
<path d="m4.5469 24.625v-25.188h1.0156v24.172h3.6875v1.0156z"/>
|
|
111
|
+
</symbol>
|
|
112
|
+
<symbol id="iq" overflow="visible">
|
|
113
|
+
<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"/>
|
|
114
|
+
</symbol>
|
|
115
|
+
<symbol id="ie" overflow="visible">
|
|
116
|
+
<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"/>
|
|
117
|
+
</symbol>
|
|
118
|
+
<symbol id="hs" overflow="visible">
|
|
119
|
+
<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"/>
|
|
120
|
+
</symbol>
|
|
121
|
+
<symbol id="gz" overflow="visible">
|
|
122
|
+
<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"/>
|
|
123
|
+
</symbol>
|
|
124
|
+
<symbol id="gj" overflow="visible">
|
|
125
|
+
<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"/>
|
|
126
|
+
</symbol>
|
|
127
|
+
<symbol id="g" overflow="visible">
|
|
128
|
+
<path d="m2.6875-3.5c0 0.3125-0.14062 0.53906-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.13281-0.67188-0.40625-0.054688-0.10156-0.078125-0.21094-0.078125-0.32812 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.039063 0.21094-0.0625 0.32812-0.0625 0.30078 0 0.52344 0.13672 0.67188 0.40625 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
129
|
+
</symbol>
|
|
130
|
+
<symbol id="ff" overflow="visible">
|
|
131
|
+
<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"/>
|
|
132
|
+
</symbol>
|
|
133
|
+
<symbol id="eq" overflow="visible">
|
|
134
|
+
<path d="m2.9375-6.4062v5.6094c0 0.21094 0.039062 0.33984 0.125 0.39062 0.11328 0.0625 0.38281 0.09375 0.8125 0.09375h0.3125v0.3125c-0.23047-0.019531-0.77344-0.03125-1.625-0.03125-0.84375 0-1.3828 0.011719-1.6094 0.03125v-0.3125h0.3125c0.51953 0 0.81641-0.054688 0.89062-0.17188v-0.015625c0.03125-0.050781 0.046875-0.14844 0.046875-0.29688v-5.1719c-0.34375 0.17969-0.78125 0.26562-1.3125 0.26562v-0.3125c0.80078 0 1.4062-0.21094 1.8125-0.64062 0.13281 0 0.21094 0.023438 0.23438 0.0625v0.015625 0.17188z"/>
|
|
135
|
+
</symbol>
|
|
136
|
+
<symbol id="ep" overflow="visible">
|
|
137
|
+
<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"/>
|
|
138
|
+
</symbol>
|
|
139
|
+
<symbol id="eo" overflow="visible">
|
|
140
|
+
<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"/>
|
|
141
|
+
</symbol>
|
|
142
|
+
<symbol id="en" overflow="visible">
|
|
143
|
+
<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"/>
|
|
144
|
+
</symbol>
|
|
145
|
+
<symbol id="em" overflow="visible">
|
|
146
|
+
<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"/>
|
|
147
|
+
</symbol>
|
|
148
|
+
<symbol id="a" overflow="visible">
|
|
149
|
+
<path d="m2.6875-0.73438c0 0.30469-0.14062 0.52734-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.14062-0.67188-0.42188-0.054688-0.10156-0.078125-0.20703-0.078125-0.3125 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.050781 0.21094-0.078125 0.32812-0.078125 0.30078 0 0.52344 0.14062 0.67188 0.42188 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
150
|
+
</symbol>
|
|
151
|
+
<symbol id="el" overflow="visible">
|
|
152
|
+
<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"/>
|
|
153
|
+
</symbol>
|
|
154
|
+
<symbol id="ej" overflow="visible">
|
|
155
|
+
<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"/>
|
|
156
|
+
</symbol>
|
|
157
|
+
<symbol id="ei" overflow="visible">
|
|
158
|
+
<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"/>
|
|
159
|
+
</symbol>
|
|
160
|
+
<symbol id="c" overflow="visible">
|
|
161
|
+
<path d="m2.6875-3.5c0 0.3125-0.14062 0.53906-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.13281-0.67188-0.40625-0.054688-0.10156-0.078125-0.21094-0.078125-0.32812 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.039063 0.21094-0.0625 0.32812-0.0625 0.30078 0 0.52344 0.13672 0.67188 0.40625 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
162
|
+
</symbol>
|
|
163
|
+
<symbol id="eh" overflow="visible">
|
|
164
|
+
<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"/>
|
|
165
|
+
</symbol>
|
|
166
|
+
<symbol id="eg" overflow="visible">
|
|
167
|
+
<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"/>
|
|
168
|
+
</symbol>
|
|
169
|
+
<symbol id="ef" overflow="visible">
|
|
170
|
+
<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"/>
|
|
171
|
+
</symbol>
|
|
172
|
+
<symbol id="ee" overflow="visible">
|
|
173
|
+
<path d="m3.7656 24.641v-24.156h-3.7031v-1.0312h4.7188v25.188z"/>
|
|
174
|
+
</symbol>
|
|
175
|
+
<symbol id="p" overflow="visible">
|
|
176
|
+
<path d="m3.7656 8.4219v-8.4375h1.0156v8.4375z"/>
|
|
177
|
+
</symbol>
|
|
178
|
+
<symbol id="ed" overflow="visible">
|
|
179
|
+
<path d="m0.0625 24.625v-1.0156h3.7031v-24.172h1.0156v25.188z"/>
|
|
180
|
+
</symbol>
|
|
181
|
+
<symbol id="ec" overflow="visible">
|
|
182
|
+
<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"/>
|
|
183
|
+
</symbol>
|
|
184
|
+
<symbol id="eb" overflow="visible">
|
|
185
|
+
<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"/>
|
|
186
|
+
</symbol>
|
|
187
|
+
<symbol id="ea" overflow="visible">
|
|
188
|
+
<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"/>
|
|
189
|
+
</symbol>
|
|
190
|
+
<symbol id="dy" overflow="visible">
|
|
191
|
+
<path d="m9.625-4.5781h-8.3594c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.375c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0 2.7188h-8.375c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.3594c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
192
|
+
</symbol>
|
|
193
|
+
<symbol id="dx" overflow="visible">
|
|
194
|
+
<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"/>
|
|
195
|
+
</symbol>
|
|
196
|
+
<symbol id="dw" overflow="visible">
|
|
197
|
+
<path d="m5.1875-3.7344h-1.1094c0.20703 0.29297 0.3125 0.65625 0.3125 1.0938 0 0.76172-0.28125 1.4219-0.84375 1.9844-0.52344 0.5-1.0781 0.75391-1.6719 0.76562-0.55469 0-0.96875-0.22266-1.25-0.67188-0.16797-0.26953-0.25-0.57031-0.25-0.90625 0-0.59375 0.21875-1.1758 0.65625-1.75 0.5-0.65625 1.0938-1.0156 1.7812-1.0781 0.0625-0.007813 0.125-0.015625 0.1875-0.015625h2.2812c0.22656 0 0.35156 0.054688 0.375 0.15625 0.007812 0.03125 0.015625 0.0625 0.015625 0.09375 0 0.21875-0.16406 0.32812-0.48438 0.32812zm-3.2969 3.625c0.38281 0 0.75-0.1875 1.0938-0.5625 0.082031-0.082031 0.15625-0.17578 0.21875-0.28125 0.28125-0.41406 0.45703-0.92578 0.53125-1.5312 0.007813-0.10156 0.015625-0.19531 0.015625-0.28125 0-0.59375-0.26562-0.91016-0.79688-0.95312l-0.015625-0.015625h-0.10938c-0.51172 0-0.92969 0.22656-1.25 0.67188-0.042969 0.054688-0.078125 0.10547-0.10938 0.15625-0.27344 0.44922-0.42188 0.98047-0.45312 1.5938-0.011719 0.042969-0.015625 0.085938-0.015625 0.125 0 0.52344 0.1875 0.85938 0.5625 1.0156 0.09375 0.042969 0.20312 0.0625 0.32812 0.0625z"/>
|
|
198
|
+
</symbol>
|
|
199
|
+
<symbol id="dv" overflow="visible">
|
|
200
|
+
<path d="m5.5-2.2969h-4.2656c0.070313 0.74219 0.41406 1.3359 1.0312 1.7812 0.46875 0.34375 1.0156 0.51562 1.6406 0.51562h1.5938c0.20703 0 0.31641 0.066406 0.32812 0.20312 0 0.13281-0.10938 0.20312-0.32812 0.20312h-1.625c-0.83594 0-1.5469-0.28125-2.1406-0.84375-0.60547-0.57031-0.90625-1.2578-0.90625-2.0625 0-0.84375 0.32031-1.5508 0.96875-2.125 0.59375-0.51953 1.2852-0.78125 2.0781-0.78125h1.625c0.20703 0 0.31641 0.070312 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312h-1.5938c-0.78125 0-1.4336 0.26172-1.9531 0.78125-0.42969 0.41797-0.66797 0.92188-0.71875 1.5156h4.2656c0.20703 0 0.31641 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
201
|
+
</symbol>
|
|
202
|
+
<symbol id="du" overflow="visible">
|
|
203
|
+
<path d="m3.7344 0.26562c-0.65625 0-1.2188-0.14062-1.6875-0.42188-0.46094-0.28906-0.80859-0.69141-1.0469-1.2031-0.23047-0.50781-0.34375-1.0859-0.34375-1.7344 0-0.6875 0.14844-1.2969 0.45312-1.8281 0.3125-0.53125 0.73438-0.96094 1.2656-1.2969 0.53125-0.33203 1.1406-0.56641 1.8281-0.70312 0.09375 0.054687 0.25391 0.14062 0.48438 0.26562 0.23828 0.125 0.48438 0.25 0.73438 0.375 0.25 0.11719 0.46875 0.21094 0.65625 0.28125 0.19531 0.0625 0.35156 0.09375 0.46875 0.09375 0.42578 0 0.71875-0.25 0.875-0.75l0.14062 0.125c-0.074219 0.25-0.17969 0.46484-0.3125 0.64062-0.13672 0.17969-0.30469 0.32812-0.5 0.45312-0.1875 0.125-0.41797 0.24219-0.6875 0.34375-0.21094-0.019531-0.63281-0.21875-1.2656-0.59375-0.67969-0.39453-1.1562-0.59375-1.4375-0.59375-0.42969 0-0.85547 0.21484-1.2812 0.64062-0.23047 0.24219-0.40234 0.52344-0.51562 0.84375-0.11719 0.32422-0.17188 0.66406-0.17188 1.0156 0 0.625 0.125 1.2109 0.375 1.75 0.25 0.54297 0.60938 0.97656 1.0781 1.2969 0.47656 0.3125 1.0391 0.46875 1.6875 0.46875 0.39453 0 0.76562-0.0625 1.1094-0.1875s0.61328-0.32031 0.8125-0.59375c0.20703-0.28125 0.3125-0.62891 0.3125-1.0469 0-0.25-0.054687-0.47266-0.15625-0.67188-0.09375-0.19531-0.23438-0.35156-0.42188-0.46875-0.1875-0.11328-0.40234-0.17188-0.64062-0.17188-0.21875 0-0.59375 0.054688-1.125 0.15625-0.51172 0.10547-0.90234 0.15625-1.1719 0.15625-0.27344 0-0.5-0.0625-0.6875-0.1875-0.17969-0.13281-0.26562-0.33203-0.26562-0.59375 0-0.28906 0.10156-0.53906 0.3125-0.75 0.21875-0.21875 0.47656-0.36328 0.78125-0.4375l0.125 0.10938c-0.14844 0.042969-0.26562 0.13281-0.35938 0.26562-0.085938 0.125-0.125 0.26562-0.125 0.42188 0 0.1875 0.054688 0.33594 0.17188 0.4375 0.11328 0.10547 0.26953 0.15625 0.46875 0.15625 0.1875 0 0.57812-0.066406 1.1719-0.20312 0.66406-0.14453 1.0938-0.21875 1.2812-0.21875 0.19531 0 0.37891 0.03125 0.54688 0.09375 0.16406 0.054688 0.3125 0.14062 0.4375 0.26562 0.125 0.11719 0.21875 0.25781 0.28125 0.42188 0.070313 0.15625 0.10938 0.33984 0.10938 0.54688 0 0.51172-0.10938 0.96094-0.32812 1.3438-0.21094 0.38672-0.49219 0.70312-0.84375 0.95312-0.34375 0.24219-0.74609 0.42188-1.2031 0.54688-0.44922 0.125-0.91406 0.1875-1.3906 0.1875z"/>
|
|
204
|
+
</symbol>
|
|
205
|
+
<symbol id="dt" overflow="visible">
|
|
206
|
+
<path d="m0.60938-0.40625 0.40625-1.625c0.082031-0.30078 0.125-0.5 0.125-0.59375 0-0.20703-0.074219-0.3125-0.21875-0.3125-0.19922 0-0.35547 0.21875-0.46875 0.65625-0.023437 0.054688-0.039063 0.10938-0.046875 0.17188-0.054688 0.10547-0.09375 0.15625-0.125 0.15625-0.054688 0-0.078125-0.019531-0.078125-0.0625 0-0.070313 0.046875-0.23828 0.14062-0.5v-0.03125l0.0625-0.14062c0.10156-0.1875 0.21094-0.30469 0.32812-0.35938 0.0625-0.03125 0.12891-0.046875 0.20312-0.046875 0.25781 0 0.44531 0.10938 0.5625 0.32812 0.039062 0.085937 0.066406 0.17969 0.078125 0.28125 0.30078-0.40625 0.66406-0.60938 1.0938-0.60938 0.40625 0 0.66016 0.15625 0.76562 0.46875 0.03125 0.085938 0.046875 0.17969 0.046875 0.28125 0 0.24219-0.14844 0.75-0.4375 1.5312-0.085937 0.21094-0.125 0.375-0.125 0.5 0 0.15625 0.054687 0.23438 0.17188 0.23438 0.3125 0 0.55078-0.28516 0.71875-0.85938 0.019531-0.082031 0.039062-0.125 0.0625-0.125v-0.015625h0.03125c0.0625 0 0.09375 0.027344 0.09375 0.078125 0 0.085938-0.054688 0.23047-0.15625 0.4375-0.19922 0.42969-0.45312 0.64062-0.76562 0.64062-0.24219 0-0.41406-0.097656-0.51562-0.29688-0.042969-0.082031-0.0625-0.17578-0.0625-0.28125 0-0.09375 0.023438-0.19531 0.078125-0.3125 0.30078-0.82031 0.45312-1.3672 0.45312-1.6406 0-0.32031-0.125-0.48438-0.375-0.48438-0.42969 0-0.78125 0.23438-1.0625 0.70312-0.03125 0.054687-0.058594 0.10156-0.078125 0.14062l-0.09375 0.35938c-0.023437 0.10547-0.0625 0.26172-0.125 0.46875l-0.15625 0.625c-0.074219 0.32422-0.11719 0.49609-0.125 0.51562-0.042969 0.125-0.13281 0.19141-0.26562 0.20312-0.11719-0.023438-0.18359-0.082031-0.20312-0.1875 0 0.011719 0.019531-0.085937 0.0625-0.29688z"/>
|
|
207
|
+
</symbol>
|
|
208
|
+
<symbol id="ds" overflow="visible">
|
|
209
|
+
<path d="m1.9688-3.1719c-0.60547 0.29297-0.99609 0.71094-1.1719 1.25-0.042969 0.13672-0.0625 0.26172-0.0625 0.375 0 0.69922 0.53125 1.1016 1.5938 1.2031h0.4375c1.1016 0 1.8164-0.24219 2.1406-0.73438 0.019531-0.019531 0.046875-0.050781 0.078125-0.09375 0.039063-0.070313 0.085937-0.10938 0.14062-0.10938 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.15625-0.14062 0.37109-0.42188 0.64062-0.57422 0.53906-1.3125 0.8125-2.2188 0.8125-0.94922 0-1.625-0.30859-2.0312-0.92188-0.16797-0.25781-0.25-0.53906-0.25-0.84375 0-0.5625 0.25781-1.0703 0.78125-1.5312 0.14453-0.13281 0.3125-0.25391 0.5-0.35938-0.375-0.28125-0.5625-0.61328-0.5625-1 0-0.55078 0.33594-1.0312 1.0156-1.4375 0.625-0.375 1.3281-0.5625 2.1094-0.5625 0.60156 0 1.1172 0.16406 1.5469 0.48438 0.16406 0.11719 0.25 0.21875 0.25 0.3125 0 0.16797-0.085938 0.28906-0.25 0.35938-0.042969 0.011719-0.085938 0.015625-0.125 0.015625-0.054688 0-0.14844-0.046875-0.28125-0.14062-0.375-0.25781-0.80469-0.39062-1.2812-0.39062-0.90625 0-1.625 0.1875-2.1562 0.5625-0.32422 0.24219-0.48438 0.50781-0.48438 0.79688 0 0.34375 0.1875 0.61719 0.5625 0.8125 0.38281-0.17578 0.82031-0.26562 1.3125-0.26562 0.65625 0 0.99219 0.125 1.0156 0.375 0 0.29297-0.38281 0.4375-1.1406 0.4375-0.49219 0-0.89062-0.0625-1.2031-0.1875zm0.46875-0.1875c0.17578 0.042969 0.42188 0.0625 0.73438 0.0625 0.35156 0 0.61328-0.035156 0.78125-0.10938-0.21094-0.050781-0.42969-0.078125-0.65625-0.078125-0.33594 0-0.62109 0.042969-0.85938 0.125z"/>
|
|
210
|
+
</symbol>
|
|
211
|
+
<symbol id="dr" overflow="visible">
|
|
212
|
+
<path d="m7.25-5.2188h-1.5312c0.28125 0.40625 0.42188 0.91406 0.42188 1.5156 0 1.0742-0.39844 2.0078-1.1875 2.7969-0.73047 0.6875-1.5078 1.0391-2.3281 1.0625-0.78125 0-1.3672-0.31641-1.75-0.95312-0.23047-0.375-0.34375-0.79688-0.34375-1.2656 0-0.82031 0.30078-1.6406 0.90625-2.4531 0.69531-0.91406 1.5352-1.4141 2.5156-1.5 0.082031-0.007813 0.16406-0.015625 0.25-0.015625h3.1875c0.32031 0 0.5 0.074219 0.53125 0.21875 0.007813 0.042969 0.015625 0.078125 0.015625 0.10938 0 0.32422-0.23047 0.48438-0.6875 0.48438zm-4.6094 5.0625c0.53906 0 1.0508-0.25781 1.5312-0.78125 0.125-0.125 0.23438-0.25781 0.32812-0.40625 0.38281-0.58203 0.625-1.2969 0.71875-2.1406 0.019531-0.14453 0.03125-0.26953 0.03125-0.375 0-0.84375-0.375-1.2891-1.125-1.3438l-0.015625-0.015625h-0.14062c-0.71875 0-1.3047 0.3125-1.75 0.9375-0.0625 0.074219-0.11719 0.14844-0.15625 0.21875-0.375 0.625-0.59375 1.3672-0.65625 2.2188v0.17188c0 0.74219 0.25781 1.2188 0.78125 1.4375 0.13281 0.054687 0.28516 0.078125 0.45312 0.078125z"/>
|
|
213
|
+
</symbol>
|
|
214
|
+
<symbol id="dq" overflow="visible">
|
|
215
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
216
|
+
</symbol>
|
|
217
|
+
<symbol id="dp" overflow="visible">
|
|
218
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
219
|
+
</symbol>
|
|
220
|
+
<symbol id="do" overflow="visible">
|
|
221
|
+
<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"/>
|
|
222
|
+
</symbol>
|
|
223
|
+
<symbol id="dn" overflow="visible">
|
|
224
|
+
<path d="m0.78125 19.594v-0.75c1.5312 0 2.2969-0.46484 2.2969-1.3906v-15.297c0-0.92969-0.76562-1.3906-2.2969-1.3906v-0.76562h16.312v0.76562c-1.5312 0-2.2969 0.46094-2.2969 1.3906v15.297c0 0.92578 0.76562 1.3906 2.2969 1.3906v0.75h-6.7969v-0.75c1.5312 0 2.2969-0.46484 2.2969-1.3906v-16.688h-7.3125v16.688c0 0.92578 0.76562 1.3906 2.2969 1.3906v0.75z"/>
|
|
225
|
+
</symbol>
|
|
226
|
+
<symbol id="dj" overflow="visible">
|
|
227
|
+
<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"/>
|
|
228
|
+
</symbol>
|
|
229
|
+
<symbol id="di" overflow="visible">
|
|
230
|
+
<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"/>
|
|
231
|
+
</symbol>
|
|
232
|
+
<symbol id="dh" overflow="visible">
|
|
233
|
+
<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"/>
|
|
234
|
+
</symbol>
|
|
235
|
+
<symbol id="dg" overflow="visible">
|
|
236
|
+
<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"/>
|
|
237
|
+
</symbol>
|
|
238
|
+
<symbol id="df" overflow="visible">
|
|
239
|
+
<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"/>
|
|
240
|
+
</symbol>
|
|
241
|
+
<symbol id="de" overflow="visible">
|
|
242
|
+
<path d="m5.1875-3.7344h-1.1094c0.20703 0.29297 0.3125 0.65625 0.3125 1.0938 0 0.76172-0.28125 1.4219-0.84375 1.9844-0.52344 0.5-1.0781 0.75391-1.6719 0.76562-0.55469 0-0.96875-0.22266-1.25-0.67188-0.16797-0.26953-0.25-0.57031-0.25-0.90625 0-0.59375 0.21875-1.1758 0.65625-1.75 0.5-0.65625 1.0938-1.0156 1.7812-1.0781 0.0625-0.007813 0.125-0.015625 0.1875-0.015625h2.2812c0.22656 0 0.35156 0.054688 0.375 0.15625 0.007812 0.03125 0.015625 0.0625 0.015625 0.09375 0 0.21875-0.16406 0.32812-0.48438 0.32812zm-3.2969 3.625c0.38281 0 0.75-0.1875 1.0938-0.5625 0.082031-0.082031 0.15625-0.17578 0.21875-0.28125 0.28125-0.41406 0.45703-0.92578 0.53125-1.5312 0.007813-0.10156 0.015625-0.19531 0.015625-0.28125 0-0.59375-0.26562-0.91016-0.79688-0.95312l-0.015625-0.015625h-0.10938c-0.51172 0-0.92969 0.22656-1.25 0.67188-0.042969 0.054688-0.078125 0.10547-0.10938 0.15625-0.27344 0.44922-0.42188 0.98047-0.45312 1.5938-0.011719 0.042969-0.015625 0.085938-0.015625 0.125 0 0.52344 0.1875 0.85938 0.5625 1.0156 0.09375 0.042969 0.20312 0.0625 0.32812 0.0625z"/>
|
|
243
|
+
</symbol>
|
|
244
|
+
<symbol id="dd" overflow="visible">
|
|
245
|
+
<path d="m3.3125 2.4062c0 0.0625-0.039062 0.09375-0.10938 0.09375-0.074219 0-0.24609-0.13672-0.51562-0.40625-0.41797-0.41797-0.76172-0.90625-1.0312-1.4688-0.44922-0.90625-0.67188-1.9453-0.67188-3.125 0-1.125 0.21094-2.1406 0.64062-3.0469 0.34375-0.73828 0.78125-1.332 1.3125-1.7812 0.14453-0.11328 0.23438-0.17188 0.26562-0.17188 0.070313 0 0.10938 0.03125 0.10938 0.09375 0 0.042969-0.042969 0.10156-0.125 0.17188-1.0859 1.0938-1.625 2.6719-1.625 4.7344 0 2.0547 0.52344 3.6133 1.5781 4.6875 0.11328 0.10156 0.17188 0.17578 0.17188 0.21875z"/>
|
|
246
|
+
</symbol>
|
|
247
|
+
<symbol id="dc" overflow="visible">
|
|
248
|
+
<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"/>
|
|
249
|
+
</symbol>
|
|
250
|
+
<symbol id="db" overflow="visible">
|
|
251
|
+
<path d="m2.8906-2.5c0 1.125-0.21094 2.1406-0.625 3.0469-0.35547 0.73828-0.79688 1.332-1.3281 1.7812-0.13672 0.11328-0.22656 0.17188-0.26562 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.042969 0.046875-0.10156 0.14062-0.17188 1.0703-1.0938 1.6094-2.6719 1.6094-4.7344 0-2.0312-0.5-3.5703-1.5-4.625l-0.046875-0.046875c-0.13672-0.11328-0.20312-0.19141-0.20312-0.23438 0-0.0625 0.035156-0.09375 0.10938-0.09375 0.082031 0 0.25781 0.13672 0.53125 0.40625 0.40625 0.41797 0.75 0.90625 1.0312 1.4688 0.4375 0.90625 0.65625 1.9492 0.65625 3.125z"/>
|
|
252
|
+
</symbol>
|
|
253
|
+
<symbol id="da" overflow="visible">
|
|
254
|
+
<path d="m0.28125 1.6875 1.5156-6.0625c0.19531-0.75781 0.57031-1.4062 1.125-1.9375 0.51953-0.48828 1.0664-0.73438 1.6406-0.73438 0.55078 0 0.94531 0.21875 1.1875 0.65625 0.10156 0.1875 0.15625 0.39844 0.15625 0.625 0 0.5-0.21094 0.96094-0.625 1.375-0.14844 0.13672-0.30469 0.25781-0.46875 0.35938 0.44531 0.3125 0.67188 0.77734 0.67188 1.3906 0 0.6875-0.26562 1.3125-0.79688 1.875-0.51172 0.54297-1.0898 0.83594-1.7344 0.89062h-0.125c-0.64844 0-1.1211-0.25-1.4219-0.75-0.074219-0.13281-0.13281-0.27344-0.17188-0.42188l-0.75 2.9219-0.015625 0.03125c-0.023438 0.019531-0.054688 0.03125-0.09375 0.03125-0.085938 0-0.125-0.03125-0.125-0.09375 0-0.023438 0.007812-0.074219 0.03125-0.15625zm3-5.7031c0.11328 0.042969 0.25391 0.0625 0.42188 0.0625 0.20703 0 0.36719-0.023437 0.48438-0.078125-0.085938-0.039062-0.21484-0.0625-0.39062-0.0625-0.24219 0-0.41406 0.027344-0.51562 0.078125zm1.2188-0.1875c0.40625-0.3125 0.65625-0.83203 0.75-1.5625v-0.03125c0.007812-0.09375 0.015625-0.16406 0.015625-0.21875 0-0.47656-0.19531-0.74219-0.57812-0.79688-0.042969-0.007812-0.089844-0.015625-0.14062-0.015625-0.55469 0-1.0742 0.25781-1.5625 0.76562-0.46094 0.48047-0.78906 1.1172-0.98438 1.9062l-0.45312 1.8438c-0.09375 0.34375-0.14062 0.59375-0.14062 0.75 0 0.55469 0.19531 0.96094 0.59375 1.2188 0.22656 0.16797 0.5 0.25 0.8125 0.25 0.51953 0 0.96875-0.28125 1.3438-0.84375 0.039062-0.0625 0.078125-0.125 0.10938-0.1875 0.23828-0.44531 0.39453-0.98438 0.46875-1.6094 0.019531-0.11328 0.03125-0.20703 0.03125-0.28125 0-0.35156-0.10547-0.63281-0.3125-0.84375-0.21094 0.085937-0.46094 0.125-0.75 0.125-0.44922 0-0.67188-0.082031-0.67188-0.25 0-0.21875 0.25781-0.32812 0.78125-0.32812 0.26953 0 0.5 0.039062 0.6875 0.10938z"/>
|
|
255
|
+
</symbol>
|
|
256
|
+
<symbol id="cx" overflow="visible">
|
|
257
|
+
<path d="m4.7656-2.3594v0.625c0.4375-0.53906 0.76562-1.2031 0.98438-1.9844 0.0625-0.13281 0.11328-0.20703 0.15625-0.21875 0.070312 0 0.10938 0.039062 0.10938 0.10938 0 0.11719-0.074219 0.37109-0.21875 0.76562-0.23047 0.57422-0.53906 1.1016-0.92188 1.5781-0.074219 0.13672-0.10938 0.25781-0.10938 0.35938 0 0.67969 0.10156 1.0156 0.3125 1.0156 0.20703 0 0.375-0.11328 0.5-0.34375 0.019531-0.039063 0.039063-0.085937 0.0625-0.14062 0.03125-0.070312 0.070313-0.10938 0.125-0.10938 0.082031 0 0.125 0.039063 0.125 0.10938 0 0.125-0.085937 0.27344-0.25 0.4375-0.17969 0.17578-0.375 0.26562-0.59375 0.26562-0.41797 0-0.70312-0.22656-0.85938-0.6875-0.023438-0.050781-0.039062-0.10156-0.046875-0.15625-0.69922 0.5625-1.4023 0.84375-2.1094 0.84375-0.625 0-1.0859-0.25-1.375-0.75-0.16797-0.26953-0.25-0.58203-0.25-0.9375 0-0.67578 0.25781-1.3047 0.78125-1.8906 0.50781-0.57031 1.0938-0.88281 1.75-0.9375 0.050781-0.007812 0.10156-0.015625 0.15625-0.015625 0.5625 0 1 0.21875 1.3125 0.65625v0.015625c0.23828 0.35547 0.35938 0.82031 0.35938 1.3906zm-0.67188 1.375c-0.011719-0.11328-0.015625-0.48828-0.015625-1.125 0-0.82031-0.089844-1.3828-0.26562-1.6875-0.085938-0.125-0.18359-0.22266-0.29688-0.29688h-0.015625c-0.125-0.070312-0.26172-0.10938-0.40625-0.10938-0.48047 0-0.90625 0.26562-1.2812 0.79688l-0.078125 0.125c-0.24219 0.38672-0.41797 0.92969-0.53125 1.625-0.03125 0.1875-0.046875 0.33984-0.046875 0.45312 0 0.5625 0.19141 0.91406 0.57812 1.0469 0.09375 0.03125 0.19531 0.046875 0.3125 0.046875 0.69531 0 1.3789-0.28906 2.0469-0.875z"/>
|
|
258
|
+
</symbol>
|
|
259
|
+
<symbol id="cw" overflow="visible">
|
|
260
|
+
<path d="m9.2656 33c-1.1484-1.0234-2.1328-2.1836-2.9531-3.4844-0.8125-1.293-1.4688-2.6641-1.9688-4.1094-0.5-1.4375-0.86719-2.9336-1.0938-4.4844-0.23047-1.543-0.34375-3.1016-0.34375-4.6719 0-1.5938 0.11328-3.168 0.34375-4.7188 0.22656-1.543 0.58594-3.0391 1.0781-4.4844 0.5-1.4375 1.1602-2.8086 1.9844-4.1094 0.82031-1.3047 1.8047-2.4609 2.9531-3.4688 0-0.019531 0.023437-0.03125 0.078125-0.03125h0.35938c0.019531 0 0.039063 0.015625 0.0625 0.046875 0.03125 0.023437 0.046875 0.046875 0.046875 0.078125 0 0.042969-0.007812 0.074219-0.015625 0.09375-1.0742 1.0508-1.9805 2.2188-2.7188 3.5-0.73047 1.2891-1.3125 2.6484-1.75 4.0781-0.42969 1.4258-0.73438 2.8906-0.92188 4.3906-0.1875 1.5078-0.28125 3.0508-0.28125 4.625 0 1.5625 0.085938 3.082 0.26562 4.5625 0.1875 1.4766 0.5 2.9414 0.9375 4.3906 0.4375 1.4453 1.0234 2.8125 1.7656 4.0938 0.73828 1.2891 1.6406 2.4609 2.7031 3.5156 0.007813 0.019531 0.015625 0.050781 0.015625 0.09375 0 0.019531-0.015625 0.046875-0.046875 0.078125-0.023437 0.03125-0.042969 0.046875-0.0625 0.046875h-0.35938c-0.054688 0-0.078125-0.011719-0.078125-0.03125z"/>
|
|
261
|
+
</symbol>
|
|
262
|
+
<symbol id="cv" overflow="visible">
|
|
263
|
+
<path d="m0.60938 33.031c-0.085937 0-0.125-0.042969-0.125-0.125 0-0.042969 0.003906-0.074219 0.015625-0.09375 1.0703-1.0547 1.9727-2.2266 2.7031-3.5156 0.73828-1.293 1.3203-2.6523 1.75-4.0781 0.4375-1.418 0.74219-2.8711 0.92188-4.3594 0.1875-1.4922 0.28125-3.0312 0.28125-4.625 0-1.625-0.09375-3.1797-0.28125-4.6562-0.17969-1.4688-0.48047-2.9141-0.90625-4.3281-0.42969-1.418-1.0156-2.7773-1.7656-4.0781-0.74219-1.3047-1.6406-2.4766-2.7031-3.5156-0.011719-0.019531-0.015625-0.050781-0.015625-0.09375 0-0.082031 0.039063-0.125 0.125-0.125h0.35938c0.03125 0 0.054688 0.011719 0.078125 0.03125 1.1445 1.0195 2.1289 2.1797 2.9531 3.4844 0.82031 1.3008 1.4766 2.6719 1.9688 4.1094 0.48828 1.4453 0.84375 2.9414 1.0625 4.4844 0.22656 1.5391 0.34375 3.1094 0.34375 4.7031 0 1.5703-0.11719 3.125-0.34375 4.6562-0.21875 1.5391-0.57422 3.0352-1.0625 4.4844-0.49219 1.4453-1.1484 2.8203-1.9688 4.125-0.82422 1.3008-1.8086 2.4609-2.9531 3.4844-0.023437 0.019531-0.046875 0.03125-0.078125 0.03125z"/>
|
|
264
|
+
</symbol>
|
|
265
|
+
<symbol id="cu" overflow="visible">
|
|
266
|
+
<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"/>
|
|
267
|
+
</symbol>
|
|
268
|
+
<symbol id="ct" overflow="visible">
|
|
269
|
+
<path d="m3.3438-9.5625-1.0312 4.2188c0.53906-0.5625 1.0859-0.84375 1.6406-0.84375 0.69531 0 1.2188 0.32422 1.5625 0.96875 0.19531 0.375 0.29688 0.79688 0.29688 1.2656 0 0.99219-0.34375 1.918-1.0312 2.7812-0.64844 0.79297-1.3594 1.2266-2.1406 1.3125-0.074219 0.007813-0.14062 0.015625-0.20312 0.015625-0.67969 0-1.1797-0.3125-1.5-0.9375-0.1875-0.35156-0.28125-0.77344-0.28125-1.2656 0-0.3125 0.070312-0.78125 0.21875-1.4062l1.1562-4.5625c0.125-0.55078 0.1875-0.84375 0.1875-0.875 0-0.10156-0.0625-0.17188-0.1875-0.20312-0.11719-0.019531-0.28125-0.03125-0.5-0.03125-0.21094 0-0.32422-0.054688-0.34375-0.17188 0-0.15625 0.085938-0.25 0.26562-0.28125l1.7031-0.14062c0.125 0 0.1875 0.054688 0.1875 0.15625zm-1.3125 5.2969-0.3125 1.2812c-0.14844 0.59375-0.21875 1.0703-0.21875 1.4219 0 0.80469 0.23828 1.2617 0.71875 1.375 0.070312 0.023438 0.14453 0.03125 0.21875 0.03125 0.48828 0 0.95312-0.32812 1.3906-0.98438 0.09375-0.13281 0.17969-0.28516 0.26562-0.45312 0.25-0.53125 0.45703-1.25 0.625-2.1562 0.050781-0.32031 0.078125-0.59375 0.078125-0.8125 0-0.75-0.23047-1.1797-0.6875-1.2969-0.0625-0.007813-0.125-0.015625-0.1875-0.015625-0.5625 0-1.125 0.37109-1.6875 1.1094-0.074219 0.09375-0.14062 0.26172-0.20312 0.5z"/>
|
|
270
|
+
</symbol>
|
|
271
|
+
<symbol id="cs" overflow="visible">
|
|
272
|
+
<path d="m5.5469-5.3125c-0.26172-0.34375-0.66406-0.53125-1.2031-0.5625-0.60547 0-1.1562 0.30859-1.6562 0.92188-0.125 0.14844-0.23438 0.30469-0.32812 0.46875-0.36719 0.6875-0.60547 1.4922-0.71875 2.4062-0.023437 0.15625-0.03125 0.28906-0.03125 0.39062 0 0.77344 0.25781 1.2578 0.78125 1.4531 0.13281 0.054687 0.29688 0.078125 0.48438 0.078125 0.83203 0 1.5859-0.28125 2.2656-0.84375 0.19531-0.15625 0.375-0.33594 0.53125-0.54688 0.0625-0.09375 0.125-0.14062 0.1875-0.14062 0.082031 0 0.13281 0.0625 0.15625 0.1875 0 0.10547-0.15625 0.30859-0.46875 0.60938-0.78125 0.69922-1.6836 1.0469-2.7031 1.0469-0.88672 0-1.5312-0.35156-1.9375-1.0625-0.21875-0.38281-0.32812-0.82031-0.32812-1.3125 0-0.94531 0.36328-1.8281 1.0938-2.6406 0.71875-0.80078 1.5195-1.2383 2.4062-1.3125 0.082031-0.007813 0.16406-0.015625 0.25-0.015625 0.71875 0 1.2188 0.21875 1.5 0.65625 0.10156 0.16797 0.15625 0.35156 0.15625 0.54688 0 0.40625-0.16797 0.6875-0.5 0.84375-0.09375 0.03125-0.19531 0.046875-0.29688 0.046875-0.27344 0-0.4375-0.11719-0.5-0.35938-0.011719-0.039063-0.015625-0.082031-0.015625-0.125 0-0.20703 0.082031-0.39062 0.25-0.54688 0.13281-0.125 0.34375-0.1875 0.625-0.1875z"/>
|
|
273
|
+
</symbol>
|
|
274
|
+
<symbol id="cr" overflow="visible">
|
|
275
|
+
<path d="m7.2188-9.5625-2.0156 8.0938c-0.054687 0.23047-0.078125 0.45312-0.078125 0.67188 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.89062l0.84375-3.3125 0.046875-0.28125c0-0.10156-0.070313-0.17188-0.20312-0.20312-0.11719-0.019531-0.28125-0.03125-0.5-0.03125-0.21094 0-0.32422-0.054688-0.34375-0.17188 0-0.15625 0.066406-0.24219 0.20312-0.26562 0.875-0.10156 1.4688-0.15625 1.7812-0.15625 0.11328 0 0.17188 0.054688 0.17188 0.15625zm-2.9062 7.8906 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"/>
|
|
276
|
+
</symbol>
|
|
277
|
+
<symbol id="cq" overflow="visible">
|
|
278
|
+
<path d="m2.6406-4.375c-0.34375-0.66406-0.53906-1.1445-0.57812-1.4375-0.011719-0.09375-0.015625-0.17969-0.015625-0.26562 0-0.53125 0.23828-0.85938 0.71875-0.98438 0.125-0.03125 0.26562-0.046875 0.42188-0.046875 0.19531 0 0.46875 0.039063 0.8125 0.10938 0.28125 0.0625 0.44141 0.125 0.48438 0.1875 0.019531 0.03125 0.03125 0.078125 0.03125 0.14062 0 0.15625-0.074219 0.27734-0.21875 0.35938-0.054687 0.03125-0.10938 0.046875-0.17188 0.046875-0.09375 0-0.28125-0.082031-0.5625-0.25-0.27344-0.1875-0.50781-0.28125-0.70312-0.28125-0.26172 0-0.43359 0.10547-0.51562 0.3125-0.023438 0.054687-0.03125 0.10547-0.03125 0.15625 0 0.30469 0.31641 0.85156 0.95312 1.6406 0.3125 0.41797 0.51562 0.76562 0.60938 1.0469 0.082031 0.25 0.125 0.52344 0.125 0.8125 0 0.76172-0.19922 1.4453-0.59375 2.0469-0.39844 0.60547-0.86719 0.90625-1.4062 0.90625-0.58594 0-1.0234-0.23438-1.3125-0.70312-0.17969-0.28125-0.26562-0.60938-0.26562-0.98438 0-0.66406 0.25-1.2891 0.75-1.875 0.41406-0.48828 0.90625-0.80078 1.4688-0.9375zm0.125 0.21875c-0.69922 0.1875-1.2031 0.75781-1.5156 1.7031-0.13672 0.4375-0.20312 0.82812-0.20312 1.1719 0 0.5625 0.1875 0.92969 0.5625 1.0938 0.125 0.0625 0.25391 0.09375 0.39062 0.09375 0.45703 0 0.8125-0.36328 1.0625-1.0938 0.16406-0.44531 0.25-0.86328 0.25-1.25 0-0.45703-0.16406-0.98828-0.48438-1.5938-0.011719-0.019531-0.03125-0.0625-0.0625-0.125z"/>
|
|
279
|
+
</symbol>
|
|
280
|
+
<symbol id="cp" overflow="visible">
|
|
281
|
+
<path d="m0.40625-2.5469-0.03125 0.0625c-0.125 0-0.1875-0.035156-0.1875-0.10938 0-0.1875 0.10938-0.45312 0.32812-0.79688 0.46875-0.67578 1.0039-1.0195 1.6094-1.0312 0.60156 0 1.0469 0.37109 1.3281 1.1094 0.25 0.61719 0.39062 1.293 0.42188 2.0312 0.51953-1.3203 0.95703-2.3047 1.3125-2.9531 0.019531-0.050781 0.0625-0.078125 0.125-0.078125 0.082031 0 0.125 0.039062 0.125 0.10938 0 0.03125-0.070312 0.15625-0.20312 0.375-0.49219 0.98047-0.91797 1.9961-1.2812 3.0469-0.03125 0.085938-0.058594 0.15625-0.078125 0.21875-0.023438 0.085938-0.046875 0.21484-0.078125 0.39062-0.0625 0.46875-0.18359 1.0391-0.35938 1.7188-0.11719 0.38281-0.22656 0.58594-0.32812 0.60938-0.085937 0-0.125-0.0625-0.125-0.1875 0-0.27344 0.16406-0.96875 0.5-2.0938 0-0.019531 0.003906-0.039062 0.015625-0.0625 0.082031-0.21875 0.125-0.53906 0.125-0.96875 0-1.5703-0.46875-2.4141-1.4062-2.5312-0.074219-0.007812-0.14844-0.015625-0.21875-0.015625-0.46875 0-0.86719 0.16797-1.1875 0.5h-0.015625c-0.16797 0.17969-0.29688 0.39844-0.39062 0.65625z"/>
|
|
282
|
+
</symbol>
|
|
283
|
+
<symbol id="co" overflow="visible">
|
|
284
|
+
<path d="m1.4844 30.391c0.22656 0.22656 0.51562 0.34375 0.85938 0.34375 0.33203 0 0.63281-0.23047 0.90625-0.6875 0.28125-0.46094 0.52344-1.0391 0.73438-1.7344 0.21875-0.6875 0.375-1.2656 0.46875-1.7344s0.21094-1.0742 0.35938-1.8125c0.13281-0.6875 0.26562-1.3828 0.39062-2.0781 0.125-0.6875 0.25-1.4219 0.375-2.2031 0.13281-0.78125 0.26953-1.5742 0.40625-2.375 0.14453-0.80469 0.3125-1.6641 0.5-2.5781 0.23828-1.1875 0.41016-2.043 0.51562-2.5625 0.11328-0.51172 0.28125-1.25 0.5-2.2188s0.36328-1.6094 0.4375-1.9219c0.070312-0.30469 0.26953-1.1406 0.59375-2.5156l0.1875-0.73438c0.20703-0.8125 0.36719-1.4336 0.48438-1.8594 0.11328-0.41797 0.28906-0.93359 0.53125-1.5469 0.23828-0.60547 0.51953-1.1211 0.84375-1.5469 0.32031-0.41797 0.67969-0.625 1.0781-0.625 0.26953 0 0.51953 0.0625 0.75 0.1875 0.23828 0.125 0.42969 0.28906 0.57812 0.5 0.14453 0.21875 0.21875 0.46094 0.21875 0.73438 0 0.20703-0.070313 0.375-0.20312 0.5-0.13672 0.13281-0.30469 0.20312-0.5 0.20312-0.19922 0-0.37109-0.070312-0.51562-0.20312-0.13672-0.125-0.20312-0.29297-0.20312-0.5 0-0.19922 0.066406-0.36719 0.20312-0.5 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312-0.24219-0.24219-0.52344-0.35938-0.84375-0.35938-0.16797 0-0.35547 0.25-0.5625 0.75-0.21094 0.50781-0.40234 1.1094-0.57812 1.7969-0.17969 0.6875-0.3125 1.2578-0.40625 1.7188-0.09375 0.45703-0.20312 1.0312-0.32812 1.7188-0.15625 0.78125-0.28906 1.457-0.39062 2.0312-0.10547 0.58203-0.23047 1.3008-0.375 2.1562-0.14844 0.85156-0.29297 1.6602-0.4375 2.4219-0.13672 0.76953-0.29688 1.6406-0.48438 2.6094-0.125 0.61328-0.30469 1.4727-0.53125 2.5781-0.23047 1.1016-0.38672 1.8203-0.46875 2.1562-0.074219 0.33203-0.26562 1.1445-0.57812 2.4375-0.30469 1.2891-0.46484 1.9766-0.48438 2.0625l-0.17188 0.64062c-0.24219 0.98828-0.48438 1.8594-0.73438 2.6094-0.24219 0.75-0.59375 1.4453-1.0625 2.0938-0.46875 0.64453-1.043 0.96875-1.7188 0.96875-0.40625 0-0.77344-0.13672-1.0938-0.40625-0.3125-0.27344-0.46875-0.60547-0.46875-1 0-0.21094 0.066406-0.38281 0.20312-0.51562 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312 0.13281 0 0.25391 0.03125 0.35938 0.09375 0.10156 0.0625 0.1875 0.14453 0.25 0.25 0.0625 0.11328 0.09375 0.23828 0.09375 0.375 0 0.19531-0.070313 0.35938-0.20312 0.48438-0.13672 0.13281-0.30859 0.20312-0.51562 0.20312z"/>
|
|
285
|
+
</symbol>
|
|
286
|
+
<symbol id="cn" overflow="visible">
|
|
287
|
+
<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"/>
|
|
288
|
+
</symbol>
|
|
289
|
+
<symbol id="cm" overflow="visible">
|
|
290
|
+
<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"/>
|
|
291
|
+
</symbol>
|
|
292
|
+
<symbol id="cl" overflow="visible">
|
|
293
|
+
<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"/>
|
|
294
|
+
</symbol>
|
|
295
|
+
<symbol id="ck" overflow="visible">
|
|
296
|
+
<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"/>
|
|
297
|
+
</symbol>
|
|
298
|
+
<symbol id="ci" overflow="visible">
|
|
299
|
+
<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"/>
|
|
300
|
+
</symbol>
|
|
301
|
+
<symbol id="ch" overflow="visible">
|
|
302
|
+
<path d="m2.625-3.2344h-0.75c-0.14844 0.60547-0.21875 1.0898-0.21875 1.4531 0 0.74219 0.21094 1.2344 0.64062 1.4844 0.15625 0.09375 0.34766 0.14062 0.57812 0.14062 0.83203 0 1.5859-0.28125 2.2656-0.84375 0.19531-0.15625 0.375-0.33594 0.53125-0.54688 0.0625-0.09375 0.125-0.14062 0.1875-0.14062 0.082031 0 0.13281 0.0625 0.15625 0.1875 0 0.10547-0.15625 0.30859-0.46875 0.60938-0.78125 0.69922-1.6836 1.0469-2.7031 1.0469-0.84375 0-1.4609-0.35938-1.8438-1.0781-0.24219-0.41406-0.35938-0.89844-0.35938-1.4531 0-1.2266 0.47656-2.2188 1.4375-2.9688 0.69531-0.5625 1.4414-0.84375 2.2344-0.84375 0.66406 0 1.125 0.23438 1.375 0.70312 0.082031 0.14844 0.125 0.30859 0.125 0.48438 0 0.49219-0.21094 0.89062-0.625 1.2031l-0.015625 0.015625c-0.125 0.085938-0.26172 0.15625-0.40625 0.21875-0.52344 0.21875-1.2344 0.32812-2.1406 0.32812zm-0.67188-0.3125h0.57812c1.875 0 2.8125-0.48438 2.8125-1.4531 0-0.375-0.18359-0.64062-0.54688-0.79688-0.125-0.039063-0.28906-0.066406-0.48438-0.078125-0.52344 0-1 0.21484-1.4375 0.64062-0.42969 0.40625-0.73438 0.96875-0.92188 1.6875z"/>
|
|
303
|
+
</symbol>
|
|
304
|
+
<symbol id="cg" overflow="visible">
|
|
305
|
+
<path d="m6.6094-2.2969h-5.4531c-0.21094 0-0.32031-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.4531c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
306
|
+
</symbol>
|
|
307
|
+
<symbol id="cf" overflow="visible">
|
|
308
|
+
<path d="m3.7344-3.7812c0.03125-0.22656 0.13281-0.36719 0.3125-0.42188 0.03125-0.007813 0.066406-0.015625 0.10938-0.015625 0.16406 0 0.25781 0.089844 0.28125 0.26562 0 0.042969-0.023438 0.15625-0.0625 0.34375l-0.35938 1.4062c-0.10547 0.41797-0.17969 0.71484-0.21875 0.89062-0.09375 0.34375-0.14062 0.59375-0.14062 0.75 0 0.30469 0.097656 0.45312 0.29688 0.45312 0.25781 0 0.47266-0.26562 0.64062-0.79688 0.039062-0.11328 0.082031-0.25781 0.125-0.4375 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.10547-0.0625 0.33984-0.1875 0.70312-0.042969 0.11719-0.078125 0.21484-0.10938 0.29688-0.1875 0.36719-0.4375 0.54688-0.75 0.54688-0.375 0-0.64844-0.16016-0.8125-0.48438-0.042969-0.070312-0.074219-0.16016-0.09375-0.26562-0.41797 0.5-0.85156 0.75-1.2969 0.75-0.5 0-0.87109-0.22266-1.1094-0.67188-0.14844-0.26953-0.21875-0.57812-0.21875-0.92188 0-0.71875 0.25-1.3828 0.75-2 0.45703-0.5625 0.96094-0.86719 1.5156-0.92188 0.039063-0.007812 0.085937-0.015625 0.14062-0.015625 0.40625 0 0.71094 0.21484 0.92188 0.64062zm-0.65625 2.5938 0.5-1.9688c0.019531-0.09375 0.03125-0.14453 0.03125-0.15625 0-0.14453-0.058594-0.31641-0.17188-0.51562-0.15625-0.25-0.36719-0.375-0.625-0.375-0.34375 0-0.67188 0.23047-0.98438 0.6875-0.0625 0.085937-0.12109 0.17969-0.17188 0.28125-0.1875 0.38672-0.35156 0.93359-0.48438 1.6406-0.042969 0.23047-0.0625 0.41406-0.0625 0.54688 0 0.44922 0.125 0.74219 0.375 0.875 0.070313 0.042969 0.16016 0.0625 0.26562 0.0625 0.375 0 0.75-0.23438 1.125-0.70312 0.09375-0.11328 0.15625-0.22656 0.1875-0.34375 0.007812-0.019531 0.015625-0.03125 0.015625-0.03125z"/>
|
|
309
|
+
</symbol>
|
|
310
|
+
<symbol id="ce" overflow="visible">
|
|
311
|
+
<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"/>
|
|
312
|
+
</symbol>
|
|
313
|
+
<symbol id="cd" overflow="visible">
|
|
314
|
+
<path d="m3.1406-1.2188-0.1875 1.2188h-2.6094c0-0.11328 0.015625-0.1875 0.046875-0.21875l0.03125-0.046875 1.3438-1.4844c0.48828-0.55078 0.73438-1.0664 0.73438-1.5469 0-0.41406-0.125-0.73438-0.375-0.95312h-0.015625c-0.14844-0.125-0.32812-0.1875-0.54688-0.1875-0.33594 0-0.60156 0.14062-0.79688 0.42188-0.0625 0.085937-0.10938 0.17969-0.14062 0.28125h0.09375c0.1875 0 0.30469 0.085937 0.35938 0.25v0.10938c0 0.1875-0.089844 0.30859-0.26562 0.35938-0.03125 0.011719-0.0625 0.015625-0.09375 0.015625-0.16797 0-0.28125-0.070312-0.34375-0.21875-0.023438-0.050781-0.03125-0.10938-0.03125-0.17188 0-0.36328 0.14062-0.67188 0.42188-0.92188 0.25-0.22656 0.54688-0.34375 0.89062-0.34375 0.50781 0 0.91016 0.17188 1.2031 0.51562 0.15625 0.19922 0.25 0.43359 0.28125 0.70312v0.14062c0 0.33594-0.125 0.65625-0.375 0.96875-0.13672 0.15625-0.35156 0.36719-0.64062 0.625l-0.42188 0.375-0.078125 0.0625-0.73438 0.73438h1.2656c0.40625 0 0.625-0.019531 0.65625-0.0625 0.050781-0.0625 0.10156-0.26953 0.15625-0.625z"/>
|
|
315
|
+
</symbol>
|
|
316
|
+
<symbol id="cc" overflow="visible">
|
|
317
|
+
<path d="m7.2188-9.5625-2.0156 8.0938c-0.054687 0.23047-0.078125 0.45312-0.078125 0.67188 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.89062l0.84375-3.3125 0.046875-0.28125c0-0.10156-0.070313-0.17188-0.20312-0.20312-0.11719-0.019531-0.28125-0.03125-0.5-0.03125-0.21094 0-0.32422-0.054688-0.34375-0.17188 0-0.15625 0.066406-0.24219 0.20312-0.26562 0.875-0.10156 1.4688-0.15625 1.7812-0.15625 0.11328 0 0.17188 0.054688 0.17188 0.15625zm-2.9062 7.8906 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"/>
|
|
318
|
+
</symbol>
|
|
319
|
+
<symbol id="cb" overflow="visible">
|
|
320
|
+
<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"/>
|
|
321
|
+
</symbol>
|
|
322
|
+
<symbol id="ca" overflow="visible">
|
|
323
|
+
<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"/>
|
|
324
|
+
</symbol>
|
|
325
|
+
<symbol id="bz" overflow="visible">
|
|
326
|
+
<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"/>
|
|
327
|
+
</symbol>
|
|
328
|
+
<symbol id="by" overflow="visible">
|
|
329
|
+
<path d="m9.625-4.5781h-8.3594c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.375c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0 2.7188h-8.375c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.3594c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
330
|
+
</symbol>
|
|
331
|
+
<symbol id="n" overflow="visible">
|
|
332
|
+
<path d="m6.2812-2.4375-0.39062 2.4375h-5.1875c0-0.22656 0.023437-0.37891 0.078125-0.45312l0.078125-0.0625 2.6875-3c0.97656-1.1016 1.4688-2.1328 1.4688-3.0938 0-0.83203-0.25781-1.4609-0.76562-1.8906l-0.015625-0.015625c-0.30469-0.25-0.66797-0.375-1.0938-0.375-0.67969 0-1.2148 0.29297-1.6094 0.875-0.11719 0.16797-0.21094 0.35156-0.28125 0.54688h0.17188c0.375 0 0.61328 0.16797 0.71875 0.5v0.015625c0.019531 0.0625 0.03125 0.13281 0.03125 0.20312 0 0.375-0.17969 0.61719-0.53125 0.71875-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.34375 0-0.57422-0.14453-0.6875-0.4375-0.03125-0.10156-0.046875-0.22266-0.046875-0.35938 0-0.71875 0.27344-1.332 0.82812-1.8438 0.48828-0.45703 1.082-0.6875 1.7812-0.6875 1.0312 0 1.832 0.35156 2.4062 1.0469 0.32031 0.39844 0.50391 0.87109 0.54688 1.4219 0.007813 0.085937 0.015625 0.16797 0.015625 0.25 0 0.67969-0.25781 1.3281-0.76562 1.9531-0.27344 0.3125-0.69531 0.73047-1.2656 1.25l-0.84375 0.76562-0.14062 0.125-1.4844 1.4375h2.5156c0.82031 0 1.2656-0.035156 1.3281-0.10938 0.09375-0.13281 0.19531-0.55078 0.3125-1.25z"/>
|
|
333
|
+
</symbol>
|
|
334
|
+
<symbol id="bx" overflow="visible">
|
|
335
|
+
<path d="m4.1094-8.9531v7.8438c0 0.28125 0.054687 0.46094 0.17188 0.53125 0.15625 0.09375 0.53516 0.14062 1.1406 0.14062h0.4375v0.4375c-0.32422-0.03125-1.0781-0.046875-2.2656-0.046875s-1.9453 0.015625-2.2656 0.046875v-0.4375h0.45312c0.71875 0 1.1289-0.082031 1.2344-0.25l0.015625-0.015625c0.03125-0.070313 0.046875-0.20703 0.046875-0.40625v-7.25c-0.48047 0.24219-1.0898 0.35938-1.8281 0.35938v-0.42188c1.1133 0 1.9609-0.30078 2.5469-0.90625 0.17578 0 0.28125 0.039063 0.3125 0.10938v0.26562z"/>
|
|
336
|
+
</symbol>
|
|
337
|
+
<symbol id="bw" overflow="visible">
|
|
338
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
339
|
+
</symbol>
|
|
340
|
+
<symbol id="bv" overflow="visible">
|
|
341
|
+
<path d="m1.4844 30.391c0.22656 0.22656 0.51562 0.34375 0.85938 0.34375 0.33203 0 0.63281-0.23047 0.90625-0.6875 0.28125-0.46094 0.52344-1.0391 0.73438-1.7344 0.21875-0.6875 0.375-1.2656 0.46875-1.7344s0.21094-1.0742 0.35938-1.8125c0.13281-0.6875 0.26562-1.3828 0.39062-2.0781 0.125-0.6875 0.25-1.4219 0.375-2.2031 0.13281-0.78125 0.26953-1.5742 0.40625-2.375 0.14453-0.80469 0.3125-1.6641 0.5-2.5781 0.23828-1.1875 0.41016-2.043 0.51562-2.5625 0.11328-0.51172 0.28125-1.25 0.5-2.2188s0.36328-1.6094 0.4375-1.9219c0.070312-0.30469 0.26953-1.1406 0.59375-2.5156l0.1875-0.73438c0.20703-0.8125 0.36719-1.4336 0.48438-1.8594 0.11328-0.41797 0.28906-0.93359 0.53125-1.5469 0.23828-0.60547 0.51953-1.1211 0.84375-1.5469 0.32031-0.41797 0.67969-0.625 1.0781-0.625 0.26953 0 0.51953 0.0625 0.75 0.1875 0.23828 0.125 0.42969 0.28906 0.57812 0.5 0.14453 0.21875 0.21875 0.46094 0.21875 0.73438 0 0.20703-0.070313 0.375-0.20312 0.5-0.13672 0.13281-0.30469 0.20312-0.5 0.20312-0.19922 0-0.37109-0.070312-0.51562-0.20312-0.13672-0.125-0.20312-0.29297-0.20312-0.5 0-0.19922 0.066406-0.36719 0.20312-0.5 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312-0.24219-0.24219-0.52344-0.35938-0.84375-0.35938-0.16797 0-0.35547 0.25-0.5625 0.75-0.21094 0.50781-0.40234 1.1094-0.57812 1.7969-0.17969 0.6875-0.3125 1.2578-0.40625 1.7188-0.09375 0.45703-0.20312 1.0312-0.32812 1.7188-0.15625 0.78125-0.28906 1.457-0.39062 2.0312-0.10547 0.58203-0.23047 1.3008-0.375 2.1562-0.14844 0.85156-0.29297 1.6602-0.4375 2.4219-0.13672 0.76953-0.29688 1.6406-0.48438 2.6094-0.125 0.61328-0.30469 1.4727-0.53125 2.5781-0.23047 1.1016-0.38672 1.8203-0.46875 2.1562-0.074219 0.33203-0.26562 1.1445-0.57812 2.4375-0.30469 1.2891-0.46484 1.9766-0.48438 2.0625l-0.17188 0.64062c-0.24219 0.98828-0.48438 1.8594-0.73438 2.6094-0.24219 0.75-0.59375 1.4453-1.0625 2.0938-0.46875 0.64453-1.043 0.96875-1.7188 0.96875-0.40625 0-0.77344-0.13672-1.0938-0.40625-0.3125-0.27344-0.46875-0.60547-0.46875-1 0-0.21094 0.066406-0.38281 0.20312-0.51562 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312 0.13281 0 0.25391 0.03125 0.35938 0.09375 0.10156 0.0625 0.1875 0.14453 0.25 0.25 0.0625 0.11328 0.09375 0.23828 0.09375 0.375 0 0.19531-0.070313 0.35938-0.20312 0.48438-0.13672 0.13281-0.30859 0.20312-0.51562 0.20312z"/>
|
|
342
|
+
</symbol>
|
|
343
|
+
<symbol id="bt" overflow="visible">
|
|
344
|
+
<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"/>
|
|
345
|
+
</symbol>
|
|
346
|
+
<symbol id="bs" overflow="visible">
|
|
347
|
+
<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"/>
|
|
348
|
+
</symbol>
|
|
349
|
+
<symbol id="br" overflow="visible">
|
|
350
|
+
<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"/>
|
|
351
|
+
</symbol>
|
|
352
|
+
<symbol id="bq" overflow="visible">
|
|
353
|
+
<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"/>
|
|
354
|
+
</symbol>
|
|
355
|
+
<symbol id="bp" overflow="visible">
|
|
356
|
+
<path d="m3.3125 2.4062c0 0.0625-0.039062 0.09375-0.10938 0.09375-0.074219 0-0.24609-0.13672-0.51562-0.40625-0.41797-0.41797-0.76172-0.90625-1.0312-1.4688-0.44922-0.90625-0.67188-1.9453-0.67188-3.125 0-1.125 0.21094-2.1406 0.64062-3.0469 0.34375-0.73828 0.78125-1.332 1.3125-1.7812 0.14453-0.11328 0.23438-0.17188 0.26562-0.17188 0.070313 0 0.10938 0.03125 0.10938 0.09375 0 0.042969-0.042969 0.10156-0.125 0.17188-1.0859 1.0938-1.625 2.6719-1.625 4.7344 0 2.0547 0.52344 3.6133 1.5781 4.6875 0.11328 0.10156 0.17188 0.17578 0.17188 0.21875z"/>
|
|
357
|
+
</symbol>
|
|
358
|
+
<symbol id="bo" overflow="visible">
|
|
359
|
+
<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"/>
|
|
360
|
+
</symbol>
|
|
361
|
+
<symbol id="bn" overflow="visible">
|
|
362
|
+
<path d="m6.6094-2.2969h-5.4531c-0.21094 0-0.32031-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.4531c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
363
|
+
</symbol>
|
|
364
|
+
<symbol id="bm" overflow="visible">
|
|
365
|
+
<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"/>
|
|
366
|
+
</symbol>
|
|
367
|
+
<symbol id="bl" overflow="visible">
|
|
368
|
+
<path d="m2.8906-2.5c0 1.125-0.21094 2.1406-0.625 3.0469-0.35547 0.73828-0.79688 1.332-1.3281 1.7812-0.13672 0.11328-0.22656 0.17188-0.26562 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.042969 0.046875-0.10156 0.14062-0.17188 1.0703-1.0938 1.6094-2.6719 1.6094-4.7344 0-2.0312-0.5-3.5703-1.5-4.625l-0.046875-0.046875c-0.13672-0.11328-0.20312-0.19141-0.20312-0.23438 0-0.0625 0.035156-0.09375 0.10938-0.09375 0.082031 0 0.25781 0.13672 0.53125 0.40625 0.40625 0.41797 0.75 0.90625 1.0312 1.4688 0.4375 0.90625 0.65625 1.9492 0.65625 3.125z"/>
|
|
369
|
+
</symbol>
|
|
370
|
+
<symbol id="bk" overflow="visible">
|
|
371
|
+
<path d="m2.625-3.2344h-0.75c-0.14844 0.60547-0.21875 1.0898-0.21875 1.4531 0 0.74219 0.21094 1.2344 0.64062 1.4844 0.15625 0.09375 0.34766 0.14062 0.57812 0.14062 0.83203 0 1.5859-0.28125 2.2656-0.84375 0.19531-0.15625 0.375-0.33594 0.53125-0.54688 0.0625-0.09375 0.125-0.14062 0.1875-0.14062 0.082031 0 0.13281 0.0625 0.15625 0.1875 0 0.10547-0.15625 0.30859-0.46875 0.60938-0.78125 0.69922-1.6836 1.0469-2.7031 1.0469-0.84375 0-1.4609-0.35938-1.8438-1.0781-0.24219-0.41406-0.35938-0.89844-0.35938-1.4531 0-1.2266 0.47656-2.2188 1.4375-2.9688 0.69531-0.5625 1.4414-0.84375 2.2344-0.84375 0.66406 0 1.125 0.23438 1.375 0.70312 0.082031 0.14844 0.125 0.30859 0.125 0.48438 0 0.49219-0.21094 0.89062-0.625 1.2031l-0.015625 0.015625c-0.125 0.085938-0.26172 0.15625-0.40625 0.21875-0.52344 0.21875-1.2344 0.32812-2.1406 0.32812zm-0.67188-0.3125h0.57812c1.875 0 2.8125-0.48438 2.8125-1.4531 0-0.375-0.18359-0.64062-0.54688-0.79688-0.125-0.039063-0.28906-0.066406-0.48438-0.078125-0.52344 0-1 0.21484-1.4375 0.64062-0.42969 0.40625-0.73438 0.96875-0.92188 1.6875z"/>
|
|
372
|
+
</symbol>
|
|
373
|
+
<symbol id="bg" overflow="visible">
|
|
374
|
+
<path d="m6.6094-2.2969h-5.4531c-0.21094 0-0.32031-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.4531c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
375
|
+
</symbol>
|
|
376
|
+
<symbol id="bf" overflow="visible">
|
|
377
|
+
<path d="m3.7344-3.7812c0.03125-0.22656 0.13281-0.36719 0.3125-0.42188 0.03125-0.007813 0.066406-0.015625 0.10938-0.015625 0.16406 0 0.25781 0.089844 0.28125 0.26562 0 0.042969-0.023438 0.15625-0.0625 0.34375l-0.35938 1.4062c-0.10547 0.41797-0.17969 0.71484-0.21875 0.89062-0.09375 0.34375-0.14062 0.59375-0.14062 0.75 0 0.30469 0.097656 0.45312 0.29688 0.45312 0.25781 0 0.47266-0.26562 0.64062-0.79688 0.039062-0.11328 0.082031-0.25781 0.125-0.4375 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.10547-0.0625 0.33984-0.1875 0.70312-0.042969 0.11719-0.078125 0.21484-0.10938 0.29688-0.1875 0.36719-0.4375 0.54688-0.75 0.54688-0.375 0-0.64844-0.16016-0.8125-0.48438-0.042969-0.070312-0.074219-0.16016-0.09375-0.26562-0.41797 0.5-0.85156 0.75-1.2969 0.75-0.5 0-0.87109-0.22266-1.1094-0.67188-0.14844-0.26953-0.21875-0.57812-0.21875-0.92188 0-0.71875 0.25-1.3828 0.75-2 0.45703-0.5625 0.96094-0.86719 1.5156-0.92188 0.039063-0.007812 0.085937-0.015625 0.14062-0.015625 0.40625 0 0.71094 0.21484 0.92188 0.64062zm-0.65625 2.5938 0.5-1.9688c0.019531-0.09375 0.03125-0.14453 0.03125-0.15625 0-0.14453-0.058594-0.31641-0.17188-0.51562-0.15625-0.25-0.36719-0.375-0.625-0.375-0.34375 0-0.67188 0.23047-0.98438 0.6875-0.0625 0.085937-0.12109 0.17969-0.17188 0.28125-0.1875 0.38672-0.35156 0.93359-0.48438 1.6406-0.042969 0.23047-0.0625 0.41406-0.0625 0.54688 0 0.44922 0.125 0.74219 0.375 0.875 0.070313 0.042969 0.16016 0.0625 0.26562 0.0625 0.375 0 0.75-0.23438 1.125-0.70312 0.09375-0.11328 0.15625-0.22656 0.1875-0.34375 0.007812-0.019531 0.015625-0.03125 0.015625-0.03125z"/>
|
|
378
|
+
</symbol>
|
|
379
|
+
<symbol id="be" overflow="visible">
|
|
380
|
+
<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"/>
|
|
381
|
+
</symbol>
|
|
382
|
+
<symbol id="bd" overflow="visible">
|
|
383
|
+
<path d="m3.1406-1.2188-0.1875 1.2188h-2.6094c0-0.11328 0.015625-0.1875 0.046875-0.21875l0.03125-0.046875 1.3438-1.4844c0.48828-0.55078 0.73438-1.0664 0.73438-1.5469 0-0.41406-0.125-0.73438-0.375-0.95312h-0.015625c-0.14844-0.125-0.32812-0.1875-0.54688-0.1875-0.33594 0-0.60156 0.14062-0.79688 0.42188-0.0625 0.085937-0.10938 0.17969-0.14062 0.28125h0.09375c0.1875 0 0.30469 0.085937 0.35938 0.25v0.10938c0 0.1875-0.089844 0.30859-0.26562 0.35938-0.03125 0.011719-0.0625 0.015625-0.09375 0.015625-0.16797 0-0.28125-0.070312-0.34375-0.21875-0.023438-0.050781-0.03125-0.10938-0.03125-0.17188 0-0.36328 0.14062-0.67188 0.42188-0.92188 0.25-0.22656 0.54688-0.34375 0.89062-0.34375 0.50781 0 0.91016 0.17188 1.2031 0.51562 0.15625 0.19922 0.25 0.43359 0.28125 0.70312v0.14062c0 0.33594-0.125 0.65625-0.375 0.96875-0.13672 0.15625-0.35156 0.36719-0.64062 0.625l-0.42188 0.375-0.078125 0.0625-0.73438 0.73438h1.2656c0.40625 0 0.625-0.019531 0.65625-0.0625 0.050781-0.0625 0.10156-0.26953 0.15625-0.625z"/>
|
|
384
|
+
</symbol>
|
|
385
|
+
<symbol id="bc" overflow="visible">
|
|
386
|
+
<path d="m7.2188-9.5625-2.0156 8.0938c-0.054687 0.23047-0.078125 0.45312-0.078125 0.67188 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.89062l0.84375-3.3125 0.046875-0.28125c0-0.10156-0.070313-0.17188-0.20312-0.20312-0.11719-0.019531-0.28125-0.03125-0.5-0.03125-0.21094 0-0.32422-0.054688-0.34375-0.17188 0-0.15625 0.066406-0.24219 0.20312-0.26562 0.875-0.10156 1.4688-0.15625 1.7812-0.15625 0.11328 0 0.17188 0.054688 0.17188 0.15625zm-2.9062 7.8906 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"/>
|
|
387
|
+
</symbol>
|
|
388
|
+
<symbol id="bb" overflow="visible">
|
|
389
|
+
<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"/>
|
|
390
|
+
</symbol>
|
|
391
|
+
<symbol id="ba" overflow="visible">
|
|
392
|
+
<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"/>
|
|
393
|
+
</symbol>
|
|
394
|
+
<symbol id="az" overflow="visible">
|
|
395
|
+
<path d="m9.625-4.5781h-8.3594c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.375c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0 2.7188h-8.375c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.3594c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
396
|
+
</symbol>
|
|
397
|
+
<symbol id="ay" overflow="visible">
|
|
398
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
399
|
+
</symbol>
|
|
400
|
+
<symbol id="l" overflow="visible">
|
|
401
|
+
<path d="m6.2812-2.4375-0.39062 2.4375h-5.1875c0-0.22656 0.023437-0.37891 0.078125-0.45312l0.078125-0.0625 2.6875-3c0.97656-1.1016 1.4688-2.1328 1.4688-3.0938 0-0.83203-0.25781-1.4609-0.76562-1.8906l-0.015625-0.015625c-0.30469-0.25-0.66797-0.375-1.0938-0.375-0.67969 0-1.2148 0.29297-1.6094 0.875-0.11719 0.16797-0.21094 0.35156-0.28125 0.54688h0.17188c0.375 0 0.61328 0.16797 0.71875 0.5v0.015625c0.019531 0.0625 0.03125 0.13281 0.03125 0.20312 0 0.375-0.17969 0.61719-0.53125 0.71875-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.34375 0-0.57422-0.14453-0.6875-0.4375-0.03125-0.10156-0.046875-0.22266-0.046875-0.35938 0-0.71875 0.27344-1.332 0.82812-1.8438 0.48828-0.45703 1.082-0.6875 1.7812-0.6875 1.0312 0 1.832 0.35156 2.4062 1.0469 0.32031 0.39844 0.50391 0.87109 0.54688 1.4219 0.007813 0.085937 0.015625 0.16797 0.015625 0.25 0 0.67969-0.25781 1.3281-0.76562 1.9531-0.27344 0.3125-0.69531 0.73047-1.2656 1.25l-0.84375 0.76562-0.14062 0.125-1.4844 1.4375h2.5156c0.82031 0 1.2656-0.035156 1.3281-0.10938 0.09375-0.13281 0.19531-0.55078 0.3125-1.25z"/>
|
|
402
|
+
</symbol>
|
|
403
|
+
<symbol id="ax" overflow="visible">
|
|
404
|
+
<path d="m4.1094-8.9531v7.8438c0 0.28125 0.054687 0.46094 0.17188 0.53125 0.15625 0.09375 0.53516 0.14062 1.1406 0.14062h0.4375v0.4375c-0.32422-0.03125-1.0781-0.046875-2.2656-0.046875s-1.9453 0.015625-2.2656 0.046875v-0.4375h0.45312c0.71875 0 1.1289-0.082031 1.2344-0.25l0.015625-0.015625c0.03125-0.070313 0.046875-0.20703 0.046875-0.40625v-7.25c-0.48047 0.24219-1.0898 0.35938-1.8281 0.35938v-0.42188c1.1133 0 1.9609-0.30078 2.5469-0.90625 0.17578 0 0.28125 0.039063 0.3125 0.10938v0.26562z"/>
|
|
405
|
+
</symbol>
|
|
406
|
+
<symbol id="aw" overflow="visible">
|
|
407
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
408
|
+
</symbol>
|
|
409
|
+
<symbol id="k" overflow="visible">
|
|
410
|
+
<path d="m2.6875-9.3125-0.54688 6.3906c-0.011719 0.19922-0.074219 0.29688-0.1875 0.29688-0.11719 0-0.17969-0.070312-0.1875-0.21875-0.011719-0.019531-0.015625-0.050781-0.015625-0.09375l-0.54688-6.375c0-0.33203 0.16016-0.55469 0.48438-0.67188 0.082031-0.03125 0.17188-0.046875 0.26562-0.046875 0.32031 0 0.54688 0.13672 0.67188 0.40625 0.039062 0.09375 0.0625 0.19922 0.0625 0.3125zm0 8.5781c0 0.30469-0.14062 0.52734-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.14062-0.67188-0.42188-0.054688-0.10156-0.078125-0.20703-0.078125-0.3125 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.050781 0.21094-0.078125 0.32812-0.078125 0.30078 0 0.52344 0.14062 0.67188 0.42188 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
411
|
+
</symbol>
|
|
412
|
+
<symbol id="av" overflow="visible">
|
|
413
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
414
|
+
</symbol>
|
|
415
|
+
<symbol id="au" overflow="visible">
|
|
416
|
+
<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"/>
|
|
417
|
+
</symbol>
|
|
418
|
+
<symbol id="at" overflow="visible">
|
|
419
|
+
<path d="m4.0938-2.2969v2.7969c0 0.20703-0.070312 0.31641-0.20312 0.32812-0.13672 0-0.20312-0.10938-0.20312-0.32812v-2.7969h-2.7969c-0.21875 0-0.32812-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h2.7969v-2.7969c0-0.20703 0.066406-0.31641 0.20312-0.32812 0.13281 0 0.20312 0.10938 0.20312 0.32812v2.7969h2.7812c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
420
|
+
</symbol>
|
|
421
|
+
<symbol id="as" overflow="visible">
|
|
422
|
+
<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"/>
|
|
423
|
+
</symbol>
|
|
424
|
+
<symbol id="mz" overflow="visible">
|
|
425
|
+
<path d="m5.9375 33.031-3.2031-14.859-0.9375 1.4844-0.26562-0.25 2.0156-3.1562 2.9844 13.922 7.2031-30.516c0.03125-0.14453 0.11719-0.21875 0.26562-0.21875 0.070312 0 0.13281 0.03125 0.1875 0.09375 0.0625 0.054688 0.09375 0.11719 0.09375 0.1875v0.0625l-7.7812 33.047c-0.042969 0.13281-0.13281 0.20312-0.26562 0.20312z"/>
|
|
426
|
+
</symbol>
|
|
427
|
+
<symbol id="my" overflow="visible">
|
|
428
|
+
<path d="m3.7031-5.2188-0.78125 3.0938c-0.15625 0.59375-0.28125 1.0547-0.375 1.375-0.14844 0.46094-0.28906 0.73047-0.42188 0.8125v0.015625c-0.085938 0.050781-0.17969 0.078125-0.28125 0.078125-0.21094 0-0.33984-0.09375-0.39062-0.28125-0.011719-0.03125-0.015625-0.0625-0.015625-0.09375 0-0.082031 0.035156-0.19531 0.10938-0.34375 0.88281-1.8945 1.4844-3.4453 1.7969-4.6562h-0.79688c-0.73047 0-1.3242 0.35938-1.7812 1.0781-0.085937 0.11719-0.15625 0.17188-0.21875 0.17188-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.10156 0.16406-0.38281 0.5-0.84375 0.070312-0.070313 0.13281-0.14844 0.1875-0.23438 0.03125-0.03125 0.0625-0.066406 0.09375-0.10938l0.078125-0.078125c0.40625-0.4375 0.89062-0.65625 1.4531-0.65625h4.6875c0.32031 0 0.50391 0.070312 0.54688 0.20312v0.015625c0.007813 0.03125 0.015625 0.070312 0.015625 0.10938 0 0.32422-0.23047 0.48438-0.6875 0.48438h-1.5938c-0.16797 0.79297-0.25 1.5312-0.25 2.2188 0 0.875 0.13281 1.6484 0.40625 2.3125 0.050781 0.13672 0.078125 0.24219 0.078125 0.3125 0 0.21094-0.11719 0.36719-0.34375 0.46875-0.074219 0.039062-0.15234 0.0625-0.23438 0.0625-0.17969 0-0.3125-0.13281-0.40625-0.39062-0.03125-0.082031-0.0625-0.1875-0.09375-0.3125-0.074219-0.3125-0.10938-0.66406-0.10938-1.0625 0-0.61328 0.125-1.5039 0.375-2.6719l0.21875-0.9375z"/>
|
|
429
|
+
</symbol>
|
|
430
|
+
<symbol id="mx" overflow="visible">
|
|
431
|
+
<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"/>
|
|
432
|
+
</symbol>
|
|
433
|
+
<symbol id="mw" overflow="visible">
|
|
434
|
+
<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"/>
|
|
435
|
+
</symbol>
|
|
436
|
+
<symbol id="mv" overflow="visible">
|
|
437
|
+
<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"/>
|
|
438
|
+
</symbol>
|
|
439
|
+
<symbol id="mu" overflow="visible">
|
|
440
|
+
<path d="m4.0938-2.2969v2.7969c0 0.20703-0.070312 0.31641-0.20312 0.32812-0.13672 0-0.20312-0.10938-0.20312-0.32812v-2.7969h-2.7969c-0.21875 0-0.32812-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h2.7969v-2.7969c0-0.20703 0.066406-0.31641 0.20312-0.32812 0.13281 0 0.20312 0.10938 0.20312 0.32812v2.7969h2.7812c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
441
|
+
</symbol>
|
|
442
|
+
<symbol id="mt" overflow="visible">
|
|
443
|
+
<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"/>
|
|
444
|
+
</symbol>
|
|
445
|
+
<symbol id="ms" overflow="visible">
|
|
446
|
+
<path d="m1.4844 30.391c0.22656 0.22656 0.51562 0.34375 0.85938 0.34375 0.33203 0 0.63281-0.23047 0.90625-0.6875 0.28125-0.46094 0.52344-1.0391 0.73438-1.7344 0.21875-0.6875 0.375-1.2656 0.46875-1.7344s0.21094-1.0742 0.35938-1.8125c0.13281-0.6875 0.26562-1.3828 0.39062-2.0781 0.125-0.6875 0.25-1.4219 0.375-2.2031 0.13281-0.78125 0.26953-1.5742 0.40625-2.375 0.14453-0.80469 0.3125-1.6641 0.5-2.5781 0.23828-1.1875 0.41016-2.043 0.51562-2.5625 0.11328-0.51172 0.28125-1.25 0.5-2.2188s0.36328-1.6094 0.4375-1.9219c0.070312-0.30469 0.26953-1.1406 0.59375-2.5156l0.1875-0.73438c0.20703-0.8125 0.36719-1.4336 0.48438-1.8594 0.11328-0.41797 0.28906-0.93359 0.53125-1.5469 0.23828-0.60547 0.51953-1.1211 0.84375-1.5469 0.32031-0.41797 0.67969-0.625 1.0781-0.625 0.26953 0 0.51953 0.0625 0.75 0.1875 0.23828 0.125 0.42969 0.28906 0.57812 0.5 0.14453 0.21875 0.21875 0.46094 0.21875 0.73438 0 0.20703-0.070313 0.375-0.20312 0.5-0.13672 0.13281-0.30469 0.20312-0.5 0.20312-0.19922 0-0.37109-0.070312-0.51562-0.20312-0.13672-0.125-0.20312-0.29297-0.20312-0.5 0-0.19922 0.066406-0.36719 0.20312-0.5 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312-0.24219-0.24219-0.52344-0.35938-0.84375-0.35938-0.16797 0-0.35547 0.25-0.5625 0.75-0.21094 0.50781-0.40234 1.1094-0.57812 1.7969-0.17969 0.6875-0.3125 1.2578-0.40625 1.7188-0.09375 0.45703-0.20312 1.0312-0.32812 1.7188-0.15625 0.78125-0.28906 1.457-0.39062 2.0312-0.10547 0.58203-0.23047 1.3008-0.375 2.1562-0.14844 0.85156-0.29297 1.6602-0.4375 2.4219-0.13672 0.76953-0.29688 1.6406-0.48438 2.6094-0.125 0.61328-0.30469 1.4727-0.53125 2.5781-0.23047 1.1016-0.38672 1.8203-0.46875 2.1562-0.074219 0.33203-0.26562 1.1445-0.57812 2.4375-0.30469 1.2891-0.46484 1.9766-0.48438 2.0625l-0.17188 0.64062c-0.24219 0.98828-0.48438 1.8594-0.73438 2.6094-0.24219 0.75-0.59375 1.4453-1.0625 2.0938-0.46875 0.64453-1.043 0.96875-1.7188 0.96875-0.40625 0-0.77344-0.13672-1.0938-0.40625-0.3125-0.27344-0.46875-0.60547-0.46875-1 0-0.21094 0.066406-0.38281 0.20312-0.51562 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312 0.13281 0 0.25391 0.03125 0.35938 0.09375 0.10156 0.0625 0.1875 0.14453 0.25 0.25 0.0625 0.11328 0.09375 0.23828 0.09375 0.375 0 0.19531-0.070313 0.35938-0.20312 0.48438-0.13672 0.13281-0.30859 0.20312-0.51562 0.20312z"/>
|
|
447
|
+
</symbol>
|
|
448
|
+
<symbol id="mr" overflow="visible">
|
|
449
|
+
<path d="m2.3906-6.8281-0.73438 3.0156c0.38281-0.40625 0.76953-0.60938 1.1562-0.60938 0.5 0 0.875 0.23047 1.125 0.6875 0.14453 0.27344 0.21875 0.57812 0.21875 0.92188 0 0.69922-0.25 1.3555-0.75 1.9688-0.46094 0.57422-0.96484 0.88281-1.5156 0.9375-0.054687 0.007812-0.10547 0.015625-0.15625 0.015625-0.48047 0-0.83594-0.22266-1.0625-0.67188-0.13672-0.25-0.20312-0.54688-0.20312-0.89062 0-0.22656 0.050781-0.56641 0.15625-1.0156l0.82812-3.2656c0.09375-0.38281 0.14062-0.58594 0.14062-0.60938 0-0.070312-0.046875-0.11719-0.14062-0.14062-0.085937-0.019531-0.20312-0.03125-0.35938-0.03125-0.14844 0-0.23047-0.039063-0.25-0.125 0-0.11328 0.066406-0.17969 0.20312-0.20312l1.2188-0.09375c0.082031 0 0.125 0.039062 0.125 0.10938zm-0.9375 3.7812-0.21875 0.92188c-0.11719 0.41797-0.17188 0.75-0.17188 1 0 0.57422 0.17578 0.90625 0.53125 1 0.039062 0.011719 0.085938 0.015625 0.14062 0.015625 0.35156 0 0.6875-0.23438 1-0.70312 0.0625-0.09375 0.125-0.20312 0.1875-0.32812 0.17578-0.375 0.32812-0.89062 0.45312-1.5469 0.039062-0.22656 0.0625-0.42188 0.0625-0.57812 0-0.53125-0.16797-0.83594-0.5-0.92188-0.042969-0.007812-0.089844-0.015625-0.14062-0.015625-0.39844 0-0.79688 0.26562-1.2031 0.79688-0.054688 0.074219-0.10156 0.19531-0.14062 0.35938z"/>
|
|
450
|
+
</symbol>
|
|
451
|
+
<symbol id="mq" overflow="visible">
|
|
452
|
+
<path d="m3.7344-3.7812c0.03125-0.22656 0.13281-0.36719 0.3125-0.42188 0.03125-0.007813 0.066406-0.015625 0.10938-0.015625 0.16406 0 0.25781 0.089844 0.28125 0.26562 0 0.042969-0.023438 0.15625-0.0625 0.34375l-0.35938 1.4062c-0.10547 0.41797-0.17969 0.71484-0.21875 0.89062-0.09375 0.34375-0.14062 0.59375-0.14062 0.75 0 0.30469 0.097656 0.45312 0.29688 0.45312 0.25781 0 0.47266-0.26562 0.64062-0.79688 0.039062-0.11328 0.082031-0.25781 0.125-0.4375 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.10547-0.0625 0.33984-0.1875 0.70312-0.042969 0.11719-0.078125 0.21484-0.10938 0.29688-0.1875 0.36719-0.4375 0.54688-0.75 0.54688-0.375 0-0.64844-0.16016-0.8125-0.48438-0.042969-0.070312-0.074219-0.16016-0.09375-0.26562-0.41797 0.5-0.85156 0.75-1.2969 0.75-0.5 0-0.87109-0.22266-1.1094-0.67188-0.14844-0.26953-0.21875-0.57812-0.21875-0.92188 0-0.71875 0.25-1.3828 0.75-2 0.45703-0.5625 0.96094-0.86719 1.5156-0.92188 0.039063-0.007812 0.085937-0.015625 0.14062-0.015625 0.40625 0 0.71094 0.21484 0.92188 0.64062zm-0.65625 2.5938 0.5-1.9688c0.019531-0.09375 0.03125-0.14453 0.03125-0.15625 0-0.14453-0.058594-0.31641-0.17188-0.51562-0.15625-0.25-0.36719-0.375-0.625-0.375-0.34375 0-0.67188 0.23047-0.98438 0.6875-0.0625 0.085937-0.12109 0.17969-0.17188 0.28125-0.1875 0.38672-0.35156 0.93359-0.48438 1.6406-0.042969 0.23047-0.0625 0.41406-0.0625 0.54688 0 0.44922 0.125 0.74219 0.375 0.875 0.070313 0.042969 0.16016 0.0625 0.26562 0.0625 0.375 0 0.75-0.23438 1.125-0.70312 0.09375-0.11328 0.15625-0.22656 0.1875-0.34375 0.007812-0.019531 0.015625-0.03125 0.015625-0.03125z"/>
|
|
453
|
+
</symbol>
|
|
454
|
+
<symbol id="mp" overflow="visible">
|
|
455
|
+
<path d="m5.1406-5.5938-0.84375 4.4375c-0.085937 0.57422-0.25 1.2344-0.5 1.9844-0.09375 0.26953-0.1875 0.5-0.28125 0.6875-0.32422 0.6875-0.73047 1.1133-1.2188 1.2812-0.125 0.050781-0.24609 0.078125-0.35938 0.078125-0.46875 0-0.82031-0.16406-1.0469-0.48438-0.10547-0.13672-0.15625-0.29688-0.15625-0.48438 0-0.375 0.16016-0.63281 0.48438-0.76562 0.09375-0.054687 0.19141-0.078125 0.29688-0.078125 0.26953 0 0.4375 0.11328 0.5 0.34375 0.007813 0.050781 0.015625 0.097656 0.015625 0.14062 0 0.32031-0.14062 0.54688-0.42188 0.67188-0.10547 0.050781-0.21875 0.082031-0.34375 0.09375 0.17578 0.16406 0.39844 0.25 0.67188 0.25 0.40625 0 0.72266-0.46094 0.95312-1.375 0.050781-0.21094 0.10938-0.49219 0.17188-0.84375l0.09375-0.40625 1.0469-5.5312h-0.92188c-0.24219 0-0.37109-0.039062-0.39062-0.125v-0.046875c0-0.15625 0.078125-0.24219 0.23438-0.26562h1.1406c0.22656-1.1641 0.38281-1.8984 0.46875-2.2031 0.28125-0.92578 0.77344-1.4609 1.4844-1.6094 0.10156-0.019531 0.20312-0.03125 0.29688-0.03125 0.47656 0 0.83203 0.16406 1.0625 0.48438 0.10156 0.13672 0.15625 0.29688 0.15625 0.48438 0 0.375-0.16406 0.63281-0.48438 0.76562-0.09375 0.054687-0.19531 0.078125-0.29688 0.078125-0.27344 0-0.4375-0.11328-0.5-0.34375-0.011719-0.050781-0.015625-0.097656-0.015625-0.14062 0-0.28906 0.12891-0.50781 0.39062-0.65625 0.10156-0.0625 0.22656-0.097656 0.375-0.10938-0.17969-0.16406-0.40625-0.25-0.6875-0.25-0.29297 0-0.51172 0.15625-0.65625 0.46875-0.074219 0.13672-0.1875 0.625-0.34375 1.4688l-0.29688 1.5938h1.1719c0.22656 0 0.35156 0.054688 0.375 0.15625 0 0.16797-0.078125 0.26172-0.23438 0.28125z"/>
|
|
456
|
+
</symbol>
|
|
457
|
+
<symbol id="ap" overflow="visible">
|
|
458
|
+
<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"/>
|
|
459
|
+
</symbol>
|
|
460
|
+
<symbol id="mo" overflow="visible">
|
|
461
|
+
<path d="m7.2188-9.5625-2.0156 8.0938c-0.054687 0.23047-0.078125 0.45312-0.078125 0.67188 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.89062l0.84375-3.3125 0.046875-0.28125c0-0.10156-0.070313-0.17188-0.20312-0.20312-0.11719-0.019531-0.28125-0.03125-0.5-0.03125-0.21094 0-0.32422-0.054688-0.34375-0.17188 0-0.15625 0.066406-0.24219 0.20312-0.26562 0.875-0.10156 1.4688-0.15625 1.7812-0.15625 0.11328 0 0.17188 0.054688 0.17188 0.15625zm-2.9062 7.8906 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"/>
|
|
462
|
+
</symbol>
|
|
463
|
+
<symbol id="mn" overflow="visible">
|
|
464
|
+
<path d="m3.3438-9.5625-1.0312 4.2188c0.53906-0.5625 1.0859-0.84375 1.6406-0.84375 0.69531 0 1.2188 0.32422 1.5625 0.96875 0.19531 0.375 0.29688 0.79688 0.29688 1.2656 0 0.99219-0.34375 1.918-1.0312 2.7812-0.64844 0.79297-1.3594 1.2266-2.1406 1.3125-0.074219 0.007813-0.14062 0.015625-0.20312 0.015625-0.67969 0-1.1797-0.3125-1.5-0.9375-0.1875-0.35156-0.28125-0.77344-0.28125-1.2656 0-0.3125 0.070312-0.78125 0.21875-1.4062l1.1562-4.5625c0.125-0.55078 0.1875-0.84375 0.1875-0.875 0-0.10156-0.0625-0.17188-0.1875-0.20312-0.11719-0.019531-0.28125-0.03125-0.5-0.03125-0.21094 0-0.32422-0.054688-0.34375-0.17188 0-0.15625 0.085938-0.25 0.26562-0.28125l1.7031-0.14062c0.125 0 0.1875 0.054688 0.1875 0.15625zm-1.3125 5.2969-0.3125 1.2812c-0.14844 0.59375-0.21875 1.0703-0.21875 1.4219 0 0.80469 0.23828 1.2617 0.71875 1.375 0.070312 0.023438 0.14453 0.03125 0.21875 0.03125 0.48828 0 0.95312-0.32812 1.3906-0.98438 0.09375-0.13281 0.17969-0.28516 0.26562-0.45312 0.25-0.53125 0.45703-1.25 0.625-2.1562 0.050781-0.32031 0.078125-0.59375 0.078125-0.8125 0-0.75-0.23047-1.1797-0.6875-1.2969-0.0625-0.007813-0.125-0.015625-0.1875-0.015625-0.5625 0-1.125 0.37109-1.6875 1.1094-0.074219 0.09375-0.14062 0.26172-0.20312 0.5z"/>
|
|
465
|
+
</symbol>
|
|
466
|
+
<symbol id="mm" overflow="visible">
|
|
467
|
+
<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"/>
|
|
468
|
+
</symbol>
|
|
469
|
+
<symbol id="an" overflow="visible">
|
|
470
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
471
|
+
</symbol>
|
|
472
|
+
<symbol id="am" overflow="visible">
|
|
473
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
474
|
+
</symbol>
|
|
475
|
+
<symbol id="mj" overflow="visible">
|
|
476
|
+
<path d="m9.625-4.5781h-8.3594c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.375c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0 2.7188h-8.375c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.3594c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
477
|
+
</symbol>
|
|
478
|
+
<symbol id="mi" overflow="visible">
|
|
479
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
480
|
+
</symbol>
|
|
481
|
+
<symbol id="mh" overflow="visible">
|
|
482
|
+
<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"/>
|
|
483
|
+
</symbol>
|
|
484
|
+
<symbol id="mg" overflow="visible">
|
|
485
|
+
<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"/>
|
|
486
|
+
</symbol>
|
|
487
|
+
<symbol id="mf" overflow="visible">
|
|
488
|
+
<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"/>
|
|
489
|
+
</symbol>
|
|
490
|
+
<symbol id="me" overflow="visible">
|
|
491
|
+
<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"/>
|
|
492
|
+
</symbol>
|
|
493
|
+
<symbol id="md" overflow="visible">
|
|
494
|
+
<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"/>
|
|
495
|
+
</symbol>
|
|
496
|
+
<symbol id="mc" overflow="visible">
|
|
497
|
+
<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"/>
|
|
498
|
+
</symbol>
|
|
499
|
+
<symbol id="mb" overflow="visible">
|
|
500
|
+
<path d="m0.60938-0.40625 0.40625-1.625c0.082031-0.30078 0.125-0.5 0.125-0.59375 0-0.20703-0.074219-0.3125-0.21875-0.3125-0.19922 0-0.35547 0.21875-0.46875 0.65625-0.023437 0.054688-0.039063 0.10938-0.046875 0.17188-0.054688 0.10547-0.09375 0.15625-0.125 0.15625-0.054688 0-0.078125-0.019531-0.078125-0.0625 0-0.070313 0.046875-0.23828 0.14062-0.5v-0.03125l0.0625-0.14062c0.10156-0.1875 0.21094-0.30469 0.32812-0.35938 0.0625-0.03125 0.12891-0.046875 0.20312-0.046875 0.25781 0 0.44531 0.10938 0.5625 0.32812 0.039062 0.085937 0.066406 0.17969 0.078125 0.28125 0.30078-0.40625 0.66406-0.60938 1.0938-0.60938 0.40625 0 0.66016 0.15625 0.76562 0.46875 0.03125 0.085938 0.046875 0.17969 0.046875 0.28125 0 0.24219-0.14844 0.75-0.4375 1.5312-0.085937 0.21094-0.125 0.375-0.125 0.5 0 0.15625 0.054687 0.23438 0.17188 0.23438 0.3125 0 0.55078-0.28516 0.71875-0.85938 0.019531-0.082031 0.039062-0.125 0.0625-0.125v-0.015625h0.03125c0.0625 0 0.09375 0.027344 0.09375 0.078125 0 0.085938-0.054688 0.23047-0.15625 0.4375-0.19922 0.42969-0.45312 0.64062-0.76562 0.64062-0.24219 0-0.41406-0.097656-0.51562-0.29688-0.042969-0.082031-0.0625-0.17578-0.0625-0.28125 0-0.09375 0.023438-0.19531 0.078125-0.3125 0.30078-0.82031 0.45312-1.3672 0.45312-1.6406 0-0.32031-0.125-0.48438-0.375-0.48438-0.42969 0-0.78125 0.23438-1.0625 0.70312-0.03125 0.054687-0.058594 0.10156-0.078125 0.14062l-0.09375 0.35938c-0.023437 0.10547-0.0625 0.26172-0.125 0.46875l-0.15625 0.625c-0.074219 0.32422-0.11719 0.49609-0.125 0.51562-0.042969 0.125-0.13281 0.19141-0.26562 0.20312-0.11719-0.023438-0.18359-0.082031-0.20312-0.1875 0 0.011719 0.019531-0.085937 0.0625-0.29688z"/>
|
|
501
|
+
</symbol>
|
|
502
|
+
<symbol id="ma" overflow="visible">
|
|
503
|
+
<path d="m6.6094-2.2969h-5.4531c-0.21094 0-0.32031-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.4531c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
504
|
+
</symbol>
|
|
505
|
+
<symbol id="ly" overflow="visible">
|
|
506
|
+
<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"/>
|
|
507
|
+
</symbol>
|
|
508
|
+
<symbol id="lx" overflow="visible">
|
|
509
|
+
<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"/>
|
|
510
|
+
</symbol>
|
|
511
|
+
<symbol id="lw" overflow="visible">
|
|
512
|
+
<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.34375 0.1875-0.6875 0.039063-0.11328 0.078125-0.20703 0.10938-0.28125 0.16406-0.33203 0.36719-0.51953 0.60938-0.5625 0.039063-0.007812 0.085937-0.015625 0.14062-0.015625 0.35156 0 0.61719 0.15234 0.79688 0.45312 0.0625 0.125 0.10156 0.26562 0.125 0.42188 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.34375 0 0.61719 0.089844 0.82812 0.26562 0.1875 0.15625 0.28906 0.39062 0.3125 0.70312 0.45703-0.64453 1.0039-0.96875 1.6406-0.96875 0.59375 0 0.95703 0.23047 1.0938 0.6875v0.015625c0.03125 0.11719 0.046875 0.24219 0.046875 0.375 0 0.35547-0.20312 1.0859-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.41406 0 0.74219-0.36328 0.98438-1.0938l0.03125-0.14062c0.039063-0.11328 0.078125-0.17188 0.10938-0.17188v-0.015625h0.046875c0.082031 0 0.125 0.03125 0.125 0.09375 0 0.11719-0.074219 0.32812-0.21875 0.64062-0.28125 0.60547-0.64844 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.046875-0.32031 0.14062-0.5625 0.40625-1.0938 0.60938-1.8359 0.60938-2.2344 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.58594 0-1.0742 0.32031-1.4688 0.95312-0.10547 0.16797-0.16797 0.29297-0.1875 0.375-0.023438 0.09375-0.21875 0.90234-0.59375 2.4219-0.074219 0.28125-0.15625 0.45312-0.25 0.51562h-0.015625c-0.054687 0.03125-0.11719 0.046875-0.1875 0.046875-0.16797-0.03125-0.26562-0.11719-0.29688-0.26562l0.14062-0.59375 0.20312-0.76562 0.28125-1.1562c0.09375-0.375 0.14062-0.64844 0.14062-0.82812 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"/>
|
|
513
|
+
</symbol>
|
|
514
|
+
<symbol id="lv" overflow="visible">
|
|
515
|
+
<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"/>
|
|
516
|
+
</symbol>
|
|
517
|
+
<symbol id="lu" overflow="visible">
|
|
518
|
+
<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"/>
|
|
519
|
+
</symbol>
|
|
520
|
+
<symbol id="lt" overflow="visible">
|
|
521
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
522
|
+
</symbol>
|
|
523
|
+
<symbol id="ls" overflow="visible">
|
|
524
|
+
<path d="m4.1094-8.9531v7.8438c0 0.28125 0.054687 0.46094 0.17188 0.53125 0.15625 0.09375 0.53516 0.14062 1.1406 0.14062h0.4375v0.4375c-0.32422-0.03125-1.0781-0.046875-2.2656-0.046875s-1.9453 0.015625-2.2656 0.046875v-0.4375h0.45312c0.71875 0 1.1289-0.082031 1.2344-0.25l0.015625-0.015625c0.03125-0.070313 0.046875-0.20703 0.046875-0.40625v-7.25c-0.48047 0.24219-1.0898 0.35938-1.8281 0.35938v-0.42188c1.1133 0 1.9609-0.30078 2.5469-0.90625 0.17578 0 0.28125 0.039063 0.3125 0.10938v0.26562z"/>
|
|
525
|
+
</symbol>
|
|
526
|
+
<symbol id="lr" overflow="visible">
|
|
527
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
528
|
+
</symbol>
|
|
529
|
+
<symbol id="lq" overflow="visible">
|
|
530
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
531
|
+
</symbol>
|
|
532
|
+
<symbol id="lp" overflow="visible">
|
|
533
|
+
<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.34375 0.1875-0.6875 0.039063-0.11328 0.078125-0.20703 0.10938-0.28125 0.16406-0.33203 0.36719-0.51953 0.60938-0.5625 0.039063-0.007812 0.085937-0.015625 0.14062-0.015625 0.35156 0 0.61719 0.15234 0.79688 0.45312 0.0625 0.125 0.10156 0.26562 0.125 0.42188 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.34375 0 0.61719 0.089844 0.82812 0.26562 0.1875 0.15625 0.28906 0.39062 0.3125 0.70312 0.45703-0.64453 1.0039-0.96875 1.6406-0.96875 0.59375 0 0.95703 0.23047 1.0938 0.6875v0.015625c0.03125 0.11719 0.046875 0.24219 0.046875 0.375 0 0.35547-0.20312 1.0859-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.41406 0 0.74219-0.36328 0.98438-1.0938l0.03125-0.14062c0.039063-0.11328 0.078125-0.17188 0.10938-0.17188v-0.015625h0.046875c0.082031 0 0.125 0.03125 0.125 0.09375 0 0.11719-0.074219 0.32812-0.21875 0.64062-0.28125 0.60547-0.64844 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.046875-0.32031 0.14062-0.5625 0.40625-1.0938 0.60938-1.8359 0.60938-2.2344 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.58594 0-1.0742 0.32031-1.4688 0.95312-0.10547 0.16797-0.16797 0.29297-0.1875 0.375-0.023438 0.09375-0.21875 0.90234-0.59375 2.4219-0.074219 0.28125-0.15625 0.45312-0.25 0.51562h-0.015625c-0.054687 0.03125-0.11719 0.046875-0.1875 0.046875-0.16797-0.03125-0.26562-0.11719-0.29688-0.26562l0.14062-0.59375 0.20312-0.76562 0.28125-1.1562c0.09375-0.375 0.14062-0.64844 0.14062-0.82812 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"/>
|
|
534
|
+
</symbol>
|
|
535
|
+
<symbol id="lo" overflow="visible">
|
|
536
|
+
<path d="m4.0938-2.2969v2.7969c0 0.20703-0.070312 0.31641-0.20312 0.32812-0.13672 0-0.20312-0.10938-0.20312-0.32812v-2.7969h-2.7969c-0.21875 0-0.32812-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h2.7969v-2.7969c0-0.20703 0.066406-0.31641 0.20312-0.32812 0.13281 0 0.20312 0.10938 0.20312 0.32812v2.7969h2.7812c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
537
|
+
</symbol>
|
|
538
|
+
<symbol id="ln" overflow="visible">
|
|
539
|
+
<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"/>
|
|
540
|
+
</symbol>
|
|
541
|
+
<symbol id="li" overflow="visible">
|
|
542
|
+
<path d="m6.2812-2.4375-0.39062 2.4375h-5.1875c0-0.22656 0.023437-0.37891 0.078125-0.45312l0.078125-0.0625 2.6875-3c0.97656-1.1016 1.4688-2.1328 1.4688-3.0938 0-0.83203-0.25781-1.4609-0.76562-1.8906l-0.015625-0.015625c-0.30469-0.25-0.66797-0.375-1.0938-0.375-0.67969 0-1.2148 0.29297-1.6094 0.875-0.11719 0.16797-0.21094 0.35156-0.28125 0.54688h0.17188c0.375 0 0.61328 0.16797 0.71875 0.5v0.015625c0.019531 0.0625 0.03125 0.13281 0.03125 0.20312 0 0.375-0.17969 0.61719-0.53125 0.71875-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.34375 0-0.57422-0.14453-0.6875-0.4375-0.03125-0.10156-0.046875-0.22266-0.046875-0.35938 0-0.71875 0.27344-1.332 0.82812-1.8438 0.48828-0.45703 1.082-0.6875 1.7812-0.6875 1.0312 0 1.832 0.35156 2.4062 1.0469 0.32031 0.39844 0.50391 0.87109 0.54688 1.4219 0.007813 0.085937 0.015625 0.16797 0.015625 0.25 0 0.67969-0.25781 1.3281-0.76562 1.9531-0.27344 0.3125-0.69531 0.73047-1.2656 1.25l-0.84375 0.76562-0.14062 0.125-1.4844 1.4375h2.5156c0.82031 0 1.2656-0.035156 1.3281-0.10938 0.09375-0.13281 0.19531-0.55078 0.3125-1.25z"/>
|
|
543
|
+
</symbol>
|
|
544
|
+
<symbol id="lh" overflow="visible">
|
|
545
|
+
<path d="m6.6094-2.2969h-5.4531c-0.21094 0-0.32031-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.4531c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
546
|
+
</symbol>
|
|
547
|
+
<symbol id="lg" overflow="visible">
|
|
548
|
+
<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"/>
|
|
549
|
+
</symbol>
|
|
550
|
+
<symbol id="lf" overflow="visible">
|
|
551
|
+
<path d="m5.1406-5.5938-0.84375 4.4375c-0.085937 0.57422-0.25 1.2344-0.5 1.9844-0.09375 0.26953-0.1875 0.5-0.28125 0.6875-0.32422 0.6875-0.73047 1.1133-1.2188 1.2812-0.125 0.050781-0.24609 0.078125-0.35938 0.078125-0.46875 0-0.82031-0.16406-1.0469-0.48438-0.10547-0.13672-0.15625-0.29688-0.15625-0.48438 0-0.375 0.16016-0.63281 0.48438-0.76562 0.09375-0.054687 0.19141-0.078125 0.29688-0.078125 0.26953 0 0.4375 0.11328 0.5 0.34375 0.007813 0.050781 0.015625 0.097656 0.015625 0.14062 0 0.32031-0.14062 0.54688-0.42188 0.67188-0.10547 0.050781-0.21875 0.082031-0.34375 0.09375 0.17578 0.16406 0.39844 0.25 0.67188 0.25 0.40625 0 0.72266-0.46094 0.95312-1.375 0.050781-0.21094 0.10938-0.49219 0.17188-0.84375l0.09375-0.40625 1.0469-5.5312h-0.92188c-0.24219 0-0.37109-0.039062-0.39062-0.125v-0.046875c0-0.15625 0.078125-0.24219 0.23438-0.26562h1.1406c0.22656-1.1641 0.38281-1.8984 0.46875-2.2031 0.28125-0.92578 0.77344-1.4609 1.4844-1.6094 0.10156-0.019531 0.20312-0.03125 0.29688-0.03125 0.47656 0 0.83203 0.16406 1.0625 0.48438 0.10156 0.13672 0.15625 0.29688 0.15625 0.48438 0 0.375-0.16406 0.63281-0.48438 0.76562-0.09375 0.054687-0.19531 0.078125-0.29688 0.078125-0.27344 0-0.4375-0.11328-0.5-0.34375-0.011719-0.050781-0.015625-0.097656-0.015625-0.14062 0-0.28906 0.12891-0.50781 0.39062-0.65625 0.10156-0.0625 0.22656-0.097656 0.375-0.10938-0.17969-0.16406-0.40625-0.25-0.6875-0.25-0.29297 0-0.51172 0.15625-0.65625 0.46875-0.074219 0.13672-0.1875 0.625-0.34375 1.4688l-0.29688 1.5938h1.1719c0.22656 0 0.35156 0.054688 0.375 0.15625 0 0.16797-0.078125 0.26172-0.23438 0.28125z"/>
|
|
552
|
+
</symbol>
|
|
553
|
+
<symbol id="al" overflow="visible">
|
|
554
|
+
<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"/>
|
|
555
|
+
</symbol>
|
|
556
|
+
<symbol id="le" overflow="visible">
|
|
557
|
+
<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.085938-0.46094 0.26562-0.95312 0.050781-0.15625 0.10938-0.28906 0.17188-0.40625 0.21875-0.45703 0.5-0.71875 0.84375-0.78125 0.0625-0.007813 0.125-0.015625 0.1875-0.015625 0.5 0 0.875 0.21094 1.125 0.625 0.09375 0.17969 0.14453 0.375 0.15625 0.59375 0.60156-0.8125 1.332-1.2188 2.1875-1.2188 0.47656 0 0.86328 0.12109 1.1562 0.35938 0.25781 0.23047 0.40625 0.5625 0.4375 1 0.63281-0.90625 1.3945-1.3594 2.2812-1.3594 0.83203 0 1.3477 0.32422 1.5469 0.96875v0.015625c0.050781 0.15625 0.078125 0.32812 0.078125 0.51562 0 0.49219-0.28906 1.5156-0.85938 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.58203 0 1.0391-0.50781 1.375-1.5312l0.0625-0.20312c0.039062-0.14453 0.085938-0.22266 0.14062-0.23438v-0.015625h0.0625c0.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.0625-0.44141 0.1875-0.76562 0.57031-1.5312 0.85938-2.5781 0.85938-3.1406 0-0.64453-0.25-0.96875-0.75-0.96875-0.82422 0-1.5078 0.44531-2.0469 1.3281-0.14844 0.23047-0.23438 0.40625-0.26562 0.53125-0.03125 0.11719-0.3125 1.2422-0.84375 3.375-0.10547 0.39844-0.21875 0.63672-0.34375 0.71875l-0.015625 0.015625h-0.015625c-0.0625 0.039062-0.14844 0.0625-0.25 0.0625-0.24219-0.054688-0.375-0.17578-0.40625-0.375l0.1875-0.82812 0.67188-2.6875c0.13281-0.51953 0.20312-0.91016 0.20312-1.1719 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"/>
|
|
558
|
+
</symbol>
|
|
559
|
+
<symbol id="ld" overflow="visible">
|
|
560
|
+
<path d="m3.3438-9.5625-1.0312 4.2188c0.53906-0.5625 1.0859-0.84375 1.6406-0.84375 0.69531 0 1.2188 0.32422 1.5625 0.96875 0.19531 0.375 0.29688 0.79688 0.29688 1.2656 0 0.99219-0.34375 1.918-1.0312 2.7812-0.64844 0.79297-1.3594 1.2266-2.1406 1.3125-0.074219 0.007813-0.14062 0.015625-0.20312 0.015625-0.67969 0-1.1797-0.3125-1.5-0.9375-0.1875-0.35156-0.28125-0.77344-0.28125-1.2656 0-0.3125 0.070312-0.78125 0.21875-1.4062l1.1562-4.5625c0.125-0.55078 0.1875-0.84375 0.1875-0.875 0-0.10156-0.0625-0.17188-0.1875-0.20312-0.11719-0.019531-0.28125-0.03125-0.5-0.03125-0.21094 0-0.32422-0.054688-0.34375-0.17188 0-0.15625 0.085938-0.25 0.26562-0.28125l1.7031-0.14062c0.125 0 0.1875 0.054688 0.1875 0.15625zm-1.3125 5.2969-0.3125 1.2812c-0.14844 0.59375-0.21875 1.0703-0.21875 1.4219 0 0.80469 0.23828 1.2617 0.71875 1.375 0.070312 0.023438 0.14453 0.03125 0.21875 0.03125 0.48828 0 0.95312-0.32812 1.3906-0.98438 0.09375-0.13281 0.17969-0.28516 0.26562-0.45312 0.25-0.53125 0.45703-1.25 0.625-2.1562 0.050781-0.32031 0.078125-0.59375 0.078125-0.8125 0-0.75-0.23047-1.1797-0.6875-1.2969-0.0625-0.007813-0.125-0.015625-0.1875-0.015625-0.5625 0-1.125 0.37109-1.6875 1.1094-0.074219 0.09375-0.14062 0.26172-0.20312 0.5z"/>
|
|
561
|
+
</symbol>
|
|
562
|
+
<symbol id="ak" overflow="visible">
|
|
563
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
564
|
+
</symbol>
|
|
565
|
+
<symbol id="lc" overflow="visible">
|
|
566
|
+
<path d="m5.7188-3.2188v3.9219c0 0.28906-0.089844 0.44141-0.26562 0.45312-0.1875 0-0.28125-0.15234-0.28125-0.45312v-3.9219h-3.9219c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h3.9219v-3.9219c0-0.28906 0.09375-0.44141 0.28125-0.45312 0.17578 0 0.26562 0.15234 0.26562 0.45312v3.9219h3.9062c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
567
|
+
</symbol>
|
|
568
|
+
<symbol id="lb" overflow="visible">
|
|
569
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
570
|
+
</symbol>
|
|
571
|
+
<symbol id="la" overflow="visible">
|
|
572
|
+
<path d="m6.2812-2.4375-0.39062 2.4375h-5.1875c0-0.22656 0.023437-0.37891 0.078125-0.45312l0.078125-0.0625 2.6875-3c0.97656-1.1016 1.4688-2.1328 1.4688-3.0938 0-0.83203-0.25781-1.4609-0.76562-1.8906l-0.015625-0.015625c-0.30469-0.25-0.66797-0.375-1.0938-0.375-0.67969 0-1.2148 0.29297-1.6094 0.875-0.11719 0.16797-0.21094 0.35156-0.28125 0.54688h0.17188c0.375 0 0.61328 0.16797 0.71875 0.5v0.015625c0.019531 0.0625 0.03125 0.13281 0.03125 0.20312 0 0.375-0.17969 0.61719-0.53125 0.71875-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.34375 0-0.57422-0.14453-0.6875-0.4375-0.03125-0.10156-0.046875-0.22266-0.046875-0.35938 0-0.71875 0.27344-1.332 0.82812-1.8438 0.48828-0.45703 1.082-0.6875 1.7812-0.6875 1.0312 0 1.832 0.35156 2.4062 1.0469 0.32031 0.39844 0.50391 0.87109 0.54688 1.4219 0.007813 0.085937 0.015625 0.16797 0.015625 0.25 0 0.67969-0.25781 1.3281-0.76562 1.9531-0.27344 0.3125-0.69531 0.73047-1.2656 1.25l-0.84375 0.76562-0.14062 0.125-1.4844 1.4375h2.5156c0.82031 0 1.2656-0.035156 1.3281-0.10938 0.09375-0.13281 0.19531-0.55078 0.3125-1.25z"/>
|
|
573
|
+
</symbol>
|
|
574
|
+
<symbol id="kz" overflow="visible">
|
|
575
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
576
|
+
</symbol>
|
|
577
|
+
<symbol id="ky" overflow="visible">
|
|
578
|
+
<path d="m6.6094-2.2969h-5.4531c-0.21094 0-0.32031-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.4531c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
579
|
+
</symbol>
|
|
580
|
+
<symbol id="kx" overflow="visible">
|
|
581
|
+
<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"/>
|
|
582
|
+
</symbol>
|
|
583
|
+
<symbol id="kw" overflow="visible">
|
|
584
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
585
|
+
</symbol>
|
|
586
|
+
<symbol id="kv" overflow="visible">
|
|
587
|
+
<path d="m1.4844 30.391c0.22656 0.22656 0.51562 0.34375 0.85938 0.34375 0.33203 0 0.63281-0.23047 0.90625-0.6875 0.28125-0.46094 0.52344-1.0391 0.73438-1.7344 0.21875-0.6875 0.375-1.2656 0.46875-1.7344s0.21094-1.0742 0.35938-1.8125c0.13281-0.6875 0.26562-1.3828 0.39062-2.0781 0.125-0.6875 0.25-1.4219 0.375-2.2031 0.13281-0.78125 0.26953-1.5742 0.40625-2.375 0.14453-0.80469 0.3125-1.6641 0.5-2.5781 0.23828-1.1875 0.41016-2.043 0.51562-2.5625 0.11328-0.51172 0.28125-1.25 0.5-2.2188s0.36328-1.6094 0.4375-1.9219c0.070312-0.30469 0.26953-1.1406 0.59375-2.5156l0.1875-0.73438c0.20703-0.8125 0.36719-1.4336 0.48438-1.8594 0.11328-0.41797 0.28906-0.93359 0.53125-1.5469 0.23828-0.60547 0.51953-1.1211 0.84375-1.5469 0.32031-0.41797 0.67969-0.625 1.0781-0.625 0.26953 0 0.51953 0.0625 0.75 0.1875 0.23828 0.125 0.42969 0.28906 0.57812 0.5 0.14453 0.21875 0.21875 0.46094 0.21875 0.73438 0 0.20703-0.070313 0.375-0.20312 0.5-0.13672 0.13281-0.30469 0.20312-0.5 0.20312-0.19922 0-0.37109-0.070312-0.51562-0.20312-0.13672-0.125-0.20312-0.29297-0.20312-0.5 0-0.19922 0.066406-0.36719 0.20312-0.5 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312-0.24219-0.24219-0.52344-0.35938-0.84375-0.35938-0.16797 0-0.35547 0.25-0.5625 0.75-0.21094 0.50781-0.40234 1.1094-0.57812 1.7969-0.17969 0.6875-0.3125 1.2578-0.40625 1.7188-0.09375 0.45703-0.20312 1.0312-0.32812 1.7188-0.15625 0.78125-0.28906 1.457-0.39062 2.0312-0.10547 0.58203-0.23047 1.3008-0.375 2.1562-0.14844 0.85156-0.29297 1.6602-0.4375 2.4219-0.13672 0.76953-0.29688 1.6406-0.48438 2.6094-0.125 0.61328-0.30469 1.4727-0.53125 2.5781-0.23047 1.1016-0.38672 1.8203-0.46875 2.1562-0.074219 0.33203-0.26562 1.1445-0.57812 2.4375-0.30469 1.2891-0.46484 1.9766-0.48438 2.0625l-0.17188 0.64062c-0.24219 0.98828-0.48438 1.8594-0.73438 2.6094-0.24219 0.75-0.59375 1.4453-1.0625 2.0938-0.46875 0.64453-1.043 0.96875-1.7188 0.96875-0.40625 0-0.77344-0.13672-1.0938-0.40625-0.3125-0.27344-0.46875-0.60547-0.46875-1 0-0.21094 0.066406-0.38281 0.20312-0.51562 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312 0.13281 0 0.25391 0.03125 0.35938 0.09375 0.10156 0.0625 0.1875 0.14453 0.25 0.25 0.0625 0.11328 0.09375 0.23828 0.09375 0.375 0 0.19531-0.070313 0.35938-0.20312 0.48438-0.13672 0.13281-0.30859 0.20312-0.51562 0.20312z"/>
|
|
588
|
+
</symbol>
|
|
589
|
+
<symbol id="ks" overflow="visible">
|
|
590
|
+
<path d="m2.6562-3.7344-0.5625 2.2188c-0.11719 0.42969-0.21094 0.75-0.28125 0.96875-0.10547 0.33594-0.20312 0.53125-0.29688 0.59375v0.015625c-0.054687 0.03125-0.12109 0.046875-0.20312 0.046875-0.14844 0-0.23438-0.070312-0.26562-0.20312-0.011719-0.019531-0.015625-0.039062-0.015625-0.0625 0-0.0625 0.023438-0.14453 0.078125-0.25 0.625-1.3516 1.0508-2.4609 1.2812-3.3281h-0.57812c-0.51172 0-0.93359 0.26172-1.2656 0.78125-0.0625 0.074219-0.11719 0.10938-0.15625 0.10938-0.085937 0-0.125-0.03125-0.125-0.09375 0-0.070312 0.11719-0.27344 0.35938-0.60938 0.050781-0.050781 0.097656-0.10156 0.14062-0.15625 0.019531-0.019531 0.039063-0.046875 0.0625-0.078125 0.007813-0.019531 0.023437-0.039062 0.046875-0.0625 0.28906-0.3125 0.64062-0.46875 1.0469-0.46875h3.3438c0.22656 0 0.35938 0.054688 0.39062 0.15625 0.007812 0.023438 0.015625 0.054688 0.015625 0.09375 0 0.21875-0.16406 0.32812-0.48438 0.32812h-1.1406c-0.125 0.57422-0.1875 1.1055-0.1875 1.5938 0 0.625 0.097656 1.1797 0.29688 1.6562 0.03125 0.09375 0.046875 0.16797 0.046875 0.21875 0 0.14844-0.085937 0.25781-0.25 0.32812-0.054687 0.03125-0.10547 0.046875-0.15625 0.046875-0.13672 0-0.23438-0.09375-0.29688-0.28125-0.023438-0.0625-0.042969-0.13281-0.0625-0.21875-0.054688-0.22656-0.078125-0.48438-0.078125-0.76562 0-0.4375 0.085937-1.0703 0.26562-1.9062l0.15625-0.67188z"/>
|
|
591
|
+
</symbol>
|
|
592
|
+
<symbol id="kr" overflow="visible">
|
|
593
|
+
<path d="m6.6094-2.2969h-5.4531c-0.21094 0-0.32031-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.4531c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
594
|
+
</symbol>
|
|
595
|
+
<symbol id="kq" overflow="visible">
|
|
596
|
+
<path d="m2.6562-3.7344-0.5625 2.2188c-0.11719 0.42969-0.21094 0.75-0.28125 0.96875-0.10547 0.33594-0.20312 0.53125-0.29688 0.59375v0.015625c-0.054687 0.03125-0.12109 0.046875-0.20312 0.046875-0.14844 0-0.23438-0.070312-0.26562-0.20312-0.011719-0.019531-0.015625-0.039062-0.015625-0.0625 0-0.0625 0.023438-0.14453 0.078125-0.25 0.625-1.3516 1.0508-2.4609 1.2812-3.3281h-0.57812c-0.51172 0-0.93359 0.26172-1.2656 0.78125-0.0625 0.074219-0.11719 0.10938-0.15625 0.10938-0.085937 0-0.125-0.03125-0.125-0.09375 0-0.070312 0.11719-0.27344 0.35938-0.60938 0.050781-0.050781 0.097656-0.10156 0.14062-0.15625 0.019531-0.019531 0.039063-0.046875 0.0625-0.078125 0.007813-0.019531 0.023437-0.039062 0.046875-0.0625 0.28906-0.3125 0.64062-0.46875 1.0469-0.46875h3.3438c0.22656 0 0.35938 0.054688 0.39062 0.15625 0.007812 0.023438 0.015625 0.054688 0.015625 0.09375 0 0.21875-0.16406 0.32812-0.48438 0.32812h-1.1406c-0.125 0.57422-0.1875 1.1055-0.1875 1.5938 0 0.625 0.097656 1.1797 0.29688 1.6562 0.03125 0.09375 0.046875 0.16797 0.046875 0.21875 0 0.14844-0.085937 0.25781-0.25 0.32812-0.054687 0.03125-0.10547 0.046875-0.15625 0.046875-0.13672 0-0.23438-0.09375-0.29688-0.28125-0.023438-0.0625-0.042969-0.13281-0.0625-0.21875-0.054688-0.22656-0.078125-0.48438-0.078125-0.76562 0-0.4375 0.085937-1.0703 0.26562-1.9062l0.15625-0.67188z"/>
|
|
597
|
+
</symbol>
|
|
598
|
+
<symbol id="aj" overflow="visible">
|
|
599
|
+
<path d="m2.9062-2.7188c-0.80469-0.15625-1.3281-0.30469-1.5781-0.45312-0.09375-0.050781-0.18359-0.11328-0.26562-0.1875-0.39844-0.32031-0.59375-0.71875-0.59375-1.1875 0-0.65625 0.28516-1.1328 0.85938-1.4375 0.36328-0.1875 0.82031-0.28125 1.375-0.28125 0.51953 0 0.95703 0.13281 1.3125 0.39062 0.10156-0.082031 0.17969-0.16016 0.23438-0.23438 0.125-0.10156 0.21875-0.15625 0.28125-0.15625 0.09375 0.085937 0.14453 0.19531 0.15625 0.32812v1.4219c0 0.1875-0.027344 0.29297-0.078125 0.3125h-0.015625l-0.015625 0.015625h-0.0625c-0.10547 0-0.16406-0.039062-0.17188-0.125-0.074219-0.9375-0.46484-1.4883-1.1719-1.6562-0.14844-0.019531-0.30469-0.03125-0.46875-0.03125-0.875 0-1.3906 0.27344-1.5469 0.8125-0.011719 0.085938-0.015625 0.16797-0.015625 0.25 0 0.46875 0.35938 0.80469 1.0781 1 0.13281 0.042969 0.34766 0.089844 0.64062 0.14062 0.66406 0.13672 1.1445 0.32031 1.4375 0.54688 0.050781 0.042969 0.10156 0.085938 0.15625 0.125 0.39453 0.39844 0.59375 0.83984 0.59375 1.3281 0 0.79297-0.32812 1.3555-0.98438 1.6875-0.35547 0.17578-0.78125 0.26562-1.2812 0.26562-0.60547 0-1.1172-0.20312-1.5312-0.60938l-0.28125 0.32812c-0.1875 0.1875-0.30859 0.28125-0.35938 0.28125-0.09375-0.085938-0.14062-0.19531-0.14062-0.34375v-1.8438c0-0.20703 0.03125-0.31641 0.09375-0.32812l0.015625-0.015625h0.0625c0.09375 0 0.15625 0.054688 0.1875 0.15625 0 0.011719 0.003906 0.039062 0.015625 0.078125 0.23828 1.0859 0.69531 1.7266 1.375 1.9219 0.17578 0.042969 0.36328 0.0625 0.5625 0.0625 0.84375 0 1.3516-0.28906 1.5312-0.875 0.039062-0.125 0.0625-0.25391 0.0625-0.39062 0-0.6875-0.49219-1.1172-1.4688-1.2969z"/>
|
|
600
|
+
</symbol>
|
|
601
|
+
<symbol id="ai" overflow="visible">
|
|
602
|
+
<path d="m2.4844-6.1875v5.1406c0 0.29297 0.050781 0.46875 0.15625 0.53125 0.11328 0.054687 0.38281 0.078125 0.8125 0.078125v0.4375c-0.94922-0.03125-1.4336-0.046875-1.4531-0.046875-0.125 0-0.63672 0.015625-1.5312 0.046875v-0.4375c0.53906 0 0.85938-0.039062 0.95312-0.125l0.03125-0.03125c0.0625-0.070312 0.09375-0.22656 0.09375-0.46875v-3.7656c0-0.375-0.074219-0.59766-0.21875-0.67188h-0.015625l-0.015625-0.015625c-0.11719-0.050781-0.375-0.078125-0.78125-0.078125v-0.4375zm0.046875-2.4375c0 0.34375-0.15234 0.57422-0.45312 0.6875-0.09375 0.042969-0.1875 0.0625-0.28125 0.0625-0.33594 0-0.5625-0.14844-0.6875-0.45312v-0.015625c-0.042969-0.09375-0.0625-0.1875-0.0625-0.28125 0-0.28906 0.12891-0.50391 0.39062-0.64062 0.10156-0.0625 0.22266-0.09375 0.35938-0.09375 0.3125 0 0.53516 0.13672 0.67188 0.40625 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
603
|
+
</symbol>
|
|
604
|
+
<symbol id="ah" overflow="visible">
|
|
605
|
+
<path d="m1.5469-4.8125c0-0.36328-0.074219-0.58594-0.21875-0.67188-0.11719-0.070313-0.3125-0.10938-0.59375-0.10938h-0.28125v-0.4375l1.9688-0.15625v1.4688c0.4375-0.97656 1.1289-1.4688 2.0781-1.4688 0.69531 0 1.1875 0.17188 1.4688 0.51562 0.25 0.29297 0.39062 0.6875 0.42188 1.1875v0.95312 2.6719c0.007813 0.23047 0.14453 0.35938 0.40625 0.39062 0.11328 0.023438 0.34375 0.03125 0.6875 0.03125v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.015625-0.03125c0.070313-0.070312 0.10938-0.22656 0.10938-0.46875v-3.2656c0-0.92578-0.26562-1.4375-0.79688-1.5312-0.085937-0.007813-0.16797-0.015625-0.25-0.015625-0.5625 0-1.0391 0.24609-1.4219 0.73438-0.3125 0.40625-0.46875 0.90625-0.46875 1.5v2.5781c0 0.3125 0.078125 0.5 0.23438 0.5625 0.10156 0.042969 0.39062 0.0625 0.85938 0.0625v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.86719-0.039062 0.95312-0.125l0.03125-0.03125c0.070312-0.070312 0.10938-0.22656 0.10938-0.46875z"/>
|
|
606
|
+
</symbol>
|
|
607
|
+
<symbol id="kp" overflow="visible">
|
|
608
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
609
|
+
</symbol>
|
|
610
|
+
<symbol id="ko" overflow="visible">
|
|
611
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
612
|
+
</symbol>
|
|
613
|
+
<symbol id="kn" overflow="visible">
|
|
614
|
+
<path d="m6.6719-3.2969v0.85938c0.61328-0.75 1.0703-1.6719 1.375-2.7656 0.09375-0.1875 0.16406-0.28516 0.21875-0.29688 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.15625-0.10547 0.51172-0.3125 1.0625-0.32422 0.80469-0.75781 1.543-1.2969 2.2188-0.09375 0.1875-0.14062 0.35547-0.14062 0.5 0 0.94922 0.14453 1.4219 0.4375 1.4219 0.28906 0 0.52344-0.16016 0.70312-0.48438 0.03125-0.0625 0.054688-0.12891 0.078125-0.20312 0.039063-0.09375 0.10156-0.14062 0.1875-0.14062 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.17969-0.12109 0.39062-0.35938 0.64062-0.24219 0.23828-0.51562 0.35938-0.82812 0.35938-0.58594 0-0.98438-0.32031-1.2031-0.96875-0.023437-0.0625-0.042969-0.12891-0.0625-0.20312-0.98047 0.78125-1.9648 1.1719-2.9531 1.1719-0.875 0-1.5234-0.34766-1.9375-1.0469-0.21875-0.38281-0.32812-0.82812-0.32812-1.3281 0-0.94531 0.36328-1.8281 1.0938-2.6406 0.71875-0.80078 1.5312-1.2383 2.4375-1.3125 0.082031-0.007813 0.16016-0.015625 0.23438-0.015625 0.78125 0 1.3828 0.30859 1.8125 0.92188 0 0.011719 0.003906 0.015625 0.015625 0.015625 0.33203 0.49219 0.5 1.1406 0.5 1.9531zm-0.9375 1.9062c-0.011719-0.15625-0.015625-0.67578-0.015625-1.5625 0-1.1445-0.13281-1.9297-0.39062-2.3594-0.10547-0.1875-0.24219-0.32031-0.40625-0.40625l-0.015625-0.015625c-0.17969-0.09375-0.37109-0.14062-0.57812-0.14062-0.66797 0-1.2656 0.37109-1.7969 1.1094l-0.10938 0.17188c-0.33594 0.54297-0.57812 1.2969-0.73438 2.2656-0.054688 0.26172-0.078125 0.47656-0.078125 0.64062 0 0.79297 0.27344 1.2812 0.82812 1.4688 0.125 0.042969 0.26953 0.0625 0.4375 0.0625 0.96875 0 1.9219-0.41016 2.8594-1.2344z"/>
|
|
615
|
+
</symbol>
|
|
616
|
+
<symbol id="km" overflow="visible">
|
|
617
|
+
<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"/>
|
|
618
|
+
</symbol>
|
|
619
|
+
<symbol id="kl" overflow="visible">
|
|
620
|
+
<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"/>
|
|
621
|
+
</symbol>
|
|
622
|
+
<symbol id="ag" overflow="visible">
|
|
623
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
624
|
+
</symbol>
|
|
625
|
+
<symbol id="af" overflow="visible">
|
|
626
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
627
|
+
</symbol>
|
|
628
|
+
<symbol id="kk" overflow="visible">
|
|
629
|
+
<path d="m9.625-4.5781h-8.3594c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.375c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0 2.7188h-8.375c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.3594c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
630
|
+
</symbol>
|
|
631
|
+
<symbol id="kj" overflow="visible">
|
|
632
|
+
<path d="m4.1094-8.9531v7.8438c0 0.28125 0.054687 0.46094 0.17188 0.53125 0.15625 0.09375 0.53516 0.14062 1.1406 0.14062h0.4375v0.4375c-0.32422-0.03125-1.0781-0.046875-2.2656-0.046875s-1.9453 0.015625-2.2656 0.046875v-0.4375h0.45312c0.71875 0 1.1289-0.082031 1.2344-0.25l0.015625-0.015625c0.03125-0.070313 0.046875-0.20703 0.046875-0.40625v-7.25c-0.48047 0.24219-1.0898 0.35938-1.8281 0.35938v-0.42188c1.1133 0 1.9609-0.30078 2.5469-0.90625 0.17578 0 0.28125 0.039063 0.3125 0.10938v0.26562z"/>
|
|
633
|
+
</symbol>
|
|
634
|
+
<symbol id="ki" overflow="visible">
|
|
635
|
+
<path d="m0.39062 2.3594 2.125-8.4844c0.26953-1.0625 0.79688-1.9609 1.5781-2.7031 0.72656-0.69531 1.4922-1.0469 2.2969-1.0469 0.76953 0 1.3203 0.30859 1.6562 0.92188 0.14453 0.27344 0.21875 0.5625 0.21875 0.875 0 0.69922-0.29297 1.3438-0.875 1.9375-0.19922 0.1875-0.41406 0.35547-0.64062 0.5 0.625 0.42969 0.9375 1.0742 0.9375 1.9375 0 0.96875-0.375 1.8516-1.125 2.6406-0.71875 0.75-1.5273 1.1602-2.4219 1.2344h-0.17188c-0.90625 0-1.5742-0.34766-2-1.0469-0.10547-0.1875-0.1875-0.38281-0.25-0.59375l-1.0469 4.0938-0.015625 0.03125c-0.03125 0.039062-0.078125 0.0625-0.14062 0.0625-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.03125 0.015625-0.10547 0.046875-0.21875zm4.2031-7.9688c0.15625 0.054687 0.35156 0.078125 0.59375 0.078125 0.28125 0 0.50391-0.035156 0.67188-0.10938-0.11719-0.050781-0.29688-0.078125-0.54688-0.078125-0.33594 0-0.57422 0.039062-0.71875 0.10938zm1.7031-0.28125c0.57031-0.42578 0.92188-1.1562 1.0469-2.1875v-0.046875c0.019531-0.125 0.03125-0.22266 0.03125-0.29688 0-0.66406-0.27344-1.0391-0.8125-1.125-0.0625-0.007813-0.125-0.015625-0.1875-0.015625-0.78125 0-1.5117 0.35938-2.1875 1.0781-0.64844 0.67969-1.1094 1.5625-1.3906 2.6562l-0.64062 2.5938c-0.125 0.49219-0.1875 0.83984-0.1875 1.0469 0 0.77344 0.27344 1.3438 0.82812 1.7188 0.32031 0.21875 0.70312 0.32812 1.1406 0.32812 0.72656 0 1.3516-0.39062 1.875-1.1719 0.0625-0.082031 0.11719-0.17188 0.17188-0.26562 0.32031-0.61328 0.53906-1.3672 0.65625-2.2656 0.007813-0.15625 0.015625-0.28516 0.015625-0.39062 0-0.48828-0.13672-0.87891-0.40625-1.1719-0.30469 0.125-0.65625 0.1875-1.0625 0.1875-0.63672 0-0.95312-0.125-0.95312-0.375 0-0.28906 0.36328-0.4375 1.0938-0.4375 0.38281 0 0.70703 0.046875 0.96875 0.14062z"/>
|
|
636
|
+
</symbol>
|
|
637
|
+
<symbol id="ae" overflow="visible">
|
|
638
|
+
<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"/>
|
|
639
|
+
</symbol>
|
|
640
|
+
<symbol id="kh" overflow="visible">
|
|
641
|
+
<path d="m7.2188-9.5625-2.0156 8.0938c-0.054687 0.23047-0.078125 0.45312-0.078125 0.67188 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.89062l0.84375-3.3125 0.046875-0.28125c0-0.10156-0.070313-0.17188-0.20312-0.20312-0.11719-0.019531-0.28125-0.03125-0.5-0.03125-0.21094 0-0.32422-0.054688-0.34375-0.17188 0-0.15625 0.066406-0.24219 0.20312-0.26562 0.875-0.10156 1.4688-0.15625 1.7812-0.15625 0.11328 0 0.17188 0.054688 0.17188 0.15625zm-2.9062 7.8906 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"/>
|
|
642
|
+
</symbol>
|
|
643
|
+
<symbol id="kg" overflow="visible">
|
|
644
|
+
<path d="m6.6094 39.969c-0.52344-0.52344-0.93359-1.1172-1.2344-1.7812-0.30469-0.65625-0.45312-1.3398-0.45312-2.0469v-10.344c0-0.67969-0.11719-1.3398-0.34375-1.9844-0.21875-0.64844-0.54688-1.2344-0.98438-1.7656s-0.94531-0.96875-1.5156-1.3125c-0.042969-0.042969-0.0625-0.074219-0.0625-0.09375v-0.40625c0-0.042969 0.019531-0.074219 0.0625-0.09375 0.44531-0.26172 0.84375-0.57422 1.1875-0.9375 0.34375-0.36719 0.64062-0.77734 0.89062-1.2344 0.25781-0.44922 0.45312-0.91797 0.57812-1.4062 0.125-0.49219 0.1875-0.99219 0.1875-1.5v-10.328c0-1.1562 0.34766-2.1953 1.0469-3.1094 0.70703-0.90625 1.625-1.6328 2.75-2.1875h0.42188c0.03125 0 0.054687 0.011719 0.078125 0.03125 0.019531 0.023438 0.03125 0.046875 0.03125 0.078125v0.40625c0 0.042969-0.011719 0.078125-0.03125 0.10938-0.42969 0.22656-0.82031 0.50781-1.1719 0.84375-0.35547 0.33203-0.65625 0.70312-0.90625 1.1094s-0.44922 0.84375-0.59375 1.3125c-0.13672 0.47656-0.20312 0.95703-0.20312 1.4375v10.328c0 0.73828-0.15625 1.4531-0.46875 2.1406-0.30469 0.6875-0.71875 1.3008-1.25 1.8438-0.52344 0.53906-1.125 0.99219-1.8125 1.3594 0.5 0.25781 0.96875 0.57812 1.4062 0.95312 0.4375 0.38281 0.8125 0.80078 1.125 1.25 0.3125 0.45703 0.55469 0.95312 0.73438 1.4844 0.17578 0.53125 0.26562 1.0781 0.26562 1.6406v10.344c0 0.97656 0.25391 1.8828 0.76562 2.7188 0.51953 0.84375 1.2227 1.5039 2.1094 1.9844 0.019531 0.03125 0.03125 0.0625 0.03125 0.09375v0.40625c0 0.03125-0.011719 0.054688-0.03125 0.078125-0.023438 0.019531-0.046875 0.03125-0.078125 0.03125h-0.40625c-0.24219-0.054687-0.58594-0.24219-1.0312-0.5625-0.4375-0.3125-0.80469-0.60938-1.0938-0.89062z"/>
|
|
645
|
+
</symbol>
|
|
646
|
+
<symbol id="kf" overflow="visible">
|
|
647
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
648
|
+
</symbol>
|
|
649
|
+
<symbol id="kc" overflow="visible">
|
|
650
|
+
<path d="m3.3125 2.4062c0 0.0625-0.039062 0.09375-0.10938 0.09375-0.074219 0-0.24609-0.13672-0.51562-0.40625-0.41797-0.41797-0.76172-0.90625-1.0312-1.4688-0.44922-0.90625-0.67188-1.9453-0.67188-3.125 0-1.125 0.21094-2.1406 0.64062-3.0469 0.34375-0.73828 0.78125-1.332 1.3125-1.7812 0.14453-0.11328 0.23438-0.17188 0.26562-0.17188 0.070313 0 0.10938 0.03125 0.10938 0.09375 0 0.042969-0.042969 0.10156-0.125 0.17188-1.0859 1.0938-1.625 2.6719-1.625 4.7344 0 2.0547 0.52344 3.6133 1.5781 4.6875 0.11328 0.10156 0.17188 0.17578 0.17188 0.21875z"/>
|
|
651
|
+
</symbol>
|
|
652
|
+
<symbol id="kb" overflow="visible">
|
|
653
|
+
<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"/>
|
|
654
|
+
</symbol>
|
|
655
|
+
<symbol id="ka" overflow="visible">
|
|
656
|
+
<path d="m4.0938-2.2969v2.7969c0 0.20703-0.070312 0.31641-0.20312 0.32812-0.13672 0-0.20312-0.10938-0.20312-0.32812v-2.7969h-2.7969c-0.21875 0-0.32812-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h2.7969v-2.7969c0-0.20703 0.066406-0.31641 0.20312-0.32812 0.13281 0 0.20312 0.10938 0.20312 0.32812v2.7969h2.7812c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
657
|
+
</symbol>
|
|
658
|
+
<symbol id="jz" overflow="visible">
|
|
659
|
+
<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"/>
|
|
660
|
+
</symbol>
|
|
661
|
+
<symbol id="jy" overflow="visible">
|
|
662
|
+
<path d="m2.8906-2.5c0 1.125-0.21094 2.1406-0.625 3.0469-0.35547 0.73828-0.79688 1.332-1.3281 1.7812-0.13672 0.11328-0.22656 0.17188-0.26562 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.042969 0.046875-0.10156 0.14062-0.17188 1.0703-1.0938 1.6094-2.6719 1.6094-4.7344 0-2.0312-0.5-3.5703-1.5-4.625l-0.046875-0.046875c-0.13672-0.11328-0.20312-0.19141-0.20312-0.23438 0-0.0625 0.035156-0.09375 0.10938-0.09375 0.082031 0 0.25781 0.13672 0.53125 0.40625 0.40625 0.41797 0.75 0.90625 1.0312 1.4688 0.4375 0.90625 0.65625 1.9492 0.65625 3.125z"/>
|
|
663
|
+
</symbol>
|
|
664
|
+
<symbol id="jx" overflow="visible">
|
|
665
|
+
<path d="m4.3906-7.125-3.4219 9.3906c-0.054688 0.13281-0.10547 0.20703-0.15625 0.21875l-0.015625 0.015625h-0.046875c-0.10547 0-0.16797-0.054688-0.1875-0.15625-0.011719-0.023438-0.015625-0.039062-0.015625-0.046875 0-0.03125 0.015625-0.089844 0.046875-0.17188l3.4688-9.5312c0.039062-0.0625 0.097656-0.09375 0.17188-0.09375 0.11328 0 0.17969 0.054688 0.20312 0.15625v0.046875c0 0.03125-0.015625 0.089844-0.046875 0.17188z"/>
|
|
666
|
+
</symbol>
|
|
667
|
+
<symbol id="jw" overflow="visible">
|
|
668
|
+
<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"/>
|
|
669
|
+
</symbol>
|
|
670
|
+
<symbol id="jv" overflow="visible">
|
|
671
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
672
|
+
</symbol>
|
|
673
|
+
<symbol id="ju" overflow="visible">
|
|
674
|
+
<path d="m4.1094-8.9531v7.8438c0 0.28125 0.054687 0.46094 0.17188 0.53125 0.15625 0.09375 0.53516 0.14062 1.1406 0.14062h0.4375v0.4375c-0.32422-0.03125-1.0781-0.046875-2.2656-0.046875s-1.9453 0.015625-2.2656 0.046875v-0.4375h0.45312c0.71875 0 1.1289-0.082031 1.2344-0.25l0.015625-0.015625c0.03125-0.070313 0.046875-0.20703 0.046875-0.40625v-7.25c-0.48047 0.24219-1.0898 0.35938-1.8281 0.35938v-0.42188c1.1133 0 1.9609-0.30078 2.5469-0.90625 0.17578 0 0.28125 0.039063 0.3125 0.10938v0.26562z"/>
|
|
675
|
+
</symbol>
|
|
676
|
+
<symbol id="jt" overflow="visible">
|
|
677
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
678
|
+
</symbol>
|
|
679
|
+
<symbol id="js" overflow="visible">
|
|
680
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
681
|
+
</symbol>
|
|
682
|
+
<symbol id="jr" overflow="visible">
|
|
683
|
+
<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.34375 0.1875-0.6875 0.039063-0.11328 0.078125-0.20703 0.10938-0.28125 0.16406-0.33203 0.36719-0.51953 0.60938-0.5625 0.039063-0.007812 0.085937-0.015625 0.14062-0.015625 0.35156 0 0.61719 0.15234 0.79688 0.45312 0.0625 0.125 0.10156 0.26562 0.125 0.42188 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.34375 0 0.61719 0.089844 0.82812 0.26562 0.1875 0.15625 0.28906 0.39062 0.3125 0.70312 0.45703-0.64453 1.0039-0.96875 1.6406-0.96875 0.59375 0 0.95703 0.23047 1.0938 0.6875v0.015625c0.03125 0.11719 0.046875 0.24219 0.046875 0.375 0 0.35547-0.20312 1.0859-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.41406 0 0.74219-0.36328 0.98438-1.0938l0.03125-0.14062c0.039063-0.11328 0.078125-0.17188 0.10938-0.17188v-0.015625h0.046875c0.082031 0 0.125 0.03125 0.125 0.09375 0 0.11719-0.074219 0.32812-0.21875 0.64062-0.28125 0.60547-0.64844 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.046875-0.32031 0.14062-0.5625 0.40625-1.0938 0.60938-1.8359 0.60938-2.2344 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.58594 0-1.0742 0.32031-1.4688 0.95312-0.10547 0.16797-0.16797 0.29297-0.1875 0.375-0.023438 0.09375-0.21875 0.90234-0.59375 2.4219-0.074219 0.28125-0.15625 0.45312-0.25 0.51562h-0.015625c-0.054687 0.03125-0.11719 0.046875-0.1875 0.046875-0.16797-0.03125-0.26562-0.11719-0.29688-0.26562l0.14062-0.59375 0.20312-0.76562 0.28125-1.1562c0.09375-0.375 0.14062-0.64844 0.14062-0.82812 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"/>
|
|
684
|
+
</symbol>
|
|
685
|
+
<symbol id="jo" overflow="visible">
|
|
686
|
+
<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"/>
|
|
687
|
+
</symbol>
|
|
688
|
+
<symbol id="jn" overflow="visible">
|
|
689
|
+
<path d="m2.6562-3.7344-0.5625 2.2188c-0.11719 0.42969-0.21094 0.75-0.28125 0.96875-0.10547 0.33594-0.20312 0.53125-0.29688 0.59375v0.015625c-0.054687 0.03125-0.12109 0.046875-0.20312 0.046875-0.14844 0-0.23438-0.070312-0.26562-0.20312-0.011719-0.019531-0.015625-0.039062-0.015625-0.0625 0-0.0625 0.023438-0.14453 0.078125-0.25 0.625-1.3516 1.0508-2.4609 1.2812-3.3281h-0.57812c-0.51172 0-0.93359 0.26172-1.2656 0.78125-0.0625 0.074219-0.11719 0.10938-0.15625 0.10938-0.085937 0-0.125-0.03125-0.125-0.09375 0-0.070312 0.11719-0.27344 0.35938-0.60938 0.050781-0.050781 0.097656-0.10156 0.14062-0.15625 0.019531-0.019531 0.039063-0.046875 0.0625-0.078125 0.007813-0.019531 0.023437-0.039062 0.046875-0.0625 0.28906-0.3125 0.64062-0.46875 1.0469-0.46875h3.3438c0.22656 0 0.35938 0.054688 0.39062 0.15625 0.007812 0.023438 0.015625 0.054688 0.015625 0.09375 0 0.21875-0.16406 0.32812-0.48438 0.32812h-1.1406c-0.125 0.57422-0.1875 1.1055-0.1875 1.5938 0 0.625 0.097656 1.1797 0.29688 1.6562 0.03125 0.09375 0.046875 0.16797 0.046875 0.21875 0 0.14844-0.085937 0.25781-0.25 0.32812-0.054687 0.03125-0.10547 0.046875-0.15625 0.046875-0.13672 0-0.23438-0.09375-0.29688-0.28125-0.023438-0.0625-0.042969-0.13281-0.0625-0.21875-0.054688-0.22656-0.078125-0.48438-0.078125-0.76562 0-0.4375 0.085937-1.0703 0.26562-1.9062l0.15625-0.67188z"/>
|
|
690
|
+
</symbol>
|
|
691
|
+
<symbol id="jm" overflow="visible">
|
|
692
|
+
<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"/>
|
|
693
|
+
</symbol>
|
|
694
|
+
<symbol id="jl" overflow="visible">
|
|
695
|
+
<path d="m0.60938-0.40625 0.40625-1.625c0.082031-0.30078 0.125-0.5 0.125-0.59375 0-0.20703-0.074219-0.3125-0.21875-0.3125-0.19922 0-0.35547 0.21875-0.46875 0.65625-0.023437 0.054688-0.039063 0.10938-0.046875 0.17188-0.054688 0.10547-0.09375 0.15625-0.125 0.15625-0.054688 0-0.078125-0.019531-0.078125-0.0625 0-0.070313 0.046875-0.23828 0.14062-0.5v-0.03125l0.0625-0.14062c0.10156-0.1875 0.21094-0.30469 0.32812-0.35938 0.0625-0.03125 0.12891-0.046875 0.20312-0.046875 0.25781 0 0.44531 0.10938 0.5625 0.32812 0.039062 0.085937 0.066406 0.17969 0.078125 0.28125 0.30078-0.40625 0.66406-0.60938 1.0938-0.60938 0.40625 0 0.66016 0.15625 0.76562 0.46875 0.03125 0.085938 0.046875 0.17969 0.046875 0.28125 0 0.24219-0.14844 0.75-0.4375 1.5312-0.085937 0.21094-0.125 0.375-0.125 0.5 0 0.15625 0.054687 0.23438 0.17188 0.23438 0.3125 0 0.55078-0.28516 0.71875-0.85938 0.019531-0.082031 0.039062-0.125 0.0625-0.125v-0.015625h0.03125c0.0625 0 0.09375 0.027344 0.09375 0.078125 0 0.085938-0.054688 0.23047-0.15625 0.4375-0.19922 0.42969-0.45312 0.64062-0.76562 0.64062-0.24219 0-0.41406-0.097656-0.51562-0.29688-0.042969-0.082031-0.0625-0.17578-0.0625-0.28125 0-0.09375 0.023438-0.19531 0.078125-0.3125 0.30078-0.82031 0.45312-1.3672 0.45312-1.6406 0-0.32031-0.125-0.48438-0.375-0.48438-0.42969 0-0.78125 0.23438-1.0625 0.70312-0.03125 0.054687-0.058594 0.10156-0.078125 0.14062l-0.09375 0.35938c-0.023437 0.10547-0.0625 0.26172-0.125 0.46875l-0.15625 0.625c-0.074219 0.32422-0.11719 0.49609-0.125 0.51562-0.042969 0.125-0.13281 0.19141-0.26562 0.20312-0.11719-0.023438-0.18359-0.082031-0.20312-0.1875 0 0.011719 0.019531-0.085937 0.0625-0.29688z"/>
|
|
696
|
+
</symbol>
|
|
697
|
+
<symbol id="jk" overflow="visible">
|
|
698
|
+
<path d="m5.4688 16.203c-1.1484-0.96875-1.9922-2.1875-2.5312-3.6562-0.54297-1.4688-0.8125-3.0391-0.8125-4.7031 0-1.6797 0.26953-3.2578 0.8125-4.7344 0.53906-1.4688 1.3828-2.6836 2.5312-3.6406 0-0.019531 0.023438-0.03125 0.078125-0.03125h0.17188c0.019531 0 0.039062 0.015625 0.0625 0.046875 0.03125 0.03125 0.046875 0.058594 0.046875 0.078125 0 0.042969-0.011719 0.074219-0.03125 0.09375-0.51172 0.51953-0.9375 1.0977-1.2812 1.7344-0.34375 0.64453-0.61719 1.3125-0.8125 2-0.19922 0.69531-0.33984 1.4219-0.42188 2.1719-0.085938 0.75-0.125 1.5156-0.125 2.2969 0 3.6133 0.87891 6.332 2.6406 8.1562 0.019531 0.019531 0.03125 0.046875 0.03125 0.078125s-0.015625 0.0625-0.046875 0.09375c-0.023438 0.03125-0.042969 0.046875-0.0625 0.046875h-0.17188c-0.054687 0-0.078125-0.011719-0.078125-0.03125z"/>
|
|
699
|
+
</symbol>
|
|
700
|
+
<symbol id="jj" overflow="visible">
|
|
701
|
+
<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"/>
|
|
702
|
+
</symbol>
|
|
703
|
+
<symbol id="ji" overflow="visible">
|
|
704
|
+
<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.34375 0.1875-0.6875 0.039063-0.11328 0.078125-0.20703 0.10938-0.28125 0.16406-0.33203 0.36719-0.51953 0.60938-0.5625 0.039063-0.007812 0.085937-0.015625 0.14062-0.015625 0.35156 0 0.61719 0.15234 0.79688 0.45312 0.0625 0.125 0.10156 0.26562 0.125 0.42188 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.34375 0 0.61719 0.089844 0.82812 0.26562 0.1875 0.15625 0.28906 0.39062 0.3125 0.70312 0.45703-0.64453 1.0039-0.96875 1.6406-0.96875 0.59375 0 0.95703 0.23047 1.0938 0.6875v0.015625c0.03125 0.11719 0.046875 0.24219 0.046875 0.375 0 0.35547-0.20312 1.0859-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.41406 0 0.74219-0.36328 0.98438-1.0938l0.03125-0.14062c0.039063-0.11328 0.078125-0.17188 0.10938-0.17188v-0.015625h0.046875c0.082031 0 0.125 0.03125 0.125 0.09375 0 0.11719-0.074219 0.32812-0.21875 0.64062-0.28125 0.60547-0.64844 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.046875-0.32031 0.14062-0.5625 0.40625-1.0938 0.60938-1.8359 0.60938-2.2344 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.58594 0-1.0742 0.32031-1.4688 0.95312-0.10547 0.16797-0.16797 0.29297-0.1875 0.375-0.023438 0.09375-0.21875 0.90234-0.59375 2.4219-0.074219 0.28125-0.15625 0.45312-0.25 0.51562h-0.015625c-0.054687 0.03125-0.11719 0.046875-0.1875 0.046875-0.16797-0.03125-0.26562-0.11719-0.29688-0.26562l0.14062-0.59375 0.20312-0.76562 0.28125-1.1562c0.09375-0.375 0.14062-0.64844 0.14062-0.82812 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"/>
|
|
705
|
+
</symbol>
|
|
706
|
+
<symbol id="jh" overflow="visible">
|
|
707
|
+
<path d="m0.70312 16.234c-0.085937 0-0.125-0.046875-0.125-0.14062 0-0.03125 0.007813-0.058594 0.03125-0.078125 0.66406-0.69922 1.1914-1.4922 1.5781-2.375 0.39453-0.88672 0.67188-1.8203 0.82812-2.7969 0.15625-0.96875 0.23438-1.9766 0.23438-3.0156 0-3.625-0.88281-6.3516-2.6406-8.1719-0.023437-0.019531-0.03125-0.050781-0.03125-0.09375 0-0.082031 0.039063-0.125 0.125-0.125h0.17188c0.019531 0 0.039062 0.011719 0.0625 0.03125 1.1445 0.95703 1.9844 2.1719 2.5156 3.6406 0.53906 1.4766 0.8125 3.0547 0.8125 4.7344 0 1.6641-0.26562 3.2344-0.79688 4.7031s-1.375 2.6875-2.5312 3.6562c-0.023438 0.019531-0.042969 0.03125-0.0625 0.03125z"/>
|
|
708
|
+
</symbol>
|
|
709
|
+
<symbol id="jg" overflow="visible">
|
|
710
|
+
<path d="m1.4844 30.391c0.22656 0.22656 0.51562 0.34375 0.85938 0.34375 0.33203 0 0.63281-0.23047 0.90625-0.6875 0.28125-0.46094 0.52344-1.0391 0.73438-1.7344 0.21875-0.6875 0.375-1.2656 0.46875-1.7344s0.21094-1.0742 0.35938-1.8125c0.13281-0.6875 0.26562-1.3828 0.39062-2.0781 0.125-0.6875 0.25-1.4219 0.375-2.2031 0.13281-0.78125 0.26953-1.5742 0.40625-2.375 0.14453-0.80469 0.3125-1.6641 0.5-2.5781 0.23828-1.1875 0.41016-2.043 0.51562-2.5625 0.11328-0.51172 0.28125-1.25 0.5-2.2188s0.36328-1.6094 0.4375-1.9219c0.070312-0.30469 0.26953-1.1406 0.59375-2.5156l0.1875-0.73438c0.20703-0.8125 0.36719-1.4336 0.48438-1.8594 0.11328-0.41797 0.28906-0.93359 0.53125-1.5469 0.23828-0.60547 0.51953-1.1211 0.84375-1.5469 0.32031-0.41797 0.67969-0.625 1.0781-0.625 0.26953 0 0.51953 0.0625 0.75 0.1875 0.23828 0.125 0.42969 0.28906 0.57812 0.5 0.14453 0.21875 0.21875 0.46094 0.21875 0.73438 0 0.20703-0.070313 0.375-0.20312 0.5-0.13672 0.13281-0.30469 0.20312-0.5 0.20312-0.19922 0-0.37109-0.070312-0.51562-0.20312-0.13672-0.125-0.20312-0.29297-0.20312-0.5 0-0.19922 0.066406-0.36719 0.20312-0.5 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312-0.24219-0.24219-0.52344-0.35938-0.84375-0.35938-0.16797 0-0.35547 0.25-0.5625 0.75-0.21094 0.50781-0.40234 1.1094-0.57812 1.7969-0.17969 0.6875-0.3125 1.2578-0.40625 1.7188-0.09375 0.45703-0.20312 1.0312-0.32812 1.7188-0.15625 0.78125-0.28906 1.457-0.39062 2.0312-0.10547 0.58203-0.23047 1.3008-0.375 2.1562-0.14844 0.85156-0.29297 1.6602-0.4375 2.4219-0.13672 0.76953-0.29688 1.6406-0.48438 2.6094-0.125 0.61328-0.30469 1.4727-0.53125 2.5781-0.23047 1.1016-0.38672 1.8203-0.46875 2.1562-0.074219 0.33203-0.26562 1.1445-0.57812 2.4375-0.30469 1.2891-0.46484 1.9766-0.48438 2.0625l-0.17188 0.64062c-0.24219 0.98828-0.48438 1.8594-0.73438 2.6094-0.24219 0.75-0.59375 1.4453-1.0625 2.0938-0.46875 0.64453-1.043 0.96875-1.7188 0.96875-0.40625 0-0.77344-0.13672-1.0938-0.40625-0.3125-0.27344-0.46875-0.60547-0.46875-1 0-0.21094 0.066406-0.38281 0.20312-0.51562 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312 0.13281 0 0.25391 0.03125 0.35938 0.09375 0.10156 0.0625 0.1875 0.14453 0.25 0.25 0.0625 0.11328 0.09375 0.23828 0.09375 0.375 0 0.19531-0.070313 0.35938-0.20312 0.48438-0.13672 0.13281-0.30859 0.20312-0.51562 0.20312z"/>
|
|
711
|
+
</symbol>
|
|
712
|
+
<symbol id="ac" overflow="visible">
|
|
713
|
+
<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"/>
|
|
714
|
+
</symbol>
|
|
715
|
+
<symbol id="jf" overflow="visible">
|
|
716
|
+
<path d="m2.8438-0.015625c0 0.90625-0.29688 1.6953-0.89062 2.375-0.15625 0.1875-0.28906 0.30078-0.39062 0.34375-0.09375 0-0.14062-0.054687-0.14062-0.15625 0-0.042969 0.050781-0.11719 0.15625-0.21875 0.5625-0.5625 0.875-1.25 0.9375-2.0625 0.007813-0.09375 0.015625-0.1875 0.015625-0.28125 0-0.13281-0.011719-0.20312-0.03125-0.20312-0.011719 0-0.03125 0.011719-0.0625 0.03125-0.13672 0.125-0.29688 0.1875-0.48438 0.1875-0.35547 0-0.58594-0.15625-0.6875-0.46875-0.042969-0.09375-0.0625-0.17969-0.0625-0.26562 0-0.34375 0.14453-0.57031 0.4375-0.6875 0.09375-0.039063 0.19531-0.0625 0.3125-0.0625 0.40625 0 0.67578 0.27344 0.8125 0.8125 0.050781 0.19922 0.078125 0.41797 0.078125 0.65625z"/>
|
|
717
|
+
</symbol>
|
|
718
|
+
<symbol id="je" overflow="visible">
|
|
719
|
+
<path d="m6.6719-3.2969v0.85938c0.61328-0.75 1.0703-1.6719 1.375-2.7656 0.09375-0.1875 0.16406-0.28516 0.21875-0.29688 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.15625-0.10547 0.51172-0.3125 1.0625-0.32422 0.80469-0.75781 1.543-1.2969 2.2188-0.09375 0.1875-0.14062 0.35547-0.14062 0.5 0 0.94922 0.14453 1.4219 0.4375 1.4219 0.28906 0 0.52344-0.16016 0.70312-0.48438 0.03125-0.0625 0.054688-0.12891 0.078125-0.20312 0.039063-0.09375 0.10156-0.14062 0.1875-0.14062 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.17969-0.12109 0.39062-0.35938 0.64062-0.24219 0.23828-0.51562 0.35938-0.82812 0.35938-0.58594 0-0.98438-0.32031-1.2031-0.96875-0.023437-0.0625-0.042969-0.12891-0.0625-0.20312-0.98047 0.78125-1.9648 1.1719-2.9531 1.1719-0.875 0-1.5234-0.34766-1.9375-1.0469-0.21875-0.38281-0.32812-0.82812-0.32812-1.3281 0-0.94531 0.36328-1.8281 1.0938-2.6406 0.71875-0.80078 1.5312-1.2383 2.4375-1.3125 0.082031-0.007813 0.16016-0.015625 0.23438-0.015625 0.78125 0 1.3828 0.30859 1.8125 0.92188 0 0.011719 0.003906 0.015625 0.015625 0.015625 0.33203 0.49219 0.5 1.1406 0.5 1.9531zm-0.9375 1.9062c-0.011719-0.15625-0.015625-0.67578-0.015625-1.5625 0-1.1445-0.13281-1.9297-0.39062-2.3594-0.10547-0.1875-0.24219-0.32031-0.40625-0.40625l-0.015625-0.015625c-0.17969-0.09375-0.37109-0.14062-0.57812-0.14062-0.66797 0-1.2656 0.37109-1.7969 1.1094l-0.10938 0.17188c-0.33594 0.54297-0.57812 1.2969-0.73438 2.2656-0.054688 0.26172-0.078125 0.47656-0.078125 0.64062 0 0.79297 0.27344 1.2812 0.82812 1.4688 0.125 0.042969 0.26953 0.0625 0.4375 0.0625 0.96875 0 1.9219-0.41016 2.8594-1.2344z"/>
|
|
720
|
+
</symbol>
|
|
721
|
+
<symbol id="jd" overflow="visible">
|
|
722
|
+
<path d="m0.39062 2.3594 2.125-8.4844c0.26953-1.0625 0.79688-1.9609 1.5781-2.7031 0.72656-0.69531 1.4922-1.0469 2.2969-1.0469 0.76953 0 1.3203 0.30859 1.6562 0.92188 0.14453 0.27344 0.21875 0.5625 0.21875 0.875 0 0.69922-0.29297 1.3438-0.875 1.9375-0.19922 0.1875-0.41406 0.35547-0.64062 0.5 0.625 0.42969 0.9375 1.0742 0.9375 1.9375 0 0.96875-0.375 1.8516-1.125 2.6406-0.71875 0.75-1.5273 1.1602-2.4219 1.2344h-0.17188c-0.90625 0-1.5742-0.34766-2-1.0469-0.10547-0.1875-0.1875-0.38281-0.25-0.59375l-1.0469 4.0938-0.015625 0.03125c-0.03125 0.039062-0.078125 0.0625-0.14062 0.0625-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.03125 0.015625-0.10547 0.046875-0.21875zm4.2031-7.9688c0.15625 0.054687 0.35156 0.078125 0.59375 0.078125 0.28125 0 0.50391-0.035156 0.67188-0.10938-0.11719-0.050781-0.29688-0.078125-0.54688-0.078125-0.33594 0-0.57422 0.039062-0.71875 0.10938zm1.7031-0.28125c0.57031-0.42578 0.92188-1.1562 1.0469-2.1875v-0.046875c0.019531-0.125 0.03125-0.22266 0.03125-0.29688 0-0.66406-0.27344-1.0391-0.8125-1.125-0.0625-0.007813-0.125-0.015625-0.1875-0.015625-0.78125 0-1.5117 0.35938-2.1875 1.0781-0.64844 0.67969-1.1094 1.5625-1.3906 2.6562l-0.64062 2.5938c-0.125 0.49219-0.1875 0.83984-0.1875 1.0469 0 0.77344 0.27344 1.3438 0.82812 1.7188 0.32031 0.21875 0.70312 0.32812 1.1406 0.32812 0.72656 0 1.3516-0.39062 1.875-1.1719 0.0625-0.082031 0.11719-0.17188 0.17188-0.26562 0.32031-0.61328 0.53906-1.3672 0.65625-2.2656 0.007813-0.15625 0.015625-0.28516 0.015625-0.39062 0-0.48828-0.13672-0.87891-0.40625-1.1719-0.30469 0.125-0.65625 0.1875-1.0625 0.1875-0.63672 0-0.95312-0.125-0.95312-0.375 0-0.28906 0.36328-0.4375 1.0938-0.4375 0.38281 0 0.70703 0.046875 0.96875 0.14062z"/>
|
|
723
|
+
</symbol>
|
|
724
|
+
<symbol id="jc" overflow="visible">
|
|
725
|
+
<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.085938-0.46094 0.26562-0.95312 0.050781-0.15625 0.10938-0.28906 0.17188-0.40625 0.21875-0.45703 0.5-0.71875 0.84375-0.78125 0.0625-0.007813 0.125-0.015625 0.1875-0.015625 0.5 0 0.875 0.21094 1.125 0.625 0.09375 0.17969 0.14453 0.375 0.15625 0.59375 0.60156-0.8125 1.332-1.2188 2.1875-1.2188 0.47656 0 0.86328 0.12109 1.1562 0.35938 0.25781 0.23047 0.40625 0.5625 0.4375 1 0.63281-0.90625 1.3945-1.3594 2.2812-1.3594 0.83203 0 1.3477 0.32422 1.5469 0.96875v0.015625c0.050781 0.15625 0.078125 0.32812 0.078125 0.51562 0 0.49219-0.28906 1.5156-0.85938 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.58203 0 1.0391-0.50781 1.375-1.5312l0.0625-0.20312c0.039062-0.14453 0.085938-0.22266 0.14062-0.23438v-0.015625h0.0625c0.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.0625-0.44141 0.1875-0.76562 0.57031-1.5312 0.85938-2.5781 0.85938-3.1406 0-0.64453-0.25-0.96875-0.75-0.96875-0.82422 0-1.5078 0.44531-2.0469 1.3281-0.14844 0.23047-0.23438 0.40625-0.26562 0.53125-0.03125 0.11719-0.3125 1.2422-0.84375 3.375-0.10547 0.39844-0.21875 0.63672-0.34375 0.71875l-0.015625 0.015625h-0.015625c-0.0625 0.039062-0.14844 0.0625-0.25 0.0625-0.24219-0.054688-0.375-0.17578-0.40625-0.375l0.1875-0.82812 0.67188-2.6875c0.13281-0.51953 0.20312-0.91016 0.20312-1.1719 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"/>
|
|
726
|
+
</symbol>
|
|
727
|
+
<symbol id="jb" overflow="visible">
|
|
728
|
+
<path d="m5.2344-8.4688-1.8906 7.5625c-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.015625h1.3125c1.3633 0 2.3516-0.53906 2.9688-1.625 0.15625-0.28125 0.33594-0.69531 0.54688-1.25 0.070312-0.17578 0.13281-0.26953 0.1875-0.28125l0.015625-0.015625h0.03125c0.10156 0 0.16016 0.054687 0.17188 0.15625 0 0.023437-0.015625 0.085937-0.046875 0.1875l-1.1094 3.0312c-0.054688 0.13672-0.11719 0.21094-0.1875 0.21875h-0.015625c-0.03125 0.011719-0.10938 0.015625-0.23438 0.015625h-6.4844c-0.23047 0-0.35547-0.050781-0.375-0.15625 0-0.16406 0.066406-0.25781 0.20312-0.28125h0.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.875-7.5156c0.03125-0.14453 0.046875-0.23438 0.046875-0.26562 0-0.11328-0.074219-0.1875-0.21875-0.21875h-0.03125-0.125c-0.15625-0.019531-0.33594-0.03125-0.53125-0.03125-0.24219 0-0.37109-0.050781-0.39062-0.15625 0-0.1875 0.085937-0.28125 0.26562-0.28125l1.8438 0.046875h0.015625l2.0625-0.046875h0.015625c0.14453 0 0.21875 0.058594 0.21875 0.17188 0 0.14844-0.0625 0.23047-0.1875 0.25-0.054688 0.011719-0.16797 0.015625-0.34375 0.015625-0.74219 0-1.1797 0.078125-1.3125 0.23438-0.0625 0.0625-0.12109 0.20312-0.17188 0.42188z"/>
|
|
729
|
+
</symbol>
|
|
730
|
+
<symbol id="ab" overflow="visible">
|
|
731
|
+
<path d="m6.5938-3c0 0.96875-0.35547 1.7656-1.0625 2.3906-0.59375 0.51172-1.2773 0.76562-2.0469 0.76562-0.89844 0-1.6523-0.33594-2.2656-1.0156-0.55469-0.60156-0.82812-1.3164-0.82812-2.1406 0-0.94531 0.33594-1.75 1.0156-2.4062 0.59375-0.57031 1.2891-0.85938 2.0938-0.85938 0.90625 0 1.6641 0.35938 2.2812 1.0781 0.53906 0.625 0.8125 1.3555 0.8125 2.1875zm-3.0938 2.7969c0.625 0 1.1172-0.25781 1.4844-0.78125l0.14062-0.25c0.20703-0.40625 0.3125-1.0312 0.3125-1.875 0-0.89453-0.125-1.5391-0.375-1.9375-0.39844-0.58203-0.92188-0.89062-1.5781-0.92188-0.57422 0-1.0469 0.23438-1.4219 0.70312-0.074219 0.074219-0.13281 0.15234-0.17188 0.23438-0.23047 0.41797-0.34375 1.0586-0.34375 1.9219 0 0.90625 0.11719 1.5625 0.35938 1.9688 0.38281 0.61719 0.91406 0.92969 1.5938 0.9375z"/>
|
|
732
|
+
</symbol>
|
|
733
|
+
<symbol id="z" overflow="visible">
|
|
734
|
+
<path d="m5.3125-0.76562c-0.48047 0.61719-1.1055 0.92188-1.875 0.92188-0.85547 0-1.5781-0.34375-2.1719-1.0312-0.53125-0.60156-0.79688-1.3164-0.79688-2.1406 0-0.96875 0.36328-1.7695 1.0938-2.4062 0.59375-0.50781 1.2695-0.76562 2.0312-0.76562 0.70703 0 1.2969 0.29297 1.7656 0.875v-3.0312c0-0.36328-0.0625-0.58594-0.1875-0.67188h-0.015625c-0.125-0.070313-0.42188-0.10938-0.89062-0.10938v-0.4375l2.0156-0.15625v8.5c0 0.36719 0.070312 0.58984 0.21875 0.67188h0.015625c0.125 0.074219 0.41016 0.10938 0.85938 0.10938v0.4375l-2.0625 0.15625zm0-3.75c0-0.1875-0.042969-0.34375-0.125-0.46875l-0.015625-0.0625c-0.38672-0.55078-0.89062-0.82812-1.5156-0.82812-0.65625 0-1.1836 0.29688-1.5781 0.89062-0.29297 0.44922-0.4375 1.1094-0.4375 1.9844s0.13281 1.5273 0.40625 1.9531c0.375 0.59375 0.86328 0.89062 1.4688 0.89062 0.66406 0 1.207-0.30469 1.625-0.92188l0.03125-0.0625c0.09375-0.1875 0.14062-0.35938 0.14062-0.51562z"/>
|
|
735
|
+
</symbol>
|
|
736
|
+
<symbol id="y" overflow="visible">
|
|
737
|
+
<path d="m9.625-4.5781h-8.3594c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.375c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0 2.7188h-8.375c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.3594c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
738
|
+
</symbol>
|
|
739
|
+
<symbol id="iw" overflow="visible">
|
|
740
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
741
|
+
</symbol>
|
|
742
|
+
<symbol id="iv" overflow="visible">
|
|
743
|
+
<path d="m6.2812-2.4375-0.39062 2.4375h-5.1875c0-0.22656 0.023437-0.37891 0.078125-0.45312l0.078125-0.0625 2.6875-3c0.97656-1.1016 1.4688-2.1328 1.4688-3.0938 0-0.83203-0.25781-1.4609-0.76562-1.8906l-0.015625-0.015625c-0.30469-0.25-0.66797-0.375-1.0938-0.375-0.67969 0-1.2148 0.29297-1.6094 0.875-0.11719 0.16797-0.21094 0.35156-0.28125 0.54688h0.17188c0.375 0 0.61328 0.16797 0.71875 0.5v0.015625c0.019531 0.0625 0.03125 0.13281 0.03125 0.20312 0 0.375-0.17969 0.61719-0.53125 0.71875-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.34375 0-0.57422-0.14453-0.6875-0.4375-0.03125-0.10156-0.046875-0.22266-0.046875-0.35938 0-0.71875 0.27344-1.332 0.82812-1.8438 0.48828-0.45703 1.082-0.6875 1.7812-0.6875 1.0312 0 1.832 0.35156 2.4062 1.0469 0.32031 0.39844 0.50391 0.87109 0.54688 1.4219 0.007813 0.085937 0.015625 0.16797 0.015625 0.25 0 0.67969-0.25781 1.3281-0.76562 1.9531-0.27344 0.3125-0.69531 0.73047-1.2656 1.25l-0.84375 0.76562-0.14062 0.125-1.4844 1.4375h2.5156c0.82031 0 1.2656-0.035156 1.3281-0.10938 0.09375-0.13281 0.19531-0.55078 0.3125-1.25z"/>
|
|
744
|
+
</symbol>
|
|
745
|
+
<symbol id="iu" overflow="visible">
|
|
746
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
747
|
+
</symbol>
|
|
748
|
+
<symbol id="it" overflow="visible">
|
|
749
|
+
<path d="m6.4375-4.4844c0 1.3672-0.17188 2.4219-0.51562 3.1719-0.55469 1.043-1.3672 1.582-2.4375 1.625-0.84375 0-1.5273-0.33594-2.0469-1.0156-0.10547-0.11328-0.19531-0.25-0.26562-0.40625-0.41797-0.76953-0.625-1.8945-0.625-3.375 0-1.3633 0.17188-2.4219 0.51562-3.1719 0.46875-1.0391 1.2227-1.5977 2.2656-1.6719h0.17188c0.83203 0 1.5078 0.33594 2.0312 1v0.015625c0.125 0.16797 0.23828 0.35547 0.34375 0.5625 0.375 0.79297 0.5625 1.8828 0.5625 3.2656zm-2.9531 4.4844c0.59375 0 1.0469-0.28516 1.3594-0.85938 0.13281-0.25 0.22656-0.54688 0.28125-0.89062 0.10156-0.59375 0.15625-1.5547 0.15625-2.8906 0-1.3008-0.046875-2.2109-0.14062-2.7344-0.16797-0.88281-0.60156-1.4141-1.2969-1.5938-0.11719-0.03125-0.23438-0.046875-0.35938-0.046875-0.65625 0-1.1328 0.32812-1.4219 0.98438-0.10547 0.21875-0.1875 0.49219-0.25 0.8125-0.074219 0.5-0.10938 1.3594-0.10938 2.5781 0 1.4062 0.050781 2.3906 0.15625 2.9531 0.16406 0.89844 0.57812 1.4375 1.2344 1.625 0.13281 0.042969 0.26562 0.0625 0.39062 0.0625z"/>
|
|
750
|
+
</symbol>
|
|
751
|
+
<symbol id="is" overflow="visible">
|
|
752
|
+
<path d="m2.4219-5.5938v3.8906c0 0.92969 0.26953 1.4297 0.8125 1.5h0.125c0.40625 0 0.6875-0.25781 0.84375-0.78125 0.0625-0.21875 0.09375-0.47656 0.09375-0.78125v-0.76562h0.34375v0.79688c0 0.76172-0.21484 1.3125-0.64062 1.6562-0.19922 0.15625-0.44531 0.23438-0.73438 0.23438-0.78125 0-1.3203-0.29688-1.6094-0.89062-0.13672-0.26953-0.20312-0.60156-0.20312-1v-3.8594h-1.1875v-0.3125c0.83203-0.039062 1.3828-0.5625 1.6562-1.5625 0.09375-0.36328 0.14453-0.74219 0.15625-1.1406h0.34375v2.5781h2v0.4375z"/>
|
|
753
|
+
</symbol>
|
|
754
|
+
<symbol id="ir" overflow="visible">
|
|
755
|
+
<path d="m6.3906-3.5312v2.6719c0.007813 0.23047 0.14453 0.35938 0.40625 0.39062 0.11328 0.023438 0.34375 0.03125 0.6875 0.03125v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.015625-0.03125c0.070313-0.070312 0.10938-0.22656 0.10938-0.46875v-3.2656c0-0.92578-0.26562-1.4375-0.79688-1.5312-0.085937-0.007813-0.16797-0.015625-0.25-0.015625-0.5625 0-1.0391 0.24609-1.4219 0.73438-0.3125 0.40625-0.46875 0.90625-0.46875 1.5v2.5781c0 0.3125 0.078125 0.5 0.23438 0.5625 0.10156 0.042969 0.39062 0.0625 0.85938 0.0625v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.86719-0.039062 0.95312-0.125l0.03125-0.03125c0.070312-0.070312 0.10938-0.22656 0.10938-0.46875v-7.2812c0-0.36328-0.070313-0.58594-0.20312-0.67188h-0.015625c-0.10547-0.050781-0.28125-0.085937-0.53125-0.10938h-0.34375v-0.4375l2.0156-0.15625v4.875h0.015625c0.25-0.57031 0.64844-0.96875 1.2031-1.1875 0.28125-0.09375 0.55078-0.14453 0.8125-0.15625 0.69531 0 1.1875 0.17188 1.4688 0.51562 0.25 0.29297 0.39062 0.6875 0.42188 1.1875v0.95312z"/>
|
|
756
|
+
</symbol>
|
|
757
|
+
<symbol id="aa" overflow="visible">
|
|
758
|
+
<path d="m5.4531-3.2344h-3.9062c0 0.94922 0.14062 1.6484 0.42188 2.0938 0.44531 0.58594 0.97656 0.89844 1.5938 0.9375 0.63281 0 1.1484-0.25781 1.5469-0.78125 0.13281-0.1875 0.25-0.40625 0.34375-0.65625 0.019531-0.125 0.078125-0.1875 0.17188-0.1875 0.125 0 0.1875 0.054687 0.1875 0.15625 0 0.21094-0.13281 0.49219-0.39062 0.84375-0.38672 0.52344-0.89062 0.83203-1.5156 0.9375-0.13672 0.03125-0.28125 0.046875-0.4375 0.046875-0.875 0-1.6211-0.33594-2.2344-1.0156-0.5625-0.61328-0.84375-1.3516-0.84375-2.2188 0-0.96875 0.33594-1.7695 1.0156-2.4062 0.53906-0.51953 1.1719-0.78125 1.8906-0.78125 1.0625 0 1.8008 0.44922 2.2188 1.3438 0.19531 0.41797 0.29688 0.88281 0.29688 1.3906 0 0.15625-0.03125 0.25-0.09375 0.28125-0.03125 0.011719-0.12109 0.015625-0.26562 0.015625zm-3.8906-0.29688h3.3281c0-0.88281-0.19922-1.5508-0.59375-2-0.26172-0.28906-0.59375-0.4375-1-0.4375-0.46875 0-0.87109 0.21875-1.2031 0.65625-0.32422 0.42969-0.5 1.0234-0.53125 1.7812z"/>
|
|
759
|
+
</symbol>
|
|
760
|
+
<symbol id="ja" overflow="visible">
|
|
761
|
+
<path d="m2.4062-1.0938c0 0.29297 0.054688 0.46875 0.17188 0.53125l0.015625 0.015625c0.125 0.074219 0.41406 0.10938 0.875 0.10938h0.29688v0.4375c-0.375-0.03125-0.96875-0.046875-1.7812-0.046875 0.03125 0-0.5 0.015625-1.5938 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.03125-0.03125c0.0625-0.070312 0.09375-0.22656 0.09375-0.46875v-3.75c0-0.36328-0.070313-0.58594-0.20312-0.67188-0.11719-0.070313-0.32031-0.10938-0.60938-0.10938h-0.28125v-0.4375l1.9531-0.15625v1.5469c0.25-0.78906 0.66016-1.2852 1.2344-1.4844 0.15625-0.039062 0.31641-0.0625 0.48438-0.0625 0.4375 0 0.75 0.16406 0.9375 0.48438 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.32422-0.15234 0.52344-0.45312 0.59375-0.054687 0.011719-0.10156 0.015625-0.14062 0.015625-0.29297 0-0.48047-0.125-0.5625-0.375-0.03125-0.0625-0.046875-0.13281-0.046875-0.21875 0-0.25781 0.10938-0.44141 0.32812-0.54688-0.023438-0.007813-0.074219-0.015625-0.15625-0.015625-0.625 0-1.0898 0.38281-1.3906 1.1406-0.17969 0.4375-0.26562 0.93359-0.26562 1.4844z"/>
|
|
762
|
+
</symbol>
|
|
763
|
+
<symbol id="iz" overflow="visible">
|
|
764
|
+
<path d="m8.6719-4.7031-1.6406 4.5938c-0.0625 0.15625-0.15625 0.24219-0.28125 0.26562-0.125 0-0.21875-0.089844-0.28125-0.26562l-1.4219-3.9844-1.4219 3.9688c-0.054688 0.15625-0.11719 0.24219-0.1875 0.26562-0.03125 0.007813-0.0625 0.015625-0.09375 0.015625-0.125 0-0.21484-0.078125-0.26562-0.23438-0.011719-0.0078125-0.023437-0.035156-0.03125-0.078125l-1.7656-4.9531c-0.09375-0.25-0.23047-0.39844-0.40625-0.45312-0.11719-0.019531-0.32422-0.03125-0.625-0.03125v-0.4375c0.50781 0.03125 0.94141 0.046875 1.2969 0.046875 0.17578 0 0.6875-0.015625 1.5312-0.046875v0.4375c-0.55469 0-0.82812 0.125-0.82812 0.375 0 0.054688 0.023438 0.13672 0.078125 0.25l1.3281 3.7344 1.2031-3.3906c-0.16797-0.45703-0.27734-0.71094-0.32812-0.76562-0.16797-0.13281-0.46094-0.20312-0.875-0.20312v-0.4375c0.41406 0.03125 0.83203 0.046875 1.25 0.046875 0.15625 0 0.64062-0.015625 1.4531-0.046875v0.4375c-0.55469 0-0.82812 0.125-0.82812 0.375 0 0.03125 0.019531 0.12109 0.0625 0.26562l1.3906 3.9062 1.2812-3.5938c0.039063-0.11328 0.0625-0.20703 0.0625-0.28125 0-0.36328-0.20312-0.58594-0.60938-0.67188h-0.20312v-0.4375c0.53125 0.03125 0.96094 0.046875 1.2969 0.046875 0.375 0 0.71875-0.015625 1.0312-0.046875v0.4375c-0.58594 0.011719-0.97656 0.30859-1.1719 0.89062z"/>
|
|
765
|
+
</symbol>
|
|
766
|
+
<symbol id="iy" overflow="visible">
|
|
767
|
+
<path d="m2.4844-6.1875v5.1406c0 0.29297 0.050781 0.46875 0.15625 0.53125 0.11328 0.054687 0.38281 0.078125 0.8125 0.078125v0.4375c-0.94922-0.03125-1.4336-0.046875-1.4531-0.046875-0.125 0-0.63672 0.015625-1.5312 0.046875v-0.4375c0.53906 0 0.85938-0.039062 0.95312-0.125l0.03125-0.03125c0.0625-0.070312 0.09375-0.22656 0.09375-0.46875v-3.7656c0-0.375-0.074219-0.59766-0.21875-0.67188h-0.015625l-0.015625-0.015625c-0.11719-0.050781-0.375-0.078125-0.78125-0.078125v-0.4375zm0.046875-2.4375c0 0.34375-0.15234 0.57422-0.45312 0.6875-0.09375 0.042969-0.1875 0.0625-0.28125 0.0625-0.33594 0-0.5625-0.14844-0.6875-0.45312v-0.015625c-0.042969-0.09375-0.0625-0.1875-0.0625-0.28125 0-0.28906 0.12891-0.50391 0.39062-0.64062 0.10156-0.0625 0.22266-0.09375 0.35938-0.09375 0.3125 0 0.53516 0.13672 0.67188 0.40625 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
768
|
+
</symbol>
|
|
769
|
+
<symbol id="ix" overflow="visible">
|
|
770
|
+
<path d="m2.9062-2.7188c-0.80469-0.15625-1.3281-0.30469-1.5781-0.45312-0.09375-0.050781-0.18359-0.11328-0.26562-0.1875-0.39844-0.32031-0.59375-0.71875-0.59375-1.1875 0-0.65625 0.28516-1.1328 0.85938-1.4375 0.36328-0.1875 0.82031-0.28125 1.375-0.28125 0.51953 0 0.95703 0.13281 1.3125 0.39062 0.10156-0.082031 0.17969-0.16016 0.23438-0.23438 0.125-0.10156 0.21875-0.15625 0.28125-0.15625 0.09375 0.085937 0.14453 0.19531 0.15625 0.32812v1.4219c0 0.1875-0.027344 0.29297-0.078125 0.3125h-0.015625l-0.015625 0.015625h-0.0625c-0.10547 0-0.16406-0.039062-0.17188-0.125-0.074219-0.9375-0.46484-1.4883-1.1719-1.6562-0.14844-0.019531-0.30469-0.03125-0.46875-0.03125-0.875 0-1.3906 0.27344-1.5469 0.8125-0.011719 0.085938-0.015625 0.16797-0.015625 0.25 0 0.46875 0.35938 0.80469 1.0781 1 0.13281 0.042969 0.34766 0.089844 0.64062 0.14062 0.66406 0.13672 1.1445 0.32031 1.4375 0.54688 0.050781 0.042969 0.10156 0.085938 0.15625 0.125 0.39453 0.39844 0.59375 0.83984 0.59375 1.3281 0 0.79297-0.32812 1.3555-0.98438 1.6875-0.35547 0.17578-0.78125 0.26562-1.2812 0.26562-0.60547 0-1.1172-0.20312-1.5312-0.60938l-0.28125 0.32812c-0.1875 0.1875-0.30859 0.28125-0.35938 0.28125-0.09375-0.085938-0.14062-0.19531-0.14062-0.34375v-1.8438c0-0.20703 0.03125-0.31641 0.09375-0.32812l0.015625-0.015625h0.0625c0.09375 0 0.15625 0.054688 0.1875 0.15625 0 0.011719 0.003906 0.039062 0.015625 0.078125 0.23828 1.0859 0.69531 1.7266 1.375 1.9219 0.17578 0.042969 0.36328 0.0625 0.5625 0.0625 0.84375 0 1.3516-0.28906 1.5312-0.875 0.039062-0.125 0.0625-0.25391 0.0625-0.39062 0-0.6875-0.49219-1.1172-1.4688-1.2969z"/>
|
|
771
|
+
</symbol>
|
|
772
|
+
<symbol id="ip" overflow="visible">
|
|
773
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
774
|
+
</symbol>
|
|
775
|
+
<symbol id="io" overflow="visible">
|
|
776
|
+
<path d="m2.3906-6.8281-0.73438 3.0156c0.38281-0.40625 0.76953-0.60938 1.1562-0.60938 0.5 0 0.875 0.23047 1.125 0.6875 0.14453 0.27344 0.21875 0.57812 0.21875 0.92188 0 0.69922-0.25 1.3555-0.75 1.9688-0.46094 0.57422-0.96484 0.88281-1.5156 0.9375-0.054687 0.007812-0.10547 0.015625-0.15625 0.015625-0.48047 0-0.83594-0.22266-1.0625-0.67188-0.13672-0.25-0.20312-0.54688-0.20312-0.89062 0-0.22656 0.050781-0.56641 0.15625-1.0156l0.82812-3.2656c0.09375-0.38281 0.14062-0.58594 0.14062-0.60938 0-0.070312-0.046875-0.11719-0.14062-0.14062-0.085937-0.019531-0.20312-0.03125-0.35938-0.03125-0.14844 0-0.23047-0.039063-0.25-0.125 0-0.11328 0.066406-0.17969 0.20312-0.20312l1.2188-0.09375c0.082031 0 0.125 0.039062 0.125 0.10938zm-0.9375 3.7812-0.21875 0.92188c-0.11719 0.41797-0.17188 0.75-0.17188 1 0 0.57422 0.17578 0.90625 0.53125 1 0.039062 0.011719 0.085938 0.015625 0.14062 0.015625 0.35156 0 0.6875-0.23438 1-0.70312 0.0625-0.09375 0.125-0.20312 0.1875-0.32812 0.17578-0.375 0.32812-0.89062 0.45312-1.5469 0.039062-0.22656 0.0625-0.42188 0.0625-0.57812 0-0.53125-0.16797-0.83594-0.5-0.92188-0.042969-0.007812-0.089844-0.015625-0.14062-0.015625-0.39844 0-0.79688 0.26562-1.2031 0.79688-0.054688 0.074219-0.10156 0.19531-0.14062 0.35938z"/>
|
|
777
|
+
</symbol>
|
|
778
|
+
<symbol id="in" overflow="visible">
|
|
779
|
+
<path d="m3.7344-3.7812c0.03125-0.22656 0.13281-0.36719 0.3125-0.42188 0.03125-0.007813 0.066406-0.015625 0.10938-0.015625 0.16406 0 0.25781 0.089844 0.28125 0.26562 0 0.042969-0.023438 0.15625-0.0625 0.34375l-0.35938 1.4062c-0.10547 0.41797-0.17969 0.71484-0.21875 0.89062-0.09375 0.34375-0.14062 0.59375-0.14062 0.75 0 0.30469 0.097656 0.45312 0.29688 0.45312 0.25781 0 0.47266-0.26562 0.64062-0.79688 0.039062-0.11328 0.082031-0.25781 0.125-0.4375 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.10547-0.0625 0.33984-0.1875 0.70312-0.042969 0.11719-0.078125 0.21484-0.10938 0.29688-0.1875 0.36719-0.4375 0.54688-0.75 0.54688-0.375 0-0.64844-0.16016-0.8125-0.48438-0.042969-0.070312-0.074219-0.16016-0.09375-0.26562-0.41797 0.5-0.85156 0.75-1.2969 0.75-0.5 0-0.87109-0.22266-1.1094-0.67188-0.14844-0.26953-0.21875-0.57812-0.21875-0.92188 0-0.71875 0.25-1.3828 0.75-2 0.45703-0.5625 0.96094-0.86719 1.5156-0.92188 0.039063-0.007812 0.085937-0.015625 0.14062-0.015625 0.40625 0 0.71094 0.21484 0.92188 0.64062zm-0.65625 2.5938 0.5-1.9688c0.019531-0.09375 0.03125-0.14453 0.03125-0.15625 0-0.14453-0.058594-0.31641-0.17188-0.51562-0.15625-0.25-0.36719-0.375-0.625-0.375-0.34375 0-0.67188 0.23047-0.98438 0.6875-0.0625 0.085937-0.12109 0.17969-0.17188 0.28125-0.1875 0.38672-0.35156 0.93359-0.48438 1.6406-0.042969 0.23047-0.0625 0.41406-0.0625 0.54688 0 0.44922 0.125 0.74219 0.375 0.875 0.070313 0.042969 0.16016 0.0625 0.26562 0.0625 0.375 0 0.75-0.23438 1.125-0.70312 0.09375-0.11328 0.15625-0.22656 0.1875-0.34375 0.007812-0.019531 0.015625-0.03125 0.015625-0.03125z"/>
|
|
780
|
+
</symbol>
|
|
781
|
+
<symbol id="im" overflow="visible">
|
|
782
|
+
<path d="m9.8281 7.875v-8.1875c0-0.050781 0.023437-0.10156 0.078125-0.15625 0.0625-0.0625 0.125-0.09375 0.1875-0.09375h4.7188c0.070312 0 0.12891 0.03125 0.17188 0.09375 0.050781 0.054688 0.078125 0.11719 0.078125 0.1875 0 0.074219-0.027344 0.14062-0.078125 0.20312-0.042969 0.054688-0.10156 0.078125-0.17188 0.078125h-4.4219v7.875c0 0.0625-0.03125 0.11719-0.09375 0.17188-0.054687 0.050781-0.11719 0.078125-0.1875 0.078125-0.074219 0-0.14062-0.027344-0.20312-0.078125-0.054688-0.054687-0.078125-0.10938-0.078125-0.17188z"/>
|
|
783
|
+
</symbol>
|
|
784
|
+
<symbol id="x" overflow="visible">
|
|
785
|
+
<path d="m9.8281 8.4219v-8.4531c0-0.070312 0.023437-0.12891 0.078125-0.17188 0.0625-0.050781 0.12891-0.078125 0.20312-0.078125 0.070313 0 0.13281 0.027344 0.1875 0.078125 0.0625 0.042969 0.09375 0.10156 0.09375 0.17188v8.4531c0 0.070313-0.03125 0.13281-0.09375 0.1875-0.054687 0.050781-0.11719 0.078125-0.1875 0.078125-0.074219 0-0.14062-0.027344-0.20312-0.078125-0.054688-0.054687-0.078125-0.11719-0.078125-0.1875z"/>
|
|
786
|
+
</symbol>
|
|
787
|
+
<symbol id="il" overflow="visible">
|
|
788
|
+
<path d="m9.8281 25.203-6.8594-20.797-1.1562 2.3125-0.26562-0.26562 2.0156-3.9531 6.2656 19v-21.531c0-0.070312 0.023437-0.12891 0.078125-0.17188 0.0625-0.050781 0.12891-0.078125 0.20312-0.078125 0.070313 0 0.13281 0.027344 0.1875 0.078125 0.0625 0.042969 0.09375 0.10156 0.09375 0.17188v24.969c0 0.11328-0.089844 0.20312-0.26562 0.26562z"/>
|
|
789
|
+
</symbol>
|
|
790
|
+
<symbol id="e" overflow="visible">
|
|
791
|
+
<path d="m2.0312 8.4219v-8.4375c0.03125-0.19531 0.13281-0.29688 0.3125-0.29688 0.15625 0 0.25 0.10156 0.28125 0.29688v8.4375c-0.03125 0.1875-0.125 0.28125-0.28125 0.28125-0.17969 0-0.28125-0.09375-0.3125-0.28125z"/>
|
|
792
|
+
</symbol>
|
|
793
|
+
<symbol id="ik" overflow="visible">
|
|
794
|
+
<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"/>
|
|
795
|
+
</symbol>
|
|
796
|
+
<symbol id="ij" overflow="visible">
|
|
797
|
+
<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"/>
|
|
798
|
+
</symbol>
|
|
799
|
+
<symbol id="ii" overflow="visible">
|
|
800
|
+
<path d="m2.8438-6.25c0 0.21094-0.10547 0.36719-0.3125 0.46875-0.074219 0.042969-0.14844 0.0625-0.21875 0.0625-0.19922 0-0.32422-0.085938-0.375-0.26562v-0.09375c0-0.1875 0.085938-0.33594 0.26562-0.45312 0.09375-0.050781 0.17969-0.078125 0.26562-0.078125 0.19531 0 0.31641 0.089844 0.35938 0.26562v0.015625c0.007813 0.023437 0.015625 0.046875 0.015625 0.078125zm-0.76562 3.7656-0.39062 1.0469c-0.1875 0.54297-0.28125 0.875-0.28125 1 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.41406 0 0.74219-0.375 0.98438-1.125l0.03125-0.10938c0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.082031 0 0.125 0.03125 0.125 0.09375 0 0.125-0.078125 0.33984-0.23438 0.64062-0.28125 0.60547-0.64062 0.90625-1.0781 0.90625-0.35547 0-0.60547-0.14453-0.75-0.4375-0.054688-0.125-0.078125-0.25-0.078125-0.375 0-0.13281 0.078125-0.40625 0.23438-0.8125 0.46875-1.25 0.69531-1.8633 0.6875-1.8438 0.070312-0.1875 0.10938-0.35938 0.10938-0.51562 0-0.21875-0.085937-0.32812-0.25-0.32812-0.36719 0-0.66406 0.30469-0.89062 0.90625v0.015625c-0.042969 0.10547-0.085938 0.21484-0.125 0.32812-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.125 0.070313-0.33594 0.21875-0.64062 0.28125-0.60156 0.64453-0.90625 1.0938-0.90625 0.35156 0 0.59766 0.15234 0.73438 0.45312 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.125-0.046875 0.30469-0.14062 0.53125-0.11719 0.30469-0.1875 0.49609-0.21875 0.57812z"/>
|
|
801
|
+
</symbol>
|
|
802
|
+
<symbol id="ih" overflow="visible">
|
|
803
|
+
<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"/>
|
|
804
|
+
</symbol>
|
|
805
|
+
<symbol id="ig" overflow="visible">
|
|
806
|
+
<path d="m3.9688-6.25c0 0.1875-0.09375 0.33984-0.28125 0.45312-0.085938 0.054687-0.16797 0.078125-0.25 0.078125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.015625-0.078125c0-0.20703 0.10156-0.36328 0.3125-0.46875 0.070312-0.039063 0.14453-0.0625 0.21875-0.0625 0.19531 0 0.31641 0.089844 0.35938 0.26562 0.007813 0.03125 0.015625 0.0625 0.015625 0.09375zm-2.0156 6.75 0.95312-3.7344c0.039062-0.19531 0.0625-0.36328 0.0625-0.5 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.40625 0-0.77734 0.29688-1.1094 0.89062-0.0625 0.10547-0.11719 0.21484-0.15625 0.32812-0.085937 0.125-0.14844 0.19531-0.1875 0.20312-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.09375 0.082031-0.28516 0.25-0.57812 0.39453-0.64453 0.84375-0.96875 1.3438-0.96875 0.36328 0 0.62891 0.15234 0.79688 0.45312 0.070313 0.13672 0.10938 0.29297 0.10938 0.46875 0 0.11719-0.015625 0.24219-0.046875 0.375l-0.92188 3.6562c-0.14844 0.58203-0.49219 1.0156-1.0312 1.2969-0.28125 0.14453-0.5625 0.21875-0.84375 0.21875-0.41797 0-0.6875-0.125-0.8125-0.375-0.039062-0.074219-0.0625-0.15234-0.0625-0.23438 0-0.26172 0.10938-0.4375 0.32812-0.53125 0.070313-0.03125 0.14062-0.046875 0.20312-0.046875 0.20703 0 0.33203 0.085937 0.375 0.26562 0.007812 0.03125 0.015625 0.054688 0.015625 0.078125 0 0.20703-0.09375 0.36328-0.28125 0.46875-0.054687 0.03125-0.10938 0.050781-0.17188 0.0625 0.11328 0.0625 0.24219 0.09375 0.39062 0.09375 0.38281 0 0.71094-0.24219 0.98438-0.71875 0.10156-0.1875 0.17969-0.39062 0.23438-0.60938z"/>
|
|
807
|
+
</symbol>
|
|
808
|
+
<symbol id="if" overflow="visible">
|
|
809
|
+
<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"/>
|
|
810
|
+
</symbol>
|
|
811
|
+
<symbol id="id" overflow="visible">
|
|
812
|
+
<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"/>
|
|
813
|
+
</symbol>
|
|
814
|
+
<symbol id="ic" overflow="visible">
|
|
815
|
+
<path d="m6.5938-5.2812-1.5469 6.2188c-0.14844 0.5625-0.51172 1.0352-1.0938 1.4219-0.54297 0.34375-1.168 0.51562-1.875 0.51562-1.1562 0-1.7773-0.23438-1.8594-0.70312-0.011719-0.054687-0.015625-0.10547-0.015625-0.15625 0-0.38672 0.17578-0.64062 0.53125-0.76562 0.082031-0.03125 0.16016-0.046875 0.23438-0.046875 0.28906 0 0.46094 0.125 0.51562 0.375 0.007813 0.039063 0.015625 0.078125 0.015625 0.10938 0 0.30078-0.14062 0.52344-0.42188 0.67188-0.042969 0.019531-0.09375 0.039063-0.15625 0.0625 0.28906 0.09375 0.66406 0.14062 1.125 0.14062 0.91406 0 1.5859-0.50781 2.0156-1.5156l0.45312-1.8438v-0.015625c-0.42969 0.46875-0.90234 0.73438-1.4219 0.79688-0.074219 0.011719-0.14062 0.015625-0.20312 0.015625-0.65625 0-1.1641-0.28516-1.5156-0.85938-0.24219-0.375-0.35938-0.82812-0.35938-1.3594 0-0.98828 0.35938-1.8984 1.0781-2.7344 0.64453-0.76953 1.3477-1.1797 2.1094-1.2344h0.15625c0.5 0 0.90625 0.24219 1.2188 0.71875l0.078125 0.15625c0.082031-0.35156 0.27344-0.55078 0.57812-0.59375 0.23828 0 0.375 0.125 0.40625 0.375zm-1.8125 3.4844 0.67188-2.6719c0.019531-0.11328 0.03125-0.17969 0.03125-0.20312 0-0.1875-0.078125-0.41016-0.23438-0.67188-0.11719-0.1875-0.25781-0.32812-0.42188-0.42188-0.13672-0.070313-0.28906-0.10938-0.45312-0.10938-0.49219 0-0.95312 0.3125-1.3906 0.9375-0.0625 0.10547-0.125 0.20312-0.1875 0.29688-0.29297 0.5625-0.52734 1.3438-0.70312 2.3438-0.054688 0.29297-0.078125 0.52734-0.078125 0.70312 0 0.61719 0.17578 1.0156 0.53125 1.2031 0.10156 0.054687 0.22656 0.078125 0.375 0.078125 0.36328 0 0.74219-0.16406 1.1406-0.5 0.40625-0.35156 0.64453-0.67969 0.71875-0.98438z"/>
|
|
816
|
+
</symbol>
|
|
817
|
+
<symbol id="ib" overflow="visible">
|
|
818
|
+
<path d="m2.8438-6.25c0 0.21094-0.10547 0.36719-0.3125 0.46875-0.074219 0.042969-0.14844 0.0625-0.21875 0.0625-0.19922 0-0.32422-0.085938-0.375-0.26562v-0.09375c0-0.1875 0.085938-0.33594 0.26562-0.45312 0.09375-0.050781 0.17969-0.078125 0.26562-0.078125 0.19531 0 0.31641 0.089844 0.35938 0.26562v0.015625c0.007813 0.023437 0.015625 0.046875 0.015625 0.078125zm-0.76562 3.7656-0.39062 1.0469c-0.1875 0.54297-0.28125 0.875-0.28125 1 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.41406 0 0.74219-0.375 0.98438-1.125l0.03125-0.10938c0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.082031 0 0.125 0.03125 0.125 0.09375 0 0.125-0.078125 0.33984-0.23438 0.64062-0.28125 0.60547-0.64062 0.90625-1.0781 0.90625-0.35547 0-0.60547-0.14453-0.75-0.4375-0.054688-0.125-0.078125-0.25-0.078125-0.375 0-0.13281 0.078125-0.40625 0.23438-0.8125 0.46875-1.25 0.69531-1.8633 0.6875-1.8438 0.070312-0.1875 0.10938-0.35938 0.10938-0.51562 0-0.21875-0.085937-0.32812-0.25-0.32812-0.36719 0-0.66406 0.30469-0.89062 0.90625v0.015625c-0.042969 0.10547-0.085938 0.21484-0.125 0.32812-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.125 0.070313-0.33594 0.21875-0.64062 0.28125-0.60156 0.64453-0.90625 1.0938-0.90625 0.35156 0 0.59766 0.15234 0.73438 0.45312 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.125-0.046875 0.30469-0.14062 0.53125-0.11719 0.30469-0.1875 0.49609-0.21875 0.57812z"/>
|
|
819
|
+
</symbol>
|
|
820
|
+
<symbol id="ia" overflow="visible">
|
|
821
|
+
<path d="m3.9688-6.25c0 0.1875-0.09375 0.33984-0.28125 0.45312-0.085938 0.054687-0.16797 0.078125-0.25 0.078125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.015625-0.078125c0-0.20703 0.10156-0.36328 0.3125-0.46875 0.070312-0.039063 0.14453-0.0625 0.21875-0.0625 0.19531 0 0.31641 0.089844 0.35938 0.26562 0.007813 0.03125 0.015625 0.0625 0.015625 0.09375zm-2.0156 6.75 0.95312-3.7344c0.039062-0.19531 0.0625-0.36328 0.0625-0.5 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.40625 0-0.77734 0.29688-1.1094 0.89062-0.0625 0.10547-0.11719 0.21484-0.15625 0.32812-0.085937 0.125-0.14844 0.19531-0.1875 0.20312-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.09375 0.082031-0.28516 0.25-0.57812 0.39453-0.64453 0.84375-0.96875 1.3438-0.96875 0.36328 0 0.62891 0.15234 0.79688 0.45312 0.070313 0.13672 0.10938 0.29297 0.10938 0.46875 0 0.11719-0.015625 0.24219-0.046875 0.375l-0.92188 3.6562c-0.14844 0.58203-0.49219 1.0156-1.0312 1.2969-0.28125 0.14453-0.5625 0.21875-0.84375 0.21875-0.41797 0-0.6875-0.125-0.8125-0.375-0.039062-0.074219-0.0625-0.15234-0.0625-0.23438 0-0.26172 0.10938-0.4375 0.32812-0.53125 0.070313-0.03125 0.14062-0.046875 0.20312-0.046875 0.20703 0 0.33203 0.085937 0.375 0.26562 0.007812 0.03125 0.015625 0.054688 0.015625 0.078125 0 0.20703-0.09375 0.36328-0.28125 0.46875-0.054687 0.03125-0.10938 0.050781-0.17188 0.0625 0.11328 0.0625 0.24219 0.09375 0.39062 0.09375 0.38281 0 0.71094-0.24219 0.98438-0.71875 0.10156-0.1875 0.17969-0.39062 0.23438-0.60938z"/>
|
|
822
|
+
</symbol>
|
|
823
|
+
<symbol id="w" overflow="visible">
|
|
824
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
825
|
+
</symbol>
|
|
826
|
+
<symbol id="v" overflow="visible">
|
|
827
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
828
|
+
</symbol>
|
|
829
|
+
<symbol id="hz" overflow="visible">
|
|
830
|
+
<path d="m0.57812-3.5625-0.0625 0.078125c-0.17969 0-0.26562-0.046875-0.26562-0.14062 0-0.25781 0.16016-0.63281 0.48438-1.125 0.64453-0.9375 1.3945-1.4141 2.25-1.4375 0.83203 0 1.4531 0.51562 1.8594 1.5469 0.34375 0.86719 0.53516 1.8125 0.57812 2.8438 0.73828-1.8438 1.3516-3.2227 1.8438-4.1406 0.03125-0.0625 0.085937-0.09375 0.17188-0.09375 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.042969-0.089844 0.21875-0.26562 0.53125-0.69922 1.375-1.3047 2.7969-1.8125 4.2656-0.042969 0.11719-0.074219 0.21875-0.09375 0.3125-0.042969 0.11719-0.085938 0.29688-0.125 0.54688-0.085938 0.64453-0.25781 1.4453-0.51562 2.4062-0.15625 0.53125-0.30469 0.8125-0.4375 0.84375-0.125 0-0.1875-0.085937-0.1875-0.25 0-0.38672 0.23438-1.3711 0.70312-2.9531 0.007812-0.007812 0.019531-0.03125 0.03125-0.0625 0.10156-0.32031 0.15625-0.78125 0.15625-1.375 0-2.1875-0.65234-3.3672-1.9531-3.5469-0.10547-0.007813-0.21094-0.015625-0.3125-0.015625-0.65625 0-1.2109 0.23047-1.6562 0.6875l-0.015625 0.015625c-0.25 0.25-0.43359 0.55859-0.54688 0.92188z"/>
|
|
831
|
+
</symbol>
|
|
832
|
+
<symbol id="u" overflow="visible">
|
|
833
|
+
<path d="m2.8906-5.5938-1.0469 4.125c-0.054688 0.23047-0.078125 0.45312-0.078125 0.67188 0 0.42969 0.14453 0.64062 0.4375 0.64062 0.61328 0 1.1562-0.45312 1.625-1.3594l0.1875-0.4375c0.0625-0.11328 0.13281-0.17578 0.21875-0.1875 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.125-0.12109 0.39062-0.35938 0.79688-0.54297 0.90625-1.1641 1.3594-1.8594 1.3594-0.54297 0-0.92969-0.22266-1.1562-0.67188-0.09375-0.1875-0.14062-0.39453-0.14062-0.625 0-0.17578 0.28516-1.3828 0.85938-3.625l0.21875-0.82812h-1.2344c-0.24219 0-0.36719-0.039062-0.375-0.125h-0.015625v-0.046875c0-0.15625 0.070313-0.24219 0.21875-0.26562h1.5156l0.54688-2.2344c0.082031-0.32031 0.26562-0.48828 0.54688-0.5 0.25 0 0.38281 0.125 0.40625 0.375 0 0.0625-0.1875 0.85156-0.5625 2.3594h1.2344c0.23828 0 0.36719 0.054688 0.39062 0.15625 0 0.16797-0.078125 0.26172-0.23438 0.28125z"/>
|
|
834
|
+
</symbol>
|
|
835
|
+
<symbol id="t" overflow="visible">
|
|
836
|
+
<path d="m7.2188-9.5625-2.0156 8.0938c-0.054687 0.23047-0.078125 0.45312-0.078125 0.67188 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.89062l0.84375-3.3125 0.046875-0.28125c0-0.10156-0.070313-0.17188-0.20312-0.20312-0.11719-0.019531-0.28125-0.03125-0.5-0.03125-0.21094 0-0.32422-0.054688-0.34375-0.17188 0-0.15625 0.066406-0.24219 0.20312-0.26562 0.875-0.10156 1.4688-0.15625 1.7812-0.15625 0.11328 0 0.17188 0.054688 0.17188 0.15625zm-2.9062 7.8906 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"/>
|
|
837
|
+
</symbol>
|
|
838
|
+
<symbol id="hy" overflow="visible">
|
|
839
|
+
<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"/>
|
|
840
|
+
</symbol>
|
|
841
|
+
<symbol id="hx" overflow="visible">
|
|
842
|
+
<path d="m9.2656 33c-1.1484-1.0234-2.1328-2.1836-2.9531-3.4844-0.8125-1.293-1.4688-2.6641-1.9688-4.1094-0.5-1.4375-0.86719-2.9336-1.0938-4.4844-0.23047-1.543-0.34375-3.1016-0.34375-4.6719 0-1.5938 0.11328-3.168 0.34375-4.7188 0.22656-1.543 0.58594-3.0391 1.0781-4.4844 0.5-1.4375 1.1602-2.8086 1.9844-4.1094 0.82031-1.3047 1.8047-2.4609 2.9531-3.4688 0-0.019531 0.023437-0.03125 0.078125-0.03125h0.35938c0.019531 0 0.039063 0.015625 0.0625 0.046875 0.03125 0.023437 0.046875 0.046875 0.046875 0.078125 0 0.042969-0.007812 0.074219-0.015625 0.09375-1.0742 1.0508-1.9805 2.2188-2.7188 3.5-0.73047 1.2891-1.3125 2.6484-1.75 4.0781-0.42969 1.4258-0.73438 2.8906-0.92188 4.3906-0.1875 1.5078-0.28125 3.0508-0.28125 4.625 0 1.5625 0.085938 3.082 0.26562 4.5625 0.1875 1.4766 0.5 2.9414 0.9375 4.3906 0.4375 1.4453 1.0234 2.8125 1.7656 4.0938 0.73828 1.2891 1.6406 2.4609 2.7031 3.5156 0.007813 0.019531 0.015625 0.050781 0.015625 0.09375 0 0.019531-0.015625 0.046875-0.046875 0.078125-0.023437 0.03125-0.042969 0.046875-0.0625 0.046875h-0.35938c-0.054688 0-0.078125-0.011719-0.078125-0.03125z"/>
|
|
843
|
+
</symbol>
|
|
844
|
+
<symbol id="hw" overflow="visible">
|
|
845
|
+
<path d="m2.8438-6.25c0 0.21094-0.10547 0.36719-0.3125 0.46875-0.074219 0.042969-0.14844 0.0625-0.21875 0.0625-0.19922 0-0.32422-0.085938-0.375-0.26562v-0.09375c0-0.1875 0.085938-0.33594 0.26562-0.45312 0.09375-0.050781 0.17969-0.078125 0.26562-0.078125 0.19531 0 0.31641 0.089844 0.35938 0.26562v0.015625c0.007813 0.023437 0.015625 0.046875 0.015625 0.078125zm-0.76562 3.7656-0.39062 1.0469c-0.1875 0.54297-0.28125 0.875-0.28125 1 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.41406 0 0.74219-0.375 0.98438-1.125l0.03125-0.10938c0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.082031 0 0.125 0.03125 0.125 0.09375 0 0.125-0.078125 0.33984-0.23438 0.64062-0.28125 0.60547-0.64062 0.90625-1.0781 0.90625-0.35547 0-0.60547-0.14453-0.75-0.4375-0.054688-0.125-0.078125-0.25-0.078125-0.375 0-0.13281 0.078125-0.40625 0.23438-0.8125 0.46875-1.25 0.69531-1.8633 0.6875-1.8438 0.070312-0.1875 0.10938-0.35938 0.10938-0.51562 0-0.21875-0.085937-0.32812-0.25-0.32812-0.36719 0-0.66406 0.30469-0.89062 0.90625v0.015625c-0.042969 0.10547-0.085938 0.21484-0.125 0.32812-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.125 0.070313-0.33594 0.21875-0.64062 0.28125-0.60156 0.64453-0.90625 1.0938-0.90625 0.35156 0 0.59766 0.15234 0.73438 0.45312 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.125-0.046875 0.30469-0.14062 0.53125-0.11719 0.30469-0.1875 0.49609-0.21875 0.57812z"/>
|
|
846
|
+
</symbol>
|
|
847
|
+
<symbol id="hv" overflow="visible">
|
|
848
|
+
<path d="m6.2031-3.5c0 0.83594-0.3125 1.5234-0.9375 2.0625-0.51172 0.4375-1.1055 0.65625-1.7812 0.65625-0.82422 0-1.5078-0.31641-2.0469-0.95312-0.4375-0.50781-0.65625-1.0977-0.65625-1.7656 0-0.83203 0.3125-1.5195 0.9375-2.0625 0.50781-0.4375 1.1016-0.65625 1.7812-0.65625 0.82031 0 1.5039 0.32031 2.0469 0.95312 0.4375 0.51172 0.65625 1.1016 0.65625 1.7656zm-2.7031 2.1562c0.69531 0 1.2578-0.28125 1.6875-0.84375 0.30078-0.38281 0.45312-0.82031 0.45312-1.3125 0-0.70703-0.28125-1.2734-0.84375-1.7031-0.375-0.30078-0.80859-0.45312-1.2969-0.45312-0.71875 0-1.2969 0.29297-1.7344 0.875-0.28125 0.375-0.42188 0.80469-0.42188 1.2812 0 0.69922 0.27344 1.2617 0.82812 1.6875 0.39453 0.3125 0.83594 0.46875 1.3281 0.46875z"/>
|
|
849
|
+
</symbol>
|
|
850
|
+
<symbol id="hu" overflow="visible">
|
|
851
|
+
<path d="m0.57812-3.5625-0.0625 0.078125c-0.17969 0-0.26562-0.046875-0.26562-0.14062 0-0.25781 0.16016-0.63281 0.48438-1.125 0.64453-0.9375 1.3945-1.4141 2.25-1.4375 0.83203 0 1.4531 0.51562 1.8594 1.5469 0.34375 0.86719 0.53516 1.8125 0.57812 2.8438 0.73828-1.8438 1.3516-3.2227 1.8438-4.1406 0.03125-0.0625 0.085937-0.09375 0.17188-0.09375 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.042969-0.089844 0.21875-0.26562 0.53125-0.69922 1.375-1.3047 2.7969-1.8125 4.2656-0.042969 0.11719-0.074219 0.21875-0.09375 0.3125-0.042969 0.11719-0.085938 0.29688-0.125 0.54688-0.085938 0.64453-0.25781 1.4453-0.51562 2.4062-0.15625 0.53125-0.30469 0.8125-0.4375 0.84375-0.125 0-0.1875-0.085937-0.1875-0.25 0-0.38672 0.23438-1.3711 0.70312-2.9531 0.007812-0.007812 0.019531-0.03125 0.03125-0.0625 0.10156-0.32031 0.15625-0.78125 0.15625-1.375 0-2.1875-0.65234-3.3672-1.9531-3.5469-0.10547-0.007813-0.21094-0.015625-0.3125-0.015625-0.65625 0-1.2109 0.23047-1.6562 0.6875l-0.015625 0.015625c-0.25 0.25-0.43359 0.55859-0.54688 0.92188z"/>
|
|
852
|
+
</symbol>
|
|
853
|
+
<symbol id="s" overflow="visible">
|
|
854
|
+
<path d="m2.8906-5.5938-1.0469 4.125c-0.054688 0.23047-0.078125 0.45312-0.078125 0.67188 0 0.42969 0.14453 0.64062 0.4375 0.64062 0.61328 0 1.1562-0.45312 1.625-1.3594l0.1875-0.4375c0.0625-0.11328 0.13281-0.17578 0.21875-0.1875 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.125-0.12109 0.39062-0.35938 0.79688-0.54297 0.90625-1.1641 1.3594-1.8594 1.3594-0.54297 0-0.92969-0.22266-1.1562-0.67188-0.09375-0.1875-0.14062-0.39453-0.14062-0.625 0-0.17578 0.28516-1.3828 0.85938-3.625l0.21875-0.82812h-1.2344c-0.24219 0-0.36719-0.039062-0.375-0.125h-0.015625v-0.046875c0-0.15625 0.070313-0.24219 0.21875-0.26562h1.5156l0.54688-2.2344c0.082031-0.32031 0.26562-0.48828 0.54688-0.5 0.25 0 0.38281 0.125 0.40625 0.375 0 0.0625-0.1875 0.85156-0.5625 2.3594h1.2344c0.23828 0 0.36719 0.054688 0.39062 0.15625 0 0.16797-0.078125 0.26172-0.23438 0.28125z"/>
|
|
855
|
+
</symbol>
|
|
856
|
+
<symbol id="r" overflow="visible">
|
|
857
|
+
<path d="m7.2188-9.5625-2.0156 8.0938c-0.054687 0.23047-0.078125 0.45312-0.078125 0.67188 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.89062l0.84375-3.3125 0.046875-0.28125c0-0.10156-0.070313-0.17188-0.20312-0.20312-0.11719-0.019531-0.28125-0.03125-0.5-0.03125-0.21094 0-0.32422-0.054688-0.34375-0.17188 0-0.15625 0.066406-0.24219 0.20312-0.26562 0.875-0.10156 1.4688-0.15625 1.7812-0.15625 0.11328 0 0.17188 0.054688 0.17188 0.15625zm-2.9062 7.8906 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"/>
|
|
858
|
+
</symbol>
|
|
859
|
+
<symbol id="ht" overflow="visible">
|
|
860
|
+
<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"/>
|
|
861
|
+
</symbol>
|
|
862
|
+
<symbol id="hr" overflow="visible">
|
|
863
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
864
|
+
</symbol>
|
|
865
|
+
<symbol id="hq" overflow="visible">
|
|
866
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
867
|
+
</symbol>
|
|
868
|
+
<symbol id="hp" overflow="visible">
|
|
869
|
+
<path d="m0.60938 33.031c-0.085937 0-0.125-0.042969-0.125-0.125 0-0.042969 0.003906-0.074219 0.015625-0.09375 1.0703-1.0547 1.9727-2.2266 2.7031-3.5156 0.73828-1.293 1.3203-2.6523 1.75-4.0781 0.4375-1.418 0.74219-2.8711 0.92188-4.3594 0.1875-1.4922 0.28125-3.0312 0.28125-4.625 0-1.625-0.09375-3.1797-0.28125-4.6562-0.17969-1.4688-0.48047-2.9141-0.90625-4.3281-0.42969-1.418-1.0156-2.7773-1.7656-4.0781-0.74219-1.3047-1.6406-2.4766-2.7031-3.5156-0.011719-0.019531-0.015625-0.050781-0.015625-0.09375 0-0.082031 0.039063-0.125 0.125-0.125h0.35938c0.03125 0 0.054688 0.011719 0.078125 0.03125 1.1445 1.0195 2.1289 2.1797 2.9531 3.4844 0.82031 1.3008 1.4766 2.6719 1.9688 4.1094 0.48828 1.4453 0.84375 2.9414 1.0625 4.4844 0.22656 1.5391 0.34375 3.1094 0.34375 4.7031 0 1.5703-0.11719 3.125-0.34375 4.6562-0.21875 1.5391-0.57422 3.0352-1.0625 4.4844-0.49219 1.4453-1.1484 2.8203-1.9688 4.125-0.82422 1.3008-1.8086 2.4609-2.9531 3.4844-0.023437 0.019531-0.046875 0.03125-0.078125 0.03125z"/>
|
|
870
|
+
</symbol>
|
|
871
|
+
<symbol id="ho" overflow="visible">
|
|
872
|
+
<path d="m9.2656 33c-1.1484-1.0234-2.1328-2.1836-2.9531-3.4844-0.8125-1.293-1.4688-2.6641-1.9688-4.1094-0.5-1.4375-0.86719-2.9336-1.0938-4.4844-0.23047-1.543-0.34375-3.1016-0.34375-4.6719 0-1.5938 0.11328-3.168 0.34375-4.7188 0.22656-1.543 0.58594-3.0391 1.0781-4.4844 0.5-1.4375 1.1602-2.8086 1.9844-4.1094 0.82031-1.3047 1.8047-2.4609 2.9531-3.4688 0-0.019531 0.023437-0.03125 0.078125-0.03125h0.35938c0.019531 0 0.039063 0.015625 0.0625 0.046875 0.03125 0.023437 0.046875 0.046875 0.046875 0.078125 0 0.042969-0.007812 0.074219-0.015625 0.09375-1.0742 1.0508-1.9805 2.2188-2.7188 3.5-0.73047 1.2891-1.3125 2.6484-1.75 4.0781-0.42969 1.4258-0.73438 2.8906-0.92188 4.3906-0.1875 1.5078-0.28125 3.0508-0.28125 4.625 0 1.5625 0.085938 3.082 0.26562 4.5625 0.1875 1.4766 0.5 2.9414 0.9375 4.3906 0.4375 1.4453 1.0234 2.8125 1.7656 4.0938 0.73828 1.2891 1.6406 2.4609 2.7031 3.5156 0.007813 0.019531 0.015625 0.050781 0.015625 0.09375 0 0.019531-0.015625 0.046875-0.046875 0.078125-0.023437 0.03125-0.042969 0.046875-0.0625 0.046875h-0.35938c-0.054688 0-0.078125-0.011719-0.078125-0.03125z"/>
|
|
873
|
+
</symbol>
|
|
874
|
+
<symbol id="hn" overflow="visible">
|
|
875
|
+
<path d="m3.9688-6.25c0 0.1875-0.09375 0.33984-0.28125 0.45312-0.085938 0.054687-0.16797 0.078125-0.25 0.078125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.015625-0.078125c0-0.20703 0.10156-0.36328 0.3125-0.46875 0.070312-0.039063 0.14453-0.0625 0.21875-0.0625 0.19531 0 0.31641 0.089844 0.35938 0.26562 0.007813 0.03125 0.015625 0.0625 0.015625 0.09375zm-2.0156 6.75 0.95312-3.7344c0.039062-0.19531 0.0625-0.36328 0.0625-0.5 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.40625 0-0.77734 0.29688-1.1094 0.89062-0.0625 0.10547-0.11719 0.21484-0.15625 0.32812-0.085937 0.125-0.14844 0.19531-0.1875 0.20312-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.09375 0.082031-0.28516 0.25-0.57812 0.39453-0.64453 0.84375-0.96875 1.3438-0.96875 0.36328 0 0.62891 0.15234 0.79688 0.45312 0.070313 0.13672 0.10938 0.29297 0.10938 0.46875 0 0.11719-0.015625 0.24219-0.046875 0.375l-0.92188 3.6562c-0.14844 0.58203-0.49219 1.0156-1.0312 1.2969-0.28125 0.14453-0.5625 0.21875-0.84375 0.21875-0.41797 0-0.6875-0.125-0.8125-0.375-0.039062-0.074219-0.0625-0.15234-0.0625-0.23438 0-0.26172 0.10938-0.4375 0.32812-0.53125 0.070313-0.03125 0.14062-0.046875 0.20312-0.046875 0.20703 0 0.33203 0.085937 0.375 0.26562 0.007812 0.03125 0.015625 0.054688 0.015625 0.078125 0 0.20703-0.09375 0.36328-0.28125 0.46875-0.054687 0.03125-0.10938 0.050781-0.17188 0.0625 0.11328 0.0625 0.24219 0.09375 0.39062 0.09375 0.38281 0 0.71094-0.24219 0.98438-0.71875 0.10156-0.1875 0.17969-0.39062 0.23438-0.60938z"/>
|
|
876
|
+
</symbol>
|
|
877
|
+
<symbol id="hm" overflow="visible">
|
|
878
|
+
<path d="m6.2031-3.5c0 0.83594-0.3125 1.5234-0.9375 2.0625-0.51172 0.4375-1.1055 0.65625-1.7812 0.65625-0.82422 0-1.5078-0.31641-2.0469-0.95312-0.4375-0.50781-0.65625-1.0977-0.65625-1.7656 0-0.83203 0.3125-1.5195 0.9375-2.0625 0.50781-0.4375 1.1016-0.65625 1.7812-0.65625 0.82031 0 1.5039 0.32031 2.0469 0.95312 0.4375 0.51172 0.65625 1.1016 0.65625 1.7656zm-2.7031 2.1562c0.69531 0 1.2578-0.28125 1.6875-0.84375 0.30078-0.38281 0.45312-0.82031 0.45312-1.3125 0-0.70703-0.28125-1.2734-0.84375-1.7031-0.375-0.30078-0.80859-0.45312-1.2969-0.45312-0.71875 0-1.2969 0.29297-1.7344 0.875-0.28125 0.375-0.42188 0.80469-0.42188 1.2812 0 0.69922 0.27344 1.2617 0.82812 1.6875 0.39453 0.3125 0.83594 0.46875 1.3281 0.46875z"/>
|
|
879
|
+
</symbol>
|
|
880
|
+
<symbol id="hl" overflow="visible">
|
|
881
|
+
<path d="m0.57812-3.5625-0.0625 0.078125c-0.17969 0-0.26562-0.046875-0.26562-0.14062 0-0.25781 0.16016-0.63281 0.48438-1.125 0.64453-0.9375 1.3945-1.4141 2.25-1.4375 0.83203 0 1.4531 0.51562 1.8594 1.5469 0.34375 0.86719 0.53516 1.8125 0.57812 2.8438 0.73828-1.8438 1.3516-3.2227 1.8438-4.1406 0.03125-0.0625 0.085937-0.09375 0.17188-0.09375 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.042969-0.089844 0.21875-0.26562 0.53125-0.69922 1.375-1.3047 2.7969-1.8125 4.2656-0.042969 0.11719-0.074219 0.21875-0.09375 0.3125-0.042969 0.11719-0.085938 0.29688-0.125 0.54688-0.085938 0.64453-0.25781 1.4453-0.51562 2.4062-0.15625 0.53125-0.30469 0.8125-0.4375 0.84375-0.125 0-0.1875-0.085937-0.1875-0.25 0-0.38672 0.23438-1.3711 0.70312-2.9531 0.007812-0.007812 0.019531-0.03125 0.03125-0.0625 0.10156-0.32031 0.15625-0.78125 0.15625-1.375 0-2.1875-0.65234-3.3672-1.9531-3.5469-0.10547-0.007813-0.21094-0.015625-0.3125-0.015625-0.65625 0-1.2109 0.23047-1.6562 0.6875l-0.015625 0.015625c-0.25 0.25-0.43359 0.55859-0.54688 0.92188z"/>
|
|
882
|
+
</symbol>
|
|
883
|
+
<symbol id="q" overflow="visible">
|
|
884
|
+
<path d="m2.8906-5.5938-1.0469 4.125c-0.054688 0.23047-0.078125 0.45312-0.078125 0.67188 0 0.42969 0.14453 0.64062 0.4375 0.64062 0.61328 0 1.1562-0.45312 1.625-1.3594l0.1875-0.4375c0.0625-0.11328 0.13281-0.17578 0.21875-0.1875 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.125-0.12109 0.39062-0.35938 0.79688-0.54297 0.90625-1.1641 1.3594-1.8594 1.3594-0.54297 0-0.92969-0.22266-1.1562-0.67188-0.09375-0.1875-0.14062-0.39453-0.14062-0.625 0-0.17578 0.28516-1.3828 0.85938-3.625l0.21875-0.82812h-1.2344c-0.24219 0-0.36719-0.039062-0.375-0.125h-0.015625v-0.046875c0-0.15625 0.070313-0.24219 0.21875-0.26562h1.5156l0.54688-2.2344c0.082031-0.32031 0.26562-0.48828 0.54688-0.5 0.25 0 0.38281 0.125 0.40625 0.375 0 0.0625-0.1875 0.85156-0.5625 2.3594h1.2344c0.23828 0 0.36719 0.054688 0.39062 0.15625 0 0.16797-0.078125 0.26172-0.23438 0.28125z"/>
|
|
885
|
+
</symbol>
|
|
886
|
+
<symbol id="hk" overflow="visible">
|
|
887
|
+
<path d="m7.2188-9.5625-2.0156 8.0938c-0.054687 0.23047-0.078125 0.45312-0.078125 0.67188 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.89062l0.84375-3.3125 0.046875-0.28125c0-0.10156-0.070313-0.17188-0.20312-0.20312-0.11719-0.019531-0.28125-0.03125-0.5-0.03125-0.21094 0-0.32422-0.054688-0.34375-0.17188 0-0.15625 0.066406-0.24219 0.20312-0.26562 0.875-0.10156 1.4688-0.15625 1.7812-0.15625 0.11328 0 0.17188 0.054688 0.17188 0.15625zm-2.9062 7.8906 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"/>
|
|
888
|
+
</symbol>
|
|
889
|
+
<symbol id="hj" overflow="visible">
|
|
890
|
+
<path d="m5.4688-5.2344c-0.1875-0.41406-0.60547-0.62891-1.25-0.64062-0.76172 0-1.2578 0.28125-1.4844 0.84375-0.0625 0.14844-0.09375 0.28125-0.09375 0.40625 0 0.36719 0.22266 0.61719 0.67188 0.75l0.015625 0.015625c0.070313 0.011719 0.19531 0.039063 0.375 0.078125 0.58203 0.125 0.97266 0.25781 1.1719 0.39062 0.082031 0.0625 0.16016 0.13281 0.23438 0.20312 0.28906 0.28125 0.4375 0.62109 0.4375 1.0156 0 0.49219-0.18359 0.95312-0.54688 1.3906-0.52344 0.625-1.2773 0.9375-2.2656 0.9375-0.875 0-1.4805-0.24219-1.8125-0.73438-0.125-0.1875-0.1875-0.39453-0.1875-0.625 0-0.45703 0.17578-0.75391 0.53125-0.89062 0.082031-0.019531 0.16406-0.03125 0.25-0.03125 0.30078 0.042969 0.47266 0.20312 0.51562 0.48438 0 0.29297-0.125 0.50781-0.375 0.64062-0.15625 0.09375-0.32812 0.13281-0.51562 0.10938 0.21875 0.49219 0.75391 0.73438 1.6094 0.73438 0.95703 0 1.5859-0.34766 1.8906-1.0469 0.070313-0.17578 0.10938-0.33594 0.10938-0.48438 0-0.44531-0.27734-0.75781-0.82812-0.9375h-0.015625c-0.13672-0.03125-0.33984-0.078125-0.60938-0.14062-0.84375-0.17578-1.3203-0.54688-1.4219-1.1094-0.023438-0.082031-0.03125-0.17188-0.03125-0.26562 0-0.46875 0.17578-0.90625 0.53125-1.3125 0.4375-0.48828 1.0508-0.73438 1.8438-0.73438 0.72656 0 1.2344 0.23047 1.5156 0.6875 0.09375 0.15625 0.14062 0.32812 0.14062 0.51562 0 0.41797-0.15625 0.66797-0.46875 0.75-0.0625 0.023437-0.12109 0.03125-0.17188 0.03125-0.26172-0.03125-0.40625-0.16406-0.4375-0.40625 0-0.25 0.12891-0.4375 0.39062-0.5625 0.082031-0.039063 0.17578-0.0625 0.28125-0.0625z"/>
|
|
891
|
+
</symbol>
|
|
892
|
+
<symbol id="hi" overflow="visible">
|
|
893
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
894
|
+
</symbol>
|
|
895
|
+
<symbol id="hh" overflow="visible">
|
|
896
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
897
|
+
</symbol>
|
|
898
|
+
<symbol id="hg" overflow="visible">
|
|
899
|
+
<path d="m9.625-4.5781h-8.3594c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.375c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0 2.7188h-8.375c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.3594c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
900
|
+
</symbol>
|
|
901
|
+
<symbol id="hf" overflow="visible">
|
|
902
|
+
<path d="m0.60938 33.031c-0.085937 0-0.125-0.042969-0.125-0.125 0-0.042969 0.003906-0.074219 0.015625-0.09375 1.0703-1.0547 1.9727-2.2266 2.7031-3.5156 0.73828-1.293 1.3203-2.6523 1.75-4.0781 0.4375-1.418 0.74219-2.8711 0.92188-4.3594 0.1875-1.4922 0.28125-3.0312 0.28125-4.625 0-1.625-0.09375-3.1797-0.28125-4.6562-0.17969-1.4688-0.48047-2.9141-0.90625-4.3281-0.42969-1.418-1.0156-2.7773-1.7656-4.0781-0.74219-1.3047-1.6406-2.4766-2.7031-3.5156-0.011719-0.019531-0.015625-0.050781-0.015625-0.09375 0-0.082031 0.039063-0.125 0.125-0.125h0.35938c0.03125 0 0.054688 0.011719 0.078125 0.03125 1.1445 1.0195 2.1289 2.1797 2.9531 3.4844 0.82031 1.3008 1.4766 2.6719 1.9688 4.1094 0.48828 1.4453 0.84375 2.9414 1.0625 4.4844 0.22656 1.5391 0.34375 3.1094 0.34375 4.7031 0 1.5703-0.11719 3.125-0.34375 4.6562-0.21875 1.5391-0.57422 3.0352-1.0625 4.4844-0.49219 1.4453-1.1484 2.8203-1.9688 4.125-0.82422 1.3008-1.8086 2.4609-2.9531 3.4844-0.023437 0.019531-0.046875 0.03125-0.078125 0.03125z"/>
|
|
903
|
+
</symbol>
|
|
904
|
+
<symbol id="d" overflow="visible">
|
|
905
|
+
<path d="m2.0312 8.4219v-8.4375c0.03125-0.19531 0.13281-0.29688 0.3125-0.29688 0.15625 0 0.25 0.10156 0.28125 0.29688v8.4375c-0.03125 0.1875-0.125 0.28125-0.28125 0.28125-0.17969 0-0.28125-0.09375-0.3125-0.28125z"/>
|
|
906
|
+
</symbol>
|
|
907
|
+
<symbol id="he" overflow="visible">
|
|
908
|
+
<path d="m1.4844 30.391c0.22656 0.22656 0.51562 0.34375 0.85938 0.34375 0.33203 0 0.63281-0.23047 0.90625-0.6875 0.28125-0.46094 0.52344-1.0391 0.73438-1.7344 0.21875-0.6875 0.375-1.2656 0.46875-1.7344s0.21094-1.0742 0.35938-1.8125c0.13281-0.6875 0.26562-1.3828 0.39062-2.0781 0.125-0.6875 0.25-1.4219 0.375-2.2031 0.13281-0.78125 0.26953-1.5742 0.40625-2.375 0.14453-0.80469 0.3125-1.6641 0.5-2.5781 0.23828-1.1875 0.41016-2.043 0.51562-2.5625 0.11328-0.51172 0.28125-1.25 0.5-2.2188s0.36328-1.6094 0.4375-1.9219c0.070312-0.30469 0.26953-1.1406 0.59375-2.5156l0.1875-0.73438c0.20703-0.8125 0.36719-1.4336 0.48438-1.8594 0.11328-0.41797 0.28906-0.93359 0.53125-1.5469 0.23828-0.60547 0.51953-1.1211 0.84375-1.5469 0.32031-0.41797 0.67969-0.625 1.0781-0.625 0.26953 0 0.51953 0.0625 0.75 0.1875 0.23828 0.125 0.42969 0.28906 0.57812 0.5 0.14453 0.21875 0.21875 0.46094 0.21875 0.73438 0 0.20703-0.070313 0.375-0.20312 0.5-0.13672 0.13281-0.30469 0.20312-0.5 0.20312-0.19922 0-0.37109-0.070312-0.51562-0.20312-0.13672-0.125-0.20312-0.29297-0.20312-0.5 0-0.19922 0.066406-0.36719 0.20312-0.5 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312-0.24219-0.24219-0.52344-0.35938-0.84375-0.35938-0.16797 0-0.35547 0.25-0.5625 0.75-0.21094 0.50781-0.40234 1.1094-0.57812 1.7969-0.17969 0.6875-0.3125 1.2578-0.40625 1.7188-0.09375 0.45703-0.20312 1.0312-0.32812 1.7188-0.15625 0.78125-0.28906 1.457-0.39062 2.0312-0.10547 0.58203-0.23047 1.3008-0.375 2.1562-0.14844 0.85156-0.29297 1.6602-0.4375 2.4219-0.13672 0.76953-0.29688 1.6406-0.48438 2.6094-0.125 0.61328-0.30469 1.4727-0.53125 2.5781-0.23047 1.1016-0.38672 1.8203-0.46875 2.1562-0.074219 0.33203-0.26562 1.1445-0.57812 2.4375-0.30469 1.2891-0.46484 1.9766-0.48438 2.0625l-0.17188 0.64062c-0.24219 0.98828-0.48438 1.8594-0.73438 2.6094-0.24219 0.75-0.59375 1.4453-1.0625 2.0938-0.46875 0.64453-1.043 0.96875-1.7188 0.96875-0.40625 0-0.77344-0.13672-1.0938-0.40625-0.3125-0.27344-0.46875-0.60547-0.46875-1 0-0.21094 0.066406-0.38281 0.20312-0.51562 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312 0.13281 0 0.25391 0.03125 0.35938 0.09375 0.10156 0.0625 0.1875 0.14453 0.25 0.25 0.0625 0.11328 0.09375 0.23828 0.09375 0.375 0 0.19531-0.070313 0.35938-0.20312 0.48438-0.13672 0.13281-0.30859 0.20312-0.51562 0.20312z"/>
|
|
909
|
+
</symbol>
|
|
910
|
+
<symbol id="hd" overflow="visible">
|
|
911
|
+
<path d="m2.3906-6.8281-0.73438 3.0156c0.38281-0.40625 0.76953-0.60938 1.1562-0.60938 0.5 0 0.875 0.23047 1.125 0.6875 0.14453 0.27344 0.21875 0.57812 0.21875 0.92188 0 0.69922-0.25 1.3555-0.75 1.9688-0.46094 0.57422-0.96484 0.88281-1.5156 0.9375-0.054687 0.007812-0.10547 0.015625-0.15625 0.015625-0.48047 0-0.83594-0.22266-1.0625-0.67188-0.13672-0.25-0.20312-0.54688-0.20312-0.89062 0-0.22656 0.050781-0.56641 0.15625-1.0156l0.82812-3.2656c0.09375-0.38281 0.14062-0.58594 0.14062-0.60938 0-0.070312-0.046875-0.11719-0.14062-0.14062-0.085937-0.019531-0.20312-0.03125-0.35938-0.03125-0.14844 0-0.23047-0.039063-0.25-0.125 0-0.11328 0.066406-0.17969 0.20312-0.20312l1.2188-0.09375c0.082031 0 0.125 0.039062 0.125 0.10938zm-0.9375 3.7812-0.21875 0.92188c-0.11719 0.41797-0.17188 0.75-0.17188 1 0 0.57422 0.17578 0.90625 0.53125 1 0.039062 0.011719 0.085938 0.015625 0.14062 0.015625 0.35156 0 0.6875-0.23438 1-0.70312 0.0625-0.09375 0.125-0.20312 0.1875-0.32812 0.17578-0.375 0.32812-0.89062 0.45312-1.5469 0.039062-0.22656 0.0625-0.42188 0.0625-0.57812 0-0.53125-0.16797-0.83594-0.5-0.92188-0.042969-0.007812-0.089844-0.015625-0.14062-0.015625-0.39844 0-0.79688 0.26562-1.2031 0.79688-0.054688 0.074219-0.10156 0.19531-0.14062 0.35938z"/>
|
|
912
|
+
</symbol>
|
|
913
|
+
<symbol id="hc" overflow="visible">
|
|
914
|
+
<path d="m3.7344-3.7812c0.03125-0.22656 0.13281-0.36719 0.3125-0.42188 0.03125-0.007813 0.066406-0.015625 0.10938-0.015625 0.16406 0 0.25781 0.089844 0.28125 0.26562 0 0.042969-0.023438 0.15625-0.0625 0.34375l-0.35938 1.4062c-0.10547 0.41797-0.17969 0.71484-0.21875 0.89062-0.09375 0.34375-0.14062 0.59375-0.14062 0.75 0 0.30469 0.097656 0.45312 0.29688 0.45312 0.25781 0 0.47266-0.26562 0.64062-0.79688 0.039062-0.11328 0.082031-0.25781 0.125-0.4375 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.10547-0.0625 0.33984-0.1875 0.70312-0.042969 0.11719-0.078125 0.21484-0.10938 0.29688-0.1875 0.36719-0.4375 0.54688-0.75 0.54688-0.375 0-0.64844-0.16016-0.8125-0.48438-0.042969-0.070312-0.074219-0.16016-0.09375-0.26562-0.41797 0.5-0.85156 0.75-1.2969 0.75-0.5 0-0.87109-0.22266-1.1094-0.67188-0.14844-0.26953-0.21875-0.57812-0.21875-0.92188 0-0.71875 0.25-1.3828 0.75-2 0.45703-0.5625 0.96094-0.86719 1.5156-0.92188 0.039063-0.007812 0.085937-0.015625 0.14062-0.015625 0.40625 0 0.71094 0.21484 0.92188 0.64062zm-0.65625 2.5938 0.5-1.9688c0.019531-0.09375 0.03125-0.14453 0.03125-0.15625 0-0.14453-0.058594-0.31641-0.17188-0.51562-0.15625-0.25-0.36719-0.375-0.625-0.375-0.34375 0-0.67188 0.23047-0.98438 0.6875-0.0625 0.085937-0.12109 0.17969-0.17188 0.28125-0.1875 0.38672-0.35156 0.93359-0.48438 1.6406-0.042969 0.23047-0.0625 0.41406-0.0625 0.54688 0 0.44922 0.125 0.74219 0.375 0.875 0.070313 0.042969 0.16016 0.0625 0.26562 0.0625 0.375 0 0.75-0.23438 1.125-0.70312 0.09375-0.11328 0.15625-0.22656 0.1875-0.34375 0.007812-0.019531 0.015625-0.03125 0.015625-0.03125z"/>
|
|
915
|
+
</symbol>
|
|
916
|
+
<symbol id="b" overflow="visible">
|
|
917
|
+
<path d="m2.0312 8.4219v-8.4375c0.03125-0.19531 0.13281-0.29688 0.3125-0.29688 0.15625 0 0.25 0.10156 0.28125 0.29688v8.4375c-0.03125 0.1875-0.125 0.28125-0.28125 0.28125-0.17969 0-0.28125-0.09375-0.3125-0.28125zm3.1094 0v-8.4375c0.03125-0.19531 0.13281-0.29688 0.3125-0.29688 0.15625 0 0.25391 0.10156 0.29688 0.29688v8.4375c-0.042969 0.1875-0.14062 0.28125-0.29688 0.28125-0.16797 0-0.27344-0.09375-0.3125-0.28125z"/>
|
|
918
|
+
</symbol>
|
|
919
|
+
<symbol id="hb" overflow="visible">
|
|
920
|
+
<path d="m1.4844 30.391c0.22656 0.22656 0.51562 0.34375 0.85938 0.34375 0.33203 0 0.63281-0.23047 0.90625-0.6875 0.28125-0.46094 0.52344-1.0391 0.73438-1.7344 0.21875-0.6875 0.375-1.2656 0.46875-1.7344s0.21094-1.0742 0.35938-1.8125c0.13281-0.6875 0.26562-1.3828 0.39062-2.0781 0.125-0.6875 0.25-1.4219 0.375-2.2031 0.13281-0.78125 0.26953-1.5742 0.40625-2.375 0.14453-0.80469 0.3125-1.6641 0.5-2.5781 0.23828-1.1875 0.41016-2.043 0.51562-2.5625 0.11328-0.51172 0.28125-1.25 0.5-2.2188s0.36328-1.6094 0.4375-1.9219c0.070312-0.30469 0.26953-1.1406 0.59375-2.5156l0.1875-0.73438c0.20703-0.8125 0.36719-1.4336 0.48438-1.8594 0.11328-0.41797 0.28906-0.93359 0.53125-1.5469 0.23828-0.60547 0.51953-1.1211 0.84375-1.5469 0.32031-0.41797 0.67969-0.625 1.0781-0.625 0.26953 0 0.51953 0.0625 0.75 0.1875 0.23828 0.125 0.42969 0.28906 0.57812 0.5 0.14453 0.21875 0.21875 0.46094 0.21875 0.73438 0 0.20703-0.070313 0.375-0.20312 0.5-0.13672 0.13281-0.30469 0.20312-0.5 0.20312-0.19922 0-0.37109-0.070312-0.51562-0.20312-0.13672-0.125-0.20312-0.29297-0.20312-0.5 0-0.19922 0.066406-0.36719 0.20312-0.5 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312-0.24219-0.24219-0.52344-0.35938-0.84375-0.35938-0.16797 0-0.35547 0.25-0.5625 0.75-0.21094 0.50781-0.40234 1.1094-0.57812 1.7969-0.17969 0.6875-0.3125 1.2578-0.40625 1.7188-0.09375 0.45703-0.20312 1.0312-0.32812 1.7188-0.15625 0.78125-0.28906 1.457-0.39062 2.0312-0.10547 0.58203-0.23047 1.3008-0.375 2.1562-0.14844 0.85156-0.29297 1.6602-0.4375 2.4219-0.13672 0.76953-0.29688 1.6406-0.48438 2.6094-0.125 0.61328-0.30469 1.4727-0.53125 2.5781-0.23047 1.1016-0.38672 1.8203-0.46875 2.1562-0.074219 0.33203-0.26562 1.1445-0.57812 2.4375-0.30469 1.2891-0.46484 1.9766-0.48438 2.0625l-0.17188 0.64062c-0.24219 0.98828-0.48438 1.8594-0.73438 2.6094-0.24219 0.75-0.59375 1.4453-1.0625 2.0938-0.46875 0.64453-1.043 0.96875-1.7188 0.96875-0.40625 0-0.77344-0.13672-1.0938-0.40625-0.3125-0.27344-0.46875-0.60547-0.46875-1 0-0.21094 0.066406-0.38281 0.20312-0.51562 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312 0.13281 0 0.25391 0.03125 0.35938 0.09375 0.10156 0.0625 0.1875 0.14453 0.25 0.25 0.0625 0.11328 0.09375 0.23828 0.09375 0.375 0 0.19531-0.070313 0.35938-0.20312 0.48438-0.13672 0.13281-0.30859 0.20312-0.51562 0.20312z"/>
|
|
921
|
+
</symbol>
|
|
922
|
+
<symbol id="j" overflow="visible">
|
|
923
|
+
<path d="m7.2188-9.5625-2.0156 8.0938c-0.054687 0.23047-0.078125 0.45312-0.078125 0.67188 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.89062l0.84375-3.3125 0.046875-0.28125c0-0.10156-0.070313-0.17188-0.20312-0.20312-0.11719-0.019531-0.28125-0.03125-0.5-0.03125-0.21094 0-0.32422-0.054688-0.34375-0.17188 0-0.15625 0.066406-0.24219 0.20312-0.26562 0.875-0.10156 1.4688-0.15625 1.7812-0.15625 0.11328 0 0.17188 0.054688 0.17188 0.15625zm-2.9062 7.8906 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"/>
|
|
924
|
+
</symbol>
|
|
925
|
+
<symbol id="f" overflow="visible">
|
|
926
|
+
<path d="m2.8906-5.5938-1.0469 4.125c-0.054688 0.23047-0.078125 0.45312-0.078125 0.67188 0 0.42969 0.14453 0.64062 0.4375 0.64062 0.61328 0 1.1562-0.45312 1.625-1.3594l0.1875-0.4375c0.0625-0.11328 0.13281-0.17578 0.21875-0.1875 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.125-0.12109 0.39062-0.35938 0.79688-0.54297 0.90625-1.1641 1.3594-1.8594 1.3594-0.54297 0-0.92969-0.22266-1.1562-0.67188-0.09375-0.1875-0.14062-0.39453-0.14062-0.625 0-0.17578 0.28516-1.3828 0.85938-3.625l0.21875-0.82812h-1.2344c-0.24219 0-0.36719-0.039062-0.375-0.125h-0.015625v-0.046875c0-0.15625 0.070313-0.24219 0.21875-0.26562h1.5156l0.54688-2.2344c0.082031-0.32031 0.26562-0.48828 0.54688-0.5 0.25 0 0.38281 0.125 0.40625 0.375 0 0.0625-0.1875 0.85156-0.5625 2.3594h1.2344c0.23828 0 0.36719 0.054688 0.39062 0.15625 0 0.16797-0.078125 0.26172-0.23438 0.28125z"/>
|
|
927
|
+
</symbol>
|
|
928
|
+
<symbol id="gy" overflow="visible">
|
|
929
|
+
<path d="m7.5156-8.3281h-4.4844c-0.28125 0-0.4375-0.066406-0.46875-0.20312-0.011719-0.019531-0.015625-0.046875-0.015625-0.078125 0.050781-0.1875 0.21094-0.28125 0.48438-0.28125h4.7188c-0.1875-0.23828-0.29688-0.50781-0.32812-0.8125 0-0.14453 0.0625-0.23828 0.1875-0.28125 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.13281 0 0.22656 0.10547 0.28125 0.3125 0.11328 0.35547 0.30078 0.62109 0.5625 0.79688 0.13281 0.09375 0.20312 0.1875 0.20312 0.28125 0 0.10547-0.078125 0.20312-0.23438 0.29688-0.42969 0.19922-0.79688 0.5-1.1094 0.90625-0.10547 0.125-0.19531 0.1875-0.26562 0.1875-0.13672 0-0.22656-0.066406-0.26562-0.20312-0.011719-0.03125-0.015625-0.054687-0.015625-0.078125 0-0.15625 0.21875-0.42969 0.65625-0.82812z"/>
|
|
930
|
+
</symbol>
|
|
931
|
+
<symbol id="gx" overflow="visible">
|
|
932
|
+
<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.082031-0.45703 0.25-0.9375 0.0625-0.16406 0.125-0.30469 0.1875-0.42188 0.21875-0.45703 0.5-0.71875 0.84375-0.78125 0.0625-0.007813 0.125-0.015625 0.1875-0.015625 0.51953 0 0.89844 0.22656 1.1406 0.67188 0.050781 0.10547 0.09375 0.21484 0.125 0.32812 0.007813 0.023438 0.015625 0.046875 0.015625 0.078125 0.53906-0.67578 1.1328-1.0352 1.7812-1.0781 0.51953 0 0.875 0.18359 1.0625 0.54688 0.070312 0.11719 0.10938 0.23438 0.10938 0.35938 0 0.36719-0.15625 0.62109-0.46875 0.76562-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.28125 0-0.45312-0.125-0.51562-0.375-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.3125 0.16016-0.53906 0.48438-0.6875l0.015625-0.015625c0.070313-0.03125 0.14844-0.054687 0.23438-0.078125l-0.28125-0.125c-0.125-0.007812-0.23047-0.019531-0.3125-0.03125-0.38672 0-0.75781 0.15234-1.1094 0.45312-0.29297 0.26172-0.54297 0.60938-0.75 1.0469-0.023437 0.042969-0.039063 0.078125-0.046875 0.10938l-0.4375 1.8125-0.5625 2.2188c-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"/>
|
|
933
|
+
</symbol>
|
|
934
|
+
<symbol id="gw" overflow="visible">
|
|
935
|
+
<path d="m4.9062-0.78125c-0.49219 0.625-1.0469 0.9375-1.6719 0.9375-0.76172 0-1.2773-0.27344-1.5469-0.82812-0.11719-0.23828-0.17188-0.52344-0.17188-0.85938 0-0.5 0.24219-1.4102 0.73438-2.7344 0.019531-0.070313 0.046875-0.14062 0.078125-0.20312 0.15625-0.39453 0.23438-0.71094 0.23438-0.95312 0-0.30078-0.11719-0.45312-0.34375-0.45312-0.53125 0-0.96094 0.44531-1.2812 1.3281-0.011719 0-0.015625 0.007813-0.015625 0.015625v0.015625c-0.042969 0.11719-0.085937 0.24219-0.125 0.375-0.10547 0.15625-0.17969 0.24219-0.21875 0.25-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.16406 0.097656-0.45703 0.29688-0.875 0.40625-0.85156 0.92188-1.2812 1.5469-1.2812 0.5 0 0.84766 0.21094 1.0469 0.625 0.070313 0.16797 0.10938 0.34375 0.10938 0.53125 0 0.17969-0.085938 0.46875-0.25 0.875-0.5 1.3359-0.75 2.2891-0.75 2.8594 0 0.76172 0.28906 1.1406 0.875 1.1406 0.58203 0 1.0781-0.32031 1.4844-0.96875 0.050781-0.082031 0.085937-0.14844 0.10938-0.20312 0.20703-0.92578 0.55469-2.332 1.0469-4.2188 0.070313-0.32031 0.25391-0.48438 0.54688-0.48438 0.22656 0.042969 0.36328 0.16797 0.40625 0.375 0-0.019531-0.074219 0.29297-0.21875 0.9375-0.125 0.48047-0.20312 0.79688-0.23438 0.95312l-0.39062 1.5156c-0.1875 0.8125-0.28125 1.2969-0.28125 1.4531 0 0.42969 0.14453 0.64062 0.4375 0.64062 0.39453 0 0.71875-0.46094 0.96875-1.3906 0.03125-0.09375 0.054688-0.20703 0.078125-0.34375 0.070313-0.15625 0.14062-0.23828 0.20312-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.089844 0.46484-0.26562 0.98438-0.054688 0.15625-0.10547 0.29297-0.15625 0.40625-0.26172 0.51172-0.60938 0.76562-1.0469 0.76562-0.53125 0-0.90625-0.22266-1.125-0.67188-0.054687-0.082031-0.089844-0.17188-0.10938-0.26562z"/>
|
|
936
|
+
</symbol>
|
|
937
|
+
<symbol id="gv" overflow="visible">
|
|
938
|
+
<path d="m2.8438-0.015625c0 0.90625-0.29688 1.6953-0.89062 2.375-0.15625 0.1875-0.28906 0.30078-0.39062 0.34375-0.09375 0-0.14062-0.054687-0.14062-0.15625 0-0.042969 0.050781-0.11719 0.15625-0.21875 0.5625-0.5625 0.875-1.25 0.9375-2.0625 0.007813-0.09375 0.015625-0.1875 0.015625-0.28125 0-0.13281-0.011719-0.20312-0.03125-0.20312-0.011719 0-0.03125 0.011719-0.0625 0.03125-0.13672 0.125-0.29688 0.1875-0.48438 0.1875-0.35547 0-0.58594-0.15625-0.6875-0.46875-0.042969-0.09375-0.0625-0.17969-0.0625-0.26562 0-0.34375 0.14453-0.57031 0.4375-0.6875 0.09375-0.039063 0.19531-0.0625 0.3125-0.0625 0.40625 0 0.67578 0.27344 0.8125 0.8125 0.050781 0.19922 0.078125 0.41797 0.078125 0.65625z"/>
|
|
939
|
+
</symbol>
|
|
940
|
+
<symbol id="gu" overflow="visible">
|
|
941
|
+
<path d="m6.5469-5.2031c0 0.51172-0.14062 1.2305-0.42188 2.1562-0.54297 1.8047-1.293 2.8438-2.25 3.125-0.14844 0.050781-0.30469 0.078125-0.46875 0.078125-0.85547 0-1.4219-0.29688-1.7031-0.89062-0.11719-0.23828-0.17188-0.51953-0.17188-0.84375 0-0.48828 0.21094-1.3125 0.64062-2.4688l0.15625-0.40625c0.15625-0.40625 0.23438-0.73438 0.23438-0.98438 0-0.28906-0.11719-0.4375-0.34375-0.4375-0.51172 0-0.92969 0.41406-1.25 1.2344-0.0625 0.15625-0.12109 0.32422-0.17188 0.5-0.10547 0.15625-0.17969 0.24219-0.21875 0.25-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.16406 0.10156-0.45703 0.3125-0.875 0.39453-0.85156 0.90625-1.2812 1.5312-1.2812 0.5 0 0.84766 0.21094 1.0469 0.625 0.070313 0.16797 0.10938 0.33984 0.10938 0.51562 0 0.19922-0.058594 0.43359-0.17188 0.70312-0.5 1.3438-0.77344 2.2773-0.8125 2.7969v0.17188c0 0.75 0.29688 1.1562 0.89062 1.2188h0.14062c0.75781 0 1.4141-0.63281 1.9688-1.9062 0.32031-0.73828 0.5-1.3672 0.53125-1.8906 0-0.45703-0.16406-0.83594-0.48438-1.1406-0.14844-0.14453-0.21875-0.28516-0.21875-0.42188 0-0.22656 0.11719-0.42188 0.35938-0.57812 0.10156-0.0625 0.21094-0.09375 0.32812-0.09375 0.26953 0 0.45703 0.17188 0.5625 0.51562 0.03125 0.13672 0.046875 0.29297 0.046875 0.46875z"/>
|
|
942
|
+
</symbol>
|
|
943
|
+
<symbol id="i" overflow="visible">
|
|
944
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
945
|
+
</symbol>
|
|
946
|
+
<symbol id="h" overflow="visible">
|
|
947
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
948
|
+
</symbol>
|
|
949
|
+
<symbol id="gt" overflow="visible">
|
|
950
|
+
<path d="m9.625-4.5781h-8.3594c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.375c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0 2.7188h-8.375c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.3594c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
951
|
+
</symbol>
|
|
952
|
+
<symbol id="gs" overflow="visible">
|
|
953
|
+
<path d="m2.3906-6.8281-0.73438 3.0156c0.38281-0.40625 0.76953-0.60938 1.1562-0.60938 0.5 0 0.875 0.23047 1.125 0.6875 0.14453 0.27344 0.21875 0.57812 0.21875 0.92188 0 0.69922-0.25 1.3555-0.75 1.9688-0.46094 0.57422-0.96484 0.88281-1.5156 0.9375-0.054687 0.007812-0.10547 0.015625-0.15625 0.015625-0.48047 0-0.83594-0.22266-1.0625-0.67188-0.13672-0.25-0.20312-0.54688-0.20312-0.89062 0-0.22656 0.050781-0.56641 0.15625-1.0156l0.82812-3.2656c0.09375-0.38281 0.14062-0.58594 0.14062-0.60938 0-0.070312-0.046875-0.11719-0.14062-0.14062-0.085937-0.019531-0.20312-0.03125-0.35938-0.03125-0.14844 0-0.23047-0.039063-0.25-0.125 0-0.11328 0.066406-0.17969 0.20312-0.20312l1.2188-0.09375c0.082031 0 0.125 0.039062 0.125 0.10938zm-0.9375 3.7812-0.21875 0.92188c-0.11719 0.41797-0.17188 0.75-0.17188 1 0 0.57422 0.17578 0.90625 0.53125 1 0.039062 0.011719 0.085938 0.015625 0.14062 0.015625 0.35156 0 0.6875-0.23438 1-0.70312 0.0625-0.09375 0.125-0.20312 0.1875-0.32812 0.17578-0.375 0.32812-0.89062 0.45312-1.5469 0.039062-0.22656 0.0625-0.42188 0.0625-0.57812 0-0.53125-0.16797-0.83594-0.5-0.92188-0.042969-0.007812-0.089844-0.015625-0.14062-0.015625-0.39844 0-0.79688 0.26562-1.2031 0.79688-0.054688 0.074219-0.10156 0.19531-0.14062 0.35938z"/>
|
|
954
|
+
</symbol>
|
|
955
|
+
<symbol id="gr" overflow="visible">
|
|
956
|
+
<path d="m3.7344-3.7812c0.03125-0.22656 0.13281-0.36719 0.3125-0.42188 0.03125-0.007813 0.066406-0.015625 0.10938-0.015625 0.16406 0 0.25781 0.089844 0.28125 0.26562 0 0.042969-0.023438 0.15625-0.0625 0.34375l-0.35938 1.4062c-0.10547 0.41797-0.17969 0.71484-0.21875 0.89062-0.09375 0.34375-0.14062 0.59375-0.14062 0.75 0 0.30469 0.097656 0.45312 0.29688 0.45312 0.25781 0 0.47266-0.26562 0.64062-0.79688 0.039062-0.11328 0.082031-0.25781 0.125-0.4375 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.10547-0.0625 0.33984-0.1875 0.70312-0.042969 0.11719-0.078125 0.21484-0.10938 0.29688-0.1875 0.36719-0.4375 0.54688-0.75 0.54688-0.375 0-0.64844-0.16016-0.8125-0.48438-0.042969-0.070312-0.074219-0.16016-0.09375-0.26562-0.41797 0.5-0.85156 0.75-1.2969 0.75-0.5 0-0.87109-0.22266-1.1094-0.67188-0.14844-0.26953-0.21875-0.57812-0.21875-0.92188 0-0.71875 0.25-1.3828 0.75-2 0.45703-0.5625 0.96094-0.86719 1.5156-0.92188 0.039063-0.007812 0.085937-0.015625 0.14062-0.015625 0.40625 0 0.71094 0.21484 0.92188 0.64062zm-0.65625 2.5938 0.5-1.9688c0.019531-0.09375 0.03125-0.14453 0.03125-0.15625 0-0.14453-0.058594-0.31641-0.17188-0.51562-0.15625-0.25-0.36719-0.375-0.625-0.375-0.34375 0-0.67188 0.23047-0.98438 0.6875-0.0625 0.085937-0.12109 0.17969-0.17188 0.28125-0.1875 0.38672-0.35156 0.93359-0.48438 1.6406-0.042969 0.23047-0.0625 0.41406-0.0625 0.54688 0 0.44922 0.125 0.74219 0.375 0.875 0.070313 0.042969 0.16016 0.0625 0.26562 0.0625 0.375 0 0.75-0.23438 1.125-0.70312 0.09375-0.11328 0.15625-0.22656 0.1875-0.34375 0.007812-0.019531 0.015625-0.03125 0.015625-0.03125z"/>
|
|
957
|
+
</symbol>
|
|
958
|
+
<symbol id="gq" overflow="visible">
|
|
959
|
+
<path d="m5.9375 16.25-3.1562-7.3594-0.98438 0.75-0.26562-0.25 2.0156-1.5469 2.9531 6.875 7.2656-15.156c0.039063-0.082031 0.11719-0.125 0.23438-0.125 0.070312 0 0.13281 0.03125 0.1875 0.09375 0.0625 0.054688 0.09375 0.11719 0.09375 0.1875 0 0.042969-0.007812 0.074219-0.015625 0.09375l-7.8125 16.297c-0.03125 0.09375-0.10547 0.14062-0.21875 0.14062z"/>
|
|
960
|
+
</symbol>
|
|
961
|
+
<symbol id="gp" overflow="visible">
|
|
962
|
+
<path d="m4.9062-0.78125c-0.49219 0.625-1.0469 0.9375-1.6719 0.9375-0.76172 0-1.2773-0.27344-1.5469-0.82812-0.11719-0.23828-0.17188-0.52344-0.17188-0.85938 0-0.5 0.24219-1.4102 0.73438-2.7344 0.019531-0.070313 0.046875-0.14062 0.078125-0.20312 0.15625-0.39453 0.23438-0.71094 0.23438-0.95312 0-0.30078-0.11719-0.45312-0.34375-0.45312-0.53125 0-0.96094 0.44531-1.2812 1.3281-0.011719 0-0.015625 0.007813-0.015625 0.015625v0.015625c-0.042969 0.11719-0.085937 0.24219-0.125 0.375-0.10547 0.15625-0.17969 0.24219-0.21875 0.25-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.16406 0.097656-0.45703 0.29688-0.875 0.40625-0.85156 0.92188-1.2812 1.5469-1.2812 0.5 0 0.84766 0.21094 1.0469 0.625 0.070313 0.16797 0.10938 0.34375 0.10938 0.53125 0 0.17969-0.085938 0.46875-0.25 0.875-0.5 1.3359-0.75 2.2891-0.75 2.8594 0 0.76172 0.28906 1.1406 0.875 1.1406 0.58203 0 1.0781-0.32031 1.4844-0.96875 0.050781-0.082031 0.085937-0.14844 0.10938-0.20312 0.20703-0.92578 0.55469-2.332 1.0469-4.2188 0.070313-0.32031 0.25391-0.48438 0.54688-0.48438 0.22656 0.042969 0.36328 0.16797 0.40625 0.375 0-0.019531-0.074219 0.29297-0.21875 0.9375-0.125 0.48047-0.20312 0.79688-0.23438 0.95312l-0.39062 1.5156c-0.1875 0.8125-0.28125 1.2969-0.28125 1.4531 0 0.42969 0.14453 0.64062 0.4375 0.64062 0.39453 0 0.71875-0.46094 0.96875-1.3906 0.03125-0.09375 0.054688-0.20703 0.078125-0.34375 0.070313-0.15625 0.14062-0.23828 0.20312-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.089844 0.46484-0.26562 0.98438-0.054688 0.15625-0.10547 0.29297-0.15625 0.40625-0.26172 0.51172-0.60938 0.76562-1.0469 0.76562-0.53125 0-0.90625-0.22266-1.125-0.67188-0.054687-0.082031-0.089844-0.17188-0.10938-0.26562z"/>
|
|
963
|
+
</symbol>
|
|
964
|
+
<symbol id="go" overflow="visible">
|
|
965
|
+
<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"/>
|
|
966
|
+
</symbol>
|
|
967
|
+
<symbol id="gn" overflow="visible">
|
|
968
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
969
|
+
</symbol>
|
|
970
|
+
<symbol id="gm" overflow="visible">
|
|
971
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
972
|
+
</symbol>
|
|
973
|
+
<symbol id="gl" overflow="visible">
|
|
974
|
+
<path d="m2.8906-5.5938-1.0469 4.125c-0.054688 0.23047-0.078125 0.45312-0.078125 0.67188 0 0.42969 0.14453 0.64062 0.4375 0.64062 0.61328 0 1.1562-0.45312 1.625-1.3594l0.1875-0.4375c0.0625-0.11328 0.13281-0.17578 0.21875-0.1875 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.125-0.12109 0.39062-0.35938 0.79688-0.54297 0.90625-1.1641 1.3594-1.8594 1.3594-0.54297 0-0.92969-0.22266-1.1562-0.67188-0.09375-0.1875-0.14062-0.39453-0.14062-0.625 0-0.17578 0.28516-1.3828 0.85938-3.625l0.21875-0.82812h-1.2344c-0.24219 0-0.36719-0.039062-0.375-0.125h-0.015625v-0.046875c0-0.15625 0.070313-0.24219 0.21875-0.26562h1.5156l0.54688-2.2344c0.082031-0.32031 0.26562-0.48828 0.54688-0.5 0.25 0 0.38281 0.125 0.40625 0.375 0 0.0625-0.1875 0.85156-0.5625 2.3594h1.2344c0.23828 0 0.36719 0.054688 0.39062 0.15625 0 0.16797-0.078125 0.26172-0.23438 0.28125z"/>
|
|
975
|
+
</symbol>
|
|
976
|
+
<symbol id="gk" overflow="visible">
|
|
977
|
+
<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"/>
|
|
978
|
+
</symbol>
|
|
979
|
+
<symbol id="gi" overflow="visible">
|
|
980
|
+
<path d="m7.5156-8.3281h-4.4844c-0.28125 0-0.4375-0.066406-0.46875-0.20312-0.011719-0.019531-0.015625-0.046875-0.015625-0.078125 0.050781-0.1875 0.21094-0.28125 0.48438-0.28125h4.7188c-0.1875-0.23828-0.29688-0.50781-0.32812-0.8125 0-0.14453 0.0625-0.23828 0.1875-0.28125 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.13281 0 0.22656 0.10547 0.28125 0.3125 0.11328 0.35547 0.30078 0.62109 0.5625 0.79688 0.13281 0.09375 0.20312 0.1875 0.20312 0.28125 0 0.10547-0.078125 0.20312-0.23438 0.29688-0.42969 0.19922-0.79688 0.5-1.1094 0.90625-0.10547 0.125-0.19531 0.1875-0.26562 0.1875-0.13672 0-0.22656-0.066406-0.26562-0.20312-0.011719-0.03125-0.015625-0.054687-0.015625-0.078125 0-0.15625 0.21875-0.42969 0.65625-0.82812z"/>
|
|
981
|
+
</symbol>
|
|
982
|
+
<symbol id="gh" overflow="visible">
|
|
983
|
+
<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.082031-0.45703 0.25-0.9375 0.0625-0.16406 0.125-0.30469 0.1875-0.42188 0.21875-0.45703 0.5-0.71875 0.84375-0.78125 0.0625-0.007813 0.125-0.015625 0.1875-0.015625 0.51953 0 0.89844 0.22656 1.1406 0.67188 0.050781 0.10547 0.09375 0.21484 0.125 0.32812 0.007813 0.023438 0.015625 0.046875 0.015625 0.078125 0.53906-0.67578 1.1328-1.0352 1.7812-1.0781 0.51953 0 0.875 0.18359 1.0625 0.54688 0.070312 0.11719 0.10938 0.23438 0.10938 0.35938 0 0.36719-0.15625 0.62109-0.46875 0.76562-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.28125 0-0.45312-0.125-0.51562-0.375-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.3125 0.16016-0.53906 0.48438-0.6875l0.015625-0.015625c0.070313-0.03125 0.14844-0.054687 0.23438-0.078125l-0.28125-0.125c-0.125-0.007812-0.23047-0.019531-0.3125-0.03125-0.38672 0-0.75781 0.15234-1.1094 0.45312-0.29297 0.26172-0.54297 0.60938-0.75 1.0469-0.023437 0.042969-0.039063 0.078125-0.046875 0.10938l-0.4375 1.8125-0.5625 2.2188c-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"/>
|
|
984
|
+
</symbol>
|
|
985
|
+
<symbol id="gg" overflow="visible">
|
|
986
|
+
<path d="m3.5-0.5625c-0.34375 0.44922-0.74219 0.67188-1.1875 0.67188-0.54297 0-0.91406-0.19531-1.1094-0.59375-0.085937-0.16406-0.125-0.36719-0.125-0.60938 0-0.35156 0.17578-1.0039 0.53125-1.9531 0.007813-0.050781 0.023437-0.097656 0.046875-0.14062 0.11328-0.28906 0.17188-0.51953 0.17188-0.6875 0-0.21875-0.085937-0.32812-0.25-0.32812-0.375 0-0.67969 0.32031-0.90625 0.95312-0.011719 0-0.015625 0.007812-0.015625 0.015625l-0.09375 0.28125c-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.125 0.066406-0.33594 0.20312-0.64062 0.28906-0.60156 0.66016-0.90625 1.1094-0.90625 0.35156 0 0.59766 0.15234 0.73438 0.45312 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.125-0.058594 0.33594-0.17188 0.625-0.36719 0.94922-0.54688 1.625-0.54688 2.0312 0 0.55469 0.20703 0.82812 0.625 0.82812 0.41406 0 0.76953-0.22656 1.0625-0.6875 0.03125-0.0625 0.054688-0.11328 0.078125-0.15625 0.14453-0.65625 0.39453-1.6562 0.75-3 0.050781-0.23828 0.17969-0.35938 0.39062-0.35938 0.16406 0.03125 0.25781 0.12109 0.28125 0.26562 0-0.007813-0.046875 0.21484-0.14062 0.67188-0.09375 0.34375-0.15234 0.57422-0.17188 0.6875l-0.28125 1.0781c-0.13672 0.58594-0.20312 0.93359-0.20312 1.0469 0 0.30469 0.10156 0.45312 0.3125 0.45312 0.28125 0 0.50781-0.33203 0.6875-1 0.019531-0.0625 0.039063-0.14062 0.0625-0.23438 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.10547-0.0625 0.33984-0.1875 0.70312-0.042969 0.11719-0.085938 0.21484-0.125 0.29688-0.17969 0.36719-0.42188 0.54688-0.73438 0.54688-0.38672 0-0.65625-0.16016-0.8125-0.48438-0.03125-0.050781-0.058594-0.11328-0.078125-0.1875z"/>
|
|
987
|
+
</symbol>
|
|
988
|
+
<symbol id="gf" overflow="visible">
|
|
989
|
+
<path d="m2.6875-3.5c0 0.3125-0.14062 0.53906-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.13281-0.67188-0.40625-0.054688-0.10156-0.078125-0.21094-0.078125-0.32812 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.039063 0.21094-0.0625 0.32812-0.0625 0.30078 0 0.52344 0.13672 0.67188 0.40625 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
990
|
+
</symbol>
|
|
991
|
+
<symbol id="ge" overflow="visible">
|
|
992
|
+
<path d="m7.5156-8.3281h-4.4844c-0.28125 0-0.4375-0.066406-0.46875-0.20312-0.011719-0.019531-0.015625-0.046875-0.015625-0.078125 0.050781-0.1875 0.21094-0.28125 0.48438-0.28125h4.7188c-0.1875-0.23828-0.29688-0.50781-0.32812-0.8125 0-0.14453 0.0625-0.23828 0.1875-0.28125 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.13281 0 0.22656 0.10547 0.28125 0.3125 0.11328 0.35547 0.30078 0.62109 0.5625 0.79688 0.13281 0.09375 0.20312 0.1875 0.20312 0.28125 0 0.10547-0.078125 0.20312-0.23438 0.29688-0.42969 0.19922-0.79688 0.5-1.1094 0.90625-0.10547 0.125-0.19531 0.1875-0.26562 0.1875-0.13672 0-0.22656-0.066406-0.26562-0.20312-0.011719-0.03125-0.015625-0.054687-0.015625-0.078125 0-0.15625 0.21875-0.42969 0.65625-0.82812z"/>
|
|
993
|
+
</symbol>
|
|
994
|
+
<symbol id="gd" overflow="visible">
|
|
995
|
+
<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.082031-0.45703 0.25-0.9375 0.0625-0.16406 0.125-0.30469 0.1875-0.42188 0.21875-0.45703 0.5-0.71875 0.84375-0.78125 0.0625-0.007813 0.125-0.015625 0.1875-0.015625 0.51953 0 0.89844 0.22656 1.1406 0.67188 0.050781 0.10547 0.09375 0.21484 0.125 0.32812 0.007813 0.023438 0.015625 0.046875 0.015625 0.078125 0.53906-0.67578 1.1328-1.0352 1.7812-1.0781 0.51953 0 0.875 0.18359 1.0625 0.54688 0.070312 0.11719 0.10938 0.23438 0.10938 0.35938 0 0.36719-0.15625 0.62109-0.46875 0.76562-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.28125 0-0.45312-0.125-0.51562-0.375-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.3125 0.16016-0.53906 0.48438-0.6875l0.015625-0.015625c0.070313-0.03125 0.14844-0.054687 0.23438-0.078125l-0.28125-0.125c-0.125-0.007812-0.23047-0.019531-0.3125-0.03125-0.38672 0-0.75781 0.15234-1.1094 0.45312-0.29297 0.26172-0.54297 0.60938-0.75 1.0469-0.023437 0.042969-0.039063 0.078125-0.046875 0.10938l-0.4375 1.8125-0.5625 2.2188c-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"/>
|
|
996
|
+
</symbol>
|
|
997
|
+
<symbol id="gc" overflow="visible">
|
|
998
|
+
<path d="m3.5-0.5625c-0.34375 0.44922-0.74219 0.67188-1.1875 0.67188-0.54297 0-0.91406-0.19531-1.1094-0.59375-0.085937-0.16406-0.125-0.36719-0.125-0.60938 0-0.35156 0.17578-1.0039 0.53125-1.9531 0.007813-0.050781 0.023437-0.097656 0.046875-0.14062 0.11328-0.28906 0.17188-0.51953 0.17188-0.6875 0-0.21875-0.085937-0.32812-0.25-0.32812-0.375 0-0.67969 0.32031-0.90625 0.95312-0.011719 0-0.015625 0.007812-0.015625 0.015625l-0.09375 0.28125c-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.125 0.066406-0.33594 0.20312-0.64062 0.28906-0.60156 0.66016-0.90625 1.1094-0.90625 0.35156 0 0.59766 0.15234 0.73438 0.45312 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.125-0.058594 0.33594-0.17188 0.625-0.36719 0.94922-0.54688 1.625-0.54688 2.0312 0 0.55469 0.20703 0.82812 0.625 0.82812 0.41406 0 0.76953-0.22656 1.0625-0.6875 0.03125-0.0625 0.054688-0.11328 0.078125-0.15625 0.14453-0.65625 0.39453-1.6562 0.75-3 0.050781-0.23828 0.17969-0.35938 0.39062-0.35938 0.16406 0.03125 0.25781 0.12109 0.28125 0.26562 0-0.007813-0.046875 0.21484-0.14062 0.67188-0.09375 0.34375-0.15234 0.57422-0.17188 0.6875l-0.28125 1.0781c-0.13672 0.58594-0.20312 0.93359-0.20312 1.0469 0 0.30469 0.10156 0.45312 0.3125 0.45312 0.28125 0 0.50781-0.33203 0.6875-1 0.019531-0.0625 0.039063-0.14062 0.0625-0.23438 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.10547-0.0625 0.33984-0.1875 0.70312-0.042969 0.11719-0.085938 0.21484-0.125 0.29688-0.17969 0.36719-0.42188 0.54688-0.73438 0.54688-0.38672 0-0.65625-0.16016-0.8125-0.48438-0.03125-0.050781-0.058594-0.11328-0.078125-0.1875z"/>
|
|
999
|
+
</symbol>
|
|
1000
|
+
<symbol id="gb" overflow="visible">
|
|
1001
|
+
<path d="m5.7188-3.2188v3.9219c0 0.28906-0.089844 0.44141-0.26562 0.45312-0.1875 0-0.28125-0.15234-0.28125-0.45312v-3.9219h-3.9219c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h3.9219v-3.9219c0-0.28906 0.09375-0.44141 0.28125-0.45312 0.17578 0 0.26562 0.15234 0.26562 0.45312v3.9219h3.9062c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
1002
|
+
</symbol>
|
|
1003
|
+
<symbol id="ga" overflow="visible">
|
|
1004
|
+
<path d="m6.2812-2.4375-0.39062 2.4375h-5.1875c0-0.22656 0.023437-0.37891 0.078125-0.45312l0.078125-0.0625 2.6875-3c0.97656-1.1016 1.4688-2.1328 1.4688-3.0938 0-0.83203-0.25781-1.4609-0.76562-1.8906l-0.015625-0.015625c-0.30469-0.25-0.66797-0.375-1.0938-0.375-0.67969 0-1.2148 0.29297-1.6094 0.875-0.11719 0.16797-0.21094 0.35156-0.28125 0.54688h0.17188c0.375 0 0.61328 0.16797 0.71875 0.5v0.015625c0.019531 0.0625 0.03125 0.13281 0.03125 0.20312 0 0.375-0.17969 0.61719-0.53125 0.71875-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.34375 0-0.57422-0.14453-0.6875-0.4375-0.03125-0.10156-0.046875-0.22266-0.046875-0.35938 0-0.71875 0.27344-1.332 0.82812-1.8438 0.48828-0.45703 1.082-0.6875 1.7812-0.6875 1.0312 0 1.832 0.35156 2.4062 1.0469 0.32031 0.39844 0.50391 0.87109 0.54688 1.4219 0.007813 0.085937 0.015625 0.16797 0.015625 0.25 0 0.67969-0.25781 1.3281-0.76562 1.9531-0.27344 0.3125-0.69531 0.73047-1.2656 1.25l-0.84375 0.76562-0.14062 0.125-1.4844 1.4375h2.5156c0.82031 0 1.2656-0.035156 1.3281-0.10938 0.09375-0.13281 0.19531-0.55078 0.3125-1.25z"/>
|
|
1005
|
+
</symbol>
|
|
1006
|
+
<symbol id="fz" overflow="visible">
|
|
1007
|
+
<path d="m4.9062-0.78125c-0.49219 0.625-1.0469 0.9375-1.6719 0.9375-0.76172 0-1.2773-0.27344-1.5469-0.82812-0.11719-0.23828-0.17188-0.52344-0.17188-0.85938 0-0.5 0.24219-1.4102 0.73438-2.7344 0.019531-0.070313 0.046875-0.14062 0.078125-0.20312 0.15625-0.39453 0.23438-0.71094 0.23438-0.95312 0-0.30078-0.11719-0.45312-0.34375-0.45312-0.53125 0-0.96094 0.44531-1.2812 1.3281-0.011719 0-0.015625 0.007813-0.015625 0.015625v0.015625c-0.042969 0.11719-0.085937 0.24219-0.125 0.375-0.10547 0.15625-0.17969 0.24219-0.21875 0.25-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.16406 0.097656-0.45703 0.29688-0.875 0.40625-0.85156 0.92188-1.2812 1.5469-1.2812 0.5 0 0.84766 0.21094 1.0469 0.625 0.070313 0.16797 0.10938 0.34375 0.10938 0.53125 0 0.17969-0.085938 0.46875-0.25 0.875-0.5 1.3359-0.75 2.2891-0.75 2.8594 0 0.76172 0.28906 1.1406 0.875 1.1406 0.58203 0 1.0781-0.32031 1.4844-0.96875 0.050781-0.082031 0.085937-0.14844 0.10938-0.20312 0.20703-0.92578 0.55469-2.332 1.0469-4.2188 0.070313-0.32031 0.25391-0.48438 0.54688-0.48438 0.22656 0.042969 0.36328 0.16797 0.40625 0.375 0-0.019531-0.074219 0.29297-0.21875 0.9375-0.125 0.48047-0.20312 0.79688-0.23438 0.95312l-0.39062 1.5156c-0.1875 0.8125-0.28125 1.2969-0.28125 1.4531 0 0.42969 0.14453 0.64062 0.4375 0.64062 0.39453 0 0.71875-0.46094 0.96875-1.3906 0.03125-0.09375 0.054688-0.20703 0.078125-0.34375 0.070313-0.15625 0.14062-0.23828 0.20312-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.089844 0.46484-0.26562 0.98438-0.054688 0.15625-0.10547 0.29297-0.15625 0.40625-0.26172 0.51172-0.60938 0.76562-1.0469 0.76562-0.53125 0-0.90625-0.22266-1.125-0.67188-0.054687-0.082031-0.089844-0.17188-0.10938-0.26562z"/>
|
|
1008
|
+
</symbol>
|
|
1009
|
+
<symbol id="fy" overflow="visible">
|
|
1010
|
+
<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"/>
|
|
1011
|
+
</symbol>
|
|
1012
|
+
<symbol id="fx" overflow="visible">
|
|
1013
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
1014
|
+
</symbol>
|
|
1015
|
+
<symbol id="fw" overflow="visible">
|
|
1016
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
1017
|
+
</symbol>
|
|
1018
|
+
<symbol id="fv" overflow="visible">
|
|
1019
|
+
<path d="m2.8906-5.5938-1.0469 4.125c-0.054688 0.23047-0.078125 0.45312-0.078125 0.67188 0 0.42969 0.14453 0.64062 0.4375 0.64062 0.61328 0 1.1562-0.45312 1.625-1.3594l0.1875-0.4375c0.0625-0.11328 0.13281-0.17578 0.21875-0.1875 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.125-0.12109 0.39062-0.35938 0.79688-0.54297 0.90625-1.1641 1.3594-1.8594 1.3594-0.54297 0-0.92969-0.22266-1.1562-0.67188-0.09375-0.1875-0.14062-0.39453-0.14062-0.625 0-0.17578 0.28516-1.3828 0.85938-3.625l0.21875-0.82812h-1.2344c-0.24219 0-0.36719-0.039062-0.375-0.125h-0.015625v-0.046875c0-0.15625 0.070313-0.24219 0.21875-0.26562h1.5156l0.54688-2.2344c0.082031-0.32031 0.26562-0.48828 0.54688-0.5 0.25 0 0.38281 0.125 0.40625 0.375 0 0.0625-0.1875 0.85156-0.5625 2.3594h1.2344c0.23828 0 0.36719 0.054688 0.39062 0.15625 0 0.16797-0.078125 0.26172-0.23438 0.28125z"/>
|
|
1020
|
+
</symbol>
|
|
1021
|
+
<symbol id="fu" overflow="visible">
|
|
1022
|
+
<path d="m6.5469-5.2031c0 0.51172-0.14062 1.2305-0.42188 2.1562-0.54297 1.8047-1.293 2.8438-2.25 3.125-0.14844 0.050781-0.30469 0.078125-0.46875 0.078125-0.85547 0-1.4219-0.29688-1.7031-0.89062-0.11719-0.23828-0.17188-0.51953-0.17188-0.84375 0-0.48828 0.21094-1.3125 0.64062-2.4688l0.15625-0.40625c0.15625-0.40625 0.23438-0.73438 0.23438-0.98438 0-0.28906-0.11719-0.4375-0.34375-0.4375-0.51172 0-0.92969 0.41406-1.25 1.2344-0.0625 0.15625-0.12109 0.32422-0.17188 0.5-0.10547 0.15625-0.17969 0.24219-0.21875 0.25-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.16406 0.10156-0.45703 0.3125-0.875 0.39453-0.85156 0.90625-1.2812 1.5312-1.2812 0.5 0 0.84766 0.21094 1.0469 0.625 0.070313 0.16797 0.10938 0.33984 0.10938 0.51562 0 0.19922-0.058594 0.43359-0.17188 0.70312-0.5 1.3438-0.77344 2.2773-0.8125 2.7969v0.17188c0 0.75 0.29688 1.1562 0.89062 1.2188h0.14062c0.75781 0 1.4141-0.63281 1.9688-1.9062 0.32031-0.73828 0.5-1.3672 0.53125-1.8906 0-0.45703-0.16406-0.83594-0.48438-1.1406-0.14844-0.14453-0.21875-0.28516-0.21875-0.42188 0-0.22656 0.11719-0.42188 0.35938-0.57812 0.10156-0.0625 0.21094-0.09375 0.32812-0.09375 0.26953 0 0.45703 0.17188 0.5625 0.51562 0.03125 0.13672 0.046875 0.29297 0.046875 0.46875z"/>
|
|
1023
|
+
</symbol>
|
|
1024
|
+
<symbol id="ft" overflow="visible">
|
|
1025
|
+
<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"/>
|
|
1026
|
+
</symbol>
|
|
1027
|
+
<symbol id="fs" overflow="visible">
|
|
1028
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
1029
|
+
</symbol>
|
|
1030
|
+
<symbol id="fr" overflow="visible">
|
|
1031
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
1032
|
+
</symbol>
|
|
1033
|
+
<symbol id="fq" overflow="visible">
|
|
1034
|
+
<path d="m2.8906-5.5938-1.0469 4.125c-0.054688 0.23047-0.078125 0.45312-0.078125 0.67188 0 0.42969 0.14453 0.64062 0.4375 0.64062 0.61328 0 1.1562-0.45312 1.625-1.3594l0.1875-0.4375c0.0625-0.11328 0.13281-0.17578 0.21875-0.1875 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.125-0.12109 0.39062-0.35938 0.79688-0.54297 0.90625-1.1641 1.3594-1.8594 1.3594-0.54297 0-0.92969-0.22266-1.1562-0.67188-0.09375-0.1875-0.14062-0.39453-0.14062-0.625 0-0.17578 0.28516-1.3828 0.85938-3.625l0.21875-0.82812h-1.2344c-0.24219 0-0.36719-0.039062-0.375-0.125h-0.015625v-0.046875c0-0.15625 0.070313-0.24219 0.21875-0.26562h1.5156l0.54688-2.2344c0.082031-0.32031 0.26562-0.48828 0.54688-0.5 0.25 0 0.38281 0.125 0.40625 0.375 0 0.0625-0.1875 0.85156-0.5625 2.3594h1.2344c0.23828 0 0.36719 0.054688 0.39062 0.15625 0 0.16797-0.078125 0.26172-0.23438 0.28125z"/>
|
|
1035
|
+
</symbol>
|
|
1036
|
+
<symbol id="fp" overflow="visible">
|
|
1037
|
+
<path d="m7.5156-8.3281h-4.4844c-0.28125 0-0.4375-0.066406-0.46875-0.20312-0.011719-0.019531-0.015625-0.046875-0.015625-0.078125 0.050781-0.1875 0.21094-0.28125 0.48438-0.28125h4.7188c-0.1875-0.23828-0.29688-0.50781-0.32812-0.8125 0-0.14453 0.0625-0.23828 0.1875-0.28125 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.13281 0 0.22656 0.10547 0.28125 0.3125 0.11328 0.35547 0.30078 0.62109 0.5625 0.79688 0.13281 0.09375 0.20312 0.1875 0.20312 0.28125 0 0.10547-0.078125 0.20312-0.23438 0.29688-0.42969 0.19922-0.79688 0.5-1.1094 0.90625-0.10547 0.125-0.19531 0.1875-0.26562 0.1875-0.13672 0-0.22656-0.066406-0.26562-0.20312-0.011719-0.03125-0.015625-0.054687-0.015625-0.078125 0-0.15625 0.21875-0.42969 0.65625-0.82812z"/>
|
|
1038
|
+
</symbol>
|
|
1039
|
+
<symbol id="fo" overflow="visible">
|
|
1040
|
+
<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.082031-0.45703 0.25-0.9375 0.0625-0.16406 0.125-0.30469 0.1875-0.42188 0.21875-0.45703 0.5-0.71875 0.84375-0.78125 0.0625-0.007813 0.125-0.015625 0.1875-0.015625 0.51953 0 0.89844 0.22656 1.1406 0.67188 0.050781 0.10547 0.09375 0.21484 0.125 0.32812 0.007813 0.023438 0.015625 0.046875 0.015625 0.078125 0.53906-0.67578 1.1328-1.0352 1.7812-1.0781 0.51953 0 0.875 0.18359 1.0625 0.54688 0.070312 0.11719 0.10938 0.23438 0.10938 0.35938 0 0.36719-0.15625 0.62109-0.46875 0.76562-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.28125 0-0.45312-0.125-0.51562-0.375-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.3125 0.16016-0.53906 0.48438-0.6875l0.015625-0.015625c0.070313-0.03125 0.14844-0.054687 0.23438-0.078125l-0.28125-0.125c-0.125-0.007812-0.23047-0.019531-0.3125-0.03125-0.38672 0-0.75781 0.15234-1.1094 0.45312-0.29297 0.26172-0.54297 0.60938-0.75 1.0469-0.023437 0.042969-0.039063 0.078125-0.046875 0.10938l-0.4375 1.8125-0.5625 2.2188c-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"/>
|
|
1041
|
+
</symbol>
|
|
1042
|
+
<symbol id="fn" overflow="visible">
|
|
1043
|
+
<path d="m3.5-0.5625c-0.34375 0.44922-0.74219 0.67188-1.1875 0.67188-0.54297 0-0.91406-0.19531-1.1094-0.59375-0.085937-0.16406-0.125-0.36719-0.125-0.60938 0-0.35156 0.17578-1.0039 0.53125-1.9531 0.007813-0.050781 0.023437-0.097656 0.046875-0.14062 0.11328-0.28906 0.17188-0.51953 0.17188-0.6875 0-0.21875-0.085937-0.32812-0.25-0.32812-0.375 0-0.67969 0.32031-0.90625 0.95312-0.011719 0-0.015625 0.007812-0.015625 0.015625l-0.09375 0.28125c-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.125 0.066406-0.33594 0.20312-0.64062 0.28906-0.60156 0.66016-0.90625 1.1094-0.90625 0.35156 0 0.59766 0.15234 0.73438 0.45312 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.125-0.058594 0.33594-0.17188 0.625-0.36719 0.94922-0.54688 1.625-0.54688 2.0312 0 0.55469 0.20703 0.82812 0.625 0.82812 0.41406 0 0.76953-0.22656 1.0625-0.6875 0.03125-0.0625 0.054688-0.11328 0.078125-0.15625 0.14453-0.65625 0.39453-1.6562 0.75-3 0.050781-0.23828 0.17969-0.35938 0.39062-0.35938 0.16406 0.03125 0.25781 0.12109 0.28125 0.26562 0-0.007813-0.046875 0.21484-0.14062 0.67188-0.09375 0.34375-0.15234 0.57422-0.17188 0.6875l-0.28125 1.0781c-0.13672 0.58594-0.20312 0.93359-0.20312 1.0469 0 0.30469 0.10156 0.45312 0.3125 0.45312 0.28125 0 0.50781-0.33203 0.6875-1 0.019531-0.0625 0.039063-0.14062 0.0625-0.23438 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.10547-0.0625 0.33984-0.1875 0.70312-0.042969 0.11719-0.085938 0.21484-0.125 0.29688-0.17969 0.36719-0.42188 0.54688-0.73438 0.54688-0.38672 0-0.65625-0.16016-0.8125-0.48438-0.03125-0.050781-0.058594-0.11328-0.078125-0.1875z"/>
|
|
1044
|
+
</symbol>
|
|
1045
|
+
<symbol id="fm" overflow="visible">
|
|
1046
|
+
<path d="m2.6875-3.5c0 0.3125-0.14062 0.53906-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.13281-0.67188-0.40625-0.054688-0.10156-0.078125-0.21094-0.078125-0.32812 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.039063 0.21094-0.0625 0.32812-0.0625 0.30078 0 0.52344 0.13672 0.67188 0.40625 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
1047
|
+
</symbol>
|
|
1048
|
+
<symbol id="fl" overflow="visible">
|
|
1049
|
+
<path d="m7.5156-8.3281h-4.4844c-0.28125 0-0.4375-0.066406-0.46875-0.20312-0.011719-0.019531-0.015625-0.046875-0.015625-0.078125 0.050781-0.1875 0.21094-0.28125 0.48438-0.28125h4.7188c-0.1875-0.23828-0.29688-0.50781-0.32812-0.8125 0-0.14453 0.0625-0.23828 0.1875-0.28125 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.13281 0 0.22656 0.10547 0.28125 0.3125 0.11328 0.35547 0.30078 0.62109 0.5625 0.79688 0.13281 0.09375 0.20312 0.1875 0.20312 0.28125 0 0.10547-0.078125 0.20312-0.23438 0.29688-0.42969 0.19922-0.79688 0.5-1.1094 0.90625-0.10547 0.125-0.19531 0.1875-0.26562 0.1875-0.13672 0-0.22656-0.066406-0.26562-0.20312-0.011719-0.03125-0.015625-0.054687-0.015625-0.078125 0-0.15625 0.21875-0.42969 0.65625-0.82812z"/>
|
|
1050
|
+
</symbol>
|
|
1051
|
+
<symbol id="fk" overflow="visible">
|
|
1052
|
+
<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.082031-0.45703 0.25-0.9375 0.0625-0.16406 0.125-0.30469 0.1875-0.42188 0.21875-0.45703 0.5-0.71875 0.84375-0.78125 0.0625-0.007813 0.125-0.015625 0.1875-0.015625 0.51953 0 0.89844 0.22656 1.1406 0.67188 0.050781 0.10547 0.09375 0.21484 0.125 0.32812 0.007813 0.023438 0.015625 0.046875 0.015625 0.078125 0.53906-0.67578 1.1328-1.0352 1.7812-1.0781 0.51953 0 0.875 0.18359 1.0625 0.54688 0.070312 0.11719 0.10938 0.23438 0.10938 0.35938 0 0.36719-0.15625 0.62109-0.46875 0.76562-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.28125 0-0.45312-0.125-0.51562-0.375-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.3125 0.16016-0.53906 0.48438-0.6875l0.015625-0.015625c0.070313-0.03125 0.14844-0.054687 0.23438-0.078125l-0.28125-0.125c-0.125-0.007812-0.23047-0.019531-0.3125-0.03125-0.38672 0-0.75781 0.15234-1.1094 0.45312-0.29297 0.26172-0.54297 0.60938-0.75 1.0469-0.023437 0.042969-0.039063 0.078125-0.046875 0.10938l-0.4375 1.8125-0.5625 2.2188c-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"/>
|
|
1053
|
+
</symbol>
|
|
1054
|
+
<symbol id="fj" overflow="visible">
|
|
1055
|
+
<path d="m4.6875-3.7188c0 0.36719-0.10547 0.875-0.3125 1.5312-0.38672 1.3047-0.92188 2.0547-1.6094 2.25-0.10547 0.03125-0.21484 0.046875-0.32812 0.046875-0.61719 0-1.0234-0.20703-1.2188-0.625-0.085938-0.17578-0.125-0.37891-0.125-0.60938 0-0.35156 0.14844-0.94141 0.45312-1.7656l0.10938-0.29688c0.11328-0.28906 0.17188-0.51953 0.17188-0.6875 0-0.21875-0.085937-0.32812-0.25-0.32812-0.35547 0-0.65234 0.29688-0.89062 0.89062-0.042969 0.10547-0.085938 0.22656-0.125 0.35938-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.125 0.070313-0.33594 0.21875-0.64062 0.28125-0.60156 0.64453-0.90625 1.0938-0.90625 0.35156 0 0.59766 0.15234 0.73438 0.45312 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.13672-0.042969 0.30469-0.125 0.5-0.36719 0.96094-0.55859 1.6211-0.57812 1.9844v0.125c0 0.53125 0.21094 0.82422 0.64062 0.875h0.09375c0.53906 0 1.0078-0.45312 1.4062-1.3594 0.22656-0.53125 0.35156-0.97656 0.375-1.3438 0-0.33203-0.11719-0.60938-0.34375-0.82812-0.10547-0.10156-0.15625-0.20312-0.15625-0.29688 0-0.16406 0.085938-0.30078 0.26562-0.40625 0.070313-0.050781 0.14453-0.078125 0.21875-0.078125 0.19531 0 0.33203 0.125 0.40625 0.375 0.03125 0.09375 0.046875 0.20312 0.046875 0.32812z"/>
|
|
1056
|
+
</symbol>
|
|
1057
|
+
<symbol id="fi" overflow="visible">
|
|
1058
|
+
<path d="m5.7188-3.2188v3.9219c0 0.28906-0.089844 0.44141-0.26562 0.45312-0.1875 0-0.28125-0.15234-0.28125-0.45312v-3.9219h-3.9219c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h3.9219v-3.9219c0-0.28906 0.09375-0.44141 0.28125-0.45312 0.17578 0 0.26562 0.15234 0.26562 0.45312v3.9219h3.9062c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
1059
|
+
</symbol>
|
|
1060
|
+
<symbol id="fh" overflow="visible">
|
|
1061
|
+
<path d="m6.5469-5.2031c0 0.51172-0.14062 1.2305-0.42188 2.1562-0.54297 1.8047-1.293 2.8438-2.25 3.125-0.14844 0.050781-0.30469 0.078125-0.46875 0.078125-0.85547 0-1.4219-0.29688-1.7031-0.89062-0.11719-0.23828-0.17188-0.51953-0.17188-0.84375 0-0.48828 0.21094-1.3125 0.64062-2.4688l0.15625-0.40625c0.15625-0.40625 0.23438-0.73438 0.23438-0.98438 0-0.28906-0.11719-0.4375-0.34375-0.4375-0.51172 0-0.92969 0.41406-1.25 1.2344-0.0625 0.15625-0.12109 0.32422-0.17188 0.5-0.10547 0.15625-0.17969 0.24219-0.21875 0.25-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.16406 0.10156-0.45703 0.3125-0.875 0.39453-0.85156 0.90625-1.2812 1.5312-1.2812 0.5 0 0.84766 0.21094 1.0469 0.625 0.070313 0.16797 0.10938 0.33984 0.10938 0.51562 0 0.19922-0.058594 0.43359-0.17188 0.70312-0.5 1.3438-0.77344 2.2773-0.8125 2.7969v0.17188c0 0.75 0.29688 1.1562 0.89062 1.2188h0.14062c0.75781 0 1.4141-0.63281 1.9688-1.9062 0.32031-0.73828 0.5-1.3672 0.53125-1.8906 0-0.45703-0.16406-0.83594-0.48438-1.1406-0.14844-0.14453-0.21875-0.28516-0.21875-0.42188 0-0.22656 0.11719-0.42188 0.35938-0.57812 0.10156-0.0625 0.21094-0.09375 0.32812-0.09375 0.26953 0 0.45703 0.17188 0.5625 0.51562 0.03125 0.13672 0.046875 0.29297 0.046875 0.46875z"/>
|
|
1062
|
+
</symbol>
|
|
1063
|
+
<symbol id="fg" overflow="visible">
|
|
1064
|
+
<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"/>
|
|
1065
|
+
</symbol>
|
|
1066
|
+
<symbol id="fe" overflow="visible">
|
|
1067
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
1068
|
+
</symbol>
|
|
1069
|
+
<symbol id="fd" overflow="visible">
|
|
1070
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
1071
|
+
</symbol>
|
|
1072
|
+
<symbol id="fc" overflow="visible">
|
|
1073
|
+
<path d="m2.8906-5.5938-1.0469 4.125c-0.054688 0.23047-0.078125 0.45312-0.078125 0.67188 0 0.42969 0.14453 0.64062 0.4375 0.64062 0.61328 0 1.1562-0.45312 1.625-1.3594l0.1875-0.4375c0.0625-0.11328 0.13281-0.17578 0.21875-0.1875 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.125-0.12109 0.39062-0.35938 0.79688-0.54297 0.90625-1.1641 1.3594-1.8594 1.3594-0.54297 0-0.92969-0.22266-1.1562-0.67188-0.09375-0.1875-0.14062-0.39453-0.14062-0.625 0-0.17578 0.28516-1.3828 0.85938-3.625l0.21875-0.82812h-1.2344c-0.24219 0-0.36719-0.039062-0.375-0.125h-0.015625v-0.046875c0-0.15625 0.070313-0.24219 0.21875-0.26562h1.5156l0.54688-2.2344c0.082031-0.32031 0.26562-0.48828 0.54688-0.5 0.25 0 0.38281 0.125 0.40625 0.375 0 0.0625-0.1875 0.85156-0.5625 2.3594h1.2344c0.23828 0 0.36719 0.054688 0.39062 0.15625 0 0.16797-0.078125 0.26172-0.23438 0.28125z"/>
|
|
1074
|
+
</symbol>
|
|
1075
|
+
<symbol id="fb" overflow="visible">
|
|
1076
|
+
<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"/>
|
|
1077
|
+
</symbol>
|
|
1078
|
+
<symbol id="fa" overflow="visible">
|
|
1079
|
+
<path d="m7.5156-8.3281h-4.4844c-0.28125 0-0.4375-0.066406-0.46875-0.20312-0.011719-0.019531-0.015625-0.046875-0.015625-0.078125 0.050781-0.1875 0.21094-0.28125 0.48438-0.28125h4.7188c-0.1875-0.23828-0.29688-0.50781-0.32812-0.8125 0-0.14453 0.0625-0.23828 0.1875-0.28125 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.13281 0 0.22656 0.10547 0.28125 0.3125 0.11328 0.35547 0.30078 0.62109 0.5625 0.79688 0.13281 0.09375 0.20312 0.1875 0.20312 0.28125 0 0.10547-0.078125 0.20312-0.23438 0.29688-0.42969 0.19922-0.79688 0.5-1.1094 0.90625-0.10547 0.125-0.19531 0.1875-0.26562 0.1875-0.13672 0-0.22656-0.066406-0.26562-0.20312-0.011719-0.03125-0.015625-0.054687-0.015625-0.078125 0-0.15625 0.21875-0.42969 0.65625-0.82812z"/>
|
|
1080
|
+
</symbol>
|
|
1081
|
+
<symbol id="ez" overflow="visible">
|
|
1082
|
+
<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.082031-0.45703 0.25-0.9375 0.0625-0.16406 0.125-0.30469 0.1875-0.42188 0.21875-0.45703 0.5-0.71875 0.84375-0.78125 0.0625-0.007813 0.125-0.015625 0.1875-0.015625 0.51953 0 0.89844 0.22656 1.1406 0.67188 0.050781 0.10547 0.09375 0.21484 0.125 0.32812 0.007813 0.023438 0.015625 0.046875 0.015625 0.078125 0.53906-0.67578 1.1328-1.0352 1.7812-1.0781 0.51953 0 0.875 0.18359 1.0625 0.54688 0.070312 0.11719 0.10938 0.23438 0.10938 0.35938 0 0.36719-0.15625 0.62109-0.46875 0.76562-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.28125 0-0.45312-0.125-0.51562-0.375-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.3125 0.16016-0.53906 0.48438-0.6875l0.015625-0.015625c0.070313-0.03125 0.14844-0.054687 0.23438-0.078125l-0.28125-0.125c-0.125-0.007812-0.23047-0.019531-0.3125-0.03125-0.38672 0-0.75781 0.15234-1.1094 0.45312-0.29297 0.26172-0.54297 0.60938-0.75 1.0469-0.023437 0.042969-0.039063 0.078125-0.046875 0.10938l-0.4375 1.8125-0.5625 2.2188c-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"/>
|
|
1083
|
+
</symbol>
|
|
1084
|
+
<symbol id="ey" overflow="visible">
|
|
1085
|
+
<path d="m4.6875-3.7188c0 0.36719-0.10547 0.875-0.3125 1.5312-0.38672 1.3047-0.92188 2.0547-1.6094 2.25-0.10547 0.03125-0.21484 0.046875-0.32812 0.046875-0.61719 0-1.0234-0.20703-1.2188-0.625-0.085938-0.17578-0.125-0.37891-0.125-0.60938 0-0.35156 0.14844-0.94141 0.45312-1.7656l0.10938-0.29688c0.11328-0.28906 0.17188-0.51953 0.17188-0.6875 0-0.21875-0.085937-0.32812-0.25-0.32812-0.35547 0-0.65234 0.29688-0.89062 0.89062-0.042969 0.10547-0.085938 0.22656-0.125 0.35938-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.125 0.070313-0.33594 0.21875-0.64062 0.28125-0.60156 0.64453-0.90625 1.0938-0.90625 0.35156 0 0.59766 0.15234 0.73438 0.45312 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.13672-0.042969 0.30469-0.125 0.5-0.36719 0.96094-0.55859 1.6211-0.57812 1.9844v0.125c0 0.53125 0.21094 0.82422 0.64062 0.875h0.09375c0.53906 0 1.0078-0.45312 1.4062-1.3594 0.22656-0.53125 0.35156-0.97656 0.375-1.3438 0-0.33203-0.11719-0.60938-0.34375-0.82812-0.10547-0.10156-0.15625-0.20312-0.15625-0.29688 0-0.16406 0.085938-0.30078 0.26562-0.40625 0.070313-0.050781 0.14453-0.078125 0.21875-0.078125 0.19531 0 0.33203 0.125 0.40625 0.375 0.03125 0.09375 0.046875 0.20312 0.046875 0.32812z"/>
|
|
1086
|
+
</symbol>
|
|
1087
|
+
<symbol id="ex" overflow="visible">
|
|
1088
|
+
<path d="m2.6875-3.5c0 0.3125-0.14062 0.53906-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.13281-0.67188-0.40625-0.054688-0.10156-0.078125-0.21094-0.078125-0.32812 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.039063 0.21094-0.0625 0.32812-0.0625 0.30078 0 0.52344 0.13672 0.67188 0.40625 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
1089
|
+
</symbol>
|
|
1090
|
+
<symbol id="ew" overflow="visible">
|
|
1091
|
+
<path d="m7.5156-8.3281h-4.4844c-0.28125 0-0.4375-0.066406-0.46875-0.20312-0.011719-0.019531-0.015625-0.046875-0.015625-0.078125 0.050781-0.1875 0.21094-0.28125 0.48438-0.28125h4.7188c-0.1875-0.23828-0.29688-0.50781-0.32812-0.8125 0-0.14453 0.0625-0.23828 0.1875-0.28125 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.13281 0 0.22656 0.10547 0.28125 0.3125 0.11328 0.35547 0.30078 0.62109 0.5625 0.79688 0.13281 0.09375 0.20312 0.1875 0.20312 0.28125 0 0.10547-0.078125 0.20312-0.23438 0.29688-0.42969 0.19922-0.79688 0.5-1.1094 0.90625-0.10547 0.125-0.19531 0.1875-0.26562 0.1875-0.13672 0-0.22656-0.066406-0.26562-0.20312-0.011719-0.03125-0.015625-0.054687-0.015625-0.078125 0-0.15625 0.21875-0.42969 0.65625-0.82812z"/>
|
|
1092
|
+
</symbol>
|
|
1093
|
+
<symbol id="ev" overflow="visible">
|
|
1094
|
+
<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.082031-0.45703 0.25-0.9375 0.0625-0.16406 0.125-0.30469 0.1875-0.42188 0.21875-0.45703 0.5-0.71875 0.84375-0.78125 0.0625-0.007813 0.125-0.015625 0.1875-0.015625 0.51953 0 0.89844 0.22656 1.1406 0.67188 0.050781 0.10547 0.09375 0.21484 0.125 0.32812 0.007813 0.023438 0.015625 0.046875 0.015625 0.078125 0.53906-0.67578 1.1328-1.0352 1.7812-1.0781 0.51953 0 0.875 0.18359 1.0625 0.54688 0.070312 0.11719 0.10938 0.23438 0.10938 0.35938 0 0.36719-0.15625 0.62109-0.46875 0.76562-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.28125 0-0.45312-0.125-0.51562-0.375-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.3125 0.16016-0.53906 0.48438-0.6875l0.015625-0.015625c0.070313-0.03125 0.14844-0.054687 0.23438-0.078125l-0.28125-0.125c-0.125-0.007812-0.23047-0.019531-0.3125-0.03125-0.38672 0-0.75781 0.15234-1.1094 0.45312-0.29297 0.26172-0.54297 0.60938-0.75 1.0469-0.023437 0.042969-0.039063 0.078125-0.046875 0.10938l-0.4375 1.8125-0.5625 2.2188c-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"/>
|
|
1095
|
+
</symbol>
|
|
1096
|
+
<symbol id="eu" overflow="visible">
|
|
1097
|
+
<path d="m4.6875-3.7188c0 0.36719-0.10547 0.875-0.3125 1.5312-0.38672 1.3047-0.92188 2.0547-1.6094 2.25-0.10547 0.03125-0.21484 0.046875-0.32812 0.046875-0.61719 0-1.0234-0.20703-1.2188-0.625-0.085938-0.17578-0.125-0.37891-0.125-0.60938 0-0.35156 0.14844-0.94141 0.45312-1.7656l0.10938-0.29688c0.11328-0.28906 0.17188-0.51953 0.17188-0.6875 0-0.21875-0.085937-0.32812-0.25-0.32812-0.35547 0-0.65234 0.29688-0.89062 0.89062-0.042969 0.10547-0.085938 0.22656-0.125 0.35938-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.125 0.070313-0.33594 0.21875-0.64062 0.28125-0.60156 0.64453-0.90625 1.0938-0.90625 0.35156 0 0.59766 0.15234 0.73438 0.45312 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.13672-0.042969 0.30469-0.125 0.5-0.36719 0.96094-0.55859 1.6211-0.57812 1.9844v0.125c0 0.53125 0.21094 0.82422 0.64062 0.875h0.09375c0.53906 0 1.0078-0.45312 1.4062-1.3594 0.22656-0.53125 0.35156-0.97656 0.375-1.3438 0-0.33203-0.11719-0.60938-0.34375-0.82812-0.10547-0.10156-0.15625-0.20312-0.15625-0.29688 0-0.16406 0.085938-0.30078 0.26562-0.40625 0.070313-0.050781 0.14453-0.078125 0.21875-0.078125 0.19531 0 0.33203 0.125 0.40625 0.375 0.03125 0.09375 0.046875 0.20312 0.046875 0.32812z"/>
|
|
1098
|
+
</symbol>
|
|
1099
|
+
<symbol id="et" overflow="visible">
|
|
1100
|
+
<path d="m7.2188-9.5625-2.0156 8.0938c-0.054687 0.23047-0.078125 0.45312-0.078125 0.67188 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.89062l0.84375-3.3125 0.046875-0.28125c0-0.10156-0.070313-0.17188-0.20312-0.20312-0.11719-0.019531-0.28125-0.03125-0.5-0.03125-0.21094 0-0.32422-0.054688-0.34375-0.17188 0-0.15625 0.066406-0.24219 0.20312-0.26562 0.875-0.10156 1.4688-0.15625 1.7812-0.15625 0.11328 0 0.17188 0.054688 0.17188 0.15625zm-2.9062 7.8906 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"/>
|
|
1101
|
+
</symbol>
|
|
1102
|
+
<symbol id="es" overflow="visible">
|
|
1103
|
+
<path d="m2.8906-5.5938-1.0469 4.125c-0.054688 0.23047-0.078125 0.45312-0.078125 0.67188 0 0.42969 0.14453 0.64062 0.4375 0.64062 0.61328 0 1.1562-0.45312 1.625-1.3594l0.1875-0.4375c0.0625-0.11328 0.13281-0.17578 0.21875-0.1875 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.125-0.12109 0.39062-0.35938 0.79688-0.54297 0.90625-1.1641 1.3594-1.8594 1.3594-0.54297 0-0.92969-0.22266-1.1562-0.67188-0.09375-0.1875-0.14062-0.39453-0.14062-0.625 0-0.17578 0.28516-1.3828 0.85938-3.625l0.21875-0.82812h-1.2344c-0.24219 0-0.36719-0.039062-0.375-0.125h-0.015625v-0.046875c0-0.15625 0.070313-0.24219 0.21875-0.26562h1.5156l0.54688-2.2344c0.082031-0.32031 0.26562-0.48828 0.54688-0.5 0.25 0 0.38281 0.125 0.40625 0.375 0 0.0625-0.1875 0.85156-0.5625 2.3594h1.2344c0.23828 0 0.36719 0.054688 0.39062 0.15625 0 0.16797-0.078125 0.26172-0.23438 0.28125z"/>
|
|
1104
|
+
</symbol>
|
|
1105
|
+
<symbol id="er" overflow="visible">
|
|
1106
|
+
<path d="m2.6875-0.73438c0 0.30469-0.14062 0.52734-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.14062-0.67188-0.42188-0.054688-0.10156-0.078125-0.20703-0.078125-0.3125 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.050781 0.21094-0.078125 0.32812-0.078125 0.30078 0 0.52344 0.14062 0.67188 0.42188 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
1107
|
+
</symbol>
|
|
1108
|
+
</defs>
|
|
1109
|
+
<rect width="515" height="443" fill="#fff"/>
|
|
1110
|
+
<g>
|
|
1111
|
+
<use x="17" y="23.515625" xlink:href="#nd"/>
|
|
1112
|
+
</g>
|
|
1113
|
+
<g>
|
|
1114
|
+
<use x="24.777344" y="23.515625" xlink:href="#nb"/>
|
|
1115
|
+
</g>
|
|
1116
|
+
<g>
|
|
1117
|
+
<use x="35.195312" y="23.515625" xlink:href="#nc"/>
|
|
1118
|
+
</g>
|
|
1119
|
+
<g>
|
|
1120
|
+
<use x="48.417969" y="23.515625" xlink:href="#ha"/>
|
|
1121
|
+
</g>
|
|
1122
|
+
<g>
|
|
1123
|
+
<use x="58.527344" y="17.652344" xlink:href="#ek"/>
|
|
1124
|
+
</g>
|
|
1125
|
+
<g>
|
|
1126
|
+
<use x="58.527344" y="27.316406" xlink:href="#dz"/>
|
|
1127
|
+
</g>
|
|
1128
|
+
<g>
|
|
1129
|
+
<use x="71.316406" y="23.515625" xlink:href="#dm"/>
|
|
1130
|
+
</g>
|
|
1131
|
+
<g>
|
|
1132
|
+
<use x="79.09375" y="23.515625" xlink:href="#cz"/>
|
|
1133
|
+
</g>
|
|
1134
|
+
<g>
|
|
1135
|
+
<use x="89.9375" y="23.515625" xlink:href="#cy"/>
|
|
1136
|
+
</g>
|
|
1137
|
+
<g>
|
|
1138
|
+
<use x="104.714844" y="23.515625" xlink:href="#cj"/>
|
|
1139
|
+
</g>
|
|
1140
|
+
<g>
|
|
1141
|
+
<use x="116.378906" y="23.515625" xlink:href="#dl"/>
|
|
1142
|
+
</g>
|
|
1143
|
+
<g>
|
|
1144
|
+
<use x="120.269531" y="23.515625" xlink:href="#o"/>
|
|
1145
|
+
</g>
|
|
1146
|
+
<g>
|
|
1147
|
+
<use x="131.382813" y="23.515625" xlink:href="#dk"/>
|
|
1148
|
+
</g>
|
|
1149
|
+
<g>
|
|
1150
|
+
<use x="145.382813" y="23.515625" xlink:href="#o"/>
|
|
1151
|
+
</g>
|
|
1152
|
+
<g>
|
|
1153
|
+
<use x="153.382813" y="25.613281" xlink:href="#bu"/>
|
|
1154
|
+
</g>
|
|
1155
|
+
<g>
|
|
1156
|
+
<use x="158.28125" y="23.515625" xlink:href="#m"/>
|
|
1157
|
+
</g>
|
|
1158
|
+
<g>
|
|
1159
|
+
<use x="166.0625" y="23.515625" xlink:href="#bj"/>
|
|
1160
|
+
</g>
|
|
1161
|
+
<g>
|
|
1162
|
+
<use x="180.839844" y="23.515625" xlink:href="#na"/>
|
|
1163
|
+
</g>
|
|
1164
|
+
<g>
|
|
1165
|
+
<use x="191.679688" y="23.515625" xlink:href="#ml"/>
|
|
1166
|
+
</g>
|
|
1167
|
+
<g>
|
|
1168
|
+
<use x="200.546875" y="23.515625" xlink:href="#bi"/>
|
|
1169
|
+
</g>
|
|
1170
|
+
<g>
|
|
1171
|
+
<use x="218.433594" y="23.515625" xlink:href="#m"/>
|
|
1172
|
+
</g>
|
|
1173
|
+
<g>
|
|
1174
|
+
<use x="222.324219" y="23.515625" xlink:href="#ar"/>
|
|
1175
|
+
</g>
|
|
1176
|
+
<g>
|
|
1177
|
+
<use x="230.683594" y="23.515625" xlink:href="#ao"/>
|
|
1178
|
+
</g>
|
|
1179
|
+
<g>
|
|
1180
|
+
<use x="236.128906" y="23.515625" xlink:href="#aq"/>
|
|
1181
|
+
</g>
|
|
1182
|
+
<g>
|
|
1183
|
+
<use x="244.128906" y="23.515625" xlink:href="#mk"/>
|
|
1184
|
+
</g>
|
|
1185
|
+
<g>
|
|
1186
|
+
<use x="252.6875" y="23.515625" xlink:href="#bh"/>
|
|
1187
|
+
</g>
|
|
1188
|
+
<g>
|
|
1189
|
+
<use x="266.6875" y="23.515625" xlink:href="#ar"/>
|
|
1190
|
+
</g>
|
|
1191
|
+
<g>
|
|
1192
|
+
<use x="275.046875" y="23.515625" xlink:href="#ao"/>
|
|
1193
|
+
</g>
|
|
1194
|
+
<g>
|
|
1195
|
+
<use x="280.492188" y="23.515625" xlink:href="#aq"/>
|
|
1196
|
+
</g>
|
|
1197
|
+
<g>
|
|
1198
|
+
<use x="288.492188" y="25.613281" xlink:href="#lz"/>
|
|
1199
|
+
</g>
|
|
1200
|
+
<g>
|
|
1201
|
+
<use x="293.394531" y="23.515625" xlink:href="#lm"/>
|
|
1202
|
+
</g>
|
|
1203
|
+
<g>
|
|
1204
|
+
<use x="298.835938" y="23.515625" xlink:href="#ku"/>
|
|
1205
|
+
</g>
|
|
1206
|
+
<g>
|
|
1207
|
+
<use x="306.617188" y="23.515625" xlink:href="#kt"/>
|
|
1208
|
+
</g>
|
|
1209
|
+
<g>
|
|
1210
|
+
<use x="321.394531" y="23.515625" xlink:href="#ke"/>
|
|
1211
|
+
</g>
|
|
1212
|
+
<g>
|
|
1213
|
+
<use x="17" y="70.917969" xlink:href="#ll"/>
|
|
1214
|
+
</g>
|
|
1215
|
+
<g>
|
|
1216
|
+
<use x="24.777344" y="70.917969" xlink:href="#lk"/>
|
|
1217
|
+
</g>
|
|
1218
|
+
<g>
|
|
1219
|
+
<use x="31" y="70.917969" xlink:href="#lj"/>
|
|
1220
|
+
</g>
|
|
1221
|
+
<g>
|
|
1222
|
+
<use x="38.777344" y="34.378906" xlink:href="#jq"/>
|
|
1223
|
+
</g>
|
|
1224
|
+
<g>
|
|
1225
|
+
<use x="38.777344" y="59.019531" xlink:href="#ad"/>
|
|
1226
|
+
</g>
|
|
1227
|
+
<g>
|
|
1228
|
+
<use x="38.777344" y="67.417969" xlink:href="#ad"/>
|
|
1229
|
+
</g>
|
|
1230
|
+
<g>
|
|
1231
|
+
<use x="38.777344" y="76.378906" xlink:href="#jp"/>
|
|
1232
|
+
</g>
|
|
1233
|
+
<g>
|
|
1234
|
+
<use x="48.601562" y="44.574219" xlink:href="#kd"/>
|
|
1235
|
+
</g>
|
|
1236
|
+
<g>
|
|
1237
|
+
<use x="56.003906" y="46.671875" xlink:href="#iq"/>
|
|
1238
|
+
</g>
|
|
1239
|
+
<g>
|
|
1240
|
+
<use x="60.902344" y="46.671875" xlink:href="#ie"/>
|
|
1241
|
+
</g>
|
|
1242
|
+
<g>
|
|
1243
|
+
<use x="80.292969" y="44.574219" xlink:href="#hs"/>
|
|
1244
|
+
</g>
|
|
1245
|
+
<g>
|
|
1246
|
+
<use x="87.695312" y="46.671875" xlink:href="#gz"/>
|
|
1247
|
+
</g>
|
|
1248
|
+
<g>
|
|
1249
|
+
<use x="92.59375" y="46.671875" xlink:href="#gj"/>
|
|
1250
|
+
</g>
|
|
1251
|
+
<g>
|
|
1252
|
+
<use x="111.492188" y="44.574219" xlink:href="#g"/>
|
|
1253
|
+
</g>
|
|
1254
|
+
<g>
|
|
1255
|
+
<use x="117.714844" y="44.574219" xlink:href="#g"/>
|
|
1256
|
+
</g>
|
|
1257
|
+
<g>
|
|
1258
|
+
<use x="123.9375" y="44.574219" xlink:href="#g"/>
|
|
1259
|
+
</g>
|
|
1260
|
+
<g>
|
|
1261
|
+
<use x="142.320312" y="44.574219" xlink:href="#ff"/>
|
|
1262
|
+
</g>
|
|
1263
|
+
<g>
|
|
1264
|
+
<use x="149.71875" y="46.671875" xlink:href="#eq"/>
|
|
1265
|
+
</g>
|
|
1266
|
+
<g>
|
|
1267
|
+
<use x="154.617188" y="46.671875" xlink:href="#ep"/>
|
|
1268
|
+
</g>
|
|
1269
|
+
<g>
|
|
1270
|
+
<use x="48.601562" y="63.355469" xlink:href="#eo"/>
|
|
1271
|
+
</g>
|
|
1272
|
+
<g>
|
|
1273
|
+
<use x="56.003906" y="65.457031" xlink:href="#en"/>
|
|
1274
|
+
</g>
|
|
1275
|
+
<g>
|
|
1276
|
+
<use x="60.902344" y="65.457031" xlink:href="#em"/>
|
|
1277
|
+
</g>
|
|
1278
|
+
<g>
|
|
1279
|
+
<use x="80.726562" y="54.179688" xlink:href="#a"/>
|
|
1280
|
+
</g>
|
|
1281
|
+
<g>
|
|
1282
|
+
<use x="86.949219" y="58.765625" xlink:href="#a"/>
|
|
1283
|
+
</g>
|
|
1284
|
+
<g>
|
|
1285
|
+
<use x="93.171875" y="63.355469" xlink:href="#a"/>
|
|
1286
|
+
</g>
|
|
1287
|
+
<g>
|
|
1288
|
+
<use x="149.464844" y="54.179688" xlink:href="#a"/>
|
|
1289
|
+
</g>
|
|
1290
|
+
<g>
|
|
1291
|
+
<use x="149.464844" y="58.765625" xlink:href="#a"/>
|
|
1292
|
+
</g>
|
|
1293
|
+
<g>
|
|
1294
|
+
<use x="149.464844" y="63.355469" xlink:href="#a"/>
|
|
1295
|
+
</g>
|
|
1296
|
+
<g>
|
|
1297
|
+
<use x="55.257812" y="72.960938" xlink:href="#a"/>
|
|
1298
|
+
</g>
|
|
1299
|
+
<g>
|
|
1300
|
+
<use x="55.257812" y="77.550781" xlink:href="#a"/>
|
|
1301
|
+
</g>
|
|
1302
|
+
<g>
|
|
1303
|
+
<use x="55.257812" y="82.140625" xlink:href="#a"/>
|
|
1304
|
+
</g>
|
|
1305
|
+
<g>
|
|
1306
|
+
<use x="111.492187" y="72.960938" xlink:href="#a"/>
|
|
1307
|
+
</g>
|
|
1308
|
+
<g>
|
|
1309
|
+
<use x="117.714844" y="77.550781" xlink:href="#a"/>
|
|
1310
|
+
</g>
|
|
1311
|
+
<g>
|
|
1312
|
+
<use x="123.9375" y="82.140625" xlink:href="#a"/>
|
|
1313
|
+
</g>
|
|
1314
|
+
<g>
|
|
1315
|
+
<use x="149.464844" y="72.960938" xlink:href="#a"/>
|
|
1316
|
+
</g>
|
|
1317
|
+
<g>
|
|
1318
|
+
<use x="149.464844" y="77.550781" xlink:href="#a"/>
|
|
1319
|
+
</g>
|
|
1320
|
+
<g>
|
|
1321
|
+
<use x="149.464844" y="82.140625" xlink:href="#a"/>
|
|
1322
|
+
</g>
|
|
1323
|
+
<g>
|
|
1324
|
+
<use x="48.109375" y="94.390625" xlink:href="#el"/>
|
|
1325
|
+
</g>
|
|
1326
|
+
<g>
|
|
1327
|
+
<use x="55.511719" y="96.488281" xlink:href="#ej"/>
|
|
1328
|
+
</g>
|
|
1329
|
+
<g>
|
|
1330
|
+
<use x="61.394531" y="96.488281" xlink:href="#ei"/>
|
|
1331
|
+
</g>
|
|
1332
|
+
<g>
|
|
1333
|
+
<use x="80.726562" y="94.390625" xlink:href="#c"/>
|
|
1334
|
+
</g>
|
|
1335
|
+
<g>
|
|
1336
|
+
<use x="86.949219" y="94.390625" xlink:href="#c"/>
|
|
1337
|
+
</g>
|
|
1338
|
+
<g>
|
|
1339
|
+
<use x="93.171875" y="94.390625" xlink:href="#c"/>
|
|
1340
|
+
</g>
|
|
1341
|
+
<g>
|
|
1342
|
+
<use x="111.492188" y="94.390625" xlink:href="#c"/>
|
|
1343
|
+
</g>
|
|
1344
|
+
<g>
|
|
1345
|
+
<use x="117.714844" y="94.390625" xlink:href="#c"/>
|
|
1346
|
+
</g>
|
|
1347
|
+
<g>
|
|
1348
|
+
<use x="123.9375" y="94.390625" xlink:href="#c"/>
|
|
1349
|
+
</g>
|
|
1350
|
+
<g>
|
|
1351
|
+
<use x="141.828125" y="94.390625" xlink:href="#eh"/>
|
|
1352
|
+
</g>
|
|
1353
|
+
<g>
|
|
1354
|
+
<use x="149.226563" y="96.488281" xlink:href="#eg"/>
|
|
1355
|
+
</g>
|
|
1356
|
+
<g>
|
|
1357
|
+
<use x="155.109375" y="96.488281" xlink:href="#ef"/>
|
|
1358
|
+
</g>
|
|
1359
|
+
<g>
|
|
1360
|
+
<use x="160.992188" y="34.378906" xlink:href="#ee"/>
|
|
1361
|
+
</g>
|
|
1362
|
+
<g>
|
|
1363
|
+
<use x="160.992188" y="59.019531" xlink:href="#p"/>
|
|
1364
|
+
</g>
|
|
1365
|
+
<g>
|
|
1366
|
+
<use x="160.992188" y="67.417969" xlink:href="#p"/>
|
|
1367
|
+
</g>
|
|
1368
|
+
<g>
|
|
1369
|
+
<use x="160.992188" y="76.378906" xlink:href="#ed"/>
|
|
1370
|
+
</g>
|
|
1371
|
+
<g>
|
|
1372
|
+
<use x="174.214844" y="63.839844" xlink:href="#ec"/>
|
|
1373
|
+
</g>
|
|
1374
|
+
<g>
|
|
1375
|
+
<use x="179.660156" y="63.839844" xlink:href="#eb"/>
|
|
1376
|
+
</g>
|
|
1377
|
+
<g>
|
|
1378
|
+
<use x="184.015625" y="63.839844" xlink:href="#ea"/>
|
|
1379
|
+
</g>
|
|
1380
|
+
<g>
|
|
1381
|
+
<use x="175.546875" y="70.917969" xlink:href="#dy"/>
|
|
1382
|
+
</g>
|
|
1383
|
+
<g>
|
|
1384
|
+
<use x="193.777344" y="56.21875" xlink:href="#dx"/>
|
|
1385
|
+
</g>
|
|
1386
|
+
<g>
|
|
1387
|
+
<use x="191.660156" y="86.328125" xlink:href="#dw"/>
|
|
1388
|
+
</g>
|
|
1389
|
+
<g>
|
|
1390
|
+
<use x="197.261719" y="86.328125" xlink:href="#dv"/>
|
|
1391
|
+
</g>
|
|
1392
|
+
<g>
|
|
1393
|
+
<use x="203.792969" y="86.328125" xlink:href="#du"/>
|
|
1394
|
+
</g>
|
|
1395
|
+
<g>
|
|
1396
|
+
<use x="211.914063" y="87.800781" xlink:href="#dt"/>
|
|
1397
|
+
</g>
|
|
1398
|
+
<g>
|
|
1399
|
+
<use x="218.449219" y="70.917969" xlink:href="#ds"/>
|
|
1400
|
+
</g>
|
|
1401
|
+
<g>
|
|
1402
|
+
<use x="224.976563" y="70.917969" xlink:href="#dq"/>
|
|
1403
|
+
</g>
|
|
1404
|
+
<g>
|
|
1405
|
+
<use x="230.421875" y="70.917969" xlink:href="#dr"/>
|
|
1406
|
+
</g>
|
|
1407
|
+
<g>
|
|
1408
|
+
<use x="238.421875" y="70.917969" xlink:href="#dp"/>
|
|
1409
|
+
</g>
|
|
1410
|
+
<g>
|
|
1411
|
+
<use x="252.222656" y="52.019531" xlink:href="#do"/>
|
|
1412
|
+
</g>
|
|
1413
|
+
<g>
|
|
1414
|
+
<use x="246.222656" y="56.21875" xlink:href="#dn"/>
|
|
1415
|
+
</g>
|
|
1416
|
+
<g>
|
|
1417
|
+
<use x="246.199219" y="86.359375" xlink:href="#dj"/>
|
|
1418
|
+
</g>
|
|
1419
|
+
<g>
|
|
1420
|
+
<use x="251.609375" y="86.359375" xlink:href="#di"/>
|
|
1421
|
+
</g>
|
|
1422
|
+
<g>
|
|
1423
|
+
<use x="259.230469" y="86.359375" xlink:href="#dh"/>
|
|
1424
|
+
</g>
|
|
1425
|
+
<g>
|
|
1426
|
+
<use x="266.464844" y="70.917969" xlink:href="#dg"/>
|
|
1427
|
+
</g>
|
|
1428
|
+
<g>
|
|
1429
|
+
<use x="273.867188" y="73.449219" xlink:href="#df"/>
|
|
1430
|
+
</g>
|
|
1431
|
+
<g>
|
|
1432
|
+
<use x="279.277344" y="73.449219" xlink:href="#de"/>
|
|
1433
|
+
</g>
|
|
1434
|
+
<g>
|
|
1435
|
+
<use x="284.875" y="73.449219" xlink:href="#dd"/>
|
|
1436
|
+
</g>
|
|
1437
|
+
<g>
|
|
1438
|
+
<use x="288.6875" y="73.449219" xlink:href="#dc"/>
|
|
1439
|
+
</g>
|
|
1440
|
+
<g>
|
|
1441
|
+
<use x="294.097656" y="73.449219" xlink:href="#db"/>
|
|
1442
|
+
</g>
|
|
1443
|
+
<g>
|
|
1444
|
+
<use x="17.726562" y="113.851563" xlink:href="#da"/>
|
|
1445
|
+
</g>
|
|
1446
|
+
<g>
|
|
1447
|
+
<use x="17" y="144.160156" xlink:href="#cx"/>
|
|
1448
|
+
</g>
|
|
1449
|
+
<g>
|
|
1450
|
+
<use x="23.769531" y="110.628906" xlink:href="#cw"/>
|
|
1451
|
+
</g>
|
|
1452
|
+
<g>
|
|
1453
|
+
<use x="34.074219" y="123.855469" xlink:href="#cu"/>
|
|
1454
|
+
</g>
|
|
1455
|
+
<g>
|
|
1456
|
+
<use x="56.113281" y="123.855469" xlink:href="#ct"/>
|
|
1457
|
+
</g>
|
|
1458
|
+
<g>
|
|
1459
|
+
<use x="34.746094" y="139.605469" xlink:href="#cs"/>
|
|
1460
|
+
</g>
|
|
1461
|
+
<g>
|
|
1462
|
+
<use x="55.476562" y="139.605469" xlink:href="#cr"/>
|
|
1463
|
+
</g>
|
|
1464
|
+
<g>
|
|
1465
|
+
<use x="62.761719" y="110.628906" xlink:href="#cv"/>
|
|
1466
|
+
</g>
|
|
1467
|
+
<g>
|
|
1468
|
+
<use x="73.066406" y="113.851563" xlink:href="#cq"/>
|
|
1469
|
+
</g>
|
|
1470
|
+
<g>
|
|
1471
|
+
<use x="73.066406" y="144.160156" xlink:href="#cp"/>
|
|
1472
|
+
</g>
|
|
1473
|
+
<g>
|
|
1474
|
+
<use x="17" y="154.660156" xlink:href="#co"/>
|
|
1475
|
+
</g>
|
|
1476
|
+
<g>
|
|
1477
|
+
<use x="31" y="158.441406" xlink:href="#cn"/>
|
|
1478
|
+
</g>
|
|
1479
|
+
<g>
|
|
1480
|
+
<use x="24.777344" y="186.261719" xlink:href="#cm"/>
|
|
1481
|
+
</g>
|
|
1482
|
+
<g>
|
|
1483
|
+
<use x="46.746094" y="173.714844" xlink:href="#cl"/>
|
|
1484
|
+
</g>
|
|
1485
|
+
<g>
|
|
1486
|
+
<use x="54.746094" y="167.933594" xlink:href="#ck"/>
|
|
1487
|
+
</g>
|
|
1488
|
+
<g>
|
|
1489
|
+
<use x="59.644531" y="167.933594" xlink:href="#ci"/>
|
|
1490
|
+
</g>
|
|
1491
|
+
<g>
|
|
1492
|
+
<use x="66.027344" y="173.714844" xlink:href="#ch"/>
|
|
1493
|
+
</g>
|
|
1494
|
+
<g>
|
|
1495
|
+
<use x="72.546875" y="167.933594" xlink:href="#cg"/>
|
|
1496
|
+
</g>
|
|
1497
|
+
<g>
|
|
1498
|
+
<use x="80.167969" y="167.933594" xlink:href="#cf"/>
|
|
1499
|
+
</g>
|
|
1500
|
+
<g>
|
|
1501
|
+
<use x="85.347656" y="167.933594" xlink:href="#ce"/>
|
|
1502
|
+
</g>
|
|
1503
|
+
<g>
|
|
1504
|
+
<use x="90.949219" y="164.378906" xlink:href="#cd"/>
|
|
1505
|
+
</g>
|
|
1506
|
+
<g>
|
|
1507
|
+
<use x="97.785156" y="173.714844" xlink:href="#cc"/>
|
|
1508
|
+
</g>
|
|
1509
|
+
<g>
|
|
1510
|
+
<use x="105.070312" y="173.714844" xlink:href="#cb"/>
|
|
1511
|
+
</g>
|
|
1512
|
+
<g>
|
|
1513
|
+
<use x="116.960938" y="173.714844" xlink:href="#by"/>
|
|
1514
|
+
</g>
|
|
1515
|
+
<g>
|
|
1516
|
+
<use x="133.417969" y="164.242188" xlink:href="#n"/>
|
|
1517
|
+
</g>
|
|
1518
|
+
<g>
|
|
1519
|
+
<use x="140.417969" y="164.242188" xlink:href="#ca"/>
|
|
1520
|
+
</g>
|
|
1521
|
+
<g>
|
|
1522
|
+
<use x="151.933594" y="164.242188" xlink:href="#bw"/>
|
|
1523
|
+
</g>
|
|
1524
|
+
<g>
|
|
1525
|
+
<use x="165.933594" y="164.242188" xlink:href="#bx"/>
|
|
1526
|
+
</g>
|
|
1527
|
+
<path transform="matrix(14 0 0 14 -3.9839e-5 -2.5356e-5)" d="m9.5299 12.158h2.8225" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
1528
|
+
<g>
|
|
1529
|
+
<use x="145.976563" y="183.316406" xlink:href="#n"/>
|
|
1530
|
+
</g>
|
|
1531
|
+
<g>
|
|
1532
|
+
<use x="152.976563" y="183.316406" xlink:href="#bz"/>
|
|
1533
|
+
</g>
|
|
1534
|
+
<g>
|
|
1535
|
+
<use x="176.945313" y="154.660156" xlink:href="#bv"/>
|
|
1536
|
+
</g>
|
|
1537
|
+
<g>
|
|
1538
|
+
<use x="190.945313" y="158.441406" xlink:href="#bt"/>
|
|
1539
|
+
</g>
|
|
1540
|
+
<g>
|
|
1541
|
+
<use x="184.722656" y="186.261719" xlink:href="#bs"/>
|
|
1542
|
+
</g>
|
|
1543
|
+
<g>
|
|
1544
|
+
<use x="206.691406" y="173.714844" xlink:href="#br"/>
|
|
1545
|
+
</g>
|
|
1546
|
+
<g>
|
|
1547
|
+
<use x="214.691406" y="167.933594" xlink:href="#bq"/>
|
|
1548
|
+
</g>
|
|
1549
|
+
<g>
|
|
1550
|
+
<use x="219.59375" y="167.933594" xlink:href="#bp"/>
|
|
1551
|
+
</g>
|
|
1552
|
+
<g>
|
|
1553
|
+
<use x="223.402344" y="167.933594" xlink:href="#bo"/>
|
|
1554
|
+
</g>
|
|
1555
|
+
<g>
|
|
1556
|
+
<use x="229.285156" y="167.933594" xlink:href="#bn"/>
|
|
1557
|
+
</g>
|
|
1558
|
+
<g>
|
|
1559
|
+
<use x="236.910156" y="167.933594" xlink:href="#bm"/>
|
|
1560
|
+
</g>
|
|
1561
|
+
<g>
|
|
1562
|
+
<use x="241.808594" y="167.933594" xlink:href="#bl"/>
|
|
1563
|
+
</g>
|
|
1564
|
+
<g>
|
|
1565
|
+
<use x="246.121094" y="173.714844" xlink:href="#bk"/>
|
|
1566
|
+
</g>
|
|
1567
|
+
<g>
|
|
1568
|
+
<use x="252.636719" y="167.933594" xlink:href="#bg"/>
|
|
1569
|
+
</g>
|
|
1570
|
+
<g>
|
|
1571
|
+
<use x="260.261719" y="167.933594" xlink:href="#bf"/>
|
|
1572
|
+
</g>
|
|
1573
|
+
<g>
|
|
1574
|
+
<use x="265.441406" y="167.933594" xlink:href="#be"/>
|
|
1575
|
+
</g>
|
|
1576
|
+
<g>
|
|
1577
|
+
<use x="271.042969" y="164.378906" xlink:href="#bd"/>
|
|
1578
|
+
</g>
|
|
1579
|
+
<g>
|
|
1580
|
+
<use x="277.875" y="173.714844" xlink:href="#bc"/>
|
|
1581
|
+
</g>
|
|
1582
|
+
<g>
|
|
1583
|
+
<use x="285.160156" y="173.714844" xlink:href="#bb"/>
|
|
1584
|
+
</g>
|
|
1585
|
+
<g>
|
|
1586
|
+
<use x="297.050781" y="173.714844" xlink:href="#az"/>
|
|
1587
|
+
</g>
|
|
1588
|
+
<g>
|
|
1589
|
+
<use x="313.511719" y="164.242188" xlink:href="#ay"/>
|
|
1590
|
+
</g>
|
|
1591
|
+
<g>
|
|
1592
|
+
<use x="318.953125" y="164.242188" xlink:href="#l"/>
|
|
1593
|
+
</g>
|
|
1594
|
+
<g>
|
|
1595
|
+
<use x="325.953125" y="164.242188" xlink:href="#ba"/>
|
|
1596
|
+
</g>
|
|
1597
|
+
<g>
|
|
1598
|
+
<use x="337.46875" y="164.242188" xlink:href="#av"/>
|
|
1599
|
+
</g>
|
|
1600
|
+
<g>
|
|
1601
|
+
<use x="351.46875" y="164.242188" xlink:href="#ax"/>
|
|
1602
|
+
</g>
|
|
1603
|
+
<g>
|
|
1604
|
+
<use x="358.46875" y="164.242188" xlink:href="#aw"/>
|
|
1605
|
+
</g>
|
|
1606
|
+
<g>
|
|
1607
|
+
<use x="363.914063" y="164.242188" xlink:href="#k"/>
|
|
1608
|
+
</g>
|
|
1609
|
+
<g>
|
|
1610
|
+
<use x="367.800781" y="164.242188" xlink:href="#k"/>
|
|
1611
|
+
</g>
|
|
1612
|
+
<path transform="matrix(14 0 0 14 -5.7003e-5 -3.8e-5)" d="m22.394 12.158h4.1557" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
1613
|
+
<g>
|
|
1614
|
+
<use x="329.648438" y="183.316406" xlink:href="#l"/>
|
|
1615
|
+
</g>
|
|
1616
|
+
<g>
|
|
1617
|
+
<use x="336.648438" y="179.273438" xlink:href="#au"/>
|
|
1618
|
+
</g>
|
|
1619
|
+
<g>
|
|
1620
|
+
<use x="342.53125" y="179.273438" xlink:href="#at"/>
|
|
1621
|
+
</g>
|
|
1622
|
+
<g>
|
|
1623
|
+
<use x="350.152344" y="179.273438" xlink:href="#as"/>
|
|
1624
|
+
</g>
|
|
1625
|
+
<g>
|
|
1626
|
+
<use x="373.371094" y="153.214844" xlink:href="#mz"/>
|
|
1627
|
+
</g>
|
|
1628
|
+
<path transform="matrix(14 0 0 14 -6.4015e-5 -4.1664e-5)" d="m27.669 10.924h2.5246" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
1629
|
+
<g>
|
|
1630
|
+
<use x="400.664063" y="164.242188" xlink:href="#my"/>
|
|
1631
|
+
</g>
|
|
1632
|
+
<path transform="matrix(14 0 0 14 -6.4015e-5 -4.1664e-5)" d="m27.789 12.158h2.2291" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
1633
|
+
<g>
|
|
1634
|
+
<use x="389.050781" y="183.316406" xlink:href="#mx"/>
|
|
1635
|
+
</g>
|
|
1636
|
+
<g>
|
|
1637
|
+
<use x="396.453125" y="179.273438" xlink:href="#mw"/>
|
|
1638
|
+
</g>
|
|
1639
|
+
<g>
|
|
1640
|
+
<use x="401.351563" y="179.273438" xlink:href="#mv"/>
|
|
1641
|
+
</g>
|
|
1642
|
+
<g>
|
|
1643
|
+
<use x="407.234375" y="179.273438" xlink:href="#mu"/>
|
|
1644
|
+
</g>
|
|
1645
|
+
<g>
|
|
1646
|
+
<use x="414.855469" y="179.273438" xlink:href="#mt"/>
|
|
1647
|
+
</g>
|
|
1648
|
+
<g>
|
|
1649
|
+
<use x="17" y="200.101563" xlink:href="#ms"/>
|
|
1650
|
+
</g>
|
|
1651
|
+
<g>
|
|
1652
|
+
<use x="31" y="203.886719" xlink:href="#mr"/>
|
|
1653
|
+
</g>
|
|
1654
|
+
<g>
|
|
1655
|
+
<use x="24.777344" y="231.703125" xlink:href="#mq"/>
|
|
1656
|
+
</g>
|
|
1657
|
+
<g>
|
|
1658
|
+
<use x="41.148437" y="219.160156" xlink:href="#mp"/>
|
|
1659
|
+
</g>
|
|
1660
|
+
<g>
|
|
1661
|
+
<use x="49.511719" y="219.160156" xlink:href="#an"/>
|
|
1662
|
+
</g>
|
|
1663
|
+
<g>
|
|
1664
|
+
<use x="54.957031" y="219.160156" xlink:href="#ap"/>
|
|
1665
|
+
</g>
|
|
1666
|
+
<g>
|
|
1667
|
+
<use x="62.957031" y="219.160156" xlink:href="#am"/>
|
|
1668
|
+
</g>
|
|
1669
|
+
<g>
|
|
1670
|
+
<use x="70.734375" y="219.160156" xlink:href="#mo"/>
|
|
1671
|
+
</g>
|
|
1672
|
+
<g>
|
|
1673
|
+
<use x="78.023437" y="219.160156" xlink:href="#ap"/>
|
|
1674
|
+
</g>
|
|
1675
|
+
<g>
|
|
1676
|
+
<use x="89.914062" y="219.160156" xlink:href="#mj"/>
|
|
1677
|
+
</g>
|
|
1678
|
+
<g>
|
|
1679
|
+
<use x="104.691406" y="219.160156" xlink:href="#an"/>
|
|
1680
|
+
</g>
|
|
1681
|
+
<g>
|
|
1682
|
+
<use x="110.132812" y="219.160156" xlink:href="#mn"/>
|
|
1683
|
+
</g>
|
|
1684
|
+
<g>
|
|
1685
|
+
<use x="119.253906" y="219.160156" xlink:href="#mi"/>
|
|
1686
|
+
</g>
|
|
1687
|
+
<g>
|
|
1688
|
+
<use x="133.253906" y="219.160156" xlink:href="#mm"/>
|
|
1689
|
+
</g>
|
|
1690
|
+
<g>
|
|
1691
|
+
<use x="140.65625" y="219.160156" xlink:href="#am"/>
|
|
1692
|
+
</g>
|
|
1693
|
+
<g>
|
|
1694
|
+
<use x="153.644531" y="200.257813" xlink:href="#mh"/>
|
|
1695
|
+
</g>
|
|
1696
|
+
<g>
|
|
1697
|
+
<use x="148.433594" y="204.457031" xlink:href="#mg"/>
|
|
1698
|
+
</g>
|
|
1699
|
+
<g>
|
|
1700
|
+
<use x="149.339844" y="234.105469" xlink:href="#mf"/>
|
|
1701
|
+
</g>
|
|
1702
|
+
<g>
|
|
1703
|
+
<use x="155.222656" y="234.105469" xlink:href="#me"/>
|
|
1704
|
+
</g>
|
|
1705
|
+
<g>
|
|
1706
|
+
<use x="162.84375" y="234.105469" xlink:href="#md"/>
|
|
1707
|
+
</g>
|
|
1708
|
+
<g>
|
|
1709
|
+
<use x="170.988281" y="200.257813" xlink:href="#mc"/>
|
|
1710
|
+
</g>
|
|
1711
|
+
<g>
|
|
1712
|
+
<use x="175.886719" y="196.703125" xlink:href="#mb"/>
|
|
1713
|
+
</g>
|
|
1714
|
+
<g>
|
|
1715
|
+
<use x="180.589844" y="200.257813" xlink:href="#ma"/>
|
|
1716
|
+
</g>
|
|
1717
|
+
<g>
|
|
1718
|
+
<use x="188.210937" y="200.257813" xlink:href="#ly"/>
|
|
1719
|
+
</g>
|
|
1720
|
+
<g>
|
|
1721
|
+
<use x="171.9375" y="204.457031" xlink:href="#lx"/>
|
|
1722
|
+
</g>
|
|
1723
|
+
<g>
|
|
1724
|
+
<use x="171.488281" y="234.105469" xlink:href="#lw"/>
|
|
1725
|
+
</g>
|
|
1726
|
+
<g>
|
|
1727
|
+
<use x="180.089844" y="234.105469" xlink:href="#lv"/>
|
|
1728
|
+
</g>
|
|
1729
|
+
<g>
|
|
1730
|
+
<use x="187.714844" y="234.105469" xlink:href="#lu"/>
|
|
1731
|
+
</g>
|
|
1732
|
+
<g>
|
|
1733
|
+
<use x="195.445312" y="219.160156" xlink:href="#lt"/>
|
|
1734
|
+
</g>
|
|
1735
|
+
<g>
|
|
1736
|
+
<use x="200.890625" y="219.160156" xlink:href="#lq"/>
|
|
1737
|
+
</g>
|
|
1738
|
+
<g>
|
|
1739
|
+
<use x="211.777344" y="219.160156" xlink:href="#ls"/>
|
|
1740
|
+
</g>
|
|
1741
|
+
<g>
|
|
1742
|
+
<use x="218.777344" y="219.160156" xlink:href="#lr"/>
|
|
1743
|
+
</g>
|
|
1744
|
+
<g>
|
|
1745
|
+
<use x="224.222656" y="212.441406" xlink:href="#lp"/>
|
|
1746
|
+
</g>
|
|
1747
|
+
<g>
|
|
1748
|
+
<use x="232.828125" y="212.441406" xlink:href="#lo"/>
|
|
1749
|
+
</g>
|
|
1750
|
+
<g>
|
|
1751
|
+
<use x="240.449219" y="212.441406" xlink:href="#ln"/>
|
|
1752
|
+
</g>
|
|
1753
|
+
<g>
|
|
1754
|
+
<use x="248.183594" y="219.160156" xlink:href="#li"/>
|
|
1755
|
+
</g>
|
|
1756
|
+
<g>
|
|
1757
|
+
<use x="255.183594" y="213.378906" xlink:href="#lh"/>
|
|
1758
|
+
</g>
|
|
1759
|
+
<g>
|
|
1760
|
+
<use x="262.804688" y="213.378906" xlink:href="#lg"/>
|
|
1761
|
+
</g>
|
|
1762
|
+
<g>
|
|
1763
|
+
<use x="269.1875" y="219.160156" xlink:href="#lf"/>
|
|
1764
|
+
</g>
|
|
1765
|
+
<g>
|
|
1766
|
+
<use x="277.550781" y="219.160156" xlink:href="#ak"/>
|
|
1767
|
+
</g>
|
|
1768
|
+
<g>
|
|
1769
|
+
<use x="282.992188" y="219.160156" xlink:href="#al"/>
|
|
1770
|
+
</g>
|
|
1771
|
+
<g>
|
|
1772
|
+
<use x="293.503906" y="219.160156" xlink:href="#lc"/>
|
|
1773
|
+
</g>
|
|
1774
|
+
<g>
|
|
1775
|
+
<use x="307.503906" y="219.160156" xlink:href="#le"/>
|
|
1776
|
+
</g>
|
|
1777
|
+
<g>
|
|
1778
|
+
<use x="322.128906" y="219.160156" xlink:href="#ak"/>
|
|
1779
|
+
</g>
|
|
1780
|
+
<g>
|
|
1781
|
+
<use x="327.574219" y="219.160156" xlink:href="#ld"/>
|
|
1782
|
+
</g>
|
|
1783
|
+
<g>
|
|
1784
|
+
<use x="336.695313" y="219.160156" xlink:href="#kz"/>
|
|
1785
|
+
</g>
|
|
1786
|
+
<g>
|
|
1787
|
+
<use x="350.695313" y="219.160156" xlink:href="#al"/>
|
|
1788
|
+
</g>
|
|
1789
|
+
<g>
|
|
1790
|
+
<use x="358.09375" y="219.160156" xlink:href="#lb"/>
|
|
1791
|
+
</g>
|
|
1792
|
+
<g>
|
|
1793
|
+
<use x="365.871094" y="219.160156" xlink:href="#la"/>
|
|
1794
|
+
</g>
|
|
1795
|
+
<g>
|
|
1796
|
+
<use x="372.871094" y="213.378906" xlink:href="#ky"/>
|
|
1797
|
+
</g>
|
|
1798
|
+
<g>
|
|
1799
|
+
<use x="380.496094" y="213.378906" xlink:href="#kx"/>
|
|
1800
|
+
</g>
|
|
1801
|
+
<g>
|
|
1802
|
+
<use x="386.878906" y="219.160156" xlink:href="#kw"/>
|
|
1803
|
+
</g>
|
|
1804
|
+
<g>
|
|
1805
|
+
<use x="17" y="246.980469" xlink:href="#kv"/>
|
|
1806
|
+
</g>
|
|
1807
|
+
<g>
|
|
1808
|
+
<use x="31" y="250.761719" xlink:href="#ks"/>
|
|
1809
|
+
</g>
|
|
1810
|
+
<g>
|
|
1811
|
+
<use x="24.777344" y="278.582031" xlink:href="#kr"/>
|
|
1812
|
+
</g>
|
|
1813
|
+
<g>
|
|
1814
|
+
<use x="32.398437" y="278.582031" xlink:href="#kq"/>
|
|
1815
|
+
</g>
|
|
1816
|
+
<g>
|
|
1817
|
+
<use x="43.929687" y="266.035156" xlink:href="#aj"/>
|
|
1818
|
+
</g>
|
|
1819
|
+
<g>
|
|
1820
|
+
<use x="49.453125" y="266.035156" xlink:href="#ai"/>
|
|
1821
|
+
</g>
|
|
1822
|
+
<g>
|
|
1823
|
+
<use x="53.34375" y="266.035156" xlink:href="#ah"/>
|
|
1824
|
+
</g>
|
|
1825
|
+
<g>
|
|
1826
|
+
<use x="61.121094" y="266.035156" xlink:href="#kp"/>
|
|
1827
|
+
</g>
|
|
1828
|
+
<g>
|
|
1829
|
+
<use x="66.5625" y="266.035156" xlink:href="#kn"/>
|
|
1830
|
+
</g>
|
|
1831
|
+
<g>
|
|
1832
|
+
<use x="75.519531" y="266.035156" xlink:href="#km"/>
|
|
1833
|
+
</g>
|
|
1834
|
+
<g>
|
|
1835
|
+
<use x="83.519531" y="266.035156" xlink:href="#ko"/>
|
|
1836
|
+
</g>
|
|
1837
|
+
<g>
|
|
1838
|
+
<use x="91.300781" y="266.035156" xlink:href="#aj"/>
|
|
1839
|
+
</g>
|
|
1840
|
+
<g>
|
|
1841
|
+
<use x="96.820312" y="266.035156" xlink:href="#ai"/>
|
|
1842
|
+
</g>
|
|
1843
|
+
<g>
|
|
1844
|
+
<use x="100.710937" y="266.035156" xlink:href="#ah"/>
|
|
1845
|
+
</g>
|
|
1846
|
+
<g>
|
|
1847
|
+
<use x="108.488281" y="260.253906" xlink:href="#kl"/>
|
|
1848
|
+
</g>
|
|
1849
|
+
<g>
|
|
1850
|
+
<use x="114.871094" y="266.035156" xlink:href="#ag"/>
|
|
1851
|
+
</g>
|
|
1852
|
+
<g>
|
|
1853
|
+
<use x="120.316406" y="266.035156" xlink:href="#ki"/>
|
|
1854
|
+
</g>
|
|
1855
|
+
<g>
|
|
1856
|
+
<use x="128.234375" y="266.035156" xlink:href="#ae"/>
|
|
1857
|
+
</g>
|
|
1858
|
+
<g>
|
|
1859
|
+
<use x="136.234375" y="266.035156" xlink:href="#af"/>
|
|
1860
|
+
</g>
|
|
1861
|
+
<g>
|
|
1862
|
+
<use x="141.679687" y="266.035156" xlink:href="#kh"/>
|
|
1863
|
+
</g>
|
|
1864
|
+
<g>
|
|
1865
|
+
<use x="148.964844" y="266.035156" xlink:href="#ae"/>
|
|
1866
|
+
</g>
|
|
1867
|
+
<g>
|
|
1868
|
+
<use x="160.855469" y="266.035156" xlink:href="#kk"/>
|
|
1869
|
+
</g>
|
|
1870
|
+
<g>
|
|
1871
|
+
<use x="175.632812" y="242.09375" xlink:href="#kg"/>
|
|
1872
|
+
</g>
|
|
1873
|
+
<g>
|
|
1874
|
+
<use x="193.914062" y="258.425781" xlink:href="#ag"/>
|
|
1875
|
+
</g>
|
|
1876
|
+
<g>
|
|
1877
|
+
<use x="199.355469" y="258.425781" xlink:href="#kf"/>
|
|
1878
|
+
</g>
|
|
1879
|
+
<g>
|
|
1880
|
+
<use x="210.246094" y="258.425781" xlink:href="#kj"/>
|
|
1881
|
+
</g>
|
|
1882
|
+
<g>
|
|
1883
|
+
<use x="217.246094" y="258.425781" xlink:href="#af"/>
|
|
1884
|
+
</g>
|
|
1885
|
+
<g>
|
|
1886
|
+
<use x="222.691406" y="253.34375" xlink:href="#kc"/>
|
|
1887
|
+
</g>
|
|
1888
|
+
<g>
|
|
1889
|
+
<use x="226.5" y="253.34375" xlink:href="#kb"/>
|
|
1890
|
+
</g>
|
|
1891
|
+
<g>
|
|
1892
|
+
<use x="232.382812" y="253.34375" xlink:href="#ka"/>
|
|
1893
|
+
</g>
|
|
1894
|
+
<g>
|
|
1895
|
+
<use x="240.007812" y="253.34375" xlink:href="#jz"/>
|
|
1896
|
+
</g>
|
|
1897
|
+
<g>
|
|
1898
|
+
<use x="244.90625" y="253.34375" xlink:href="#jy"/>
|
|
1899
|
+
</g>
|
|
1900
|
+
<g>
|
|
1901
|
+
<use x="248.71875" y="253.34375" xlink:href="#jx"/>
|
|
1902
|
+
</g>
|
|
1903
|
+
<g>
|
|
1904
|
+
<use x="253.617187" y="253.34375" xlink:href="#jw"/>
|
|
1905
|
+
</g>
|
|
1906
|
+
<g>
|
|
1907
|
+
<use x="259.015625" y="258.425781" xlink:href="#jv"/>
|
|
1908
|
+
</g>
|
|
1909
|
+
<g>
|
|
1910
|
+
<use x="264.460938" y="258.425781" xlink:href="#js"/>
|
|
1911
|
+
</g>
|
|
1912
|
+
<g>
|
|
1913
|
+
<use x="275.351563" y="258.425781" xlink:href="#ju"/>
|
|
1914
|
+
</g>
|
|
1915
|
+
<g>
|
|
1916
|
+
<use x="282.351563" y="258.425781" xlink:href="#jt"/>
|
|
1917
|
+
</g>
|
|
1918
|
+
<g>
|
|
1919
|
+
<use x="287.796875" y="253.34375" xlink:href="#jr"/>
|
|
1920
|
+
</g>
|
|
1921
|
+
<g>
|
|
1922
|
+
<use x="298.578125" y="252.914063" xlink:href="#jo"/>
|
|
1923
|
+
</g>
|
|
1924
|
+
<g>
|
|
1925
|
+
<use x="303.480469" y="252.914063" xlink:href="#jn"/>
|
|
1926
|
+
</g>
|
|
1927
|
+
<path transform="matrix(14 0 0 14 -.00011919 -9.9225e-5)" d="m21.327 18.209h0.74916" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
1928
|
+
<g>
|
|
1929
|
+
<use x="299.023438" y="263.253906" xlink:href="#jm"/>
|
|
1930
|
+
</g>
|
|
1931
|
+
<g>
|
|
1932
|
+
<use x="303.921875" y="260.421875" xlink:href="#jl"/>
|
|
1933
|
+
</g>
|
|
1934
|
+
<g>
|
|
1935
|
+
<use x="313.078125" y="247.085938" xlink:href="#jk"/>
|
|
1936
|
+
</g>
|
|
1937
|
+
<g>
|
|
1938
|
+
<use x="322.535156" y="252.214844" xlink:href="#jj"/>
|
|
1939
|
+
</g>
|
|
1940
|
+
<g>
|
|
1941
|
+
<use x="321.175781" y="263.253906" xlink:href="#ji"/>
|
|
1942
|
+
</g>
|
|
1943
|
+
<g>
|
|
1944
|
+
<use x="331.460938" y="247.085938" xlink:href="#jh"/>
|
|
1945
|
+
</g>
|
|
1946
|
+
<g>
|
|
1947
|
+
<use x="351.878906" y="258.425781" xlink:href="#ac"/>
|
|
1948
|
+
</g>
|
|
1949
|
+
<g>
|
|
1950
|
+
<use x="364.945313" y="258.425781" xlink:href="#ab"/>
|
|
1951
|
+
</g>
|
|
1952
|
+
<g>
|
|
1953
|
+
<use x="372.335938" y="258.425781" xlink:href="#z"/>
|
|
1954
|
+
</g>
|
|
1955
|
+
<g>
|
|
1956
|
+
<use x="380.113281" y="258.425781" xlink:href="#z"/>
|
|
1957
|
+
</g>
|
|
1958
|
+
<g>
|
|
1959
|
+
<use x="387.890625" y="258.425781" xlink:href="#jf"/>
|
|
1960
|
+
</g>
|
|
1961
|
+
<g>
|
|
1962
|
+
<use x="398.78125" y="258.425781" xlink:href="#je"/>
|
|
1963
|
+
</g>
|
|
1964
|
+
<g>
|
|
1965
|
+
<use x="411.625" y="258.425781" xlink:href="#y"/>
|
|
1966
|
+
</g>
|
|
1967
|
+
<g>
|
|
1968
|
+
<use x="426.402344" y="258.425781" xlink:href="#jd"/>
|
|
1969
|
+
</g>
|
|
1970
|
+
<g>
|
|
1971
|
+
<use x="434.320313" y="258.425781" xlink:href="#iw"/>
|
|
1972
|
+
</g>
|
|
1973
|
+
<g>
|
|
1974
|
+
<use x="439.765625" y="258.425781" xlink:href="#iv"/>
|
|
1975
|
+
</g>
|
|
1976
|
+
<g>
|
|
1977
|
+
<use x="446.765625" y="258.425781" xlink:href="#jc"/>
|
|
1978
|
+
</g>
|
|
1979
|
+
<g>
|
|
1980
|
+
<use x="462.167969" y="258.425781" xlink:href="#ip"/>
|
|
1981
|
+
</g>
|
|
1982
|
+
<g>
|
|
1983
|
+
<use x="476.167969" y="258.425781" xlink:href="#ac"/>
|
|
1984
|
+
</g>
|
|
1985
|
+
<g>
|
|
1986
|
+
<use x="484.574219" y="258.425781" xlink:href="#iu"/>
|
|
1987
|
+
</g>
|
|
1988
|
+
<g>
|
|
1989
|
+
<use x="262.394531" y="279.074219" xlink:href="#it"/>
|
|
1990
|
+
</g>
|
|
1991
|
+
<g>
|
|
1992
|
+
<use x="392.109375" y="279.074219" xlink:href="#ab"/>
|
|
1993
|
+
</g>
|
|
1994
|
+
<g>
|
|
1995
|
+
<use x="399.109375" y="279.074219" xlink:href="#is"/>
|
|
1996
|
+
</g>
|
|
1997
|
+
<g>
|
|
1998
|
+
<use x="404.554688" y="279.074219" xlink:href="#ir"/>
|
|
1999
|
+
</g>
|
|
2000
|
+
<g>
|
|
2001
|
+
<use x="412.332031" y="279.074219" xlink:href="#aa"/>
|
|
2002
|
+
</g>
|
|
2003
|
+
<g>
|
|
2004
|
+
<use x="418.554688" y="279.074219" xlink:href="#ja"/>
|
|
2005
|
+
</g>
|
|
2006
|
+
<g>
|
|
2007
|
+
<use x="424.039063" y="279.074219" xlink:href="#iz"/>
|
|
2008
|
+
</g>
|
|
2009
|
+
<g>
|
|
2010
|
+
<use x="434.148438" y="279.074219" xlink:href="#iy"/>
|
|
2011
|
+
</g>
|
|
2012
|
+
<g>
|
|
2013
|
+
<use x="438.039063" y="279.074219" xlink:href="#ix"/>
|
|
2014
|
+
</g>
|
|
2015
|
+
<g>
|
|
2016
|
+
<use x="443.5625" y="279.074219" xlink:href="#aa"/>
|
|
2017
|
+
</g>
|
|
2018
|
+
<g>
|
|
2019
|
+
<use x="17" y="319.414063" xlink:href="#jb"/>
|
|
2020
|
+
</g>
|
|
2021
|
+
<g>
|
|
2022
|
+
<use x="30.417969" y="319.414063" xlink:href="#y"/>
|
|
2023
|
+
</g>
|
|
2024
|
+
<g>
|
|
2025
|
+
<use x="45.195312" y="300.359375" xlink:href="#jg"/>
|
|
2026
|
+
</g>
|
|
2027
|
+
<g>
|
|
2028
|
+
<use x="59.195312" y="304.144531" xlink:href="#io"/>
|
|
2029
|
+
</g>
|
|
2030
|
+
<g>
|
|
2031
|
+
<use x="52.972656" y="331.960938" xlink:href="#in"/>
|
|
2032
|
+
</g>
|
|
2033
|
+
<g>
|
|
2034
|
+
<use x="69.34375" y="290.683594" xlink:href="#im"/>
|
|
2035
|
+
</g>
|
|
2036
|
+
<g>
|
|
2037
|
+
<use x="69.34375" y="298.382813" xlink:href="#x"/>
|
|
2038
|
+
</g>
|
|
2039
|
+
<g>
|
|
2040
|
+
<use x="69.34375" y="306.574219" xlink:href="#x"/>
|
|
2041
|
+
</g>
|
|
2042
|
+
<g>
|
|
2043
|
+
<use x="69.34375" y="314.765625" xlink:href="#il"/>
|
|
2044
|
+
</g>
|
|
2045
|
+
<path transform="matrix(14 0 0 14 -.00012638 -.00010886)" d="m6.0087 20.743h18.495" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
2046
|
+
<g>
|
|
2047
|
+
<use x="84.121094" y="294.914063" xlink:href="#e"/>
|
|
2048
|
+
</g>
|
|
2049
|
+
<g>
|
|
2050
|
+
<use x="84.121094" y="303.316406" xlink:href="#e"/>
|
|
2051
|
+
</g>
|
|
2052
|
+
<g>
|
|
2053
|
+
<use x="84.121094" y="311.714844" xlink:href="#e"/>
|
|
2054
|
+
</g>
|
|
2055
|
+
<g>
|
|
2056
|
+
<use x="84.121094" y="320.117188" xlink:href="#e"/>
|
|
2057
|
+
</g>
|
|
2058
|
+
<g>
|
|
2059
|
+
<use x="84.121094" y="328.515625" xlink:href="#e"/>
|
|
2060
|
+
</g>
|
|
2061
|
+
<g>
|
|
2062
|
+
<use x="97.457031" y="300.515625" xlink:href="#ik"/>
|
|
2063
|
+
</g>
|
|
2064
|
+
<g>
|
|
2065
|
+
<use x="90.285156" y="304.714844" xlink:href="#ij"/>
|
|
2066
|
+
</g>
|
|
2067
|
+
<g>
|
|
2068
|
+
<use x="88.789062" y="334.511719" xlink:href="#ii"/>
|
|
2069
|
+
</g>
|
|
2070
|
+
<g>
|
|
2071
|
+
<use x="92.164062" y="334.511719" xlink:href="#ih"/>
|
|
2072
|
+
</g>
|
|
2073
|
+
<g>
|
|
2074
|
+
<use x="94.886719" y="334.511719" xlink:href="#ig"/>
|
|
2075
|
+
</g>
|
|
2076
|
+
<g>
|
|
2077
|
+
<use x="99.484375" y="334.511719" xlink:href="#if"/>
|
|
2078
|
+
</g>
|
|
2079
|
+
<g>
|
|
2080
|
+
<use x="107.105469" y="334.511719" xlink:href="#id"/>
|
|
2081
|
+
</g>
|
|
2082
|
+
<g>
|
|
2083
|
+
<use x="114.339844" y="319.414063" xlink:href="#ic"/>
|
|
2084
|
+
</g>
|
|
2085
|
+
<g>
|
|
2086
|
+
<use x="121.019531" y="321.515625" xlink:href="#ib"/>
|
|
2087
|
+
</g>
|
|
2088
|
+
<g>
|
|
2089
|
+
<use x="124.394531" y="321.515625" xlink:href="#ia"/>
|
|
2090
|
+
</g>
|
|
2091
|
+
<g>
|
|
2092
|
+
<use x="128.992187" y="319.414063" xlink:href="#w"/>
|
|
2093
|
+
</g>
|
|
2094
|
+
<g>
|
|
2095
|
+
<use x="134.433594" y="319.414063" xlink:href="#hz"/>
|
|
2096
|
+
</g>
|
|
2097
|
+
<g>
|
|
2098
|
+
<use x="141.683594" y="319.414063" xlink:href="#w"/>
|
|
2099
|
+
</g>
|
|
2100
|
+
<g>
|
|
2101
|
+
<use x="147.128906" y="319.414063" xlink:href="#u"/>
|
|
2102
|
+
</g>
|
|
2103
|
+
<g>
|
|
2104
|
+
<use x="152.183594" y="319.414063" xlink:href="#v"/>
|
|
2105
|
+
</g>
|
|
2106
|
+
<g>
|
|
2107
|
+
<use x="157.628906" y="319.414063" xlink:href="#v"/>
|
|
2108
|
+
</g>
|
|
2109
|
+
<g>
|
|
2110
|
+
<use x="165.40625" y="299.675781" xlink:href="#hx"/>
|
|
2111
|
+
</g>
|
|
2112
|
+
<g>
|
|
2113
|
+
<use x="179.917969" y="309.945313" xlink:href="#t"/>
|
|
2114
|
+
</g>
|
|
2115
|
+
<path transform="matrix(14 0 0 14 -.000132 -.00012668)" d="m12.671 22.565h0.8817" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
2116
|
+
<g>
|
|
2117
|
+
<use x="177.390625" y="329.019531" xlink:href="#t"/>
|
|
2118
|
+
</g>
|
|
2119
|
+
<g>
|
|
2120
|
+
<use x="184.679687" y="329.019531" xlink:href="#u"/>
|
|
2121
|
+
</g>
|
|
2122
|
+
<g>
|
|
2123
|
+
<use x="191.414062" y="319.414063" xlink:href="#hy"/>
|
|
2124
|
+
</g>
|
|
2125
|
+
<g>
|
|
2126
|
+
<use x="199.414062" y="315.371094" xlink:href="#hw"/>
|
|
2127
|
+
</g>
|
|
2128
|
+
<g>
|
|
2129
|
+
<use x="206.402344" y="319.414063" xlink:href="#hv"/>
|
|
2130
|
+
</g>
|
|
2131
|
+
<g>
|
|
2132
|
+
<use x="216.511719" y="319.414063" xlink:href="#hu"/>
|
|
2133
|
+
</g>
|
|
2134
|
+
<g>
|
|
2135
|
+
<use x="223.761719" y="319.414063" xlink:href="#hr"/>
|
|
2136
|
+
</g>
|
|
2137
|
+
<g>
|
|
2138
|
+
<use x="229.207031" y="319.414063" xlink:href="#s"/>
|
|
2139
|
+
</g>
|
|
2140
|
+
<g>
|
|
2141
|
+
<use x="234.261719" y="319.414063" xlink:href="#hq"/>
|
|
2142
|
+
</g>
|
|
2143
|
+
<g>
|
|
2144
|
+
<use x="239.707031" y="299.675781" xlink:href="#hp"/>
|
|
2145
|
+
</g>
|
|
2146
|
+
<g>
|
|
2147
|
+
<use x="252.34375" y="299.675781" xlink:href="#ho"/>
|
|
2148
|
+
</g>
|
|
2149
|
+
<g>
|
|
2150
|
+
<use x="266.859375" y="309.945313" xlink:href="#r"/>
|
|
2151
|
+
</g>
|
|
2152
|
+
<path transform="matrix(14 0 0 14 -.00013336 -.00012883)" d="m18.881 22.565h0.88142" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
2153
|
+
<g>
|
|
2154
|
+
<use x="264.332031" y="329.019531" xlink:href="#r"/>
|
|
2155
|
+
</g>
|
|
2156
|
+
<g>
|
|
2157
|
+
<use x="271.617188" y="329.019531" xlink:href="#s"/>
|
|
2158
|
+
</g>
|
|
2159
|
+
<g>
|
|
2160
|
+
<use x="278.351563" y="319.414063" xlink:href="#ht"/>
|
|
2161
|
+
</g>
|
|
2162
|
+
<g>
|
|
2163
|
+
<use x="286.355469" y="315.371094" xlink:href="#hn"/>
|
|
2164
|
+
</g>
|
|
2165
|
+
<g>
|
|
2166
|
+
<use x="294" y="319.414063" xlink:href="#hm"/>
|
|
2167
|
+
</g>
|
|
2168
|
+
<g>
|
|
2169
|
+
<use x="304.113281" y="319.414063" xlink:href="#hl"/>
|
|
2170
|
+
</g>
|
|
2171
|
+
<g>
|
|
2172
|
+
<use x="311.359375" y="319.414063" xlink:href="#hi"/>
|
|
2173
|
+
</g>
|
|
2174
|
+
<g>
|
|
2175
|
+
<use x="316.804688" y="319.414063" xlink:href="#q"/>
|
|
2176
|
+
</g>
|
|
2177
|
+
<g>
|
|
2178
|
+
<use x="321.859375" y="319.414063" xlink:href="#hh"/>
|
|
2179
|
+
</g>
|
|
2180
|
+
<g>
|
|
2181
|
+
<use x="327.304688" y="299.675781" xlink:href="#hf"/>
|
|
2182
|
+
</g>
|
|
2183
|
+
<g>
|
|
2184
|
+
<use x="337.609375" y="294.914063" xlink:href="#d"/>
|
|
2185
|
+
</g>
|
|
2186
|
+
<g>
|
|
2187
|
+
<use x="337.609375" y="303.316406" xlink:href="#d"/>
|
|
2188
|
+
</g>
|
|
2189
|
+
<g>
|
|
2190
|
+
<use x="337.609375" y="311.714844" xlink:href="#d"/>
|
|
2191
|
+
</g>
|
|
2192
|
+
<g>
|
|
2193
|
+
<use x="337.609375" y="320.117188" xlink:href="#d"/>
|
|
2194
|
+
</g>
|
|
2195
|
+
<g>
|
|
2196
|
+
<use x="337.609375" y="328.515625" xlink:href="#d"/>
|
|
2197
|
+
</g>
|
|
2198
|
+
<g>
|
|
2199
|
+
<use x="345.390625" y="319.414063" xlink:href="#hk"/>
|
|
2200
|
+
</g>
|
|
2201
|
+
<g>
|
|
2202
|
+
<use x="352.675781" y="319.414063" xlink:href="#q"/>
|
|
2203
|
+
</g>
|
|
2204
|
+
<g>
|
|
2205
|
+
<use x="24" y="371.082031" xlink:href="#hj"/>
|
|
2206
|
+
</g>
|
|
2207
|
+
<g>
|
|
2208
|
+
<use x="44.5625" y="371.082031" xlink:href="#hg"/>
|
|
2209
|
+
</g>
|
|
2210
|
+
<g>
|
|
2211
|
+
<use x="59.339844" y="352.027344" xlink:href="#he"/>
|
|
2212
|
+
</g>
|
|
2213
|
+
<g>
|
|
2214
|
+
<use x="73.339844" y="355.8125" xlink:href="#hd"/>
|
|
2215
|
+
</g>
|
|
2216
|
+
<g>
|
|
2217
|
+
<use x="67.117187" y="383.628906" xlink:href="#hc"/>
|
|
2218
|
+
</g>
|
|
2219
|
+
<g>
|
|
2220
|
+
<use x="83.492187" y="350.78125" xlink:href="#b"/>
|
|
2221
|
+
</g>
|
|
2222
|
+
<g>
|
|
2223
|
+
<use x="83.492187" y="359.183594" xlink:href="#b"/>
|
|
2224
|
+
</g>
|
|
2225
|
+
<g>
|
|
2226
|
+
<use x="83.492187" y="367.582031" xlink:href="#b"/>
|
|
2227
|
+
</g>
|
|
2228
|
+
<g>
|
|
2229
|
+
<use x="83.492187" y="375.984375" xlink:href="#b"/>
|
|
2230
|
+
</g>
|
|
2231
|
+
<g>
|
|
2232
|
+
<use x="95.476562" y="361.613281" xlink:href="#j"/>
|
|
2233
|
+
</g>
|
|
2234
|
+
<path transform="matrix(14 0 0 14 -.00013626 -.00013602)" d="m6.6392 26.256h0.88142" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
2235
|
+
<g>
|
|
2236
|
+
<use x="92.949219" y="380.6875" xlink:href="#j"/>
|
|
2237
|
+
</g>
|
|
2238
|
+
<g>
|
|
2239
|
+
<use x="100.234375" y="380.6875" xlink:href="#f"/>
|
|
2240
|
+
</g>
|
|
2241
|
+
<g>
|
|
2242
|
+
<use x="106.328125" y="371.082031" xlink:href="#gy"/>
|
|
2243
|
+
</g>
|
|
2244
|
+
<g>
|
|
2245
|
+
<use x="106.972656" y="371.082031" xlink:href="#gx"/>
|
|
2246
|
+
</g>
|
|
2247
|
+
<g>
|
|
2248
|
+
<use x="115.664062" y="371.082031" xlink:href="#i"/>
|
|
2249
|
+
</g>
|
|
2250
|
+
<g>
|
|
2251
|
+
<use x="121.109375" y="371.082031" xlink:href="#gw"/>
|
|
2252
|
+
</g>
|
|
2253
|
+
<g>
|
|
2254
|
+
<use x="129.121094" y="371.082031" xlink:href="#i"/>
|
|
2255
|
+
</g>
|
|
2256
|
+
<g>
|
|
2257
|
+
<use x="134.566406" y="371.082031" xlink:href="#f"/>
|
|
2258
|
+
</g>
|
|
2259
|
+
<g>
|
|
2260
|
+
<use x="139.621094" y="371.082031" xlink:href="#h"/>
|
|
2261
|
+
</g>
|
|
2262
|
+
<g>
|
|
2263
|
+
<use x="145.066406" y="371.082031" xlink:href="#gv"/>
|
|
2264
|
+
</g>
|
|
2265
|
+
<g>
|
|
2266
|
+
<use x="151.289062" y="371.082031" xlink:href="#gu"/>
|
|
2267
|
+
</g>
|
|
2268
|
+
<g>
|
|
2269
|
+
<use x="158.578125" y="371.082031" xlink:href="#i"/>
|
|
2270
|
+
</g>
|
|
2271
|
+
<g>
|
|
2272
|
+
<use x="164.023437" y="371.082031" xlink:href="#f"/>
|
|
2273
|
+
</g>
|
|
2274
|
+
<g>
|
|
2275
|
+
<use x="169.078125" y="371.082031" xlink:href="#h"/>
|
|
2276
|
+
</g>
|
|
2277
|
+
<g>
|
|
2278
|
+
<use x="174.523437" y="371.082031" xlink:href="#h"/>
|
|
2279
|
+
</g>
|
|
2280
|
+
<g>
|
|
2281
|
+
<use x="179.964844" y="350.78125" xlink:href="#b"/>
|
|
2282
|
+
</g>
|
|
2283
|
+
<g>
|
|
2284
|
+
<use x="179.964844" y="359.183594" xlink:href="#b"/>
|
|
2285
|
+
</g>
|
|
2286
|
+
<g>
|
|
2287
|
+
<use x="179.964844" y="367.582031" xlink:href="#b"/>
|
|
2288
|
+
</g>
|
|
2289
|
+
<g>
|
|
2290
|
+
<use x="179.964844" y="375.984375" xlink:href="#b"/>
|
|
2291
|
+
</g>
|
|
2292
|
+
<g>
|
|
2293
|
+
<use x="192.410156" y="371.082031" xlink:href="#j"/>
|
|
2294
|
+
</g>
|
|
2295
|
+
<g>
|
|
2296
|
+
<use x="199.699219" y="371.082031" xlink:href="#f"/>
|
|
2297
|
+
</g>
|
|
2298
|
+
<g>
|
|
2299
|
+
<use x="44.5625" y="412.488281" xlink:href="#gt"/>
|
|
2300
|
+
</g>
|
|
2301
|
+
<g>
|
|
2302
|
+
<use x="59.339844" y="393.433594" xlink:href="#hb"/>
|
|
2303
|
+
</g>
|
|
2304
|
+
<g>
|
|
2305
|
+
<use x="73.339844" y="397.214844" xlink:href="#gs"/>
|
|
2306
|
+
</g>
|
|
2307
|
+
<g>
|
|
2308
|
+
<use x="67.117187" y="425.035156" xlink:href="#gr"/>
|
|
2309
|
+
</g>
|
|
2310
|
+
<g>
|
|
2311
|
+
<use x="83.492187" y="399.835938" xlink:href="#gq"/>
|
|
2312
|
+
</g>
|
|
2313
|
+
<path transform="matrix(14 0 0 14 -.00013722 -.00014162)" d="m6.9637 28.54h19.038" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
2314
|
+
<g>
|
|
2315
|
+
<use x="97.492187" y="412.488281" xlink:href="#gp"/>
|
|
2316
|
+
</g>
|
|
2317
|
+
<g>
|
|
2318
|
+
<use x="105.503906" y="408.445313" xlink:href="#go"/>
|
|
2319
|
+
</g>
|
|
2320
|
+
<g>
|
|
2321
|
+
<use x="108.699219" y="412.488281" xlink:href="#gn"/>
|
|
2322
|
+
</g>
|
|
2323
|
+
<g>
|
|
2324
|
+
<use x="114.144531" y="412.488281" xlink:href="#gl"/>
|
|
2325
|
+
</g>
|
|
2326
|
+
<g>
|
|
2327
|
+
<use x="119.199219" y="412.488281" xlink:href="#gm"/>
|
|
2328
|
+
</g>
|
|
2329
|
+
<g>
|
|
2330
|
+
<use x="124.644531" y="408.445313" xlink:href="#gk"/>
|
|
2331
|
+
</g>
|
|
2332
|
+
<g>
|
|
2333
|
+
<use x="131.738281" y="412.488281" xlink:href="#gi"/>
|
|
2334
|
+
</g>
|
|
2335
|
+
<g>
|
|
2336
|
+
<use x="132.378906" y="412.488281" xlink:href="#gh"/>
|
|
2337
|
+
</g>
|
|
2338
|
+
<g>
|
|
2339
|
+
<use x="138.738281" y="414.589844" xlink:href="#gg"/>
|
|
2340
|
+
</g>
|
|
2341
|
+
<g>
|
|
2342
|
+
<use x="147.457031" y="412.488281" xlink:href="#gf"/>
|
|
2343
|
+
</g>
|
|
2344
|
+
<g>
|
|
2345
|
+
<use x="153.816406" y="412.488281" xlink:href="#ge"/>
|
|
2346
|
+
</g>
|
|
2347
|
+
<g>
|
|
2348
|
+
<use x="154.457031" y="412.488281" xlink:href="#gd"/>
|
|
2349
|
+
</g>
|
|
2350
|
+
<g>
|
|
2351
|
+
<use x="160.816406" y="414.589844" xlink:href="#gc"/>
|
|
2352
|
+
</g>
|
|
2353
|
+
<g>
|
|
2354
|
+
<use x="169.539062" y="412.488281" xlink:href="#gb"/>
|
|
2355
|
+
</g>
|
|
2356
|
+
<g>
|
|
2357
|
+
<use x="183.539062" y="412.488281" xlink:href="#ga"/>
|
|
2358
|
+
</g>
|
|
2359
|
+
<g>
|
|
2360
|
+
<use x="190.539062" y="412.488281" xlink:href="#fz"/>
|
|
2361
|
+
</g>
|
|
2362
|
+
<g>
|
|
2363
|
+
<use x="198.554687" y="408.445313" xlink:href="#fy"/>
|
|
2364
|
+
</g>
|
|
2365
|
+
<g>
|
|
2366
|
+
<use x="201.75" y="412.488281" xlink:href="#fx"/>
|
|
2367
|
+
</g>
|
|
2368
|
+
<g>
|
|
2369
|
+
<use x="207.191406" y="412.488281" xlink:href="#fv"/>
|
|
2370
|
+
</g>
|
|
2371
|
+
<g>
|
|
2372
|
+
<use x="212.25" y="412.488281" xlink:href="#fw"/>
|
|
2373
|
+
</g>
|
|
2374
|
+
<g>
|
|
2375
|
+
<use x="217.691406" y="412.488281" xlink:href="#fu"/>
|
|
2376
|
+
</g>
|
|
2377
|
+
<g>
|
|
2378
|
+
<use x="224.980469" y="408.445313" xlink:href="#ft"/>
|
|
2379
|
+
</g>
|
|
2380
|
+
<g>
|
|
2381
|
+
<use x="228.175781" y="412.488281" xlink:href="#fs"/>
|
|
2382
|
+
</g>
|
|
2383
|
+
<g>
|
|
2384
|
+
<use x="233.621094" y="412.488281" xlink:href="#fq"/>
|
|
2385
|
+
</g>
|
|
2386
|
+
<g>
|
|
2387
|
+
<use x="238.675781" y="412.488281" xlink:href="#fr"/>
|
|
2388
|
+
</g>
|
|
2389
|
+
<g>
|
|
2390
|
+
<use x="245.8125" y="412.488281" xlink:href="#fp"/>
|
|
2391
|
+
</g>
|
|
2392
|
+
<g>
|
|
2393
|
+
<use x="246.453125" y="412.488281" xlink:href="#fo"/>
|
|
2394
|
+
</g>
|
|
2395
|
+
<g>
|
|
2396
|
+
<use x="252.8125" y="414.589844" xlink:href="#fn"/>
|
|
2397
|
+
</g>
|
|
2398
|
+
<g>
|
|
2399
|
+
<use x="261.535156" y="412.488281" xlink:href="#fm"/>
|
|
2400
|
+
</g>
|
|
2401
|
+
<g>
|
|
2402
|
+
<use x="267.894531" y="412.488281" xlink:href="#fl"/>
|
|
2403
|
+
</g>
|
|
2404
|
+
<g>
|
|
2405
|
+
<use x="268.535156" y="412.488281" xlink:href="#fk"/>
|
|
2406
|
+
</g>
|
|
2407
|
+
<g>
|
|
2408
|
+
<use x="274.894531" y="414.589844" xlink:href="#fj"/>
|
|
2409
|
+
</g>
|
|
2410
|
+
<g>
|
|
2411
|
+
<use x="282.753906" y="412.488281" xlink:href="#fi"/>
|
|
2412
|
+
</g>
|
|
2413
|
+
<g>
|
|
2414
|
+
<use x="296.753906" y="412.488281" xlink:href="#fh"/>
|
|
2415
|
+
</g>
|
|
2416
|
+
<g>
|
|
2417
|
+
<use x="304.042969" y="408.445313" xlink:href="#fg"/>
|
|
2418
|
+
</g>
|
|
2419
|
+
<g>
|
|
2420
|
+
<use x="307.238281" y="412.488281" xlink:href="#fe"/>
|
|
2421
|
+
</g>
|
|
2422
|
+
<g>
|
|
2423
|
+
<use x="312.683594" y="412.488281" xlink:href="#fc"/>
|
|
2424
|
+
</g>
|
|
2425
|
+
<g>
|
|
2426
|
+
<use x="317.738281" y="412.488281" xlink:href="#fd"/>
|
|
2427
|
+
</g>
|
|
2428
|
+
<g>
|
|
2429
|
+
<use x="323.183594" y="408.445313" xlink:href="#fb"/>
|
|
2430
|
+
</g>
|
|
2431
|
+
<g>
|
|
2432
|
+
<use x="330.277344" y="412.488281" xlink:href="#fa"/>
|
|
2433
|
+
</g>
|
|
2434
|
+
<g>
|
|
2435
|
+
<use x="330.917969" y="412.488281" xlink:href="#ez"/>
|
|
2436
|
+
</g>
|
|
2437
|
+
<g>
|
|
2438
|
+
<use x="337.277344" y="414.589844" xlink:href="#ey"/>
|
|
2439
|
+
</g>
|
|
2440
|
+
<g>
|
|
2441
|
+
<use x="345.136719" y="412.488281" xlink:href="#ex"/>
|
|
2442
|
+
</g>
|
|
2443
|
+
<g>
|
|
2444
|
+
<use x="351.496094" y="412.488281" xlink:href="#ew"/>
|
|
2445
|
+
</g>
|
|
2446
|
+
<g>
|
|
2447
|
+
<use x="352.136719" y="412.488281" xlink:href="#ev"/>
|
|
2448
|
+
</g>
|
|
2449
|
+
<g>
|
|
2450
|
+
<use x="358.496094" y="414.589844" xlink:href="#eu"/>
|
|
2451
|
+
</g>
|
|
2452
|
+
<g>
|
|
2453
|
+
<use x="371.023438" y="412.488281" xlink:href="#et"/>
|
|
2454
|
+
</g>
|
|
2455
|
+
<g>
|
|
2456
|
+
<use x="378.3125" y="412.488281" xlink:href="#es"/>
|
|
2457
|
+
</g>
|
|
2458
|
+
<g>
|
|
2459
|
+
<use x="383.367188" y="412.488281" xlink:href="#er"/>
|
|
2460
|
+
</g>
|
|
2461
|
+
</svg>
|