ric 0.11.19 → 0.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +3 -0
- data/Gemfile +21 -0
- data/HISTORY.yml +20 -0
- data/Makefile +53 -0
- data/Manifest +1362 -5
- data/README.md +4 -2
- data/Rakefile +71 -29
- data/VERSION +1 -1
- data/bin/{xcopy → ric-xcopy} +3 -13
- data/bin/septober +27 -23
- data/ric.gemspec +30 -30
- data/vendor/bundle/ruby/2.7.0/bin/allison +27 -0
- data/vendor/bundle/ruby/2.7.0/bin/lolcat +27 -0
- data/vendor/bundle/ruby/2.7.0/bin/rake +27 -0
- data/vendor/bundle/ruby/2.7.0/bin/rdoc +27 -0
- data/vendor/bundle/ruby/2.7.0/bin/ri +27 -0
- data/vendor/bundle/ruby/2.7.0/bin/rubyforge +27 -0
- data/vendor/bundle/ruby/2.7.0/cache/activemodel-6.1.4.4.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/activemodel-serializers-xml-1.0.2.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/activeresource-5.1.1.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/activesupport-6.1.4.4.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/allison-2.0.3.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/builder-3.2.4.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/concurrent-ruby-1.1.9.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/echoe-4.6.0.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/echoe-4.6.3.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/echoe-4.6.5.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/echoe-4.6.6.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/gemcutter-0.7.1.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/i18n-1.8.11.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/json_pure-2.6.1.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/lolcat-100.0.1.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/manpages-0.6.1.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/minitest-5.15.0.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/optimist-3.0.1.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/paint-2.2.1.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/power_assert-2.0.1.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/psych-4.0.3.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/rake-13.0.6.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/rdoc-6.4.0.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/rubyforge-2.0.4.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/stringio-3.0.0.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/test-unit-3.5.3.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/tzinfo-2.0.4.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/zeitwerk-2.5.3.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/extensions/x86_64-darwin-20/2.7.0/psych-4.0.3/gem.build_complete +0 -0
- data/vendor/bundle/ruby/2.7.0/extensions/x86_64-darwin-20/2.7.0/psych-4.0.3/gem_make.out +41 -0
- data/vendor/bundle/ruby/2.7.0/extensions/x86_64-darwin-20/2.7.0/psych-4.0.3/psych.bundle +0 -0
- data/vendor/bundle/ruby/2.7.0/extensions/x86_64-darwin-20/2.7.0/stringio-3.0.0/gem.build_complete +0 -0
- data/vendor/bundle/ruby/2.7.0/extensions/x86_64-darwin-20/2.7.0/stringio-3.0.0/gem_make.out +137 -0
- data/vendor/bundle/ruby/2.7.0/extensions/x86_64-darwin-20/2.7.0/stringio-3.0.0/stringio.bundle +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/CHANGELOG.md +132 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/README.rdoc +266 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/attribute/user_provided_default.rb +51 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/attribute.rb +248 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/attribute_assignment.rb +55 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/attribute_methods.rb +555 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/attribute_mutation_tracker.rb +181 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/attribute_set/builder.rb +191 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/attribute_set/yaml_encoder.rb +40 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/attribute_set.rb +106 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/attributes.rb +132 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/callbacks.rb +155 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/conversion.rb +111 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/dirty.rb +293 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/error.rb +207 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/errors.rb +709 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/forbidden_attributes_protection.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/gem_version.rb +17 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/lint.rb +118 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/locale/en.yml +36 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/model.rb +99 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/naming.rb +333 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/nested_error.rb +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/railtie.rb +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/secure_password.rb +128 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/serialization.rb +194 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/serializers/json.rb +154 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/translation.rb +70 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/big_integer.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/binary.rb +52 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/boolean.rb +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/date.rb +52 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/date_time.rb +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/decimal.rb +69 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/float.rb +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/helpers/accepts_multiparameter_time.rb +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/helpers/mutable.rb +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/helpers/numeric.rb +48 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/helpers/time_value.rb +90 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/helpers/timezone.rb +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/helpers.rb +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/immutable_string.rb +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/integer.rb +67 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/registry.rb +70 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/string.rb +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/time.rb +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/value.rb +133 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type.rb +53 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/validations/absence.rb +33 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/validations/acceptance.rb +113 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/validations/callbacks.rb +121 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/validations/clusivity.rb +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/validations/confirmation.rb +80 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/validations/exclusion.rb +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/validations/format.rb +113 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/validations/helper_methods.rb +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/validations/inclusion.rb +47 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/validations/length.rb +129 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/validations/numericality.rb +203 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/validations/presence.rb +39 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/validations/validates.rb +175 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/validations/with.rb +147 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/validations.rb +436 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/validator.rb +188 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/version.rb +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model.rb +78 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-serializers-xml-1.0.2/CONTRIBUTING.md +99 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-serializers-xml-1.0.2/Gemfile +4 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-serializers-xml-1.0.2/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-serializers-xml-1.0.2/README.md +89 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-serializers-xml-1.0.2/Rakefile +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-serializers-xml-1.0.2/activemodel-serializers-xml.gemspec +25 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-serializers-xml-1.0.2/lib/active_model/serializers/version.rb +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-serializers-xml-1.0.2/lib/active_model/serializers/xml.rb +238 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-serializers-xml-1.0.2/lib/active_model/serializers.rb +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-serializers-xml-1.0.2/lib/active_record/serializers/xml_serializer.rb +194 -0
- data/vendor/bundle/ruby/2.7.0/gems/activemodel-serializers-xml-1.0.2/lib/activemodel-serializers-xml.rb +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/MIT-LICENSE +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/README.rdoc +285 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/active_job_serializer.rb +26 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/associations/builder/association.rb +33 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/associations/builder/belongs_to.rb +16 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/associations/builder/has_many.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/associations/builder/has_one.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/associations.rb +175 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/base.rb +1695 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/callbacks.rb +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/collection.rb +94 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/connection.rb +294 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/custom_methods.rb +129 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/exceptions.rb +84 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/formats/json_format.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/formats/xml_format.rb +27 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/formats.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/http_mock.rb +373 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/log_subscriber.rb +26 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/observing.rb +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/railtie.rb +25 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/reflection.rb +78 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/schema.rb +59 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/singleton.rb +113 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/threadsafe_attributes.rb +66 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/validations.rb +176 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource/version.rb +12 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/active_resource.rb +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/activeresource-5.1.1/lib/activeresource.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/CHANGELOG.md +665 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/MIT-LICENSE +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/README.rdoc +40 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/actionable_error.rb +48 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/all.rb +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/array_inquirer.rb +50 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/backtrace_cleaner.rb +131 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/benchmarkable.rb +51 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/builder.rb +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/cache/file_store.rb +196 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/cache/mem_cache_store.rb +213 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/cache/memory_store.rb +195 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/cache/null_store.rb +48 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/cache/redis_cache_store.rb +493 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/cache/strategy/local_cache.rb +209 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/cache/strategy/local_cache_middleware.rb +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/cache.rb +878 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/callbacks.rb +862 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/concern.rb +215 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/concurrency/load_interlock_aware_monitor.rb +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/concurrency/share_lock.rb +226 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/configurable.rb +146 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/configuration_file.rb +51 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/array/access.rb +104 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/array/conversions.rb +213 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/array/extract.rb +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/array/extract_options.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/array/grouping.rb +109 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/array/inquiry.rb +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/array/wrap.rb +48 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/array.rb +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/benchmark.rb +16 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/big_decimal/conversions.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/big_decimal.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/class/attribute.rb +131 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/class/attribute_accessors.rb +6 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/class/subclasses.rb +33 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/class.rb +4 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/date/acts_like.rb +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/date/blank.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/date/calculations.rb +146 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/date/conversions.rb +97 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/date/zones.rb +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/date.rb +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/date_and_time/calculations.rb +364 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/date_and_time/compatibility.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/date_and_time/zones.rb +40 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/date_time/acts_like.rb +16 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/date_time/blank.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/date_time/calculations.rb +211 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/date_time/compatibility.rb +18 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/date_time/conversions.rb +106 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/date_time.rb +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/digest/uuid.rb +53 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/digest.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/enumerable.rb +260 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/file/atomic.rb +70 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/file.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/hash/conversions.rb +263 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/hash/deep_merge.rb +34 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/hash/deep_transform_values.rb +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/hash/except.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/hash/indifferent_access.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/hash/keys.rb +143 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/hash/reverse_merge.rb +25 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/hash/slice.rb +27 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/hash.rb +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/integer/inflections.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/integer/multiple.rb +12 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/integer/time.rb +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/integer.rb +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/kernel/concern.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/kernel/reporting.rb +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/kernel/singleton_class.rb +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/kernel.rb +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/load_error.rb +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/marshal.rb +26 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/module/aliasing.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/module/anonymous.rb +30 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/module/attr_internal.rb +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/module/attribute_accessors.rb +206 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb +148 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/module/concerning.rb +140 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/module/delegation.rb +330 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/module/deprecation.rb +25 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/module/introspection.rb +63 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/module/redefine_method.rb +40 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/module/remove_method.rb +17 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/module.rb +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/name_error.rb +65 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/numeric/bytes.rb +66 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/numeric/conversions.rb +140 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/numeric/time.rb +66 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/numeric.rb +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/object/acts_like.rb +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/object/blank.rb +155 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/object/conversions.rb +6 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/object/deep_dup.rb +55 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/object/duplicable.rb +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/object/inclusion.rb +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/object/instance_variables.rb +30 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/object/json.rb +239 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/object/to_param.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/object/to_query.rb +89 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/object/try.rb +158 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/object/with_options.rb +82 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/object.rb +16 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/range/compare_range.rb +82 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/range/conversions.rb +41 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/range/each.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/range/include_time_with_zone.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/range/overlaps.rb +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/range.rb +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/regexp.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/securerandom.rb +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/string/access.rb +95 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/string/behavior.rb +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/string/conversions.rb +60 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/string/exclude.rb +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/string/filters.rb +145 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/string/indent.rb +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/string/inflections.rb +293 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/string/inquiry.rb +16 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/string/multibyte.rb +58 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/string/output_safety.rb +315 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/string/starts_ends_with.rb +6 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/string/strip.rb +27 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/string/zones.rb +16 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/string.rb +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/symbol/starts_ends_with.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/symbol.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/time/acts_like.rb +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/time/calculations.rb +363 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/time/compatibility.rb +16 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/time/conversions.rb +74 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/time/zones.rb +113 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/time.rb +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/uri.rb +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext.rb +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/current_attributes/test_helper.rb +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/current_attributes.rb +209 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/dependencies/autoload.rb +79 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/dependencies/interlock.rb +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/dependencies/zeitwerk_integration.rb +117 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/dependencies.rb +828 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/deprecation/behaviors.rb +122 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/deprecation/constant_accessor.rb +52 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/deprecation/disallowed.rb +56 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/deprecation/instance_delegator.rb +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/deprecation/method_wrappers.rb +85 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/deprecation/proxy_wrappers.rb +177 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/deprecation/reporting.rb +157 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/deprecation.rb +51 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/descendants_tracker.rb +112 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/digest.rb +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/duration/iso8601_parser.rb +123 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/duration/iso8601_serializer.rb +59 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/duration.rb +484 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/encrypted_configuration.rb +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/encrypted_file.rb +117 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/environment_inquirer.rb +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/evented_file_update_checker.rb +170 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/execution_wrapper.rb +129 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/executor.rb +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/file_update_checker.rb +162 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/fork_tracker.rb +64 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/gem_version.rb +17 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/gzip.rb +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/hash_with_indifferent_access.rb +423 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/i18n.rb +16 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/i18n_railtie.rb +125 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/inflections.rb +72 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/inflector/inflections.rb +255 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/inflector/methods.rb +401 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/inflector/transliterate.rb +147 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/inflector.rb +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/json/decoding.rb +75 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/json/encoding.rb +138 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/json.rb +4 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/key_generator.rb +41 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/lazy_load_hooks.rb +81 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/locale/en.rb +33 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/locale/en.yml +139 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/log_subscriber/test_helper.rb +106 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/log_subscriber.rb +142 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/logger.rb +93 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/logger_silence.rb +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/logger_thread_safe_level.rb +78 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/message_encryptor.rb +224 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/message_verifier.rb +205 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/messages/metadata.rb +80 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/messages/rotation_configuration.rb +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/messages/rotator.rb +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/multibyte/chars.rb +177 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/multibyte/unicode.rb +82 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/multibyte.rb +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/notifications/fanout.rb +259 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/notifications/instrumenter.rb +155 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/notifications.rb +280 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/number_helper/number_converter.rb +183 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/number_helper/number_to_currency_converter.rb +41 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/number_helper/number_to_delimited_converter.rb +30 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/number_helper/number_to_human_converter.rb +69 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/number_helper/number_to_human_size_converter.rb +60 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/number_helper/number_to_percentage_converter.rb +16 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/number_helper/number_to_phone_converter.rb +59 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/number_helper/number_to_rounded_converter.rb +59 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/number_helper/rounding_helper.rb +50 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/number_helper.rb +397 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/option_merger.rb +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/ordered_hash.rb +50 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/ordered_options.rb +95 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/parameter_filter.rb +133 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/per_thread_registry.rb +60 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/proxy_object.rb +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/rails.rb +26 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/railtie.rb +102 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/reloader.rb +130 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/rescuable.rb +174 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/secure_compare_rotator.rb +51 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/security_utils.rb +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/string_inquirer.rb +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/subscriber.rb +174 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/tagged_logging.rb +113 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/test_case.rb +163 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/testing/assertions.rb +235 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/testing/autorun.rb +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/testing/constant_lookup.rb +51 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/testing/declarative.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/testing/deprecation.rb +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/testing/file_fixtures.rb +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/testing/isolation.rb +110 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/testing/method_call_assertions.rb +70 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/testing/parallelization/server.rb +78 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/testing/parallelization/worker.rb +100 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/testing/parallelization.rb +51 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/testing/setup_and_teardown.rb +55 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/testing/stream.rb +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/testing/tagged_logging.rb +27 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/testing/time_helpers.rb +235 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/time.rb +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/time_with_zone.rb +585 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/values/time_zone.rb +580 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/version.rb +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/xml_mini/jdom.rb +182 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/xml_mini/libxml.rb +80 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/xml_mini/libxmlsax.rb +83 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/xml_mini/nokogiri.rb +83 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/xml_mini/nokogirisax.rb +86 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/xml_mini/rexml.rb +137 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/xml_mini.rb +201 -0
- data/vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support.rb +108 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/CHANGELOG +18 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/LICENSE +184 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/Manifest +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/README +67 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/allison.gemspec +48 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/bin/allison +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/cache/BODY +570 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/cache/CLASS_INDEX +4 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/cache/CLASS_PAGE +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/cache/FILE_INDEX +4 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/cache/FILE_PAGE +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/cache/FONTS +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/cache/FR_INDEX_BODY +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/cache/INDEX +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/cache/JAVASCRIPT +316 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/cache/METHOD_INDEX +4 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/cache/METHOD_LIST +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/cache/SRC_PAGE +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/cache/STYLE +320 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/contrib/Rakefile +147 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/contrib/rdoc_patch.rb +252 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/contrib/rdoc_patch_test.rb +95 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/lib/allison.css +314 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/lib/allison.js +316 -0
- data/vendor/bundle/ruby/2.7.0/gems/allison-2.0.3/lib/allison.rb +276 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/CHANGES +119 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/MIT-LICENSE +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/README.md +258 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/Rakefile +194 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/builder.blurb +27 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/builder.gemspec +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/doc/jamis.rb +592 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/doc/releases/builder-1.2.4.rdoc +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/doc/releases/builder-2.0.0.rdoc +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/doc/releases/builder-2.1.1.rdoc +58 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/lib/blankslate.rb +138 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/lib/builder/blankslate.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/lib/builder/version.rb +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/lib/builder/xchar.rb +198 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/lib/builder/xmlbase.rb +200 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/lib/builder/xmlevents.rb +64 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/lib/builder/xmlmarkup.rb +345 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/lib/builder.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/rakelib/publish.rake +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/rakelib/tags.rake +63 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/rakelib/testing.rake +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/test/helper.rb +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/test/performance.rb +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/test/preload.rb +40 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/test/test_blankslate.rb +208 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/test/test_eventbuilder.rb +151 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/test/test_markupbuilder.rb +617 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/test/test_method_caching.rb +63 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/test/test_namecollision.rb +40 -0
- data/vendor/bundle/ruby/2.7.0/gems/builder-3.2.4/test/test_xchar.rb +85 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/CHANGELOG.md +528 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/Gemfile +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/LICENSE.txt +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/README.md +408 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/Rakefile +339 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/ConcurrentRubyService.java +17 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/AtomicReferenceLibrary.java +175 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/JRubyMapBackendLibrary.java +248 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicBooleanLibrary.java +93 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicFixnumLibrary.java +113 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaSemaphoreLibrary.java +159 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/SynchronizationLibrary.java +307 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMap.java +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMapV8.java +3863 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/LongAdder.java +203 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/Striped64.java +342 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/ConcurrentHashMapV8.java +3800 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/LongAdder.java +204 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/Striped64.java +291 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166y/ThreadLocalRandom.java +199 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/agent.rb +587 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/array.rb +66 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/async.rb +448 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atom.rb +222 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/abstract_thread_local_var.rb +66 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/atomic_boolean.rb +126 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/atomic_fixnum.rb +143 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/atomic_markable_reference.rb +164 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/atomic_reference.rb +204 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/count_down_latch.rb +100 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/cyclic_barrier.rb +128 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/event.rb +109 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/java_count_down_latch.rb +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/java_thread_local_var.rb +37 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_boolean.rb +62 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_fixnum.rb +75 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/mutex_count_down_latch.rb +44 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/mutex_semaphore.rb +115 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/read_write_lock.rb +254 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/reentrant_read_write_lock.rb +379 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/ruby_thread_local_var.rb +181 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/semaphore.rb +145 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/thread_local_var.rb +104 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic_reference/mutex_atomic.rb +56 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic_reference/numeric_cas_wrapper.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomics.rb +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/copy_on_notify_observer_set.rb +107 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/copy_on_write_observer_set.rb +111 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/java_non_concurrent_priority_queue.rb +84 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/lock_free_stack.rb +158 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/map/atomic_reference_map_backend.rb +927 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/map/mri_map_backend.rb +66 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/map/non_concurrent_map_backend.rb +140 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/map/synchronized_map_backend.rb +82 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/map/truffleruby_map_backend.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/non_concurrent_priority_queue.rb +143 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/ruby_non_concurrent_priority_queue.rb +160 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concern/deprecation.rb +34 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concern/dereferenceable.rb +73 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concern/logging.rb +32 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concern/obligation.rb +220 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concern/observable.rb +110 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concurrent_ruby.jar +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/configuration.rb +188 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/constants.rb +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/dataflow.rb +81 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/delay.rb +199 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/errors.rb +69 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/exchanger.rb +352 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/abstract_executor_service.rb +128 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/cached_thread_pool.rb +62 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/executor_service.rb +185 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/fixed_thread_pool.rb +210 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/immediate_executor.rb +66 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/indirect_immediate_executor.rb +44 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/java_executor_service.rb +103 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/java_single_thread_executor.rb +30 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/java_thread_pool_executor.rb +136 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/ruby_executor_service.rb +76 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/ruby_single_thread_executor.rb +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/ruby_thread_pool_executor.rb +377 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/safe_task_executor.rb +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/serial_executor_service.rb +34 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/serialized_execution.rb +107 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/serialized_execution_delegator.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/simple_executor_service.rb +100 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/single_thread_executor.rb +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/thread_pool_executor.rb +88 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/timer_set.rb +172 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executors.rb +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/future.rb +141 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/hash.rb +59 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/immutable_struct.rb +101 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/ivar.rb +207 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/map.rb +347 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/maybe.rb +229 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/mutable_struct.rb +239 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/mvar.rb +242 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/options.rb +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/promise.rb +580 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/promises.rb +2167 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/re_include.rb +58 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/scheduled_task.rb +318 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/set.rb +74 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/settable_struct.rb +139 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/abstract_lockable_object.rb +98 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/abstract_object.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/abstract_struct.rb +171 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/condition.rb +60 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/jruby_lockable_object.rb +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/jruby_object.rb +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/lock.rb +36 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/lockable_object.rb +74 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/mri_object.rb +44 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/mutex_lockable_object.rb +88 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/object.rb +183 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/rbx_lockable_object.rb +71 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/rbx_object.rb +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/truffleruby_object.rb +47 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/volatile.rb +36 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization.rb +30 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/synchronized_delegator.rb +50 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/adder.rb +74 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/cheap_lockable.rb +118 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/data_structures.rb +88 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/power_of_two_tuple.rb +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/striped64.rb +246 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/volatile.rb +75 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/xor_shift_random.rb +50 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util.rb +16 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/timer_task.rb +333 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/tuple.rb +86 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/tvar.rb +261 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/utility/engine.rb +56 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/utility/monotonic_time.rb +58 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/utility/native_extension_loader.rb +79 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/utility/native_integer.rb +53 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/utility/processor_counter.rb +163 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/version.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent-ruby.rb +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent.rb +134 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.0/CHANGELOG +101 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.0/LICENSE +184 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.0/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.0/Manifest +18 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.0/README +97 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.0/Rakefile +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.0/echoe.gemspec +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.0/lib/echoe/extensions.rb +61 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.0/lib/echoe/platform.rb +36 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.0/lib/echoe/rubygems.rb +41 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.0/lib/echoe.rb +796 -0
- data/{LICENSE → vendor/bundle/ruby/2.7.0/gems/echoe-4.6.0/vendor/rake/MIT-LICENSE} +1 -1
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.0/vendor/rake/lib/rake/contrib/compositepublisher.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.0/vendor/rake/lib/rake/contrib/ftptools.rb +153 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.0/vendor/rake/lib/rake/contrib/publisher.rb +75 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.0/vendor/rake/lib/rake/contrib/rubyforgepublisher.rb +18 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.0/vendor/rake/lib/rake/contrib/sshpublisher.rb +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.0/vendor/rake/lib/rake/contrib/sys.rb +209 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.3/CHANGELOG +107 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.3/LICENSE +184 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.3/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.3/Manifest +18 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.3/README +97 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.3/Rakefile +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.3/echoe.gemspec +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.3/lib/echoe/extensions.rb +61 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.3/lib/echoe/platform.rb +37 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.3/lib/echoe/rubygems.rb +41 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.3/lib/echoe.rb +795 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.3/vendor/rake/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.3/vendor/rake/lib/rake/contrib/compositepublisher.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.3/vendor/rake/lib/rake/contrib/ftptools.rb +153 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.3/vendor/rake/lib/rake/contrib/publisher.rb +75 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.3/vendor/rake/lib/rake/contrib/rubyforgepublisher.rb +18 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.3/vendor/rake/lib/rake/contrib/sshpublisher.rb +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.3/vendor/rake/lib/rake/contrib/sys.rb +209 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.5/CHANGELOG +111 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.5/LICENSE +184 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.5/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.5/Manifest +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.5/README.rdoc +97 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.5/Rakefile +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.5/echoe.gemspec +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.5/echoe.pem +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.5/lib/echoe/extensions.rb +61 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.5/lib/echoe/platform.rb +37 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.5/lib/echoe/rubygems.rb +41 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.5/lib/echoe.rb +793 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.5/vendor/rake/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.5/vendor/rake/lib/rake/contrib/compositepublisher.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.5/vendor/rake/lib/rake/contrib/ftptools.rb +153 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.5/vendor/rake/lib/rake/contrib/publisher.rb +75 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.5/vendor/rake/lib/rake/contrib/rubyforgepublisher.rb +18 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.5/vendor/rake/lib/rake/contrib/sshpublisher.rb +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.5/vendor/rake/lib/rake/contrib/sys.rb +209 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.6/CHANGELOG +113 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.6/LICENSE +184 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.6/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.6/Manifest +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.6/README.rdoc +97 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.6/Rakefile +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.6/echoe.gemspec +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.6/echoe.pem +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.6/lib/echoe/extensions.rb +61 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.6/lib/echoe/platform.rb +37 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.6/lib/echoe/rubygems.rb +41 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.6/lib/echoe.rb +793 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.6/vendor/rake/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.6/vendor/rake/lib/rake/contrib/compositepublisher.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.6/vendor/rake/lib/rake/contrib/ftptools.rb +153 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.6/vendor/rake/lib/rake/contrib/publisher.rb +75 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.6/vendor/rake/lib/rake/contrib/rubyforgepublisher.rb +18 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.6/vendor/rake/lib/rake/contrib/sshpublisher.rb +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/echoe-4.6.6/vendor/rake/lib/rake/contrib/sys.rb +209 -0
- data/vendor/bundle/ruby/2.7.0/gems/gemcutter-0.7.1/Gemfile +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/gemcutter-0.7.1/MIT-LICENSE +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/gemcutter-0.7.1/README.md +99 -0
- data/vendor/bundle/ruby/2.7.0/gems/gemcutter-0.7.1/Rakefile +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/gemcutter-0.7.1/lib/gemcutter/version.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/gemcutter-0.7.1/lib/rubygems/commands/migrate_command.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/gemcutter-0.7.1/lib/rubygems/commands/tumble_command.rb +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/gemcutter-0.7.1/lib/rubygems/commands/webhook_command.rb +117 -0
- data/vendor/bundle/ruby/2.7.0/gems/gemcutter-0.7.1/lib/rubygems/commands/yank_command.rb +86 -0
- data/vendor/bundle/ruby/2.7.0/gems/gemcutter-0.7.1/lib/rubygems_plugin.rb +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/gemcutter-0.7.1/test/helper.rb +41 -0
- data/vendor/bundle/ruby/2.7.0/gems/gemcutter-0.7.1/test/webhook_command_test.rb +240 -0
- data/vendor/bundle/ruby/2.7.0/gems/gemcutter-0.7.1/test/yank_command_test.rb +157 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/MIT-LICENSE +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/README.md +122 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/backend/base.rb +289 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/backend/cache.rb +113 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/backend/cache_file.rb +36 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/backend/cascade.rb +56 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/backend/chain.rb +130 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/backend/fallbacks.rb +97 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/backend/flatten.rb +118 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/backend/gettext.rb +85 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/backend/interpolation_compiler.rb +123 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/backend/key_value.rb +206 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/backend/memoize.rb +54 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/backend/metadata.rb +71 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/backend/pluralization.rb +55 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/backend/simple.rb +108 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/backend/transliterator.rb +108 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/backend.rb +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/config.rb +165 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/core_ext/hash.rb +59 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/exceptions.rb +111 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/gettext/helpers.rb +75 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/gettext/po_parser.rb +329 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/gettext.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/interpolate/ruby.rb +39 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/locale/fallbacks.rb +99 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/locale/tag/parents.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/locale/tag/rfc4646.rb +74 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/locale/tag/simple.rb +39 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/locale/tag.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/locale.rb +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/middleware.rb +17 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/tests/basics.rb +60 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/tests/defaults.rb +52 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/tests/interpolation.rb +163 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/tests/link.rb +66 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/tests/localization/date.rb +117 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/tests/localization/date_time.rb +103 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/tests/localization/procs.rb +117 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/tests/localization/time.rb +103 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/tests/localization.rb +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/tests/lookup.rb +81 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/tests/pluralization.rb +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/tests/procs.rb +60 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/tests.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n/version.rb +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/i18n-1.8.11/lib/i18n.rb +415 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/CHANGES.md +457 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/LICENSE +56 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/README.md +425 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/VERSION +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/json_pure.gemspec +55 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json/add/bigdecimal.rb +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json/add/complex.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json/add/core.rb +12 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json/add/date.rb +34 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json/add/date_time.rb +50 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json/add/exception.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json/add/ostruct.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json/add/range.rb +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json/add/rational.rb +27 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json/add/regexp.rb +30 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json/add/set.rb +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json/add/struct.rb +30 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json/add/symbol.rb +25 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json/add/time.rb +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json/common.rb +703 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json/ext.rb +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json/generic_object.rb +71 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json/pure/generator.rb +479 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json/pure/parser.rb +337 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json/pure.rb +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json/version.rb +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/json_pure-2.6.1/lib/json.rb +583 -0
- data/vendor/bundle/ruby/2.7.0/gems/lolcat-100.0.1/Gemfile +2 -0
- data/vendor/bundle/ruby/2.7.0/gems/lolcat-100.0.1/LICENSE +25 -0
- data/vendor/bundle/ruby/2.7.0/gems/lolcat-100.0.1/README.md +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/lolcat-100.0.1/Rakefile +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/lolcat-100.0.1/ass/nom.jpg +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/lolcat-100.0.1/ass/screenshot.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/lolcat-100.0.1/bin/lolcat +32 -0
- data/vendor/bundle/ruby/2.7.0/gems/lolcat-100.0.1/lib/lolcat/cat.rb +135 -0
- data/vendor/bundle/ruby/2.7.0/gems/lolcat-100.0.1/lib/lolcat/lol.rb +122 -0
- data/vendor/bundle/ruby/2.7.0/gems/lolcat-100.0.1/lib/lolcat/version.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/lolcat-100.0.1/lib/lolcat.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/lolcat-100.0.1/lolcat.gemspec +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/lolcat-100.0.1/man/lolcat.6 +100 -0
- data/vendor/bundle/ruby/2.7.0/gems/manpages-0.6.1/CHANGELOG.md +121 -0
- data/vendor/bundle/ruby/2.7.0/gems/manpages-0.6.1/CODE_OF_CONDUCT.md +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/manpages-0.6.1/Gemfile +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/manpages-0.6.1/Gemfile.lock +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/manpages-0.6.1/LICENSE +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/manpages-0.6.1/README.md +65 -0
- data/vendor/bundle/ruby/2.7.0/gems/manpages-0.6.1/Rakefile +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/manpages-0.6.1/lib/manpages/gem_version.rb +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/manpages-0.6.1/lib/manpages/install.rb +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/manpages-0.6.1/lib/manpages/man_files.rb +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/manpages-0.6.1/lib/manpages/uninstall.rb +27 -0
- data/vendor/bundle/ruby/2.7.0/gems/manpages-0.6.1/lib/manpages/version.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/manpages-0.6.1/lib/manpages.rb +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/manpages-0.6.1/lib/rubygems/commands/manpages_command.rb +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/manpages-0.6.1/lib/rubygems_plugin.rb +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/manpages-0.6.1/manpages.gemspec +30 -0
- data/vendor/bundle/ruby/2.7.0/gems/manpages-0.6.1/rbenv/hooks/install-man.bash +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/manpages-0.6.1/rbenv/hooks/version-name-change-man.bash +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/manpages-0.6.1/rbenv/rbenv_hook_install.sh +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/manpages-0.6.1/rbenv/remove_hook_folders.sh +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/manpages-0.6.1/rbenv/vars.sh +6 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/History.rdoc +1430 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/Manifest.txt +27 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/README.rdoc +803 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/Rakefile +74 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/design_rationale.rb +52 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/lib/hoe/minitest.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/lib/minitest/assertions.rb +806 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/lib/minitest/autorun.rb +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/lib/minitest/benchmark.rb +455 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/lib/minitest/expectations.rb +303 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/lib/minitest/hell.rb +11 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/lib/minitest/mock.rb +244 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/lib/minitest/parallel.rb +70 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/lib/minitest/pride.rb +4 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/lib/minitest/pride_plugin.rb +142 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/lib/minitest/spec.rb +343 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/lib/minitest/test.rb +230 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/lib/minitest/unit.rb +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/lib/minitest.rb +1069 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/test/minitest/metametameta.rb +136 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/test/minitest/test_minitest_assertions.rb +1588 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/test/minitest/test_minitest_benchmark.rb +137 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/test/minitest/test_minitest_mock.rb +885 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/test/minitest/test_minitest_reporter.rb +311 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/test/minitest/test_minitest_spec.rb +1062 -0
- data/vendor/bundle/ruby/2.7.0/gems/minitest-5.15.0/test/minitest/test_minitest_test.rb +1109 -0
- data/vendor/bundle/ruby/2.7.0/gems/optimist-3.0.1/FAQ.txt +92 -0
- data/vendor/bundle/ruby/2.7.0/gems/optimist-3.0.1/Gemfile +4 -0
- data/vendor/bundle/ruby/2.7.0/gems/optimist-3.0.1/History.txt +175 -0
- data/vendor/bundle/ruby/2.7.0/gems/optimist-3.0.1/LICENSE.txt +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/optimist-3.0.1/README.md +60 -0
- data/vendor/bundle/ruby/2.7.0/gems/optimist-3.0.1/Rakefile +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/optimist-3.0.1/lib/optimist.rb +1014 -0
- data/vendor/bundle/ruby/2.7.0/gems/optimist-3.0.1/optimist.gemspec +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/optimist-3.0.1/test/optimist/command_line_error_test.rb +27 -0
- data/vendor/bundle/ruby/2.7.0/gems/optimist-3.0.1/test/optimist/help_needed_test.rb +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/optimist-3.0.1/test/optimist/parser_educate_test.rb +175 -0
- data/vendor/bundle/ruby/2.7.0/gems/optimist-3.0.1/test/optimist/parser_opt_test.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/optimist-3.0.1/test/optimist/parser_parse_test.rb +79 -0
- data/vendor/bundle/ruby/2.7.0/gems/optimist-3.0.1/test/optimist/parser_test.rb +1220 -0
- data/vendor/bundle/ruby/2.7.0/gems/optimist-3.0.1/test/optimist/version_needed_test.rb +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/optimist-3.0.1/test/optimist_test.rb +190 -0
- data/vendor/bundle/ruby/2.7.0/gems/optimist-3.0.1/test/support/assert_helpers.rb +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/optimist-3.0.1/test/test_helper.rb +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/paint-2.2.1/CHANGELOG.md +112 -0
- data/vendor/bundle/ruby/2.7.0/gems/paint-2.2.1/MIT-LICENSE.txt +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/paint-2.2.1/README.md +194 -0
- data/vendor/bundle/ruby/2.7.0/gems/paint-2.2.1/Rakefile +54 -0
- data/vendor/bundle/ruby/2.7.0/gems/paint-2.2.1/data/rgb_colors.marshal.gz +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/paint-2.2.1/lib/paint/constants.rb +102 -0
- data/vendor/bundle/ruby/2.7.0/gems/paint-2.2.1/lib/paint/pa.rb +11 -0
- data/vendor/bundle/ruby/2.7.0/gems/paint-2.2.1/lib/paint/rgb_colors.rb +12 -0
- data/vendor/bundle/ruby/2.7.0/gems/paint-2.2.1/lib/paint/util.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/paint-2.2.1/lib/paint/version.rb +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/paint-2.2.1/lib/paint.rb +257 -0
- data/vendor/bundle/ruby/2.7.0/gems/paint-2.2.1/paint.gemspec +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/power_assert-2.0.1/BSDL +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/power_assert-2.0.1/COPYING +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/power_assert-2.0.1/Gemfile +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/power_assert-2.0.1/LEGAL +4 -0
- data/vendor/bundle/ruby/2.7.0/gems/power_assert-2.0.1/README.md +98 -0
- data/vendor/bundle/ruby/2.7.0/gems/power_assert-2.0.1/Rakefile +59 -0
- data/vendor/bundle/ruby/2.7.0/gems/power_assert-2.0.1/lib/power_assert/colorize.rb +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/power_assert-2.0.1/lib/power_assert/configuration.rb +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/power_assert-2.0.1/lib/power_assert/context.rb +233 -0
- data/vendor/bundle/ruby/2.7.0/gems/power_assert-2.0.1/lib/power_assert/enable_tracepoint_events.rb +58 -0
- data/vendor/bundle/ruby/2.7.0/gems/power_assert-2.0.1/lib/power_assert/inspector.rb +62 -0
- data/vendor/bundle/ruby/2.7.0/gems/power_assert-2.0.1/lib/power_assert/parser.rb +251 -0
- data/vendor/bundle/ruby/2.7.0/gems/power_assert-2.0.1/lib/power_assert/version.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/power_assert-2.0.1/lib/power_assert.rb +91 -0
- data/vendor/bundle/ruby/2.7.0/gems/power_assert-2.0.1/power_assert.gemspec +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/Gemfile +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/LICENSE +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/Mavenfile +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/README.md +72 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/Rakefile +41 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/bin/console +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/bin/setup +6 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/Makefile +274 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/depend +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/extconf.rb +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/psych.bundle +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/psych.c +37 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/psych.h +17 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/psych_emitter.c +555 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/psych_emitter.h +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/psych_parser.c +579 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/psych_parser.h +6 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/psych_to_ruby.c +39 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/psych_to_ruby.h +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/psych_yaml_tree.c +12 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/psych_yaml_tree.h +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/yaml/LICENSE +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/yaml/api.c +1393 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/yaml/config.h +80 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/yaml/dumper.c +394 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/yaml/emitter.c +2358 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/yaml/loader.c +544 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/yaml/parser.c +1375 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/yaml/reader.c +469 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/yaml/scanner.c +3598 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/yaml/writer.c +141 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/yaml/yaml.h +1985 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/ext/psych/yaml/yaml_private.h +688 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/class_loader.rb +104 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/coder.rb +95 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/core_ext.rb +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/exception.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/handler.rb +255 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/handlers/document_stream.rb +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/handlers/recorder.rb +40 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/json/ruby_events.rb +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/json/stream.rb +17 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/json/tree_builder.rb +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/json/yaml_events.rb +30 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/nodes/alias.rb +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/nodes/document.rb +63 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/nodes/mapping.rb +59 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/nodes/node.rb +75 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/nodes/scalar.rb +70 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/nodes/sequence.rb +84 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/nodes/stream.rb +40 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/nodes.rb +78 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/omap.rb +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/parser.rb +52 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/scalar_scanner.rb +135 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/set.rb +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/stream.rb +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/streaming.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/syntax_error.rb +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/tree_builder.rb +137 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/versions.rb +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/visitors/depth_first.rb +27 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/visitors/emitter.rb +52 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/visitors/json_tree.rb +25 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/visitors/to_ruby.rb +434 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/visitors/visitor.rb +34 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/visitors/yaml_tree.rb +587 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/visitors.rb +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych/y.rb +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych.bundle +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/lib/psych.rb +741 -0
- data/vendor/bundle/ruby/2.7.0/gems/psych-4.0.3/psych.gemspec +69 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/History.rdoc +2403 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/README.rdoc +155 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/command_line_usage.rdoc +158 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/example/Rakefile1 +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/example/Rakefile2 +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/example/a.c +6 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/example/b.c +6 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/example/main.c +11 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/glossary.rdoc +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/jamis.rb +592 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/proto_rake.rdoc +127 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/rake.1 +156 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/rakefile.rdoc +622 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/doc/rational.rdoc +151 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/exe/rake +27 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/application.rb +831 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/backtrace.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/clean.rb +78 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/cloneable.rb +17 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/cpu_counter.rb +107 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/default_loader.rb +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/dsl_definition.rb +195 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/early_time.rb +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/ext/core.rb +26 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/ext/string.rb +176 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/file_creation_task.rb +25 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/file_list.rb +435 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/file_task.rb +54 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/file_utils.rb +134 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/file_utils_ext.rb +134 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/invocation_chain.rb +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/invocation_exception_mixin.rb +17 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/late_time.rb +18 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/linked_list.rb +112 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/loaders/makefile.rb +54 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/multi_task.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/name_space.rb +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/packagetask.rb +222 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/phony.rb +16 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/private_reader.rb +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/promise.rb +100 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/pseudo_status.rb +30 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/rake_module.rb +67 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/rake_test_loader.rb +27 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/rule_recursion_overflow_error.rb +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/scope.rb +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/task.rb +434 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/task_argument_error.rb +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/task_arguments.rb +109 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/task_manager.rb +331 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/tasklib.rb +12 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/testtask.rb +189 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/thread_history_display.rb +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/thread_pool.rb +163 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/trace_output.rb +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/version.rb +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake/win32.rb +51 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/lib/rake.rb +71 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.6/rake.gemspec +100 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/CONTRIBUTING.rdoc +220 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/CVE-2013-0256.rdoc +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/ExampleMarkdown.md +37 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/ExampleRDoc.rdoc +208 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/Gemfile +12 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/History.rdoc +1666 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/LEGAL.rdoc +50 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/LICENSE.rdoc +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/README.rdoc +129 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/RI.rdoc +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/Rakefile +107 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/TODO.rdoc +59 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/bin/console +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/bin/setup +6 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/exe/rdoc +44 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/exe/ri +12 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/alias.rb +112 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/anon_class.rb +11 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/any_method.rb +364 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/attr.rb +176 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/class_module.rb +802 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/code_object.rb +421 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/code_objects.rb +6 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/comment.rb +250 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/constant.rb +187 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/context/section.rb +232 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/context.rb +1266 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/cross_reference.rb +210 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/encoding.rb +136 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/erb_partial.rb +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/erbio.rb +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/extend.rb +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/darkfish.rb +790 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/json_index.rb +300 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/markup.rb +160 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/pot/message_extractor.rb +68 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/pot/po.rb +84 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/pot/po_entry.rb +141 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/pot.rb +98 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/ri.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/_footer.rhtml +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/_head.rhtml +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/_sidebar_VCS_info.rhtml +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/_sidebar_classes.rhtml +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtml +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/_sidebar_in_files.rhtml +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/_sidebar_installed.rhtml +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/_sidebar_methods.rhtml +12 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/_sidebar_navigation.rhtml +11 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/_sidebar_pages.rhtml +12 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/_sidebar_parent.rhtml +11 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/_sidebar_search.rhtml +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/_sidebar_sections.rhtml +11 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/_sidebar_table_of_contents.rhtml +18 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/class.rhtml +172 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/css/fonts.css +167 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/css/rdoc.css +639 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/fonts/Lato-Light.ttf +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/fonts/Lato-LightItalic.ttf +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/fonts/Lato-Regular.ttf +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/fonts/Lato-RegularItalic.ttf +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Bold.ttf +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Regular.ttf +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/add.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/arrow_up.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/brick.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/brick_link.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/bug.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/bullet_black.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/bullet_toggle_minus.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/bullet_toggle_plus.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/date.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/delete.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/find.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/loadingAnimation.gif +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/macFFBgHack.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/package.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/page_green.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/page_white_text.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/page_white_width.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/plugin.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/ruby.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/tag_blue.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/tag_green.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/transparent.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/wrench.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/wrench_orange.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/images/zoom.png +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/index.rhtml +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/js/darkfish.js +84 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/js/search.js +110 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/page.rhtml +18 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/servlet_not_found.rhtml +18 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/servlet_root.rhtml +62 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/darkfish/table_of_contents.rhtml +58 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/json_index/js/navigation.js +105 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator/template/json_index/js/searcher.js +229 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/generator.rb +51 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/ghost_method.rb +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/i18n/locale.rb +102 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/i18n/text.rb +126 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/i18n.rb +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/include.rb +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/known_classes.rb +73 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markdown/entities.rb +2132 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markdown/literals.kpeg +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markdown/literals.rb +416 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markdown.kpeg +1237 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markdown.rb +16684 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/attr_changer.rb +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/attr_span.rb +36 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/attribute_manager.rb +409 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/attributes.rb +71 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/blank_line.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/block_quote.rb +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/document.rb +165 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/formatter.rb +266 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/hard_break.rb +32 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/heading.rb +79 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/include.rb +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/indented_paragraph.rb +48 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/list.rb +102 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/list_item.rb +100 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/paragraph.rb +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/parser.rb +575 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/pre_process.rb +298 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/raw.rb +70 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/regexp_handling.rb +41 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/rule.rb +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/table.rb +47 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/to_ansi.rb +94 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/to_bs.rb +77 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/to_html.rb +444 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/to_html_crossref.rb +176 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/to_html_snippet.rb +285 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/to_joined_paragraph.rb +47 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/to_label.rb +75 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/to_markdown.rb +192 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/to_rdoc.rb +362 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/to_table_of_contents.rb +89 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/to_test.rb +70 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/to_tt_only.rb +121 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup/verbatim.rb +84 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/markup.rb +867 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/meta_method.rb +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/method_attr.rb +419 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/mixin.rb +121 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/normal_class.rb +93 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/normal_module.rb +74 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/options.rb +1314 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/parser/c.rb +1237 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/parser/changelog.rb +335 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/parser/markdown.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/parser/rd.rb +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/parser/ripper_state_lex.rb +590 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/parser/ruby.rb +2345 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/parser/ruby_tools.rb +167 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/parser/simple.rb +61 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/parser/text.rb +12 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/parser.rb +277 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/rd/block_parser.rb +1056 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/rd/block_parser.ry +639 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/rd/inline.rb +72 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/rd/inline_parser.rb +1208 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/rd/inline_parser.ry +593 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/rd.rb +100 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/rdoc.rb +551 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/require.rb +52 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/ri/driver.rb +1579 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/ri/formatter.rb +6 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/ri/paths.rb +171 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/ri/store.rb +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/ri/task.rb +71 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/ri.rb +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/rubygems_hook.rb +248 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/servlet.rb +451 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/single_class.rb +26 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/stats/normal.rb +58 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/stats/quiet.rb +60 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/stats/verbose.rb +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/stats.rb +462 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/store.rb +979 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/task.rb +329 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/text.rb +312 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/token_stream.rb +119 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/tom_doc.rb +263 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/top_level.rb +289 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc/version.rb +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/lib/rdoc.rb +201 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/man/ri.1 +247 -0
- data/vendor/bundle/ruby/2.7.0/gems/rdoc-6.4.0/rdoc.gemspec +249 -0
- data/vendor/bundle/ruby/2.7.0/gems/rubyforge-2.0.4/History.txt +128 -0
- data/vendor/bundle/ruby/2.7.0/gems/rubyforge-2.0.4/Manifest.txt +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/rubyforge-2.0.4/README.txt +55 -0
- data/vendor/bundle/ruby/2.7.0/gems/rubyforge-2.0.4/Rakefile +40 -0
- data/vendor/bundle/ruby/2.7.0/gems/rubyforge-2.0.4/bin/rubyforge +222 -0
- data/vendor/bundle/ruby/2.7.0/gems/rubyforge-2.0.4/lib/rubyforge/client.rb +124 -0
- data/vendor/bundle/ruby/2.7.0/gems/rubyforge-2.0.4/lib/rubyforge.rb +389 -0
- data/vendor/bundle/ruby/2.7.0/gems/rubyforge-2.0.4/test/test_rubyforge.rb +329 -0
- data/vendor/bundle/ruby/2.7.0/gems/rubyforge-2.0.4/test/test_rubyforge_client.rb +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/stringio-3.0.0/README.md +44 -0
- data/vendor/bundle/ruby/2.7.0/gems/stringio-3.0.0/ext/stringio/Makefile +267 -0
- data/vendor/bundle/ruby/2.7.0/gems/stringio-3.0.0/ext/stringio/extconf.rb +4 -0
- data/vendor/bundle/ruby/2.7.0/gems/stringio-3.0.0/ext/stringio/stringio.bundle +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/stringio-3.0.0/ext/stringio/stringio.c +1862 -0
- data/vendor/bundle/ruby/2.7.0/gems/stringio-3.0.0/lib/stringio.bundle +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/BSDL +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/COPYING +64 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/PSFL +271 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/README.md +98 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/Rakefile +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/doc/text/getting-started.md +246 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/doc/text/how-to.md +90 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/doc/text/news.md +1675 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/assertion-failed-error.rb +60 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/assertions.rb +2449 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/attribute-matcher.rb +26 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/attribute.rb +227 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/auto-runner-loader.rb +17 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/autorunner.rb +581 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/code-snippet-fetcher.rb +58 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/collector/descendant.rb +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/collector/dir.rb +110 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/collector/load.rb +199 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/collector/objectspace.rb +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/collector/xml.rb +249 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/collector.rb +104 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/color-scheme.rb +216 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/color.rb +134 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/data-sets.rb +127 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/data.rb +371 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/diff.rb +745 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/error.rb +158 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/exception-handler.rb +82 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/failure.rb +169 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/fault-location-detector.rb +100 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/fixture.rb +304 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/notification.rb +138 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/omission.rb +198 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/pending.rb +155 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/priority.rb +194 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/runner/console.rb +67 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/runner/emacs.rb +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/runner/xml.rb +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/test-suite-creator.rb +103 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/testcase.rb +938 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/testresult.rb +132 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/testsuite.rb +175 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/ui/console/outputlevel.rb +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/ui/console/testrunner.rb +759 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/ui/emacs/testrunner.rb +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/ui/testrunner.rb +53 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/ui/testrunnermediator.rb +114 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/ui/testrunnerutilities.rb +41 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/ui/xml/testrunner.rb +224 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/util/backtracefilter.rb +59 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/util/memory-usage.rb +47 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/util/method-owner-finder.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/util/observable.rb +90 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/util/output.rb +32 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/util/procwrapper.rb +48 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/version.rb +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit/warning.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test/unit.rb +521 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/lib/test-unit.rb +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/sample/adder.rb +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/sample/subtracter.rb +12 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/sample/test_adder.rb +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/sample/test_subtracter.rb +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.5.3/sample/test_user.rb +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/CHANGES.md +973 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/LICENSE +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/README.md +406 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/annual_rules.rb +71 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/country.rb +208 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/country_timezone.rb +93 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/data_source.rb +435 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/data_sources/constant_offset_data_timezone_info.rb +56 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/data_sources/country_info.rb +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/data_sources/data_timezone_info.rb +91 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/data_sources/linked_timezone_info.rb +33 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/data_sources/posix_time_zone_parser.rb +181 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/data_sources/ruby_data_source.rb +145 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/data_sources/timezone_info.rb +47 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/data_sources/transitions_data_timezone_info.rb +214 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/data_sources/zoneinfo_data_source.rb +580 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/data_sources/zoneinfo_reader.rb +486 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/data_sources.rb +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/data_timezone.rb +44 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/datetime_with_offset.rb +153 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/format1/country_definer.rb +17 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/format1/country_index_definition.rb +64 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/format1/timezone_definer.rb +64 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/format1/timezone_definition.rb +39 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/format1/timezone_index_definition.rb +77 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/format1.rb +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/format2/country_definer.rb +68 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/format2/country_index_definer.rb +68 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/format2/country_index_definition.rb +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/format2/timezone_definer.rb +94 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/format2/timezone_definition.rb +73 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/format2/timezone_index_definer.rb +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/format2/timezone_index_definition.rb +55 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/format2.rb +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/info_timezone.rb +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/linked_timezone.rb +44 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/offset_timezone_period.rb +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/string_deduper.rb +118 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/time_with_offset.rb +154 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/timestamp.rb +548 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/timestamp_with_offset.rb +85 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/timezone.rb +1160 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/timezone_offset.rb +111 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/timezone_period.rb +179 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/timezone_proxy.rb +96 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/timezone_transition.rb +98 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/transition_rule.rb +455 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/transitions_timezone_period.rb +63 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/untaint_ext.rb +18 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/version.rb +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/with_offset.rb +61 -0
- data/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo.rb +73 -0
- data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.5.3/MIT-LICENSE +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.5.3/README.md +1071 -0
- data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.5.3/lib/zeitwerk/error.rb +12 -0
- data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.5.3/lib/zeitwerk/explicit_namespace.rb +89 -0
- data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.5.3/lib/zeitwerk/gem_inflector.rb +17 -0
- data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.5.3/lib/zeitwerk/inflector.rb +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.5.3/lib/zeitwerk/kernel.rb +65 -0
- data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.5.3/lib/zeitwerk/loader/callbacks.rb +92 -0
- data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.5.3/lib/zeitwerk/loader/config.rb +321 -0
- data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.5.3/lib/zeitwerk/loader/helpers.rb +97 -0
- data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.5.3/lib/zeitwerk/loader.rb +510 -0
- data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.5.3/lib/zeitwerk/real_mod_name.rb +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.5.3/lib/zeitwerk/registry.rb +145 -0
- data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.5.3/lib/zeitwerk/version.rb +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/zeitwerk-2.5.3/lib/zeitwerk.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/specifications/activemodel-6.1.4.4.gemspec +32 -0
- data/vendor/bundle/ruby/2.7.0/specifications/activemodel-serializers-xml-1.0.2.gemspec +39 -0
- data/vendor/bundle/ruby/2.7.0/specifications/activeresource-5.1.1.gemspec +42 -0
- data/vendor/bundle/ruby/2.7.0/specifications/activesupport-6.1.4.4.gemspec +41 -0
- data/vendor/bundle/ruby/2.7.0/specifications/allison-2.0.3.gemspec +22 -0
- data/vendor/bundle/ruby/2.7.0/specifications/builder-3.2.4.gemspec +23 -0
- data/vendor/bundle/ruby/2.7.0/specifications/concurrent-ruby-1.1.9.gemspec +24 -0
- data/vendor/bundle/ruby/2.7.0/specifications/echoe-4.6.0.gemspec +41 -0
- data/vendor/bundle/ruby/2.7.0/specifications/echoe-4.6.3.gemspec +41 -0
- data/vendor/bundle/ruby/2.7.0/specifications/echoe-4.6.5.gemspec +40 -0
- data/vendor/bundle/ruby/2.7.0/specifications/echoe-4.6.6.gemspec +40 -0
- data/vendor/bundle/ruby/2.7.0/specifications/gemcutter-0.7.1.gemspec +40 -0
- data/vendor/bundle/ruby/2.7.0/specifications/i18n-1.8.11.gemspec +32 -0
- data/vendor/bundle/ruby/2.7.0/specifications/json_pure-2.6.1.gemspec +25 -0
- data/vendor/bundle/ruby/2.7.0/specifications/lolcat-100.0.1.gemspec +37 -0
- data/vendor/bundle/ruby/2.7.0/specifications/manpages-0.6.1.gemspec +39 -0
- data/vendor/bundle/ruby/2.7.0/specifications/minitest-5.15.0.gemspec +38 -0
- data/vendor/bundle/ruby/2.7.0/specifications/optimist-3.0.1.gemspec +35 -0
- data/vendor/bundle/ruby/2.7.0/specifications/paint-2.2.1.gemspec +47 -0
- data/vendor/bundle/ruby/2.7.0/specifications/power_assert-2.0.1.gemspec +46 -0
- data/vendor/bundle/ruby/2.7.0/specifications/psych-4.0.3.gemspec +36 -0
- data/vendor/bundle/ruby/2.7.0/specifications/rake-13.0.6.gemspec +26 -0
- data/vendor/bundle/ruby/2.7.0/specifications/rdoc-6.4.0.gemspec +36 -0
- data/vendor/bundle/ruby/2.7.0/specifications/rubyforge-2.0.4.gemspec +33 -0
- data/vendor/bundle/ruby/2.7.0/specifications/stringio-3.0.0.gemspec +36 -0
- data/vendor/bundle/ruby/2.7.0/specifications/test-unit-3.5.3.gemspec +41 -0
- data/vendor/bundle/ruby/2.7.0/specifications/tzinfo-2.0.4.gemspec +36 -0
- data/vendor/bundle/ruby/2.7.0/specifications/zeitwerk-2.5.3.gemspec +22 -0
- data.tar.gz.sig +0 -0
- metadata +1461 -100
- metadata.gz.sig +2 -0
- data/CHANGELOG +0 -7
- data/sbin/reboot.rb +0 -3
- data/sbin/ric_reboot.rb +0 -3
@@ -0,0 +1,2132 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
##
|
3
|
+
# HTML entity name map for RDoc::Markdown
|
4
|
+
|
5
|
+
RDoc::Markdown::HTML_ENTITIES = {
|
6
|
+
"AElig" => [0x000C6],
|
7
|
+
"AMP" => [0x00026],
|
8
|
+
"Aacute" => [0x000C1],
|
9
|
+
"Abreve" => [0x00102],
|
10
|
+
"Acirc" => [0x000C2],
|
11
|
+
"Acy" => [0x00410],
|
12
|
+
"Afr" => [0x1D504],
|
13
|
+
"Agrave" => [0x000C0],
|
14
|
+
"Alpha" => [0x00391],
|
15
|
+
"Amacr" => [0x00100],
|
16
|
+
"And" => [0x02A53],
|
17
|
+
"Aogon" => [0x00104],
|
18
|
+
"Aopf" => [0x1D538],
|
19
|
+
"ApplyFunction" => [0x02061],
|
20
|
+
"Aring" => [0x000C5],
|
21
|
+
"Ascr" => [0x1D49C],
|
22
|
+
"Assign" => [0x02254],
|
23
|
+
"Atilde" => [0x000C3],
|
24
|
+
"Auml" => [0x000C4],
|
25
|
+
"Backslash" => [0x02216],
|
26
|
+
"Barv" => [0x02AE7],
|
27
|
+
"Barwed" => [0x02306],
|
28
|
+
"Bcy" => [0x00411],
|
29
|
+
"Because" => [0x02235],
|
30
|
+
"Bernoullis" => [0x0212C],
|
31
|
+
"Beta" => [0x00392],
|
32
|
+
"Bfr" => [0x1D505],
|
33
|
+
"Bopf" => [0x1D539],
|
34
|
+
"Breve" => [0x002D8],
|
35
|
+
"Bscr" => [0x0212C],
|
36
|
+
"Bumpeq" => [0x0224E],
|
37
|
+
"CHcy" => [0x00427],
|
38
|
+
"COPY" => [0x000A9],
|
39
|
+
"Cacute" => [0x00106],
|
40
|
+
"Cap" => [0x022D2],
|
41
|
+
"CapitalDifferentialD" => [0x02145],
|
42
|
+
"Cayleys" => [0x0212D],
|
43
|
+
"Ccaron" => [0x0010C],
|
44
|
+
"Ccedil" => [0x000C7],
|
45
|
+
"Ccirc" => [0x00108],
|
46
|
+
"Cconint" => [0x02230],
|
47
|
+
"Cdot" => [0x0010A],
|
48
|
+
"Cedilla" => [0x000B8],
|
49
|
+
"CenterDot" => [0x000B7],
|
50
|
+
"Cfr" => [0x0212D],
|
51
|
+
"Chi" => [0x003A7],
|
52
|
+
"CircleDot" => [0x02299],
|
53
|
+
"CircleMinus" => [0x02296],
|
54
|
+
"CirclePlus" => [0x02295],
|
55
|
+
"CircleTimes" => [0x02297],
|
56
|
+
"ClockwiseContourIntegral" => [0x02232],
|
57
|
+
"CloseCurlyDoubleQuote" => [0x0201D],
|
58
|
+
"CloseCurlyQuote" => [0x02019],
|
59
|
+
"Colon" => [0x02237],
|
60
|
+
"Colone" => [0x02A74],
|
61
|
+
"Congruent" => [0x02261],
|
62
|
+
"Conint" => [0x0222F],
|
63
|
+
"ContourIntegral" => [0x0222E],
|
64
|
+
"Copf" => [0x02102],
|
65
|
+
"Coproduct" => [0x02210],
|
66
|
+
"CounterClockwiseContourIntegral" => [0x02233],
|
67
|
+
"Cross" => [0x02A2F],
|
68
|
+
"Cscr" => [0x1D49E],
|
69
|
+
"Cup" => [0x022D3],
|
70
|
+
"CupCap" => [0x0224D],
|
71
|
+
"DD" => [0x02145],
|
72
|
+
"DDotrahd" => [0x02911],
|
73
|
+
"DJcy" => [0x00402],
|
74
|
+
"DScy" => [0x00405],
|
75
|
+
"DZcy" => [0x0040F],
|
76
|
+
"Dagger" => [0x02021],
|
77
|
+
"Darr" => [0x021A1],
|
78
|
+
"Dashv" => [0x02AE4],
|
79
|
+
"Dcaron" => [0x0010E],
|
80
|
+
"Dcy" => [0x00414],
|
81
|
+
"Del" => [0x02207],
|
82
|
+
"Delta" => [0x00394],
|
83
|
+
"Dfr" => [0x1D507],
|
84
|
+
"DiacriticalAcute" => [0x000B4],
|
85
|
+
"DiacriticalDot" => [0x002D9],
|
86
|
+
"DiacriticalDoubleAcute" => [0x002DD],
|
87
|
+
"DiacriticalGrave" => [0x00060],
|
88
|
+
"DiacriticalTilde" => [0x002DC],
|
89
|
+
"Diamond" => [0x022C4],
|
90
|
+
"DifferentialD" => [0x02146],
|
91
|
+
"Dopf" => [0x1D53B],
|
92
|
+
"Dot" => [0x000A8],
|
93
|
+
"DotDot" => [0x020DC],
|
94
|
+
"DotEqual" => [0x02250],
|
95
|
+
"DoubleContourIntegral" => [0x0222F],
|
96
|
+
"DoubleDot" => [0x000A8],
|
97
|
+
"DoubleDownArrow" => [0x021D3],
|
98
|
+
"DoubleLeftArrow" => [0x021D0],
|
99
|
+
"DoubleLeftRightArrow" => [0x021D4],
|
100
|
+
"DoubleLeftTee" => [0x02AE4],
|
101
|
+
"DoubleLongLeftArrow" => [0x027F8],
|
102
|
+
"DoubleLongLeftRightArrow" => [0x027FA],
|
103
|
+
"DoubleLongRightArrow" => [0x027F9],
|
104
|
+
"DoubleRightArrow" => [0x021D2],
|
105
|
+
"DoubleRightTee" => [0x022A8],
|
106
|
+
"DoubleUpArrow" => [0x021D1],
|
107
|
+
"DoubleUpDownArrow" => [0x021D5],
|
108
|
+
"DoubleVerticalBar" => [0x02225],
|
109
|
+
"DownArrow" => [0x02193],
|
110
|
+
"DownArrowBar" => [0x02913],
|
111
|
+
"DownArrowUpArrow" => [0x021F5],
|
112
|
+
"DownBreve" => [0x00311],
|
113
|
+
"DownLeftRightVector" => [0x02950],
|
114
|
+
"DownLeftTeeVector" => [0x0295E],
|
115
|
+
"DownLeftVector" => [0x021BD],
|
116
|
+
"DownLeftVectorBar" => [0x02956],
|
117
|
+
"DownRightTeeVector" => [0x0295F],
|
118
|
+
"DownRightVector" => [0x021C1],
|
119
|
+
"DownRightVectorBar" => [0x02957],
|
120
|
+
"DownTee" => [0x022A4],
|
121
|
+
"DownTeeArrow" => [0x021A7],
|
122
|
+
"Downarrow" => [0x021D3],
|
123
|
+
"Dscr" => [0x1D49F],
|
124
|
+
"Dstrok" => [0x00110],
|
125
|
+
"ENG" => [0x0014A],
|
126
|
+
"ETH" => [0x000D0],
|
127
|
+
"Eacute" => [0x000C9],
|
128
|
+
"Ecaron" => [0x0011A],
|
129
|
+
"Ecirc" => [0x000CA],
|
130
|
+
"Ecy" => [0x0042D],
|
131
|
+
"Edot" => [0x00116],
|
132
|
+
"Efr" => [0x1D508],
|
133
|
+
"Egrave" => [0x000C8],
|
134
|
+
"Element" => [0x02208],
|
135
|
+
"Emacr" => [0x00112],
|
136
|
+
"EmptySmallSquare" => [0x025FB],
|
137
|
+
"EmptyVerySmallSquare" => [0x025AB],
|
138
|
+
"Eogon" => [0x00118],
|
139
|
+
"Eopf" => [0x1D53C],
|
140
|
+
"Epsilon" => [0x00395],
|
141
|
+
"Equal" => [0x02A75],
|
142
|
+
"EqualTilde" => [0x02242],
|
143
|
+
"Equilibrium" => [0x021CC],
|
144
|
+
"Escr" => [0x02130],
|
145
|
+
"Esim" => [0x02A73],
|
146
|
+
"Eta" => [0x00397],
|
147
|
+
"Euml" => [0x000CB],
|
148
|
+
"Exists" => [0x02203],
|
149
|
+
"ExponentialE" => [0x02147],
|
150
|
+
"Fcy" => [0x00424],
|
151
|
+
"Ffr" => [0x1D509],
|
152
|
+
"FilledSmallSquare" => [0x025FC],
|
153
|
+
"FilledVerySmallSquare" => [0x025AA],
|
154
|
+
"Fopf" => [0x1D53D],
|
155
|
+
"ForAll" => [0x02200],
|
156
|
+
"Fouriertrf" => [0x02131],
|
157
|
+
"Fscr" => [0x02131],
|
158
|
+
"GJcy" => [0x00403],
|
159
|
+
"GT" => [0x0003E],
|
160
|
+
"Gamma" => [0x00393],
|
161
|
+
"Gammad" => [0x003DC],
|
162
|
+
"Gbreve" => [0x0011E],
|
163
|
+
"Gcedil" => [0x00122],
|
164
|
+
"Gcirc" => [0x0011C],
|
165
|
+
"Gcy" => [0x00413],
|
166
|
+
"Gdot" => [0x00120],
|
167
|
+
"Gfr" => [0x1D50A],
|
168
|
+
"Gg" => [0x022D9],
|
169
|
+
"Gopf" => [0x1D53E],
|
170
|
+
"GreaterEqual" => [0x02265],
|
171
|
+
"GreaterEqualLess" => [0x022DB],
|
172
|
+
"GreaterFullEqual" => [0x02267],
|
173
|
+
"GreaterGreater" => [0x02AA2],
|
174
|
+
"GreaterLess" => [0x02277],
|
175
|
+
"GreaterSlantEqual" => [0x02A7E],
|
176
|
+
"GreaterTilde" => [0x02273],
|
177
|
+
"Gscr" => [0x1D4A2],
|
178
|
+
"Gt" => [0x0226B],
|
179
|
+
"HARDcy" => [0x0042A],
|
180
|
+
"Hacek" => [0x002C7],
|
181
|
+
"Hat" => [0x0005E],
|
182
|
+
"Hcirc" => [0x00124],
|
183
|
+
"Hfr" => [0x0210C],
|
184
|
+
"HilbertSpace" => [0x0210B],
|
185
|
+
"Hopf" => [0x0210D],
|
186
|
+
"HorizontalLine" => [0x02500],
|
187
|
+
"Hscr" => [0x0210B],
|
188
|
+
"Hstrok" => [0x00126],
|
189
|
+
"HumpDownHump" => [0x0224E],
|
190
|
+
"HumpEqual" => [0x0224F],
|
191
|
+
"IEcy" => [0x00415],
|
192
|
+
"IJlig" => [0x00132],
|
193
|
+
"IOcy" => [0x00401],
|
194
|
+
"Iacute" => [0x000CD],
|
195
|
+
"Icirc" => [0x000CE],
|
196
|
+
"Icy" => [0x00418],
|
197
|
+
"Idot" => [0x00130],
|
198
|
+
"Ifr" => [0x02111],
|
199
|
+
"Igrave" => [0x000CC],
|
200
|
+
"Im" => [0x02111],
|
201
|
+
"Imacr" => [0x0012A],
|
202
|
+
"ImaginaryI" => [0x02148],
|
203
|
+
"Implies" => [0x021D2],
|
204
|
+
"Int" => [0x0222C],
|
205
|
+
"Integral" => [0x0222B],
|
206
|
+
"Intersection" => [0x022C2],
|
207
|
+
"InvisibleComma" => [0x02063],
|
208
|
+
"InvisibleTimes" => [0x02062],
|
209
|
+
"Iogon" => [0x0012E],
|
210
|
+
"Iopf" => [0x1D540],
|
211
|
+
"Iota" => [0x00399],
|
212
|
+
"Iscr" => [0x02110],
|
213
|
+
"Itilde" => [0x00128],
|
214
|
+
"Iukcy" => [0x00406],
|
215
|
+
"Iuml" => [0x000CF],
|
216
|
+
"Jcirc" => [0x00134],
|
217
|
+
"Jcy" => [0x00419],
|
218
|
+
"Jfr" => [0x1D50D],
|
219
|
+
"Jopf" => [0x1D541],
|
220
|
+
"Jscr" => [0x1D4A5],
|
221
|
+
"Jsercy" => [0x00408],
|
222
|
+
"Jukcy" => [0x00404],
|
223
|
+
"KHcy" => [0x00425],
|
224
|
+
"KJcy" => [0x0040C],
|
225
|
+
"Kappa" => [0x0039A],
|
226
|
+
"Kcedil" => [0x00136],
|
227
|
+
"Kcy" => [0x0041A],
|
228
|
+
"Kfr" => [0x1D50E],
|
229
|
+
"Kopf" => [0x1D542],
|
230
|
+
"Kscr" => [0x1D4A6],
|
231
|
+
"LJcy" => [0x00409],
|
232
|
+
"LT" => [0x0003C],
|
233
|
+
"Lacute" => [0x00139],
|
234
|
+
"Lambda" => [0x0039B],
|
235
|
+
"Lang" => [0x027EA],
|
236
|
+
"Laplacetrf" => [0x02112],
|
237
|
+
"Larr" => [0x0219E],
|
238
|
+
"Lcaron" => [0x0013D],
|
239
|
+
"Lcedil" => [0x0013B],
|
240
|
+
"Lcy" => [0x0041B],
|
241
|
+
"LeftAngleBracket" => [0x027E8],
|
242
|
+
"LeftArrow" => [0x02190],
|
243
|
+
"LeftArrowBar" => [0x021E4],
|
244
|
+
"LeftArrowRightArrow" => [0x021C6],
|
245
|
+
"LeftCeiling" => [0x02308],
|
246
|
+
"LeftDoubleBracket" => [0x027E6],
|
247
|
+
"LeftDownTeeVector" => [0x02961],
|
248
|
+
"LeftDownVector" => [0x021C3],
|
249
|
+
"LeftDownVectorBar" => [0x02959],
|
250
|
+
"LeftFloor" => [0x0230A],
|
251
|
+
"LeftRightArrow" => [0x02194],
|
252
|
+
"LeftRightVector" => [0x0294E],
|
253
|
+
"LeftTee" => [0x022A3],
|
254
|
+
"LeftTeeArrow" => [0x021A4],
|
255
|
+
"LeftTeeVector" => [0x0295A],
|
256
|
+
"LeftTriangle" => [0x022B2],
|
257
|
+
"LeftTriangleBar" => [0x029CF],
|
258
|
+
"LeftTriangleEqual" => [0x022B4],
|
259
|
+
"LeftUpDownVector" => [0x02951],
|
260
|
+
"LeftUpTeeVector" => [0x02960],
|
261
|
+
"LeftUpVector" => [0x021BF],
|
262
|
+
"LeftUpVectorBar" => [0x02958],
|
263
|
+
"LeftVector" => [0x021BC],
|
264
|
+
"LeftVectorBar" => [0x02952],
|
265
|
+
"Leftarrow" => [0x021D0],
|
266
|
+
"Leftrightarrow" => [0x021D4],
|
267
|
+
"LessEqualGreater" => [0x022DA],
|
268
|
+
"LessFullEqual" => [0x02266],
|
269
|
+
"LessGreater" => [0x02276],
|
270
|
+
"LessLess" => [0x02AA1],
|
271
|
+
"LessSlantEqual" => [0x02A7D],
|
272
|
+
"LessTilde" => [0x02272],
|
273
|
+
"Lfr" => [0x1D50F],
|
274
|
+
"Ll" => [0x022D8],
|
275
|
+
"Lleftarrow" => [0x021DA],
|
276
|
+
"Lmidot" => [0x0013F],
|
277
|
+
"LongLeftArrow" => [0x027F5],
|
278
|
+
"LongLeftRightArrow" => [0x027F7],
|
279
|
+
"LongRightArrow" => [0x027F6],
|
280
|
+
"Longleftarrow" => [0x027F8],
|
281
|
+
"Longleftrightarrow" => [0x027FA],
|
282
|
+
"Longrightarrow" => [0x027F9],
|
283
|
+
"Lopf" => [0x1D543],
|
284
|
+
"LowerLeftArrow" => [0x02199],
|
285
|
+
"LowerRightArrow" => [0x02198],
|
286
|
+
"Lscr" => [0x02112],
|
287
|
+
"Lsh" => [0x021B0],
|
288
|
+
"Lstrok" => [0x00141],
|
289
|
+
"Lt" => [0x0226A],
|
290
|
+
"Map" => [0x02905],
|
291
|
+
"Mcy" => [0x0041C],
|
292
|
+
"MediumSpace" => [0x0205F],
|
293
|
+
"Mellintrf" => [0x02133],
|
294
|
+
"Mfr" => [0x1D510],
|
295
|
+
"MinusPlus" => [0x02213],
|
296
|
+
"Mopf" => [0x1D544],
|
297
|
+
"Mscr" => [0x02133],
|
298
|
+
"Mu" => [0x0039C],
|
299
|
+
"NJcy" => [0x0040A],
|
300
|
+
"Nacute" => [0x00143],
|
301
|
+
"Ncaron" => [0x00147],
|
302
|
+
"Ncedil" => [0x00145],
|
303
|
+
"Ncy" => [0x0041D],
|
304
|
+
"NegativeMediumSpace" => [0x0200B],
|
305
|
+
"NegativeThickSpace" => [0x0200B],
|
306
|
+
"NegativeThinSpace" => [0x0200B],
|
307
|
+
"NegativeVeryThinSpace" => [0x0200B],
|
308
|
+
"NestedGreaterGreater" => [0x0226B],
|
309
|
+
"NestedLessLess" => [0x0226A],
|
310
|
+
"NewLine" => [0x0000A],
|
311
|
+
"Nfr" => [0x1D511],
|
312
|
+
"NoBreak" => [0x02060],
|
313
|
+
"NonBreakingSpace" => [0x000A0],
|
314
|
+
"Nopf" => [0x02115],
|
315
|
+
"Not" => [0x02AEC],
|
316
|
+
"NotCongruent" => [0x02262],
|
317
|
+
"NotCupCap" => [0x0226D],
|
318
|
+
"NotDoubleVerticalBar" => [0x02226],
|
319
|
+
"NotElement" => [0x02209],
|
320
|
+
"NotEqual" => [0x02260],
|
321
|
+
"NotEqualTilde" => [0x02242, 0x00338],
|
322
|
+
"NotExists" => [0x02204],
|
323
|
+
"NotGreater" => [0x0226F],
|
324
|
+
"NotGreaterEqual" => [0x02271],
|
325
|
+
"NotGreaterFullEqual" => [0x02267, 0x00338],
|
326
|
+
"NotGreaterGreater" => [0x0226B, 0x00338],
|
327
|
+
"NotGreaterLess" => [0x02279],
|
328
|
+
"NotGreaterSlantEqual" => [0x02A7E, 0x00338],
|
329
|
+
"NotGreaterTilde" => [0x02275],
|
330
|
+
"NotHumpDownHump" => [0x0224E, 0x00338],
|
331
|
+
"NotHumpEqual" => [0x0224F, 0x00338],
|
332
|
+
"NotLeftTriangle" => [0x022EA],
|
333
|
+
"NotLeftTriangleBar" => [0x029CF, 0x00338],
|
334
|
+
"NotLeftTriangleEqual" => [0x022EC],
|
335
|
+
"NotLess" => [0x0226E],
|
336
|
+
"NotLessEqual" => [0x02270],
|
337
|
+
"NotLessGreater" => [0x02278],
|
338
|
+
"NotLessLess" => [0x0226A, 0x00338],
|
339
|
+
"NotLessSlantEqual" => [0x02A7D, 0x00338],
|
340
|
+
"NotLessTilde" => [0x02274],
|
341
|
+
"NotNestedGreaterGreater" => [0x02AA2, 0x00338],
|
342
|
+
"NotNestedLessLess" => [0x02AA1, 0x00338],
|
343
|
+
"NotPrecedes" => [0x02280],
|
344
|
+
"NotPrecedesEqual" => [0x02AAF, 0x00338],
|
345
|
+
"NotPrecedesSlantEqual" => [0x022E0],
|
346
|
+
"NotReverseElement" => [0x0220C],
|
347
|
+
"NotRightTriangle" => [0x022EB],
|
348
|
+
"NotRightTriangleBar" => [0x029D0, 0x00338],
|
349
|
+
"NotRightTriangleEqual" => [0x022ED],
|
350
|
+
"NotSquareSubset" => [0x0228F, 0x00338],
|
351
|
+
"NotSquareSubsetEqual" => [0x022E2],
|
352
|
+
"NotSquareSuperset" => [0x02290, 0x00338],
|
353
|
+
"NotSquareSupersetEqual" => [0x022E3],
|
354
|
+
"NotSubset" => [0x02282, 0x020D2],
|
355
|
+
"NotSubsetEqual" => [0x02288],
|
356
|
+
"NotSucceeds" => [0x02281],
|
357
|
+
"NotSucceedsEqual" => [0x02AB0, 0x00338],
|
358
|
+
"NotSucceedsSlantEqual" => [0x022E1],
|
359
|
+
"NotSucceedsTilde" => [0x0227F, 0x00338],
|
360
|
+
"NotSuperset" => [0x02283, 0x020D2],
|
361
|
+
"NotSupersetEqual" => [0x02289],
|
362
|
+
"NotTilde" => [0x02241],
|
363
|
+
"NotTildeEqual" => [0x02244],
|
364
|
+
"NotTildeFullEqual" => [0x02247],
|
365
|
+
"NotTildeTilde" => [0x02249],
|
366
|
+
"NotVerticalBar" => [0x02224],
|
367
|
+
"Nscr" => [0x1D4A9],
|
368
|
+
"Ntilde" => [0x000D1],
|
369
|
+
"Nu" => [0x0039D],
|
370
|
+
"OElig" => [0x00152],
|
371
|
+
"Oacute" => [0x000D3],
|
372
|
+
"Ocirc" => [0x000D4],
|
373
|
+
"Ocy" => [0x0041E],
|
374
|
+
"Odblac" => [0x00150],
|
375
|
+
"Ofr" => [0x1D512],
|
376
|
+
"Ograve" => [0x000D2],
|
377
|
+
"Omacr" => [0x0014C],
|
378
|
+
"Omega" => [0x003A9],
|
379
|
+
"Omicron" => [0x0039F],
|
380
|
+
"Oopf" => [0x1D546],
|
381
|
+
"OpenCurlyDoubleQuote" => [0x0201C],
|
382
|
+
"OpenCurlyQuote" => [0x02018],
|
383
|
+
"Or" => [0x02A54],
|
384
|
+
"Oscr" => [0x1D4AA],
|
385
|
+
"Oslash" => [0x000D8],
|
386
|
+
"Otilde" => [0x000D5],
|
387
|
+
"Otimes" => [0x02A37],
|
388
|
+
"Ouml" => [0x000D6],
|
389
|
+
"OverBar" => [0x0203E],
|
390
|
+
"OverBrace" => [0x023DE],
|
391
|
+
"OverBracket" => [0x023B4],
|
392
|
+
"OverParenthesis" => [0x023DC],
|
393
|
+
"PartialD" => [0x02202],
|
394
|
+
"Pcy" => [0x0041F],
|
395
|
+
"Pfr" => [0x1D513],
|
396
|
+
"Phi" => [0x003A6],
|
397
|
+
"Pi" => [0x003A0],
|
398
|
+
"PlusMinus" => [0x000B1],
|
399
|
+
"Poincareplane" => [0x0210C],
|
400
|
+
"Popf" => [0x02119],
|
401
|
+
"Pr" => [0x02ABB],
|
402
|
+
"Precedes" => [0x0227A],
|
403
|
+
"PrecedesEqual" => [0x02AAF],
|
404
|
+
"PrecedesSlantEqual" => [0x0227C],
|
405
|
+
"PrecedesTilde" => [0x0227E],
|
406
|
+
"Prime" => [0x02033],
|
407
|
+
"Product" => [0x0220F],
|
408
|
+
"Proportion" => [0x02237],
|
409
|
+
"Proportional" => [0x0221D],
|
410
|
+
"Pscr" => [0x1D4AB],
|
411
|
+
"Psi" => [0x003A8],
|
412
|
+
"QUOT" => [0x00022],
|
413
|
+
"Qfr" => [0x1D514],
|
414
|
+
"Qopf" => [0x0211A],
|
415
|
+
"Qscr" => [0x1D4AC],
|
416
|
+
"RBarr" => [0x02910],
|
417
|
+
"REG" => [0x000AE],
|
418
|
+
"Racute" => [0x00154],
|
419
|
+
"Rang" => [0x027EB],
|
420
|
+
"Rarr" => [0x021A0],
|
421
|
+
"Rarrtl" => [0x02916],
|
422
|
+
"Rcaron" => [0x00158],
|
423
|
+
"Rcedil" => [0x00156],
|
424
|
+
"Rcy" => [0x00420],
|
425
|
+
"Re" => [0x0211C],
|
426
|
+
"ReverseElement" => [0x0220B],
|
427
|
+
"ReverseEquilibrium" => [0x021CB],
|
428
|
+
"ReverseUpEquilibrium" => [0x0296F],
|
429
|
+
"Rfr" => [0x0211C],
|
430
|
+
"Rho" => [0x003A1],
|
431
|
+
"RightAngleBracket" => [0x027E9],
|
432
|
+
"RightArrow" => [0x02192],
|
433
|
+
"RightArrowBar" => [0x021E5],
|
434
|
+
"RightArrowLeftArrow" => [0x021C4],
|
435
|
+
"RightCeiling" => [0x02309],
|
436
|
+
"RightDoubleBracket" => [0x027E7],
|
437
|
+
"RightDownTeeVector" => [0x0295D],
|
438
|
+
"RightDownVector" => [0x021C2],
|
439
|
+
"RightDownVectorBar" => [0x02955],
|
440
|
+
"RightFloor" => [0x0230B],
|
441
|
+
"RightTee" => [0x022A2],
|
442
|
+
"RightTeeArrow" => [0x021A6],
|
443
|
+
"RightTeeVector" => [0x0295B],
|
444
|
+
"RightTriangle" => [0x022B3],
|
445
|
+
"RightTriangleBar" => [0x029D0],
|
446
|
+
"RightTriangleEqual" => [0x022B5],
|
447
|
+
"RightUpDownVector" => [0x0294F],
|
448
|
+
"RightUpTeeVector" => [0x0295C],
|
449
|
+
"RightUpVector" => [0x021BE],
|
450
|
+
"RightUpVectorBar" => [0x02954],
|
451
|
+
"RightVector" => [0x021C0],
|
452
|
+
"RightVectorBar" => [0x02953],
|
453
|
+
"Rightarrow" => [0x021D2],
|
454
|
+
"Ropf" => [0x0211D],
|
455
|
+
"RoundImplies" => [0x02970],
|
456
|
+
"Rrightarrow" => [0x021DB],
|
457
|
+
"Rscr" => [0x0211B],
|
458
|
+
"Rsh" => [0x021B1],
|
459
|
+
"RuleDelayed" => [0x029F4],
|
460
|
+
"SHCHcy" => [0x00429],
|
461
|
+
"SHcy" => [0x00428],
|
462
|
+
"SOFTcy" => [0x0042C],
|
463
|
+
"Sacute" => [0x0015A],
|
464
|
+
"Sc" => [0x02ABC],
|
465
|
+
"Scaron" => [0x00160],
|
466
|
+
"Scedil" => [0x0015E],
|
467
|
+
"Scirc" => [0x0015C],
|
468
|
+
"Scy" => [0x00421],
|
469
|
+
"Sfr" => [0x1D516],
|
470
|
+
"ShortDownArrow" => [0x02193],
|
471
|
+
"ShortLeftArrow" => [0x02190],
|
472
|
+
"ShortRightArrow" => [0x02192],
|
473
|
+
"ShortUpArrow" => [0x02191],
|
474
|
+
"Sigma" => [0x003A3],
|
475
|
+
"SmallCircle" => [0x02218],
|
476
|
+
"Sopf" => [0x1D54A],
|
477
|
+
"Sqrt" => [0x0221A],
|
478
|
+
"Square" => [0x025A1],
|
479
|
+
"SquareIntersection" => [0x02293],
|
480
|
+
"SquareSubset" => [0x0228F],
|
481
|
+
"SquareSubsetEqual" => [0x02291],
|
482
|
+
"SquareSuperset" => [0x02290],
|
483
|
+
"SquareSupersetEqual" => [0x02292],
|
484
|
+
"SquareUnion" => [0x02294],
|
485
|
+
"Sscr" => [0x1D4AE],
|
486
|
+
"Star" => [0x022C6],
|
487
|
+
"Sub" => [0x022D0],
|
488
|
+
"Subset" => [0x022D0],
|
489
|
+
"SubsetEqual" => [0x02286],
|
490
|
+
"Succeeds" => [0x0227B],
|
491
|
+
"SucceedsEqual" => [0x02AB0],
|
492
|
+
"SucceedsSlantEqual" => [0x0227D],
|
493
|
+
"SucceedsTilde" => [0x0227F],
|
494
|
+
"SuchThat" => [0x0220B],
|
495
|
+
"Sum" => [0x02211],
|
496
|
+
"Sup" => [0x022D1],
|
497
|
+
"Superset" => [0x02283],
|
498
|
+
"SupersetEqual" => [0x02287],
|
499
|
+
"Supset" => [0x022D1],
|
500
|
+
"THORN" => [0x000DE],
|
501
|
+
"TRADE" => [0x02122],
|
502
|
+
"TSHcy" => [0x0040B],
|
503
|
+
"TScy" => [0x00426],
|
504
|
+
"Tab" => [0x00009],
|
505
|
+
"Tau" => [0x003A4],
|
506
|
+
"Tcaron" => [0x00164],
|
507
|
+
"Tcedil" => [0x00162],
|
508
|
+
"Tcy" => [0x00422],
|
509
|
+
"Tfr" => [0x1D517],
|
510
|
+
"Therefore" => [0x02234],
|
511
|
+
"Theta" => [0x00398],
|
512
|
+
"ThickSpace" => [0x0205F, 0x0200A],
|
513
|
+
"ThinSpace" => [0x02009],
|
514
|
+
"Tilde" => [0x0223C],
|
515
|
+
"TildeEqual" => [0x02243],
|
516
|
+
"TildeFullEqual" => [0x02245],
|
517
|
+
"TildeTilde" => [0x02248],
|
518
|
+
"Topf" => [0x1D54B],
|
519
|
+
"TripleDot" => [0x020DB],
|
520
|
+
"Tscr" => [0x1D4AF],
|
521
|
+
"Tstrok" => [0x00166],
|
522
|
+
"Uacute" => [0x000DA],
|
523
|
+
"Uarr" => [0x0219F],
|
524
|
+
"Uarrocir" => [0x02949],
|
525
|
+
"Ubrcy" => [0x0040E],
|
526
|
+
"Ubreve" => [0x0016C],
|
527
|
+
"Ucirc" => [0x000DB],
|
528
|
+
"Ucy" => [0x00423],
|
529
|
+
"Udblac" => [0x00170],
|
530
|
+
"Ufr" => [0x1D518],
|
531
|
+
"Ugrave" => [0x000D9],
|
532
|
+
"Umacr" => [0x0016A],
|
533
|
+
"UnderBar" => [0x0005F],
|
534
|
+
"UnderBrace" => [0x023DF],
|
535
|
+
"UnderBracket" => [0x023B5],
|
536
|
+
"UnderParenthesis" => [0x023DD],
|
537
|
+
"Union" => [0x022C3],
|
538
|
+
"UnionPlus" => [0x0228E],
|
539
|
+
"Uogon" => [0x00172],
|
540
|
+
"Uopf" => [0x1D54C],
|
541
|
+
"UpArrow" => [0x02191],
|
542
|
+
"UpArrowBar" => [0x02912],
|
543
|
+
"UpArrowDownArrow" => [0x021C5],
|
544
|
+
"UpDownArrow" => [0x02195],
|
545
|
+
"UpEquilibrium" => [0x0296E],
|
546
|
+
"UpTee" => [0x022A5],
|
547
|
+
"UpTeeArrow" => [0x021A5],
|
548
|
+
"Uparrow" => [0x021D1],
|
549
|
+
"Updownarrow" => [0x021D5],
|
550
|
+
"UpperLeftArrow" => [0x02196],
|
551
|
+
"UpperRightArrow" => [0x02197],
|
552
|
+
"Upsi" => [0x003D2],
|
553
|
+
"Upsilon" => [0x003A5],
|
554
|
+
"Uring" => [0x0016E],
|
555
|
+
"Uscr" => [0x1D4B0],
|
556
|
+
"Utilde" => [0x00168],
|
557
|
+
"Uuml" => [0x000DC],
|
558
|
+
"VDash" => [0x022AB],
|
559
|
+
"Vbar" => [0x02AEB],
|
560
|
+
"Vcy" => [0x00412],
|
561
|
+
"Vdash" => [0x022A9],
|
562
|
+
"Vdashl" => [0x02AE6],
|
563
|
+
"Vee" => [0x022C1],
|
564
|
+
"Verbar" => [0x02016],
|
565
|
+
"Vert" => [0x02016],
|
566
|
+
"VerticalBar" => [0x02223],
|
567
|
+
"VerticalLine" => [0x0007C],
|
568
|
+
"VerticalSeparator" => [0x02758],
|
569
|
+
"VerticalTilde" => [0x02240],
|
570
|
+
"VeryThinSpace" => [0x0200A],
|
571
|
+
"Vfr" => [0x1D519],
|
572
|
+
"Vopf" => [0x1D54D],
|
573
|
+
"Vscr" => [0x1D4B1],
|
574
|
+
"Vvdash" => [0x022AA],
|
575
|
+
"Wcirc" => [0x00174],
|
576
|
+
"Wedge" => [0x022C0],
|
577
|
+
"Wfr" => [0x1D51A],
|
578
|
+
"Wopf" => [0x1D54E],
|
579
|
+
"Wscr" => [0x1D4B2],
|
580
|
+
"Xfr" => [0x1D51B],
|
581
|
+
"Xi" => [0x0039E],
|
582
|
+
"Xopf" => [0x1D54F],
|
583
|
+
"Xscr" => [0x1D4B3],
|
584
|
+
"YAcy" => [0x0042F],
|
585
|
+
"YIcy" => [0x00407],
|
586
|
+
"YUcy" => [0x0042E],
|
587
|
+
"Yacute" => [0x000DD],
|
588
|
+
"Ycirc" => [0x00176],
|
589
|
+
"Ycy" => [0x0042B],
|
590
|
+
"Yfr" => [0x1D51C],
|
591
|
+
"Yopf" => [0x1D550],
|
592
|
+
"Yscr" => [0x1D4B4],
|
593
|
+
"Yuml" => [0x00178],
|
594
|
+
"ZHcy" => [0x00416],
|
595
|
+
"Zacute" => [0x00179],
|
596
|
+
"Zcaron" => [0x0017D],
|
597
|
+
"Zcy" => [0x00417],
|
598
|
+
"Zdot" => [0x0017B],
|
599
|
+
"ZeroWidthSpace" => [0x0200B],
|
600
|
+
"Zeta" => [0x00396],
|
601
|
+
"Zfr" => [0x02128],
|
602
|
+
"Zopf" => [0x02124],
|
603
|
+
"Zscr" => [0x1D4B5],
|
604
|
+
"aacute" => [0x000E1],
|
605
|
+
"abreve" => [0x00103],
|
606
|
+
"ac" => [0x0223E],
|
607
|
+
"acE" => [0x0223E, 0x00333],
|
608
|
+
"acd" => [0x0223F],
|
609
|
+
"acirc" => [0x000E2],
|
610
|
+
"acute" => [0x000B4],
|
611
|
+
"acy" => [0x00430],
|
612
|
+
"aelig" => [0x000E6],
|
613
|
+
"af" => [0x02061],
|
614
|
+
"afr" => [0x1D51E],
|
615
|
+
"agrave" => [0x000E0],
|
616
|
+
"alefsym" => [0x02135],
|
617
|
+
"aleph" => [0x02135],
|
618
|
+
"alpha" => [0x003B1],
|
619
|
+
"amacr" => [0x00101],
|
620
|
+
"amalg" => [0x02A3F],
|
621
|
+
"amp" => [0x00026],
|
622
|
+
"and" => [0x02227],
|
623
|
+
"andand" => [0x02A55],
|
624
|
+
"andd" => [0x02A5C],
|
625
|
+
"andslope" => [0x02A58],
|
626
|
+
"andv" => [0x02A5A],
|
627
|
+
"ang" => [0x02220],
|
628
|
+
"ange" => [0x029A4],
|
629
|
+
"angle" => [0x02220],
|
630
|
+
"angmsd" => [0x02221],
|
631
|
+
"angmsdaa" => [0x029A8],
|
632
|
+
"angmsdab" => [0x029A9],
|
633
|
+
"angmsdac" => [0x029AA],
|
634
|
+
"angmsdad" => [0x029AB],
|
635
|
+
"angmsdae" => [0x029AC],
|
636
|
+
"angmsdaf" => [0x029AD],
|
637
|
+
"angmsdag" => [0x029AE],
|
638
|
+
"angmsdah" => [0x029AF],
|
639
|
+
"angrt" => [0x0221F],
|
640
|
+
"angrtvb" => [0x022BE],
|
641
|
+
"angrtvbd" => [0x0299D],
|
642
|
+
"angsph" => [0x02222],
|
643
|
+
"angst" => [0x000C5],
|
644
|
+
"angzarr" => [0x0237C],
|
645
|
+
"aogon" => [0x00105],
|
646
|
+
"aopf" => [0x1D552],
|
647
|
+
"ap" => [0x02248],
|
648
|
+
"apE" => [0x02A70],
|
649
|
+
"apacir" => [0x02A6F],
|
650
|
+
"ape" => [0x0224A],
|
651
|
+
"apid" => [0x0224B],
|
652
|
+
"apos" => [0x00027],
|
653
|
+
"approx" => [0x02248],
|
654
|
+
"approxeq" => [0x0224A],
|
655
|
+
"aring" => [0x000E5],
|
656
|
+
"ascr" => [0x1D4B6],
|
657
|
+
"ast" => [0x0002A],
|
658
|
+
"asymp" => [0x02248],
|
659
|
+
"asympeq" => [0x0224D],
|
660
|
+
"atilde" => [0x000E3],
|
661
|
+
"auml" => [0x000E4],
|
662
|
+
"awconint" => [0x02233],
|
663
|
+
"awint" => [0x02A11],
|
664
|
+
"bNot" => [0x02AED],
|
665
|
+
"backcong" => [0x0224C],
|
666
|
+
"backepsilon" => [0x003F6],
|
667
|
+
"backprime" => [0x02035],
|
668
|
+
"backsim" => [0x0223D],
|
669
|
+
"backsimeq" => [0x022CD],
|
670
|
+
"barvee" => [0x022BD],
|
671
|
+
"barwed" => [0x02305],
|
672
|
+
"barwedge" => [0x02305],
|
673
|
+
"bbrk" => [0x023B5],
|
674
|
+
"bbrktbrk" => [0x023B6],
|
675
|
+
"bcong" => [0x0224C],
|
676
|
+
"bcy" => [0x00431],
|
677
|
+
"bdquo" => [0x0201E],
|
678
|
+
"becaus" => [0x02235],
|
679
|
+
"because" => [0x02235],
|
680
|
+
"bemptyv" => [0x029B0],
|
681
|
+
"bepsi" => [0x003F6],
|
682
|
+
"bernou" => [0x0212C],
|
683
|
+
"beta" => [0x003B2],
|
684
|
+
"beth" => [0x02136],
|
685
|
+
"between" => [0x0226C],
|
686
|
+
"bfr" => [0x1D51F],
|
687
|
+
"bigcap" => [0x022C2],
|
688
|
+
"bigcirc" => [0x025EF],
|
689
|
+
"bigcup" => [0x022C3],
|
690
|
+
"bigodot" => [0x02A00],
|
691
|
+
"bigoplus" => [0x02A01],
|
692
|
+
"bigotimes" => [0x02A02],
|
693
|
+
"bigsqcup" => [0x02A06],
|
694
|
+
"bigstar" => [0x02605],
|
695
|
+
"bigtriangledown" => [0x025BD],
|
696
|
+
"bigtriangleup" => [0x025B3],
|
697
|
+
"biguplus" => [0x02A04],
|
698
|
+
"bigvee" => [0x022C1],
|
699
|
+
"bigwedge" => [0x022C0],
|
700
|
+
"bkarow" => [0x0290D],
|
701
|
+
"blacklozenge" => [0x029EB],
|
702
|
+
"blacksquare" => [0x025AA],
|
703
|
+
"blacktriangle" => [0x025B4],
|
704
|
+
"blacktriangledown" => [0x025BE],
|
705
|
+
"blacktriangleleft" => [0x025C2],
|
706
|
+
"blacktriangleright" => [0x025B8],
|
707
|
+
"blank" => [0x02423],
|
708
|
+
"blk12" => [0x02592],
|
709
|
+
"blk14" => [0x02591],
|
710
|
+
"blk34" => [0x02593],
|
711
|
+
"block" => [0x02588],
|
712
|
+
"bne" => [0x0003D, 0x020E5],
|
713
|
+
"bnequiv" => [0x02261, 0x020E5],
|
714
|
+
"bnot" => [0x02310],
|
715
|
+
"bopf" => [0x1D553],
|
716
|
+
"bot" => [0x022A5],
|
717
|
+
"bottom" => [0x022A5],
|
718
|
+
"bowtie" => [0x022C8],
|
719
|
+
"boxDL" => [0x02557],
|
720
|
+
"boxDR" => [0x02554],
|
721
|
+
"boxDl" => [0x02556],
|
722
|
+
"boxDr" => [0x02553],
|
723
|
+
"boxH" => [0x02550],
|
724
|
+
"boxHD" => [0x02566],
|
725
|
+
"boxHU" => [0x02569],
|
726
|
+
"boxHd" => [0x02564],
|
727
|
+
"boxHu" => [0x02567],
|
728
|
+
"boxUL" => [0x0255D],
|
729
|
+
"boxUR" => [0x0255A],
|
730
|
+
"boxUl" => [0x0255C],
|
731
|
+
"boxUr" => [0x02559],
|
732
|
+
"boxV" => [0x02551],
|
733
|
+
"boxVH" => [0x0256C],
|
734
|
+
"boxVL" => [0x02563],
|
735
|
+
"boxVR" => [0x02560],
|
736
|
+
"boxVh" => [0x0256B],
|
737
|
+
"boxVl" => [0x02562],
|
738
|
+
"boxVr" => [0x0255F],
|
739
|
+
"boxbox" => [0x029C9],
|
740
|
+
"boxdL" => [0x02555],
|
741
|
+
"boxdR" => [0x02552],
|
742
|
+
"boxdl" => [0x02510],
|
743
|
+
"boxdr" => [0x0250C],
|
744
|
+
"boxh" => [0x02500],
|
745
|
+
"boxhD" => [0x02565],
|
746
|
+
"boxhU" => [0x02568],
|
747
|
+
"boxhd" => [0x0252C],
|
748
|
+
"boxhu" => [0x02534],
|
749
|
+
"boxminus" => [0x0229F],
|
750
|
+
"boxplus" => [0x0229E],
|
751
|
+
"boxtimes" => [0x022A0],
|
752
|
+
"boxuL" => [0x0255B],
|
753
|
+
"boxuR" => [0x02558],
|
754
|
+
"boxul" => [0x02518],
|
755
|
+
"boxur" => [0x02514],
|
756
|
+
"boxv" => [0x02502],
|
757
|
+
"boxvH" => [0x0256A],
|
758
|
+
"boxvL" => [0x02561],
|
759
|
+
"boxvR" => [0x0255E],
|
760
|
+
"boxvh" => [0x0253C],
|
761
|
+
"boxvl" => [0x02524],
|
762
|
+
"boxvr" => [0x0251C],
|
763
|
+
"bprime" => [0x02035],
|
764
|
+
"breve" => [0x002D8],
|
765
|
+
"brvbar" => [0x000A6],
|
766
|
+
"bscr" => [0x1D4B7],
|
767
|
+
"bsemi" => [0x0204F],
|
768
|
+
"bsim" => [0x0223D],
|
769
|
+
"bsime" => [0x022CD],
|
770
|
+
"bsol" => [0x0005C],
|
771
|
+
"bsolb" => [0x029C5],
|
772
|
+
"bsolhsub" => [0x027C8],
|
773
|
+
"bull" => [0x02022],
|
774
|
+
"bullet" => [0x02022],
|
775
|
+
"bump" => [0x0224E],
|
776
|
+
"bumpE" => [0x02AAE],
|
777
|
+
"bumpe" => [0x0224F],
|
778
|
+
"bumpeq" => [0x0224F],
|
779
|
+
"cacute" => [0x00107],
|
780
|
+
"cap" => [0x02229],
|
781
|
+
"capand" => [0x02A44],
|
782
|
+
"capbrcup" => [0x02A49],
|
783
|
+
"capcap" => [0x02A4B],
|
784
|
+
"capcup" => [0x02A47],
|
785
|
+
"capdot" => [0x02A40],
|
786
|
+
"caps" => [0x02229, 0x0FE00],
|
787
|
+
"caret" => [0x02041],
|
788
|
+
"caron" => [0x002C7],
|
789
|
+
"ccaps" => [0x02A4D],
|
790
|
+
"ccaron" => [0x0010D],
|
791
|
+
"ccedil" => [0x000E7],
|
792
|
+
"ccirc" => [0x00109],
|
793
|
+
"ccups" => [0x02A4C],
|
794
|
+
"ccupssm" => [0x02A50],
|
795
|
+
"cdot" => [0x0010B],
|
796
|
+
"cedil" => [0x000B8],
|
797
|
+
"cemptyv" => [0x029B2],
|
798
|
+
"cent" => [0x000A2],
|
799
|
+
"centerdot" => [0x000B7],
|
800
|
+
"cfr" => [0x1D520],
|
801
|
+
"chcy" => [0x00447],
|
802
|
+
"check" => [0x02713],
|
803
|
+
"checkmark" => [0x02713],
|
804
|
+
"chi" => [0x003C7],
|
805
|
+
"cir" => [0x025CB],
|
806
|
+
"cirE" => [0x029C3],
|
807
|
+
"circ" => [0x002C6],
|
808
|
+
"circeq" => [0x02257],
|
809
|
+
"circlearrowleft" => [0x021BA],
|
810
|
+
"circlearrowright" => [0x021BB],
|
811
|
+
"circledR" => [0x000AE],
|
812
|
+
"circledS" => [0x024C8],
|
813
|
+
"circledast" => [0x0229B],
|
814
|
+
"circledcirc" => [0x0229A],
|
815
|
+
"circleddash" => [0x0229D],
|
816
|
+
"cire" => [0x02257],
|
817
|
+
"cirfnint" => [0x02A10],
|
818
|
+
"cirmid" => [0x02AEF],
|
819
|
+
"cirscir" => [0x029C2],
|
820
|
+
"clubs" => [0x02663],
|
821
|
+
"clubsuit" => [0x02663],
|
822
|
+
"colon" => [0x0003A],
|
823
|
+
"colone" => [0x02254],
|
824
|
+
"coloneq" => [0x02254],
|
825
|
+
"comma" => [0x0002C],
|
826
|
+
"commat" => [0x00040],
|
827
|
+
"comp" => [0x02201],
|
828
|
+
"compfn" => [0x02218],
|
829
|
+
"complement" => [0x02201],
|
830
|
+
"complexes" => [0x02102],
|
831
|
+
"cong" => [0x02245],
|
832
|
+
"congdot" => [0x02A6D],
|
833
|
+
"conint" => [0x0222E],
|
834
|
+
"copf" => [0x1D554],
|
835
|
+
"coprod" => [0x02210],
|
836
|
+
"copy" => [0x000A9],
|
837
|
+
"copysr" => [0x02117],
|
838
|
+
"crarr" => [0x021B5],
|
839
|
+
"cross" => [0x02717],
|
840
|
+
"cscr" => [0x1D4B8],
|
841
|
+
"csub" => [0x02ACF],
|
842
|
+
"csube" => [0x02AD1],
|
843
|
+
"csup" => [0x02AD0],
|
844
|
+
"csupe" => [0x02AD2],
|
845
|
+
"ctdot" => [0x022EF],
|
846
|
+
"cudarrl" => [0x02938],
|
847
|
+
"cudarrr" => [0x02935],
|
848
|
+
"cuepr" => [0x022DE],
|
849
|
+
"cuesc" => [0x022DF],
|
850
|
+
"cularr" => [0x021B6],
|
851
|
+
"cularrp" => [0x0293D],
|
852
|
+
"cup" => [0x0222A],
|
853
|
+
"cupbrcap" => [0x02A48],
|
854
|
+
"cupcap" => [0x02A46],
|
855
|
+
"cupcup" => [0x02A4A],
|
856
|
+
"cupdot" => [0x0228D],
|
857
|
+
"cupor" => [0x02A45],
|
858
|
+
"cups" => [0x0222A, 0x0FE00],
|
859
|
+
"curarr" => [0x021B7],
|
860
|
+
"curarrm" => [0x0293C],
|
861
|
+
"curlyeqprec" => [0x022DE],
|
862
|
+
"curlyeqsucc" => [0x022DF],
|
863
|
+
"curlyvee" => [0x022CE],
|
864
|
+
"curlywedge" => [0x022CF],
|
865
|
+
"curren" => [0x000A4],
|
866
|
+
"curvearrowleft" => [0x021B6],
|
867
|
+
"curvearrowright" => [0x021B7],
|
868
|
+
"cuvee" => [0x022CE],
|
869
|
+
"cuwed" => [0x022CF],
|
870
|
+
"cwconint" => [0x02232],
|
871
|
+
"cwint" => [0x02231],
|
872
|
+
"cylcty" => [0x0232D],
|
873
|
+
"dArr" => [0x021D3],
|
874
|
+
"dHar" => [0x02965],
|
875
|
+
"dagger" => [0x02020],
|
876
|
+
"daleth" => [0x02138],
|
877
|
+
"darr" => [0x02193],
|
878
|
+
"dash" => [0x02010],
|
879
|
+
"dashv" => [0x022A3],
|
880
|
+
"dbkarow" => [0x0290F],
|
881
|
+
"dblac" => [0x002DD],
|
882
|
+
"dcaron" => [0x0010F],
|
883
|
+
"dcy" => [0x00434],
|
884
|
+
"dd" => [0x02146],
|
885
|
+
"ddagger" => [0x02021],
|
886
|
+
"ddarr" => [0x021CA],
|
887
|
+
"ddotseq" => [0x02A77],
|
888
|
+
"deg" => [0x000B0],
|
889
|
+
"delta" => [0x003B4],
|
890
|
+
"demptyv" => [0x029B1],
|
891
|
+
"dfisht" => [0x0297F],
|
892
|
+
"dfr" => [0x1D521],
|
893
|
+
"dharl" => [0x021C3],
|
894
|
+
"dharr" => [0x021C2],
|
895
|
+
"diam" => [0x022C4],
|
896
|
+
"diamond" => [0x022C4],
|
897
|
+
"diamondsuit" => [0x02666],
|
898
|
+
"diams" => [0x02666],
|
899
|
+
"die" => [0x000A8],
|
900
|
+
"digamma" => [0x003DD],
|
901
|
+
"disin" => [0x022F2],
|
902
|
+
"div" => [0x000F7],
|
903
|
+
"divide" => [0x000F7],
|
904
|
+
"divideontimes" => [0x022C7],
|
905
|
+
"divonx" => [0x022C7],
|
906
|
+
"djcy" => [0x00452],
|
907
|
+
"dlcorn" => [0x0231E],
|
908
|
+
"dlcrop" => [0x0230D],
|
909
|
+
"dollar" => [0x00024],
|
910
|
+
"dopf" => [0x1D555],
|
911
|
+
"dot" => [0x002D9],
|
912
|
+
"doteq" => [0x02250],
|
913
|
+
"doteqdot" => [0x02251],
|
914
|
+
"dotminus" => [0x02238],
|
915
|
+
"dotplus" => [0x02214],
|
916
|
+
"dotsquare" => [0x022A1],
|
917
|
+
"doublebarwedge" => [0x02306],
|
918
|
+
"downarrow" => [0x02193],
|
919
|
+
"downdownarrows" => [0x021CA],
|
920
|
+
"downharpoonleft" => [0x021C3],
|
921
|
+
"downharpoonright" => [0x021C2],
|
922
|
+
"drbkarow" => [0x02910],
|
923
|
+
"drcorn" => [0x0231F],
|
924
|
+
"drcrop" => [0x0230C],
|
925
|
+
"dscr" => [0x1D4B9],
|
926
|
+
"dscy" => [0x00455],
|
927
|
+
"dsol" => [0x029F6],
|
928
|
+
"dstrok" => [0x00111],
|
929
|
+
"dtdot" => [0x022F1],
|
930
|
+
"dtri" => [0x025BF],
|
931
|
+
"dtrif" => [0x025BE],
|
932
|
+
"duarr" => [0x021F5],
|
933
|
+
"duhar" => [0x0296F],
|
934
|
+
"dwangle" => [0x029A6],
|
935
|
+
"dzcy" => [0x0045F],
|
936
|
+
"dzigrarr" => [0x027FF],
|
937
|
+
"eDDot" => [0x02A77],
|
938
|
+
"eDot" => [0x02251],
|
939
|
+
"eacute" => [0x000E9],
|
940
|
+
"easter" => [0x02A6E],
|
941
|
+
"ecaron" => [0x0011B],
|
942
|
+
"ecir" => [0x02256],
|
943
|
+
"ecirc" => [0x000EA],
|
944
|
+
"ecolon" => [0x02255],
|
945
|
+
"ecy" => [0x0044D],
|
946
|
+
"edot" => [0x00117],
|
947
|
+
"ee" => [0x02147],
|
948
|
+
"efDot" => [0x02252],
|
949
|
+
"efr" => [0x1D522],
|
950
|
+
"eg" => [0x02A9A],
|
951
|
+
"egrave" => [0x000E8],
|
952
|
+
"egs" => [0x02A96],
|
953
|
+
"egsdot" => [0x02A98],
|
954
|
+
"el" => [0x02A99],
|
955
|
+
"elinters" => [0x023E7],
|
956
|
+
"ell" => [0x02113],
|
957
|
+
"els" => [0x02A95],
|
958
|
+
"elsdot" => [0x02A97],
|
959
|
+
"emacr" => [0x00113],
|
960
|
+
"empty" => [0x02205],
|
961
|
+
"emptyset" => [0x02205],
|
962
|
+
"emptyv" => [0x02205],
|
963
|
+
"emsp" => [0x02003],
|
964
|
+
"emsp13" => [0x02004],
|
965
|
+
"emsp14" => [0x02005],
|
966
|
+
"eng" => [0x0014B],
|
967
|
+
"ensp" => [0x02002],
|
968
|
+
"eogon" => [0x00119],
|
969
|
+
"eopf" => [0x1D556],
|
970
|
+
"epar" => [0x022D5],
|
971
|
+
"eparsl" => [0x029E3],
|
972
|
+
"eplus" => [0x02A71],
|
973
|
+
"epsi" => [0x003B5],
|
974
|
+
"epsilon" => [0x003B5],
|
975
|
+
"epsiv" => [0x003F5],
|
976
|
+
"eqcirc" => [0x02256],
|
977
|
+
"eqcolon" => [0x02255],
|
978
|
+
"eqsim" => [0x02242],
|
979
|
+
"eqslantgtr" => [0x02A96],
|
980
|
+
"eqslantless" => [0x02A95],
|
981
|
+
"equals" => [0x0003D],
|
982
|
+
"equest" => [0x0225F],
|
983
|
+
"equiv" => [0x02261],
|
984
|
+
"equivDD" => [0x02A78],
|
985
|
+
"eqvparsl" => [0x029E5],
|
986
|
+
"erDot" => [0x02253],
|
987
|
+
"erarr" => [0x02971],
|
988
|
+
"escr" => [0x0212F],
|
989
|
+
"esdot" => [0x02250],
|
990
|
+
"esim" => [0x02242],
|
991
|
+
"eta" => [0x003B7],
|
992
|
+
"eth" => [0x000F0],
|
993
|
+
"euml" => [0x000EB],
|
994
|
+
"euro" => [0x020AC],
|
995
|
+
"excl" => [0x00021],
|
996
|
+
"exist" => [0x02203],
|
997
|
+
"expectation" => [0x02130],
|
998
|
+
"exponentiale" => [0x02147],
|
999
|
+
"fallingdotseq" => [0x02252],
|
1000
|
+
"fcy" => [0x00444],
|
1001
|
+
"female" => [0x02640],
|
1002
|
+
"ffilig" => [0x0FB03],
|
1003
|
+
"fflig" => [0x0FB00],
|
1004
|
+
"ffllig" => [0x0FB04],
|
1005
|
+
"ffr" => [0x1D523],
|
1006
|
+
"filig" => [0x0FB01],
|
1007
|
+
"fjlig" => [0x00066, 0x0006A],
|
1008
|
+
"flat" => [0x0266D],
|
1009
|
+
"fllig" => [0x0FB02],
|
1010
|
+
"fltns" => [0x025B1],
|
1011
|
+
"fnof" => [0x00192],
|
1012
|
+
"fopf" => [0x1D557],
|
1013
|
+
"forall" => [0x02200],
|
1014
|
+
"fork" => [0x022D4],
|
1015
|
+
"forkv" => [0x02AD9],
|
1016
|
+
"fpartint" => [0x02A0D],
|
1017
|
+
"frac12" => [0x000BD],
|
1018
|
+
"frac13" => [0x02153],
|
1019
|
+
"frac14" => [0x000BC],
|
1020
|
+
"frac15" => [0x02155],
|
1021
|
+
"frac16" => [0x02159],
|
1022
|
+
"frac18" => [0x0215B],
|
1023
|
+
"frac23" => [0x02154],
|
1024
|
+
"frac25" => [0x02156],
|
1025
|
+
"frac34" => [0x000BE],
|
1026
|
+
"frac35" => [0x02157],
|
1027
|
+
"frac38" => [0x0215C],
|
1028
|
+
"frac45" => [0x02158],
|
1029
|
+
"frac56" => [0x0215A],
|
1030
|
+
"frac58" => [0x0215D],
|
1031
|
+
"frac78" => [0x0215E],
|
1032
|
+
"frasl" => [0x02044],
|
1033
|
+
"frown" => [0x02322],
|
1034
|
+
"fscr" => [0x1D4BB],
|
1035
|
+
"gE" => [0x02267],
|
1036
|
+
"gEl" => [0x02A8C],
|
1037
|
+
"gacute" => [0x001F5],
|
1038
|
+
"gamma" => [0x003B3],
|
1039
|
+
"gammad" => [0x003DD],
|
1040
|
+
"gap" => [0x02A86],
|
1041
|
+
"gbreve" => [0x0011F],
|
1042
|
+
"gcirc" => [0x0011D],
|
1043
|
+
"gcy" => [0x00433],
|
1044
|
+
"gdot" => [0x00121],
|
1045
|
+
"ge" => [0x02265],
|
1046
|
+
"gel" => [0x022DB],
|
1047
|
+
"geq" => [0x02265],
|
1048
|
+
"geqq" => [0x02267],
|
1049
|
+
"geqslant" => [0x02A7E],
|
1050
|
+
"ges" => [0x02A7E],
|
1051
|
+
"gescc" => [0x02AA9],
|
1052
|
+
"gesdot" => [0x02A80],
|
1053
|
+
"gesdoto" => [0x02A82],
|
1054
|
+
"gesdotol" => [0x02A84],
|
1055
|
+
"gesl" => [0x022DB, 0x0FE00],
|
1056
|
+
"gesles" => [0x02A94],
|
1057
|
+
"gfr" => [0x1D524],
|
1058
|
+
"gg" => [0x0226B],
|
1059
|
+
"ggg" => [0x022D9],
|
1060
|
+
"gimel" => [0x02137],
|
1061
|
+
"gjcy" => [0x00453],
|
1062
|
+
"gl" => [0x02277],
|
1063
|
+
"glE" => [0x02A92],
|
1064
|
+
"gla" => [0x02AA5],
|
1065
|
+
"glj" => [0x02AA4],
|
1066
|
+
"gnE" => [0x02269],
|
1067
|
+
"gnap" => [0x02A8A],
|
1068
|
+
"gnapprox" => [0x02A8A],
|
1069
|
+
"gne" => [0x02A88],
|
1070
|
+
"gneq" => [0x02A88],
|
1071
|
+
"gneqq" => [0x02269],
|
1072
|
+
"gnsim" => [0x022E7],
|
1073
|
+
"gopf" => [0x1D558],
|
1074
|
+
"grave" => [0x00060],
|
1075
|
+
"gscr" => [0x0210A],
|
1076
|
+
"gsim" => [0x02273],
|
1077
|
+
"gsime" => [0x02A8E],
|
1078
|
+
"gsiml" => [0x02A90],
|
1079
|
+
"gt" => [0x0003E],
|
1080
|
+
"gtcc" => [0x02AA7],
|
1081
|
+
"gtcir" => [0x02A7A],
|
1082
|
+
"gtdot" => [0x022D7],
|
1083
|
+
"gtlPar" => [0x02995],
|
1084
|
+
"gtquest" => [0x02A7C],
|
1085
|
+
"gtrapprox" => [0x02A86],
|
1086
|
+
"gtrarr" => [0x02978],
|
1087
|
+
"gtrdot" => [0x022D7],
|
1088
|
+
"gtreqless" => [0x022DB],
|
1089
|
+
"gtreqqless" => [0x02A8C],
|
1090
|
+
"gtrless" => [0x02277],
|
1091
|
+
"gtrsim" => [0x02273],
|
1092
|
+
"gvertneqq" => [0x02269, 0x0FE00],
|
1093
|
+
"gvnE" => [0x02269, 0x0FE00],
|
1094
|
+
"hArr" => [0x021D4],
|
1095
|
+
"hairsp" => [0x0200A],
|
1096
|
+
"half" => [0x000BD],
|
1097
|
+
"hamilt" => [0x0210B],
|
1098
|
+
"hardcy" => [0x0044A],
|
1099
|
+
"harr" => [0x02194],
|
1100
|
+
"harrcir" => [0x02948],
|
1101
|
+
"harrw" => [0x021AD],
|
1102
|
+
"hbar" => [0x0210F],
|
1103
|
+
"hcirc" => [0x00125],
|
1104
|
+
"hearts" => [0x02665],
|
1105
|
+
"heartsuit" => [0x02665],
|
1106
|
+
"hellip" => [0x02026],
|
1107
|
+
"hercon" => [0x022B9],
|
1108
|
+
"hfr" => [0x1D525],
|
1109
|
+
"hksearow" => [0x02925],
|
1110
|
+
"hkswarow" => [0x02926],
|
1111
|
+
"hoarr" => [0x021FF],
|
1112
|
+
"homtht" => [0x0223B],
|
1113
|
+
"hookleftarrow" => [0x021A9],
|
1114
|
+
"hookrightarrow" => [0x021AA],
|
1115
|
+
"hopf" => [0x1D559],
|
1116
|
+
"horbar" => [0x02015],
|
1117
|
+
"hscr" => [0x1D4BD],
|
1118
|
+
"hslash" => [0x0210F],
|
1119
|
+
"hstrok" => [0x00127],
|
1120
|
+
"hybull" => [0x02043],
|
1121
|
+
"hyphen" => [0x02010],
|
1122
|
+
"iacute" => [0x000ED],
|
1123
|
+
"ic" => [0x02063],
|
1124
|
+
"icirc" => [0x000EE],
|
1125
|
+
"icy" => [0x00438],
|
1126
|
+
"iecy" => [0x00435],
|
1127
|
+
"iexcl" => [0x000A1],
|
1128
|
+
"iff" => [0x021D4],
|
1129
|
+
"ifr" => [0x1D526],
|
1130
|
+
"igrave" => [0x000EC],
|
1131
|
+
"ii" => [0x02148],
|
1132
|
+
"iiiint" => [0x02A0C],
|
1133
|
+
"iiint" => [0x0222D],
|
1134
|
+
"iinfin" => [0x029DC],
|
1135
|
+
"iiota" => [0x02129],
|
1136
|
+
"ijlig" => [0x00133],
|
1137
|
+
"imacr" => [0x0012B],
|
1138
|
+
"image" => [0x02111],
|
1139
|
+
"imagline" => [0x02110],
|
1140
|
+
"imagpart" => [0x02111],
|
1141
|
+
"imath" => [0x00131],
|
1142
|
+
"imof" => [0x022B7],
|
1143
|
+
"imped" => [0x001B5],
|
1144
|
+
"in" => [0x02208],
|
1145
|
+
"incare" => [0x02105],
|
1146
|
+
"infin" => [0x0221E],
|
1147
|
+
"infintie" => [0x029DD],
|
1148
|
+
"inodot" => [0x00131],
|
1149
|
+
"int" => [0x0222B],
|
1150
|
+
"intcal" => [0x022BA],
|
1151
|
+
"integers" => [0x02124],
|
1152
|
+
"intercal" => [0x022BA],
|
1153
|
+
"intlarhk" => [0x02A17],
|
1154
|
+
"intprod" => [0x02A3C],
|
1155
|
+
"iocy" => [0x00451],
|
1156
|
+
"iogon" => [0x0012F],
|
1157
|
+
"iopf" => [0x1D55A],
|
1158
|
+
"iota" => [0x003B9],
|
1159
|
+
"iprod" => [0x02A3C],
|
1160
|
+
"iquest" => [0x000BF],
|
1161
|
+
"iscr" => [0x1D4BE],
|
1162
|
+
"isin" => [0x02208],
|
1163
|
+
"isinE" => [0x022F9],
|
1164
|
+
"isindot" => [0x022F5],
|
1165
|
+
"isins" => [0x022F4],
|
1166
|
+
"isinsv" => [0x022F3],
|
1167
|
+
"isinv" => [0x02208],
|
1168
|
+
"it" => [0x02062],
|
1169
|
+
"itilde" => [0x00129],
|
1170
|
+
"iukcy" => [0x00456],
|
1171
|
+
"iuml" => [0x000EF],
|
1172
|
+
"jcirc" => [0x00135],
|
1173
|
+
"jcy" => [0x00439],
|
1174
|
+
"jfr" => [0x1D527],
|
1175
|
+
"jmath" => [0x00237],
|
1176
|
+
"jopf" => [0x1D55B],
|
1177
|
+
"jscr" => [0x1D4BF],
|
1178
|
+
"jsercy" => [0x00458],
|
1179
|
+
"jukcy" => [0x00454],
|
1180
|
+
"kappa" => [0x003BA],
|
1181
|
+
"kappav" => [0x003F0],
|
1182
|
+
"kcedil" => [0x00137],
|
1183
|
+
"kcy" => [0x0043A],
|
1184
|
+
"kfr" => [0x1D528],
|
1185
|
+
"kgreen" => [0x00138],
|
1186
|
+
"khcy" => [0x00445],
|
1187
|
+
"kjcy" => [0x0045C],
|
1188
|
+
"kopf" => [0x1D55C],
|
1189
|
+
"kscr" => [0x1D4C0],
|
1190
|
+
"lAarr" => [0x021DA],
|
1191
|
+
"lArr" => [0x021D0],
|
1192
|
+
"lAtail" => [0x0291B],
|
1193
|
+
"lBarr" => [0x0290E],
|
1194
|
+
"lE" => [0x02266],
|
1195
|
+
"lEg" => [0x02A8B],
|
1196
|
+
"lHar" => [0x02962],
|
1197
|
+
"lacute" => [0x0013A],
|
1198
|
+
"laemptyv" => [0x029B4],
|
1199
|
+
"lagran" => [0x02112],
|
1200
|
+
"lambda" => [0x003BB],
|
1201
|
+
"lang" => [0x027E8],
|
1202
|
+
"langd" => [0x02991],
|
1203
|
+
"langle" => [0x027E8],
|
1204
|
+
"lap" => [0x02A85],
|
1205
|
+
"laquo" => [0x000AB],
|
1206
|
+
"larr" => [0x02190],
|
1207
|
+
"larrb" => [0x021E4],
|
1208
|
+
"larrbfs" => [0x0291F],
|
1209
|
+
"larrfs" => [0x0291D],
|
1210
|
+
"larrhk" => [0x021A9],
|
1211
|
+
"larrlp" => [0x021AB],
|
1212
|
+
"larrpl" => [0x02939],
|
1213
|
+
"larrsim" => [0x02973],
|
1214
|
+
"larrtl" => [0x021A2],
|
1215
|
+
"lat" => [0x02AAB],
|
1216
|
+
"latail" => [0x02919],
|
1217
|
+
"late" => [0x02AAD],
|
1218
|
+
"lates" => [0x02AAD, 0x0FE00],
|
1219
|
+
"lbarr" => [0x0290C],
|
1220
|
+
"lbbrk" => [0x02772],
|
1221
|
+
"lbrace" => [0x0007B],
|
1222
|
+
"lbrack" => [0x0005B],
|
1223
|
+
"lbrke" => [0x0298B],
|
1224
|
+
"lbrksld" => [0x0298F],
|
1225
|
+
"lbrkslu" => [0x0298D],
|
1226
|
+
"lcaron" => [0x0013E],
|
1227
|
+
"lcedil" => [0x0013C],
|
1228
|
+
"lceil" => [0x02308],
|
1229
|
+
"lcub" => [0x0007B],
|
1230
|
+
"lcy" => [0x0043B],
|
1231
|
+
"ldca" => [0x02936],
|
1232
|
+
"ldquo" => [0x0201C],
|
1233
|
+
"ldquor" => [0x0201E],
|
1234
|
+
"ldrdhar" => [0x02967],
|
1235
|
+
"ldrushar" => [0x0294B],
|
1236
|
+
"ldsh" => [0x021B2],
|
1237
|
+
"le" => [0x02264],
|
1238
|
+
"leftarrow" => [0x02190],
|
1239
|
+
"leftarrowtail" => [0x021A2],
|
1240
|
+
"leftharpoondown" => [0x021BD],
|
1241
|
+
"leftharpoonup" => [0x021BC],
|
1242
|
+
"leftleftarrows" => [0x021C7],
|
1243
|
+
"leftrightarrow" => [0x02194],
|
1244
|
+
"leftrightarrows" => [0x021C6],
|
1245
|
+
"leftrightharpoons" => [0x021CB],
|
1246
|
+
"leftrightsquigarrow" => [0x021AD],
|
1247
|
+
"leftthreetimes" => [0x022CB],
|
1248
|
+
"leg" => [0x022DA],
|
1249
|
+
"leq" => [0x02264],
|
1250
|
+
"leqq" => [0x02266],
|
1251
|
+
"leqslant" => [0x02A7D],
|
1252
|
+
"les" => [0x02A7D],
|
1253
|
+
"lescc" => [0x02AA8],
|
1254
|
+
"lesdot" => [0x02A7F],
|
1255
|
+
"lesdoto" => [0x02A81],
|
1256
|
+
"lesdotor" => [0x02A83],
|
1257
|
+
"lesg" => [0x022DA, 0x0FE00],
|
1258
|
+
"lesges" => [0x02A93],
|
1259
|
+
"lessapprox" => [0x02A85],
|
1260
|
+
"lessdot" => [0x022D6],
|
1261
|
+
"lesseqgtr" => [0x022DA],
|
1262
|
+
"lesseqqgtr" => [0x02A8B],
|
1263
|
+
"lessgtr" => [0x02276],
|
1264
|
+
"lesssim" => [0x02272],
|
1265
|
+
"lfisht" => [0x0297C],
|
1266
|
+
"lfloor" => [0x0230A],
|
1267
|
+
"lfr" => [0x1D529],
|
1268
|
+
"lg" => [0x02276],
|
1269
|
+
"lgE" => [0x02A91],
|
1270
|
+
"lhard" => [0x021BD],
|
1271
|
+
"lharu" => [0x021BC],
|
1272
|
+
"lharul" => [0x0296A],
|
1273
|
+
"lhblk" => [0x02584],
|
1274
|
+
"ljcy" => [0x00459],
|
1275
|
+
"ll" => [0x0226A],
|
1276
|
+
"llarr" => [0x021C7],
|
1277
|
+
"llcorner" => [0x0231E],
|
1278
|
+
"llhard" => [0x0296B],
|
1279
|
+
"lltri" => [0x025FA],
|
1280
|
+
"lmidot" => [0x00140],
|
1281
|
+
"lmoust" => [0x023B0],
|
1282
|
+
"lmoustache" => [0x023B0],
|
1283
|
+
"lnE" => [0x02268],
|
1284
|
+
"lnap" => [0x02A89],
|
1285
|
+
"lnapprox" => [0x02A89],
|
1286
|
+
"lne" => [0x02A87],
|
1287
|
+
"lneq" => [0x02A87],
|
1288
|
+
"lneqq" => [0x02268],
|
1289
|
+
"lnsim" => [0x022E6],
|
1290
|
+
"loang" => [0x027EC],
|
1291
|
+
"loarr" => [0x021FD],
|
1292
|
+
"lobrk" => [0x027E6],
|
1293
|
+
"longleftarrow" => [0x027F5],
|
1294
|
+
"longleftrightarrow" => [0x027F7],
|
1295
|
+
"longmapsto" => [0x027FC],
|
1296
|
+
"longrightarrow" => [0x027F6],
|
1297
|
+
"looparrowleft" => [0x021AB],
|
1298
|
+
"looparrowright" => [0x021AC],
|
1299
|
+
"lopar" => [0x02985],
|
1300
|
+
"lopf" => [0x1D55D],
|
1301
|
+
"loplus" => [0x02A2D],
|
1302
|
+
"lotimes" => [0x02A34],
|
1303
|
+
"lowast" => [0x02217],
|
1304
|
+
"lowbar" => [0x0005F],
|
1305
|
+
"loz" => [0x025CA],
|
1306
|
+
"lozenge" => [0x025CA],
|
1307
|
+
"lozf" => [0x029EB],
|
1308
|
+
"lpar" => [0x00028],
|
1309
|
+
"lparlt" => [0x02993],
|
1310
|
+
"lrarr" => [0x021C6],
|
1311
|
+
"lrcorner" => [0x0231F],
|
1312
|
+
"lrhar" => [0x021CB],
|
1313
|
+
"lrhard" => [0x0296D],
|
1314
|
+
"lrm" => [0x0200E],
|
1315
|
+
"lrtri" => [0x022BF],
|
1316
|
+
"lsaquo" => [0x02039],
|
1317
|
+
"lscr" => [0x1D4C1],
|
1318
|
+
"lsh" => [0x021B0],
|
1319
|
+
"lsim" => [0x02272],
|
1320
|
+
"lsime" => [0x02A8D],
|
1321
|
+
"lsimg" => [0x02A8F],
|
1322
|
+
"lsqb" => [0x0005B],
|
1323
|
+
"lsquo" => [0x02018],
|
1324
|
+
"lsquor" => [0x0201A],
|
1325
|
+
"lstrok" => [0x00142],
|
1326
|
+
"lt" => [0x0003C],
|
1327
|
+
"ltcc" => [0x02AA6],
|
1328
|
+
"ltcir" => [0x02A79],
|
1329
|
+
"ltdot" => [0x022D6],
|
1330
|
+
"lthree" => [0x022CB],
|
1331
|
+
"ltimes" => [0x022C9],
|
1332
|
+
"ltlarr" => [0x02976],
|
1333
|
+
"ltquest" => [0x02A7B],
|
1334
|
+
"ltrPar" => [0x02996],
|
1335
|
+
"ltri" => [0x025C3],
|
1336
|
+
"ltrie" => [0x022B4],
|
1337
|
+
"ltrif" => [0x025C2],
|
1338
|
+
"lurdshar" => [0x0294A],
|
1339
|
+
"luruhar" => [0x02966],
|
1340
|
+
"lvertneqq" => [0x02268, 0x0FE00],
|
1341
|
+
"lvnE" => [0x02268, 0x0FE00],
|
1342
|
+
"mDDot" => [0x0223A],
|
1343
|
+
"macr" => [0x000AF],
|
1344
|
+
"male" => [0x02642],
|
1345
|
+
"malt" => [0x02720],
|
1346
|
+
"maltese" => [0x02720],
|
1347
|
+
"map" => [0x021A6],
|
1348
|
+
"mapsto" => [0x021A6],
|
1349
|
+
"mapstodown" => [0x021A7],
|
1350
|
+
"mapstoleft" => [0x021A4],
|
1351
|
+
"mapstoup" => [0x021A5],
|
1352
|
+
"marker" => [0x025AE],
|
1353
|
+
"mcomma" => [0x02A29],
|
1354
|
+
"mcy" => [0x0043C],
|
1355
|
+
"mdash" => [0x02014],
|
1356
|
+
"measuredangle" => [0x02221],
|
1357
|
+
"mfr" => [0x1D52A],
|
1358
|
+
"mho" => [0x02127],
|
1359
|
+
"micro" => [0x000B5],
|
1360
|
+
"mid" => [0x02223],
|
1361
|
+
"midast" => [0x0002A],
|
1362
|
+
"midcir" => [0x02AF0],
|
1363
|
+
"middot" => [0x000B7],
|
1364
|
+
"minus" => [0x02212],
|
1365
|
+
"minusb" => [0x0229F],
|
1366
|
+
"minusd" => [0x02238],
|
1367
|
+
"minusdu" => [0x02A2A],
|
1368
|
+
"mlcp" => [0x02ADB],
|
1369
|
+
"mldr" => [0x02026],
|
1370
|
+
"mnplus" => [0x02213],
|
1371
|
+
"models" => [0x022A7],
|
1372
|
+
"mopf" => [0x1D55E],
|
1373
|
+
"mp" => [0x02213],
|
1374
|
+
"mscr" => [0x1D4C2],
|
1375
|
+
"mstpos" => [0x0223E],
|
1376
|
+
"mu" => [0x003BC],
|
1377
|
+
"multimap" => [0x022B8],
|
1378
|
+
"mumap" => [0x022B8],
|
1379
|
+
"nGg" => [0x022D9, 0x00338],
|
1380
|
+
"nGt" => [0x0226B, 0x020D2],
|
1381
|
+
"nGtv" => [0x0226B, 0x00338],
|
1382
|
+
"nLeftarrow" => [0x021CD],
|
1383
|
+
"nLeftrightarrow" => [0x021CE],
|
1384
|
+
"nLl" => [0x022D8, 0x00338],
|
1385
|
+
"nLt" => [0x0226A, 0x020D2],
|
1386
|
+
"nLtv" => [0x0226A, 0x00338],
|
1387
|
+
"nRightarrow" => [0x021CF],
|
1388
|
+
"nVDash" => [0x022AF],
|
1389
|
+
"nVdash" => [0x022AE],
|
1390
|
+
"nabla" => [0x02207],
|
1391
|
+
"nacute" => [0x00144],
|
1392
|
+
"nang" => [0x02220, 0x020D2],
|
1393
|
+
"nap" => [0x02249],
|
1394
|
+
"napE" => [0x02A70, 0x00338],
|
1395
|
+
"napid" => [0x0224B, 0x00338],
|
1396
|
+
"napos" => [0x00149],
|
1397
|
+
"napprox" => [0x02249],
|
1398
|
+
"natur" => [0x0266E],
|
1399
|
+
"natural" => [0x0266E],
|
1400
|
+
"naturals" => [0x02115],
|
1401
|
+
"nbsp" => [0x000A0],
|
1402
|
+
"nbump" => [0x0224E, 0x00338],
|
1403
|
+
"nbumpe" => [0x0224F, 0x00338],
|
1404
|
+
"ncap" => [0x02A43],
|
1405
|
+
"ncaron" => [0x00148],
|
1406
|
+
"ncedil" => [0x00146],
|
1407
|
+
"ncong" => [0x02247],
|
1408
|
+
"ncongdot" => [0x02A6D, 0x00338],
|
1409
|
+
"ncup" => [0x02A42],
|
1410
|
+
"ncy" => [0x0043D],
|
1411
|
+
"ndash" => [0x02013],
|
1412
|
+
"ne" => [0x02260],
|
1413
|
+
"neArr" => [0x021D7],
|
1414
|
+
"nearhk" => [0x02924],
|
1415
|
+
"nearr" => [0x02197],
|
1416
|
+
"nearrow" => [0x02197],
|
1417
|
+
"nedot" => [0x02250, 0x00338],
|
1418
|
+
"nequiv" => [0x02262],
|
1419
|
+
"nesear" => [0x02928],
|
1420
|
+
"nesim" => [0x02242, 0x00338],
|
1421
|
+
"nexist" => [0x02204],
|
1422
|
+
"nexists" => [0x02204],
|
1423
|
+
"nfr" => [0x1D52B],
|
1424
|
+
"ngE" => [0x02267, 0x00338],
|
1425
|
+
"nge" => [0x02271],
|
1426
|
+
"ngeq" => [0x02271],
|
1427
|
+
"ngeqq" => [0x02267, 0x00338],
|
1428
|
+
"ngeqslant" => [0x02A7E, 0x00338],
|
1429
|
+
"nges" => [0x02A7E, 0x00338],
|
1430
|
+
"ngsim" => [0x02275],
|
1431
|
+
"ngt" => [0x0226F],
|
1432
|
+
"ngtr" => [0x0226F],
|
1433
|
+
"nhArr" => [0x021CE],
|
1434
|
+
"nharr" => [0x021AE],
|
1435
|
+
"nhpar" => [0x02AF2],
|
1436
|
+
"ni" => [0x0220B],
|
1437
|
+
"nis" => [0x022FC],
|
1438
|
+
"nisd" => [0x022FA],
|
1439
|
+
"niv" => [0x0220B],
|
1440
|
+
"njcy" => [0x0045A],
|
1441
|
+
"nlArr" => [0x021CD],
|
1442
|
+
"nlE" => [0x02266, 0x00338],
|
1443
|
+
"nlarr" => [0x0219A],
|
1444
|
+
"nldr" => [0x02025],
|
1445
|
+
"nle" => [0x02270],
|
1446
|
+
"nleftarrow" => [0x0219A],
|
1447
|
+
"nleftrightarrow" => [0x021AE],
|
1448
|
+
"nleq" => [0x02270],
|
1449
|
+
"nleqq" => [0x02266, 0x00338],
|
1450
|
+
"nleqslant" => [0x02A7D, 0x00338],
|
1451
|
+
"nles" => [0x02A7D, 0x00338],
|
1452
|
+
"nless" => [0x0226E],
|
1453
|
+
"nlsim" => [0x02274],
|
1454
|
+
"nlt" => [0x0226E],
|
1455
|
+
"nltri" => [0x022EA],
|
1456
|
+
"nltrie" => [0x022EC],
|
1457
|
+
"nmid" => [0x02224],
|
1458
|
+
"nopf" => [0x1D55F],
|
1459
|
+
"not" => [0x000AC],
|
1460
|
+
"notin" => [0x02209],
|
1461
|
+
"notinE" => [0x022F9, 0x00338],
|
1462
|
+
"notindot" => [0x022F5, 0x00338],
|
1463
|
+
"notinva" => [0x02209],
|
1464
|
+
"notinvb" => [0x022F7],
|
1465
|
+
"notinvc" => [0x022F6],
|
1466
|
+
"notni" => [0x0220C],
|
1467
|
+
"notniva" => [0x0220C],
|
1468
|
+
"notnivb" => [0x022FE],
|
1469
|
+
"notnivc" => [0x022FD],
|
1470
|
+
"npar" => [0x02226],
|
1471
|
+
"nparallel" => [0x02226],
|
1472
|
+
"nparsl" => [0x02AFD, 0x020E5],
|
1473
|
+
"npart" => [0x02202, 0x00338],
|
1474
|
+
"npolint" => [0x02A14],
|
1475
|
+
"npr" => [0x02280],
|
1476
|
+
"nprcue" => [0x022E0],
|
1477
|
+
"npre" => [0x02AAF, 0x00338],
|
1478
|
+
"nprec" => [0x02280],
|
1479
|
+
"npreceq" => [0x02AAF, 0x00338],
|
1480
|
+
"nrArr" => [0x021CF],
|
1481
|
+
"nrarr" => [0x0219B],
|
1482
|
+
"nrarrc" => [0x02933, 0x00338],
|
1483
|
+
"nrarrw" => [0x0219D, 0x00338],
|
1484
|
+
"nrightarrow" => [0x0219B],
|
1485
|
+
"nrtri" => [0x022EB],
|
1486
|
+
"nrtrie" => [0x022ED],
|
1487
|
+
"nsc" => [0x02281],
|
1488
|
+
"nsccue" => [0x022E1],
|
1489
|
+
"nsce" => [0x02AB0, 0x00338],
|
1490
|
+
"nscr" => [0x1D4C3],
|
1491
|
+
"nshortmid" => [0x02224],
|
1492
|
+
"nshortparallel" => [0x02226],
|
1493
|
+
"nsim" => [0x02241],
|
1494
|
+
"nsime" => [0x02244],
|
1495
|
+
"nsimeq" => [0x02244],
|
1496
|
+
"nsmid" => [0x02224],
|
1497
|
+
"nspar" => [0x02226],
|
1498
|
+
"nsqsube" => [0x022E2],
|
1499
|
+
"nsqsupe" => [0x022E3],
|
1500
|
+
"nsub" => [0x02284],
|
1501
|
+
"nsubE" => [0x02AC5, 0x00338],
|
1502
|
+
"nsube" => [0x02288],
|
1503
|
+
"nsubset" => [0x02282, 0x020D2],
|
1504
|
+
"nsubseteq" => [0x02288],
|
1505
|
+
"nsubseteqq" => [0x02AC5, 0x00338],
|
1506
|
+
"nsucc" => [0x02281],
|
1507
|
+
"nsucceq" => [0x02AB0, 0x00338],
|
1508
|
+
"nsup" => [0x02285],
|
1509
|
+
"nsupE" => [0x02AC6, 0x00338],
|
1510
|
+
"nsupe" => [0x02289],
|
1511
|
+
"nsupset" => [0x02283, 0x020D2],
|
1512
|
+
"nsupseteq" => [0x02289],
|
1513
|
+
"nsupseteqq" => [0x02AC6, 0x00338],
|
1514
|
+
"ntgl" => [0x02279],
|
1515
|
+
"ntilde" => [0x000F1],
|
1516
|
+
"ntlg" => [0x02278],
|
1517
|
+
"ntriangleleft" => [0x022EA],
|
1518
|
+
"ntrianglelefteq" => [0x022EC],
|
1519
|
+
"ntriangleright" => [0x022EB],
|
1520
|
+
"ntrianglerighteq" => [0x022ED],
|
1521
|
+
"nu" => [0x003BD],
|
1522
|
+
"num" => [0x00023],
|
1523
|
+
"numero" => [0x02116],
|
1524
|
+
"numsp" => [0x02007],
|
1525
|
+
"nvDash" => [0x022AD],
|
1526
|
+
"nvHarr" => [0x02904],
|
1527
|
+
"nvap" => [0x0224D, 0x020D2],
|
1528
|
+
"nvdash" => [0x022AC],
|
1529
|
+
"nvge" => [0x02265, 0x020D2],
|
1530
|
+
"nvgt" => [0x0003E, 0x020D2],
|
1531
|
+
"nvinfin" => [0x029DE],
|
1532
|
+
"nvlArr" => [0x02902],
|
1533
|
+
"nvle" => [0x02264, 0x020D2],
|
1534
|
+
"nvlt" => [0x0003C, 0x020D2],
|
1535
|
+
"nvltrie" => [0x022B4, 0x020D2],
|
1536
|
+
"nvrArr" => [0x02903],
|
1537
|
+
"nvrtrie" => [0x022B5, 0x020D2],
|
1538
|
+
"nvsim" => [0x0223C, 0x020D2],
|
1539
|
+
"nwArr" => [0x021D6],
|
1540
|
+
"nwarhk" => [0x02923],
|
1541
|
+
"nwarr" => [0x02196],
|
1542
|
+
"nwarrow" => [0x02196],
|
1543
|
+
"nwnear" => [0x02927],
|
1544
|
+
"oS" => [0x024C8],
|
1545
|
+
"oacute" => [0x000F3],
|
1546
|
+
"oast" => [0x0229B],
|
1547
|
+
"ocir" => [0x0229A],
|
1548
|
+
"ocirc" => [0x000F4],
|
1549
|
+
"ocy" => [0x0043E],
|
1550
|
+
"odash" => [0x0229D],
|
1551
|
+
"odblac" => [0x00151],
|
1552
|
+
"odiv" => [0x02A38],
|
1553
|
+
"odot" => [0x02299],
|
1554
|
+
"odsold" => [0x029BC],
|
1555
|
+
"oelig" => [0x00153],
|
1556
|
+
"ofcir" => [0x029BF],
|
1557
|
+
"ofr" => [0x1D52C],
|
1558
|
+
"ogon" => [0x002DB],
|
1559
|
+
"ograve" => [0x000F2],
|
1560
|
+
"ogt" => [0x029C1],
|
1561
|
+
"ohbar" => [0x029B5],
|
1562
|
+
"ohm" => [0x003A9],
|
1563
|
+
"oint" => [0x0222E],
|
1564
|
+
"olarr" => [0x021BA],
|
1565
|
+
"olcir" => [0x029BE],
|
1566
|
+
"olcross" => [0x029BB],
|
1567
|
+
"oline" => [0x0203E],
|
1568
|
+
"olt" => [0x029C0],
|
1569
|
+
"omacr" => [0x0014D],
|
1570
|
+
"omega" => [0x003C9],
|
1571
|
+
"omicron" => [0x003BF],
|
1572
|
+
"omid" => [0x029B6],
|
1573
|
+
"ominus" => [0x02296],
|
1574
|
+
"oopf" => [0x1D560],
|
1575
|
+
"opar" => [0x029B7],
|
1576
|
+
"operp" => [0x029B9],
|
1577
|
+
"oplus" => [0x02295],
|
1578
|
+
"or" => [0x02228],
|
1579
|
+
"orarr" => [0x021BB],
|
1580
|
+
"ord" => [0x02A5D],
|
1581
|
+
"order" => [0x02134],
|
1582
|
+
"orderof" => [0x02134],
|
1583
|
+
"ordf" => [0x000AA],
|
1584
|
+
"ordm" => [0x000BA],
|
1585
|
+
"origof" => [0x022B6],
|
1586
|
+
"oror" => [0x02A56],
|
1587
|
+
"orslope" => [0x02A57],
|
1588
|
+
"orv" => [0x02A5B],
|
1589
|
+
"oscr" => [0x02134],
|
1590
|
+
"oslash" => [0x000F8],
|
1591
|
+
"osol" => [0x02298],
|
1592
|
+
"otilde" => [0x000F5],
|
1593
|
+
"otimes" => [0x02297],
|
1594
|
+
"otimesas" => [0x02A36],
|
1595
|
+
"ouml" => [0x000F6],
|
1596
|
+
"ovbar" => [0x0233D],
|
1597
|
+
"par" => [0x02225],
|
1598
|
+
"para" => [0x000B6],
|
1599
|
+
"parallel" => [0x02225],
|
1600
|
+
"parsim" => [0x02AF3],
|
1601
|
+
"parsl" => [0x02AFD],
|
1602
|
+
"part" => [0x02202],
|
1603
|
+
"pcy" => [0x0043F],
|
1604
|
+
"percnt" => [0x00025],
|
1605
|
+
"period" => [0x0002E],
|
1606
|
+
"permil" => [0x02030],
|
1607
|
+
"perp" => [0x022A5],
|
1608
|
+
"pertenk" => [0x02031],
|
1609
|
+
"pfr" => [0x1D52D],
|
1610
|
+
"phi" => [0x003C6],
|
1611
|
+
"phiv" => [0x003D5],
|
1612
|
+
"phmmat" => [0x02133],
|
1613
|
+
"phone" => [0x0260E],
|
1614
|
+
"pi" => [0x003C0],
|
1615
|
+
"pitchfork" => [0x022D4],
|
1616
|
+
"piv" => [0x003D6],
|
1617
|
+
"planck" => [0x0210F],
|
1618
|
+
"planckh" => [0x0210E],
|
1619
|
+
"plankv" => [0x0210F],
|
1620
|
+
"plus" => [0x0002B],
|
1621
|
+
"plusacir" => [0x02A23],
|
1622
|
+
"plusb" => [0x0229E],
|
1623
|
+
"pluscir" => [0x02A22],
|
1624
|
+
"plusdo" => [0x02214],
|
1625
|
+
"plusdu" => [0x02A25],
|
1626
|
+
"pluse" => [0x02A72],
|
1627
|
+
"plusmn" => [0x000B1],
|
1628
|
+
"plussim" => [0x02A26],
|
1629
|
+
"plustwo" => [0x02A27],
|
1630
|
+
"pm" => [0x000B1],
|
1631
|
+
"pointint" => [0x02A15],
|
1632
|
+
"popf" => [0x1D561],
|
1633
|
+
"pound" => [0x000A3],
|
1634
|
+
"pr" => [0x0227A],
|
1635
|
+
"prE" => [0x02AB3],
|
1636
|
+
"prap" => [0x02AB7],
|
1637
|
+
"prcue" => [0x0227C],
|
1638
|
+
"pre" => [0x02AAF],
|
1639
|
+
"prec" => [0x0227A],
|
1640
|
+
"precapprox" => [0x02AB7],
|
1641
|
+
"preccurlyeq" => [0x0227C],
|
1642
|
+
"preceq" => [0x02AAF],
|
1643
|
+
"precnapprox" => [0x02AB9],
|
1644
|
+
"precneqq" => [0x02AB5],
|
1645
|
+
"precnsim" => [0x022E8],
|
1646
|
+
"precsim" => [0x0227E],
|
1647
|
+
"prime" => [0x02032],
|
1648
|
+
"primes" => [0x02119],
|
1649
|
+
"prnE" => [0x02AB5],
|
1650
|
+
"prnap" => [0x02AB9],
|
1651
|
+
"prnsim" => [0x022E8],
|
1652
|
+
"prod" => [0x0220F],
|
1653
|
+
"profalar" => [0x0232E],
|
1654
|
+
"profline" => [0x02312],
|
1655
|
+
"profsurf" => [0x02313],
|
1656
|
+
"prop" => [0x0221D],
|
1657
|
+
"propto" => [0x0221D],
|
1658
|
+
"prsim" => [0x0227E],
|
1659
|
+
"prurel" => [0x022B0],
|
1660
|
+
"pscr" => [0x1D4C5],
|
1661
|
+
"psi" => [0x003C8],
|
1662
|
+
"puncsp" => [0x02008],
|
1663
|
+
"qfr" => [0x1D52E],
|
1664
|
+
"qint" => [0x02A0C],
|
1665
|
+
"qopf" => [0x1D562],
|
1666
|
+
"qprime" => [0x02057],
|
1667
|
+
"qscr" => [0x1D4C6],
|
1668
|
+
"quaternions" => [0x0210D],
|
1669
|
+
"quatint" => [0x02A16],
|
1670
|
+
"quest" => [0x0003F],
|
1671
|
+
"questeq" => [0x0225F],
|
1672
|
+
"quot" => [0x00022],
|
1673
|
+
"rAarr" => [0x021DB],
|
1674
|
+
"rArr" => [0x021D2],
|
1675
|
+
"rAtail" => [0x0291C],
|
1676
|
+
"rBarr" => [0x0290F],
|
1677
|
+
"rHar" => [0x02964],
|
1678
|
+
"race" => [0x0223D, 0x00331],
|
1679
|
+
"racute" => [0x00155],
|
1680
|
+
"radic" => [0x0221A],
|
1681
|
+
"raemptyv" => [0x029B3],
|
1682
|
+
"rang" => [0x027E9],
|
1683
|
+
"rangd" => [0x02992],
|
1684
|
+
"range" => [0x029A5],
|
1685
|
+
"rangle" => [0x027E9],
|
1686
|
+
"raquo" => [0x000BB],
|
1687
|
+
"rarr" => [0x02192],
|
1688
|
+
"rarrap" => [0x02975],
|
1689
|
+
"rarrb" => [0x021E5],
|
1690
|
+
"rarrbfs" => [0x02920],
|
1691
|
+
"rarrc" => [0x02933],
|
1692
|
+
"rarrfs" => [0x0291E],
|
1693
|
+
"rarrhk" => [0x021AA],
|
1694
|
+
"rarrlp" => [0x021AC],
|
1695
|
+
"rarrpl" => [0x02945],
|
1696
|
+
"rarrsim" => [0x02974],
|
1697
|
+
"rarrtl" => [0x021A3],
|
1698
|
+
"rarrw" => [0x0219D],
|
1699
|
+
"ratail" => [0x0291A],
|
1700
|
+
"ratio" => [0x02236],
|
1701
|
+
"rationals" => [0x0211A],
|
1702
|
+
"rbarr" => [0x0290D],
|
1703
|
+
"rbbrk" => [0x02773],
|
1704
|
+
"rbrace" => [0x0007D],
|
1705
|
+
"rbrack" => [0x0005D],
|
1706
|
+
"rbrke" => [0x0298C],
|
1707
|
+
"rbrksld" => [0x0298E],
|
1708
|
+
"rbrkslu" => [0x02990],
|
1709
|
+
"rcaron" => [0x00159],
|
1710
|
+
"rcedil" => [0x00157],
|
1711
|
+
"rceil" => [0x02309],
|
1712
|
+
"rcub" => [0x0007D],
|
1713
|
+
"rcy" => [0x00440],
|
1714
|
+
"rdca" => [0x02937],
|
1715
|
+
"rdldhar" => [0x02969],
|
1716
|
+
"rdquo" => [0x0201D],
|
1717
|
+
"rdquor" => [0x0201D],
|
1718
|
+
"rdsh" => [0x021B3],
|
1719
|
+
"real" => [0x0211C],
|
1720
|
+
"realine" => [0x0211B],
|
1721
|
+
"realpart" => [0x0211C],
|
1722
|
+
"reals" => [0x0211D],
|
1723
|
+
"rect" => [0x025AD],
|
1724
|
+
"reg" => [0x000AE],
|
1725
|
+
"rfisht" => [0x0297D],
|
1726
|
+
"rfloor" => [0x0230B],
|
1727
|
+
"rfr" => [0x1D52F],
|
1728
|
+
"rhard" => [0x021C1],
|
1729
|
+
"rharu" => [0x021C0],
|
1730
|
+
"rharul" => [0x0296C],
|
1731
|
+
"rho" => [0x003C1],
|
1732
|
+
"rhov" => [0x003F1],
|
1733
|
+
"rightarrow" => [0x02192],
|
1734
|
+
"rightarrowtail" => [0x021A3],
|
1735
|
+
"rightharpoondown" => [0x021C1],
|
1736
|
+
"rightharpoonup" => [0x021C0],
|
1737
|
+
"rightleftarrows" => [0x021C4],
|
1738
|
+
"rightleftharpoons" => [0x021CC],
|
1739
|
+
"rightrightarrows" => [0x021C9],
|
1740
|
+
"rightsquigarrow" => [0x0219D],
|
1741
|
+
"rightthreetimes" => [0x022CC],
|
1742
|
+
"ring" => [0x002DA],
|
1743
|
+
"risingdotseq" => [0x02253],
|
1744
|
+
"rlarr" => [0x021C4],
|
1745
|
+
"rlhar" => [0x021CC],
|
1746
|
+
"rlm" => [0x0200F],
|
1747
|
+
"rmoust" => [0x023B1],
|
1748
|
+
"rmoustache" => [0x023B1],
|
1749
|
+
"rnmid" => [0x02AEE],
|
1750
|
+
"roang" => [0x027ED],
|
1751
|
+
"roarr" => [0x021FE],
|
1752
|
+
"robrk" => [0x027E7],
|
1753
|
+
"ropar" => [0x02986],
|
1754
|
+
"ropf" => [0x1D563],
|
1755
|
+
"roplus" => [0x02A2E],
|
1756
|
+
"rotimes" => [0x02A35],
|
1757
|
+
"rpar" => [0x00029],
|
1758
|
+
"rpargt" => [0x02994],
|
1759
|
+
"rppolint" => [0x02A12],
|
1760
|
+
"rrarr" => [0x021C9],
|
1761
|
+
"rsaquo" => [0x0203A],
|
1762
|
+
"rscr" => [0x1D4C7],
|
1763
|
+
"rsh" => [0x021B1],
|
1764
|
+
"rsqb" => [0x0005D],
|
1765
|
+
"rsquo" => [0x02019],
|
1766
|
+
"rsquor" => [0x02019],
|
1767
|
+
"rthree" => [0x022CC],
|
1768
|
+
"rtimes" => [0x022CA],
|
1769
|
+
"rtri" => [0x025B9],
|
1770
|
+
"rtrie" => [0x022B5],
|
1771
|
+
"rtrif" => [0x025B8],
|
1772
|
+
"rtriltri" => [0x029CE],
|
1773
|
+
"ruluhar" => [0x02968],
|
1774
|
+
"rx" => [0x0211E],
|
1775
|
+
"sacute" => [0x0015B],
|
1776
|
+
"sbquo" => [0x0201A],
|
1777
|
+
"sc" => [0x0227B],
|
1778
|
+
"scE" => [0x02AB4],
|
1779
|
+
"scap" => [0x02AB8],
|
1780
|
+
"scaron" => [0x00161],
|
1781
|
+
"sccue" => [0x0227D],
|
1782
|
+
"sce" => [0x02AB0],
|
1783
|
+
"scedil" => [0x0015F],
|
1784
|
+
"scirc" => [0x0015D],
|
1785
|
+
"scnE" => [0x02AB6],
|
1786
|
+
"scnap" => [0x02ABA],
|
1787
|
+
"scnsim" => [0x022E9],
|
1788
|
+
"scpolint" => [0x02A13],
|
1789
|
+
"scsim" => [0x0227F],
|
1790
|
+
"scy" => [0x00441],
|
1791
|
+
"sdot" => [0x022C5],
|
1792
|
+
"sdotb" => [0x022A1],
|
1793
|
+
"sdote" => [0x02A66],
|
1794
|
+
"seArr" => [0x021D8],
|
1795
|
+
"searhk" => [0x02925],
|
1796
|
+
"searr" => [0x02198],
|
1797
|
+
"searrow" => [0x02198],
|
1798
|
+
"sect" => [0x000A7],
|
1799
|
+
"semi" => [0x0003B],
|
1800
|
+
"seswar" => [0x02929],
|
1801
|
+
"setminus" => [0x02216],
|
1802
|
+
"setmn" => [0x02216],
|
1803
|
+
"sext" => [0x02736],
|
1804
|
+
"sfr" => [0x1D530],
|
1805
|
+
"sfrown" => [0x02322],
|
1806
|
+
"sharp" => [0x0266F],
|
1807
|
+
"shchcy" => [0x00449],
|
1808
|
+
"shcy" => [0x00448],
|
1809
|
+
"shortmid" => [0x02223],
|
1810
|
+
"shortparallel" => [0x02225],
|
1811
|
+
"shy" => [0x000AD],
|
1812
|
+
"sigma" => [0x003C3],
|
1813
|
+
"sigmaf" => [0x003C2],
|
1814
|
+
"sigmav" => [0x003C2],
|
1815
|
+
"sim" => [0x0223C],
|
1816
|
+
"simdot" => [0x02A6A],
|
1817
|
+
"sime" => [0x02243],
|
1818
|
+
"simeq" => [0x02243],
|
1819
|
+
"simg" => [0x02A9E],
|
1820
|
+
"simgE" => [0x02AA0],
|
1821
|
+
"siml" => [0x02A9D],
|
1822
|
+
"simlE" => [0x02A9F],
|
1823
|
+
"simne" => [0x02246],
|
1824
|
+
"simplus" => [0x02A24],
|
1825
|
+
"simrarr" => [0x02972],
|
1826
|
+
"slarr" => [0x02190],
|
1827
|
+
"smallsetminus" => [0x02216],
|
1828
|
+
"smashp" => [0x02A33],
|
1829
|
+
"smeparsl" => [0x029E4],
|
1830
|
+
"smid" => [0x02223],
|
1831
|
+
"smile" => [0x02323],
|
1832
|
+
"smt" => [0x02AAA],
|
1833
|
+
"smte" => [0x02AAC],
|
1834
|
+
"smtes" => [0x02AAC, 0x0FE00],
|
1835
|
+
"softcy" => [0x0044C],
|
1836
|
+
"sol" => [0x0002F],
|
1837
|
+
"solb" => [0x029C4],
|
1838
|
+
"solbar" => [0x0233F],
|
1839
|
+
"sopf" => [0x1D564],
|
1840
|
+
"spades" => [0x02660],
|
1841
|
+
"spadesuit" => [0x02660],
|
1842
|
+
"spar" => [0x02225],
|
1843
|
+
"sqcap" => [0x02293],
|
1844
|
+
"sqcaps" => [0x02293, 0x0FE00],
|
1845
|
+
"sqcup" => [0x02294],
|
1846
|
+
"sqcups" => [0x02294, 0x0FE00],
|
1847
|
+
"sqsub" => [0x0228F],
|
1848
|
+
"sqsube" => [0x02291],
|
1849
|
+
"sqsubset" => [0x0228F],
|
1850
|
+
"sqsubseteq" => [0x02291],
|
1851
|
+
"sqsup" => [0x02290],
|
1852
|
+
"sqsupe" => [0x02292],
|
1853
|
+
"sqsupset" => [0x02290],
|
1854
|
+
"sqsupseteq" => [0x02292],
|
1855
|
+
"squ" => [0x025A1],
|
1856
|
+
"square" => [0x025A1],
|
1857
|
+
"squarf" => [0x025AA],
|
1858
|
+
"squf" => [0x025AA],
|
1859
|
+
"srarr" => [0x02192],
|
1860
|
+
"sscr" => [0x1D4C8],
|
1861
|
+
"ssetmn" => [0x02216],
|
1862
|
+
"ssmile" => [0x02323],
|
1863
|
+
"sstarf" => [0x022C6],
|
1864
|
+
"star" => [0x02606],
|
1865
|
+
"starf" => [0x02605],
|
1866
|
+
"straightepsilon" => [0x003F5],
|
1867
|
+
"straightphi" => [0x003D5],
|
1868
|
+
"strns" => [0x000AF],
|
1869
|
+
"sub" => [0x02282],
|
1870
|
+
"subE" => [0x02AC5],
|
1871
|
+
"subdot" => [0x02ABD],
|
1872
|
+
"sube" => [0x02286],
|
1873
|
+
"subedot" => [0x02AC3],
|
1874
|
+
"submult" => [0x02AC1],
|
1875
|
+
"subnE" => [0x02ACB],
|
1876
|
+
"subne" => [0x0228A],
|
1877
|
+
"subplus" => [0x02ABF],
|
1878
|
+
"subrarr" => [0x02979],
|
1879
|
+
"subset" => [0x02282],
|
1880
|
+
"subseteq" => [0x02286],
|
1881
|
+
"subseteqq" => [0x02AC5],
|
1882
|
+
"subsetneq" => [0x0228A],
|
1883
|
+
"subsetneqq" => [0x02ACB],
|
1884
|
+
"subsim" => [0x02AC7],
|
1885
|
+
"subsub" => [0x02AD5],
|
1886
|
+
"subsup" => [0x02AD3],
|
1887
|
+
"succ" => [0x0227B],
|
1888
|
+
"succapprox" => [0x02AB8],
|
1889
|
+
"succcurlyeq" => [0x0227D],
|
1890
|
+
"succeq" => [0x02AB0],
|
1891
|
+
"succnapprox" => [0x02ABA],
|
1892
|
+
"succneqq" => [0x02AB6],
|
1893
|
+
"succnsim" => [0x022E9],
|
1894
|
+
"succsim" => [0x0227F],
|
1895
|
+
"sum" => [0x02211],
|
1896
|
+
"sung" => [0x0266A],
|
1897
|
+
"sup" => [0x02283],
|
1898
|
+
"sup1" => [0x000B9],
|
1899
|
+
"sup2" => [0x000B2],
|
1900
|
+
"sup3" => [0x000B3],
|
1901
|
+
"supE" => [0x02AC6],
|
1902
|
+
"supdot" => [0x02ABE],
|
1903
|
+
"supdsub" => [0x02AD8],
|
1904
|
+
"supe" => [0x02287],
|
1905
|
+
"supedot" => [0x02AC4],
|
1906
|
+
"suphsol" => [0x027C9],
|
1907
|
+
"suphsub" => [0x02AD7],
|
1908
|
+
"suplarr" => [0x0297B],
|
1909
|
+
"supmult" => [0x02AC2],
|
1910
|
+
"supnE" => [0x02ACC],
|
1911
|
+
"supne" => [0x0228B],
|
1912
|
+
"supplus" => [0x02AC0],
|
1913
|
+
"supset" => [0x02283],
|
1914
|
+
"supseteq" => [0x02287],
|
1915
|
+
"supseteqq" => [0x02AC6],
|
1916
|
+
"supsetneq" => [0x0228B],
|
1917
|
+
"supsetneqq" => [0x02ACC],
|
1918
|
+
"supsim" => [0x02AC8],
|
1919
|
+
"supsub" => [0x02AD4],
|
1920
|
+
"supsup" => [0x02AD6],
|
1921
|
+
"swArr" => [0x021D9],
|
1922
|
+
"swarhk" => [0x02926],
|
1923
|
+
"swarr" => [0x02199],
|
1924
|
+
"swarrow" => [0x02199],
|
1925
|
+
"swnwar" => [0x0292A],
|
1926
|
+
"szlig" => [0x000DF],
|
1927
|
+
"target" => [0x02316],
|
1928
|
+
"tau" => [0x003C4],
|
1929
|
+
"tbrk" => [0x023B4],
|
1930
|
+
"tcaron" => [0x00165],
|
1931
|
+
"tcedil" => [0x00163],
|
1932
|
+
"tcy" => [0x00442],
|
1933
|
+
"tdot" => [0x020DB],
|
1934
|
+
"telrec" => [0x02315],
|
1935
|
+
"tfr" => [0x1D531],
|
1936
|
+
"there4" => [0x02234],
|
1937
|
+
"therefore" => [0x02234],
|
1938
|
+
"theta" => [0x003B8],
|
1939
|
+
"thetasym" => [0x003D1],
|
1940
|
+
"thetav" => [0x003D1],
|
1941
|
+
"thickapprox" => [0x02248],
|
1942
|
+
"thicksim" => [0x0223C],
|
1943
|
+
"thinsp" => [0x02009],
|
1944
|
+
"thkap" => [0x02248],
|
1945
|
+
"thksim" => [0x0223C],
|
1946
|
+
"thorn" => [0x000FE],
|
1947
|
+
"tilde" => [0x002DC],
|
1948
|
+
"times" => [0x000D7],
|
1949
|
+
"timesb" => [0x022A0],
|
1950
|
+
"timesbar" => [0x02A31],
|
1951
|
+
"timesd" => [0x02A30],
|
1952
|
+
"tint" => [0x0222D],
|
1953
|
+
"toea" => [0x02928],
|
1954
|
+
"top" => [0x022A4],
|
1955
|
+
"topbot" => [0x02336],
|
1956
|
+
"topcir" => [0x02AF1],
|
1957
|
+
"topf" => [0x1D565],
|
1958
|
+
"topfork" => [0x02ADA],
|
1959
|
+
"tosa" => [0x02929],
|
1960
|
+
"tprime" => [0x02034],
|
1961
|
+
"trade" => [0x02122],
|
1962
|
+
"triangle" => [0x025B5],
|
1963
|
+
"triangledown" => [0x025BF],
|
1964
|
+
"triangleleft" => [0x025C3],
|
1965
|
+
"trianglelefteq" => [0x022B4],
|
1966
|
+
"triangleq" => [0x0225C],
|
1967
|
+
"triangleright" => [0x025B9],
|
1968
|
+
"trianglerighteq" => [0x022B5],
|
1969
|
+
"tridot" => [0x025EC],
|
1970
|
+
"trie" => [0x0225C],
|
1971
|
+
"triminus" => [0x02A3A],
|
1972
|
+
"triplus" => [0x02A39],
|
1973
|
+
"trisb" => [0x029CD],
|
1974
|
+
"tritime" => [0x02A3B],
|
1975
|
+
"trpezium" => [0x023E2],
|
1976
|
+
"tscr" => [0x1D4C9],
|
1977
|
+
"tscy" => [0x00446],
|
1978
|
+
"tshcy" => [0x0045B],
|
1979
|
+
"tstrok" => [0x00167],
|
1980
|
+
"twixt" => [0x0226C],
|
1981
|
+
"twoheadleftarrow" => [0x0219E],
|
1982
|
+
"twoheadrightarrow" => [0x021A0],
|
1983
|
+
"uArr" => [0x021D1],
|
1984
|
+
"uHar" => [0x02963],
|
1985
|
+
"uacute" => [0x000FA],
|
1986
|
+
"uarr" => [0x02191],
|
1987
|
+
"ubrcy" => [0x0045E],
|
1988
|
+
"ubreve" => [0x0016D],
|
1989
|
+
"ucirc" => [0x000FB],
|
1990
|
+
"ucy" => [0x00443],
|
1991
|
+
"udarr" => [0x021C5],
|
1992
|
+
"udblac" => [0x00171],
|
1993
|
+
"udhar" => [0x0296E],
|
1994
|
+
"ufisht" => [0x0297E],
|
1995
|
+
"ufr" => [0x1D532],
|
1996
|
+
"ugrave" => [0x000F9],
|
1997
|
+
"uharl" => [0x021BF],
|
1998
|
+
"uharr" => [0x021BE],
|
1999
|
+
"uhblk" => [0x02580],
|
2000
|
+
"ulcorn" => [0x0231C],
|
2001
|
+
"ulcorner" => [0x0231C],
|
2002
|
+
"ulcrop" => [0x0230F],
|
2003
|
+
"ultri" => [0x025F8],
|
2004
|
+
"umacr" => [0x0016B],
|
2005
|
+
"uml" => [0x000A8],
|
2006
|
+
"uogon" => [0x00173],
|
2007
|
+
"uopf" => [0x1D566],
|
2008
|
+
"uparrow" => [0x02191],
|
2009
|
+
"updownarrow" => [0x02195],
|
2010
|
+
"upharpoonleft" => [0x021BF],
|
2011
|
+
"upharpoonright" => [0x021BE],
|
2012
|
+
"uplus" => [0x0228E],
|
2013
|
+
"upsi" => [0x003C5],
|
2014
|
+
"upsih" => [0x003D2],
|
2015
|
+
"upsilon" => [0x003C5],
|
2016
|
+
"upuparrows" => [0x021C8],
|
2017
|
+
"urcorn" => [0x0231D],
|
2018
|
+
"urcorner" => [0x0231D],
|
2019
|
+
"urcrop" => [0x0230E],
|
2020
|
+
"uring" => [0x0016F],
|
2021
|
+
"urtri" => [0x025F9],
|
2022
|
+
"uscr" => [0x1D4CA],
|
2023
|
+
"utdot" => [0x022F0],
|
2024
|
+
"utilde" => [0x00169],
|
2025
|
+
"utri" => [0x025B5],
|
2026
|
+
"utrif" => [0x025B4],
|
2027
|
+
"uuarr" => [0x021C8],
|
2028
|
+
"uuml" => [0x000FC],
|
2029
|
+
"uwangle" => [0x029A7],
|
2030
|
+
"vArr" => [0x021D5],
|
2031
|
+
"vBar" => [0x02AE8],
|
2032
|
+
"vBarv" => [0x02AE9],
|
2033
|
+
"vDash" => [0x022A8],
|
2034
|
+
"vangrt" => [0x0299C],
|
2035
|
+
"varepsilon" => [0x003F5],
|
2036
|
+
"varkappa" => [0x003F0],
|
2037
|
+
"varnothing" => [0x02205],
|
2038
|
+
"varphi" => [0x003D5],
|
2039
|
+
"varpi" => [0x003D6],
|
2040
|
+
"varpropto" => [0x0221D],
|
2041
|
+
"varr" => [0x02195],
|
2042
|
+
"varrho" => [0x003F1],
|
2043
|
+
"varsigma" => [0x003C2],
|
2044
|
+
"varsubsetneq" => [0x0228A, 0x0FE00],
|
2045
|
+
"varsubsetneqq" => [0x02ACB, 0x0FE00],
|
2046
|
+
"varsupsetneq" => [0x0228B, 0x0FE00],
|
2047
|
+
"varsupsetneqq" => [0x02ACC, 0x0FE00],
|
2048
|
+
"vartheta" => [0x003D1],
|
2049
|
+
"vartriangleleft" => [0x022B2],
|
2050
|
+
"vartriangleright" => [0x022B3],
|
2051
|
+
"vcy" => [0x00432],
|
2052
|
+
"vdash" => [0x022A2],
|
2053
|
+
"vee" => [0x02228],
|
2054
|
+
"veebar" => [0x022BB],
|
2055
|
+
"veeeq" => [0x0225A],
|
2056
|
+
"vellip" => [0x022EE],
|
2057
|
+
"verbar" => [0x0007C],
|
2058
|
+
"vert" => [0x0007C],
|
2059
|
+
"vfr" => [0x1D533],
|
2060
|
+
"vltri" => [0x022B2],
|
2061
|
+
"vnsub" => [0x02282, 0x020D2],
|
2062
|
+
"vnsup" => [0x02283, 0x020D2],
|
2063
|
+
"vopf" => [0x1D567],
|
2064
|
+
"vprop" => [0x0221D],
|
2065
|
+
"vrtri" => [0x022B3],
|
2066
|
+
"vscr" => [0x1D4CB],
|
2067
|
+
"vsubnE" => [0x02ACB, 0x0FE00],
|
2068
|
+
"vsubne" => [0x0228A, 0x0FE00],
|
2069
|
+
"vsupnE" => [0x02ACC, 0x0FE00],
|
2070
|
+
"vsupne" => [0x0228B, 0x0FE00],
|
2071
|
+
"vzigzag" => [0x0299A],
|
2072
|
+
"wcirc" => [0x00175],
|
2073
|
+
"wedbar" => [0x02A5F],
|
2074
|
+
"wedge" => [0x02227],
|
2075
|
+
"wedgeq" => [0x02259],
|
2076
|
+
"weierp" => [0x02118],
|
2077
|
+
"wfr" => [0x1D534],
|
2078
|
+
"wopf" => [0x1D568],
|
2079
|
+
"wp" => [0x02118],
|
2080
|
+
"wr" => [0x02240],
|
2081
|
+
"wreath" => [0x02240],
|
2082
|
+
"wscr" => [0x1D4CC],
|
2083
|
+
"xcap" => [0x022C2],
|
2084
|
+
"xcirc" => [0x025EF],
|
2085
|
+
"xcup" => [0x022C3],
|
2086
|
+
"xdtri" => [0x025BD],
|
2087
|
+
"xfr" => [0x1D535],
|
2088
|
+
"xhArr" => [0x027FA],
|
2089
|
+
"xharr" => [0x027F7],
|
2090
|
+
"xi" => [0x003BE],
|
2091
|
+
"xlArr" => [0x027F8],
|
2092
|
+
"xlarr" => [0x027F5],
|
2093
|
+
"xmap" => [0x027FC],
|
2094
|
+
"xnis" => [0x022FB],
|
2095
|
+
"xodot" => [0x02A00],
|
2096
|
+
"xopf" => [0x1D569],
|
2097
|
+
"xoplus" => [0x02A01],
|
2098
|
+
"xotime" => [0x02A02],
|
2099
|
+
"xrArr" => [0x027F9],
|
2100
|
+
"xrarr" => [0x027F6],
|
2101
|
+
"xscr" => [0x1D4CD],
|
2102
|
+
"xsqcup" => [0x02A06],
|
2103
|
+
"xuplus" => [0x02A04],
|
2104
|
+
"xutri" => [0x025B3],
|
2105
|
+
"xvee" => [0x022C1],
|
2106
|
+
"xwedge" => [0x022C0],
|
2107
|
+
"yacute" => [0x000FD],
|
2108
|
+
"yacy" => [0x0044F],
|
2109
|
+
"ycirc" => [0x00177],
|
2110
|
+
"ycy" => [0x0044B],
|
2111
|
+
"yen" => [0x000A5],
|
2112
|
+
"yfr" => [0x1D536],
|
2113
|
+
"yicy" => [0x00457],
|
2114
|
+
"yopf" => [0x1D56A],
|
2115
|
+
"yscr" => [0x1D4CE],
|
2116
|
+
"yucy" => [0x0044E],
|
2117
|
+
"yuml" => [0x000FF],
|
2118
|
+
"zacute" => [0x0017A],
|
2119
|
+
"zcaron" => [0x0017E],
|
2120
|
+
"zcy" => [0x00437],
|
2121
|
+
"zdot" => [0x0017C],
|
2122
|
+
"zeetrf" => [0x02128],
|
2123
|
+
"zeta" => [0x003B6],
|
2124
|
+
"zfr" => [0x1D537],
|
2125
|
+
"zhcy" => [0x00436],
|
2126
|
+
"zigrarr" => [0x021DD],
|
2127
|
+
"zopf" => [0x1D56B],
|
2128
|
+
"zscr" => [0x1D4CF],
|
2129
|
+
"zwj" => [0x0200D],
|
2130
|
+
"zwnj" => [0x0200C],
|
2131
|
+
}
|
2132
|
+
|