Full Code of sourcemeta/jsonbinpack for AI

main 73414f15457e cached
1684 files
17.1 MB
4.6M tokens
9560 symbols
1 requests
Copy disabled (too large) Download .txt
Showing preview only (18,287K chars total). Download the full file to get everything.
Repository: sourcemeta/jsonbinpack
Branch: main
Commit: 73414f15457e
Files: 1684
Total size: 17.1 MB

Directory structure:
gitextract_ih6xuymu/

├── .ackrc
├── .editorconfig
├── .gitattributes
├── .github/
│   └── workflows/
│       ├── ci.yml
│       ├── website-build.yml
│       └── website-deploy.yml
├── .gitignore
├── Brewfile
├── CMakeLists.txt
├── DEPENDENCIES
├── LICENSE
├── Makefile
├── README.markdown
├── assets/
│   ├── artwork.sketch
│   └── timeline.sketch
├── cmake/
│   ├── FindBlaze.cmake
│   └── FindCore.cmake
├── config.cmake.in
├── doxygen/
│   ├── Doxyfile.in
│   └── todo.markdown
├── src/
│   ├── compiler/
│   │   ├── CMakeLists.txt
│   │   ├── compiler.cc
│   │   ├── encoding.h
│   │   ├── include/
│   │   │   └── sourcemeta/
│   │   │       └── jsonbinpack/
│   │   │           └── compiler.h
│   │   └── mapper/
│   │       ├── enum_8_bit.h
│   │       ├── enum_8_bit_top_level.h
│   │       ├── enum_arbitrary.h
│   │       ├── enum_singleton.h
│   │       ├── integer_bounded_8_bit.h
│   │       ├── integer_bounded_greater_than_8_bit.h
│   │       ├── integer_bounded_multiplier_8_bit.h
│   │       ├── integer_bounded_multiplier_greater_than_8_bit.h
│   │       ├── integer_lower_bound.h
│   │       ├── integer_lower_bound_multiplier.h
│   │       ├── integer_unbound.h
│   │       ├── integer_unbound_multiplier.h
│   │       ├── integer_upper_bound.h
│   │       ├── integer_upper_bound_multiplier.h
│   │       └── number_arbitrary.h
│   └── runtime/
│       ├── CMakeLists.txt
│       ├── cache.cc
│       ├── decoder_any.cc
│       ├── decoder_array.cc
│       ├── decoder_common.cc
│       ├── decoder_integer.cc
│       ├── decoder_number.cc
│       ├── decoder_object.cc
│       ├── decoder_string.cc
│       ├── encoder_any.cc
│       ├── encoder_array.cc
│       ├── encoder_common.cc
│       ├── encoder_integer.cc
│       ├── encoder_number.cc
│       ├── encoder_object.cc
│       ├── encoder_string.cc
│       ├── include/
│       │   └── sourcemeta/
│       │       └── jsonbinpack/
│       │           ├── runtime.h
│       │           ├── runtime_decoder.h
│       │           ├── runtime_encoder.h
│       │           ├── runtime_encoder_cache.h
│       │           ├── runtime_encoding.h
│       │           ├── runtime_input_stream.h
│       │           └── runtime_output_stream.h
│       ├── input_stream.cc
│       ├── loader.cc
│       ├── loader_v1_any.h
│       ├── loader_v1_array.h
│       ├── loader_v1_integer.h
│       ├── loader_v1_number.h
│       ├── loader_v1_string.h
│       ├── output_stream.cc
│       └── unreachable.h
├── test/
│   ├── compiler/
│   │   ├── 2020_12_compiler_any_test.cc
│   │   ├── 2020_12_compiler_integer_test.cc
│   │   ├── 2020_12_compiler_number_test.cc
│   │   ├── CMakeLists.txt
│   │   ├── canonicalizer_test.cc
│   │   └── compiler_test.cc
│   ├── e2e/
│   │   ├── CMakeLists.txt
│   │   ├── circleciblank/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── circlecimatrix/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── commitlint/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── commitlintbasic/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── epr/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── eslintrc/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── esmrc/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── geojson/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── githubfundingblank/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── githubworkflow/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── gruntcontribclean/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── imageoptimizerwebjob/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── jsonereversesort/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── jsonesort/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── jsonfeed/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── jsonresume/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── mixed-bounded-object/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── netcoreproject/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── nightwatch/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── openweathermap/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── openweatherroadrisk/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── ox-test/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── packagejson/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── packagejsonlintrc/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── runner.cc
│   │   ├── sapcloudsdkpipeline/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── travisnotifications/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── tslintbasic/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── tslintextend/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   └── tslintmulti/
│   │       ├── document.json
│   │       └── schema-less/
│   │           ├── canonical.json
│   │           ├── encoding.json
│   │           ├── schema.json
│   │           └── size.txt
│   ├── packaging/
│   │   ├── CMakeLists.txt
│   │   └── find_package/
│   │       ├── CMakeLists.txt
│   │       └── hello.cc
│   └── runtime/
│       ├── CMakeLists.txt
│       ├── decode_any_test.cc
│       ├── decode_array_test.cc
│       ├── decode_integer_test.cc
│       ├── decode_number_test.cc
│       ├── decode_object_test.cc
│       ├── decode_string_test.cc
│       ├── decode_test.cc
│       ├── decode_traits_test.cc
│       ├── decode_utils.h
│       ├── encode_any_test.cc
│       ├── encode_array_test.cc
│       ├── encode_cache_test.cc
│       ├── encode_integer_test.cc
│       ├── encode_number_test.cc
│       ├── encode_object_test.cc
│       ├── encode_real_test.cc
│       ├── encode_string_test.cc
│       ├── encode_test.cc
│       ├── encode_traits_test.cc
│       ├── encode_utils.h
│       ├── encoding_traits_test.cc
│       ├── input_stream_varint_test.cc
│       ├── output_stream_varint_test.cc
│       ├── v1_any_loader_test.cc
│       ├── v1_array_loader_test.cc
│       ├── v1_integer_loader_test.cc
│       ├── v1_loader_test.cc
│       ├── v1_number_loader_test.cc
│       └── v1_string_loader_test.cc
├── vendor/
│   ├── alterschema/
│   │   ├── CMakeLists.txt
│   │   ├── LICENSE
│   │   ├── config.cmake.in
│   │   └── src/
│   │       ├── engine/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── bundle.cc
│   │       │   ├── include/
│   │       │   │   └── sourcemeta/
│   │       │   │       └── alterschema/
│   │       │   │           ├── engine.h
│   │       │   │           ├── engine_bundle.h
│   │       │   │           ├── engine_rule.h
│   │       │   │           └── engine_transformer.h
│   │       │   ├── rule.cc
│   │       │   └── transformer.cc
│   │       └── linter/
│   │           ├── CMakeLists.txt
│   │           ├── antipattern/
│   │           │   ├── const_with_type.h
│   │           │   ├── duplicate_enum_values.h
│   │           │   ├── duplicate_required_values.h
│   │           │   ├── enum_with_type.h
│   │           │   ├── exclusive_maximum_number_and_maximum.h
│   │           │   └── exclusive_minimum_number_and_minimum.h
│   │           ├── desugar/
│   │           │   ├── boolean_true.h
│   │           │   ├── const_as_enum.h
│   │           │   ├── exclusive_maximum_integer_to_maximum.h
│   │           │   ├── exclusive_minimum_integer_to_minimum.h
│   │           │   ├── type_array_to_any_of_2020_12.h
│   │           │   ├── type_boolean_as_enum.h
│   │           │   └── type_null_as_enum.h
│   │           ├── implicit/
│   │           │   ├── max_contains_covered_by_max_items.h
│   │           │   ├── min_items_given_min_contains.h
│   │           │   ├── min_items_implicit.h
│   │           │   ├── min_length_implicit.h
│   │           │   ├── min_properties_covered_by_required.h
│   │           │   ├── min_properties_implicit.h
│   │           │   ├── multiple_of_implicit.h
│   │           │   ├── properties_implicit.h
│   │           │   └── type_union_implicit.h
│   │           ├── include/
│   │           │   └── sourcemeta/
│   │           │       └── alterschema/
│   │           │           └── linter.h
│   │           ├── linter.cc
│   │           ├── redundant/
│   │           │   ├── additional_properties_default.h
│   │           │   ├── content_schema_default.h
│   │           │   ├── dependencies_default.h
│   │           │   ├── dependent_required_default.h
│   │           │   ├── items_array_default.h
│   │           │   ├── items_schema_default.h
│   │           │   ├── pattern_properties_default.h
│   │           │   ├── properties_default.h
│   │           │   ├── unevaluated_items_default.h
│   │           │   ├── unevaluated_properties_default.h
│   │           │   ├── unsatisfiable_max_contains.h
│   │           │   └── unsatisfiable_min_properties.h
│   │           ├── simplify/
│   │           │   ├── dependencies_property_tautology.h
│   │           │   ├── dependent_required_tautology.h
│   │           │   ├── equal_numeric_bounds_to_enum.h
│   │           │   ├── maximum_real_for_integer.h
│   │           │   ├── minimum_real_for_integer.h
│   │           │   └── single_type_array.h
│   │           ├── superfluous/
│   │           │   ├── content_media_type_without_encoding.h
│   │           │   ├── content_schema_without_media_type.h
│   │           │   ├── drop_non_array_keywords_applicator_2019_09.h
│   │           │   ├── drop_non_array_keywords_applicator_2020_12.h
│   │           │   ├── drop_non_array_keywords_content_2019_09.h
│   │           │   ├── drop_non_array_keywords_content_2020_12.h
│   │           │   ├── drop_non_array_keywords_draft0.h
│   │           │   ├── drop_non_array_keywords_draft1.h
│   │           │   ├── drop_non_array_keywords_draft2.h
│   │           │   ├── drop_non_array_keywords_draft3.h
│   │           │   ├── drop_non_array_keywords_draft4.h
│   │           │   ├── drop_non_array_keywords_draft6.h
│   │           │   ├── drop_non_array_keywords_draft7.h
│   │           │   ├── drop_non_array_keywords_format_2019_09.h
│   │           │   ├── drop_non_array_keywords_format_2020_12.h
│   │           │   ├── drop_non_array_keywords_unevaluated_2020_12.h
│   │           │   ├── drop_non_array_keywords_validation_2019_09.h
│   │           │   ├── drop_non_array_keywords_validation_2020_12.h
│   │           │   ├── drop_non_boolean_keywords_applicator_2019_09.h
│   │           │   ├── drop_non_boolean_keywords_applicator_2020_12.h
│   │           │   ├── drop_non_boolean_keywords_content_2019_09.h
│   │           │   ├── drop_non_boolean_keywords_content_2020_12.h
│   │           │   ├── drop_non_boolean_keywords_draft0.h
│   │           │   ├── drop_non_boolean_keywords_draft1.h
│   │           │   ├── drop_non_boolean_keywords_draft2.h
│   │           │   ├── drop_non_boolean_keywords_draft3.h
│   │           │   ├── drop_non_boolean_keywords_draft4.h
│   │           │   ├── drop_non_boolean_keywords_draft6.h
│   │           │   ├── drop_non_boolean_keywords_draft7.h
│   │           │   ├── drop_non_boolean_keywords_format_2019_09.h
│   │           │   ├── drop_non_boolean_keywords_format_2020_12.h
│   │           │   ├── drop_non_boolean_keywords_unevaluated_2020_12.h
│   │           │   ├── drop_non_boolean_keywords_validation_2019_09.h
│   │           │   ├── drop_non_boolean_keywords_validation_2020_12.h
│   │           │   ├── drop_non_null_keywords_applicator_2019_09.h
│   │           │   ├── drop_non_null_keywords_applicator_2020_12.h
│   │           │   ├── drop_non_null_keywords_content_2019_09.h
│   │           │   ├── drop_non_null_keywords_content_2020_12.h
│   │           │   ├── drop_non_null_keywords_draft0.h
│   │           │   ├── drop_non_null_keywords_draft1.h
│   │           │   ├── drop_non_null_keywords_draft2.h
│   │           │   ├── drop_non_null_keywords_draft3.h
│   │           │   ├── drop_non_null_keywords_draft4.h
│   │           │   ├── drop_non_null_keywords_draft6.h
│   │           │   ├── drop_non_null_keywords_draft7.h
│   │           │   ├── drop_non_null_keywords_format_2019_09.h
│   │           │   ├── drop_non_null_keywords_format_2020_12.h
│   │           │   ├── drop_non_null_keywords_unevaluated_2020_12.h
│   │           │   ├── drop_non_null_keywords_validation_2019_09.h
│   │           │   ├── drop_non_null_keywords_validation_2020_12.h
│   │           │   ├── drop_non_numeric_keywords_applicator_2019_09.h
│   │           │   ├── drop_non_numeric_keywords_applicator_2020_12.h
│   │           │   ├── drop_non_numeric_keywords_content_2019_09.h
│   │           │   ├── drop_non_numeric_keywords_content_2020_12.h
│   │           │   ├── drop_non_numeric_keywords_draft0.h
│   │           │   ├── drop_non_numeric_keywords_draft1.h
│   │           │   ├── drop_non_numeric_keywords_draft2.h
│   │           │   ├── drop_non_numeric_keywords_draft3.h
│   │           │   ├── drop_non_numeric_keywords_draft4.h
│   │           │   ├── drop_non_numeric_keywords_draft6.h
│   │           │   ├── drop_non_numeric_keywords_draft7.h
│   │           │   ├── drop_non_numeric_keywords_format_2019_09.h
│   │           │   ├── drop_non_numeric_keywords_format_2020_12.h
│   │           │   ├── drop_non_numeric_keywords_unevaluated_2020_12.h
│   │           │   ├── drop_non_numeric_keywords_validation_2019_09.h
│   │           │   ├── drop_non_numeric_keywords_validation_2020_12.h
│   │           │   ├── drop_non_object_keywords_applicator_2019_09.h
│   │           │   ├── drop_non_object_keywords_applicator_2020_12.h
│   │           │   ├── drop_non_object_keywords_content_2019_09.h
│   │           │   ├── drop_non_object_keywords_content_2020_12.h
│   │           │   ├── drop_non_object_keywords_draft0.h
│   │           │   ├── drop_non_object_keywords_draft1.h
│   │           │   ├── drop_non_object_keywords_draft2.h
│   │           │   ├── drop_non_object_keywords_draft3.h
│   │           │   ├── drop_non_object_keywords_draft4.h
│   │           │   ├── drop_non_object_keywords_draft6.h
│   │           │   ├── drop_non_object_keywords_draft7.h
│   │           │   ├── drop_non_object_keywords_format_2019_09.h
│   │           │   ├── drop_non_object_keywords_format_2020_12.h
│   │           │   ├── drop_non_object_keywords_unevaluated_2020_12.h
│   │           │   ├── drop_non_object_keywords_validation_2019_09.h
│   │           │   ├── drop_non_object_keywords_validation_2020_12.h
│   │           │   ├── drop_non_string_keywords_applicator_2019_09.h
│   │           │   ├── drop_non_string_keywords_applicator_2020_12.h
│   │           │   ├── drop_non_string_keywords_draft0.h
│   │           │   ├── drop_non_string_keywords_draft1.h
│   │           │   ├── drop_non_string_keywords_draft2.h
│   │           │   ├── drop_non_string_keywords_draft3.h
│   │           │   ├── drop_non_string_keywords_draft4.h
│   │           │   ├── drop_non_string_keywords_draft6.h
│   │           │   ├── drop_non_string_keywords_draft7.h
│   │           │   ├── drop_non_string_keywords_unevaluated_2020_12.h
│   │           │   ├── drop_non_string_keywords_validation_2019_09.h
│   │           │   ├── drop_non_string_keywords_validation_2020_12.h
│   │           │   ├── duplicate_allof_branches.h
│   │           │   ├── duplicate_anyof_branches.h
│   │           │   ├── else_without_if.h
│   │           │   ├── if_without_then_else.h
│   │           │   ├── max_contains_without_contains.h
│   │           │   ├── min_contains_without_contains.h
│   │           │   └── then_without_if.h
│   │           └── syntax_sugar/
│   │               └── enum_to_const.h
│   ├── blaze/
│   │   ├── CMakeLists.txt
│   │   ├── DEPENDENCIES
│   │   ├── LICENSE
│   │   ├── config.cmake.in
│   │   ├── package.json
│   │   ├── patches/
│   │   │   └── jsonschema-test-suite/
│   │   │       └── 0001-draft3-ref-sibling.patch
│   │   ├── ports/
│   │   │   └── javascript/
│   │   │       ├── LICENSE
│   │   │       ├── README.md
│   │   │       ├── describe.mjs
│   │   │       ├── index.d.mts
│   │   │       ├── index.mjs
│   │   │       ├── opcodes.mjs
│   │   │       └── package.json
│   │   ├── schemas/
│   │   │   ├── canonical-2019-09.json
│   │   │   ├── canonical-2020-12.json
│   │   │   ├── canonical-draft1.json
│   │   │   ├── canonical-draft2.json
│   │   │   ├── canonical-draft3.json
│   │   │   ├── canonical-draft4.json
│   │   │   ├── canonical-draft6.json
│   │   │   ├── canonical-draft7.json
│   │   │   ├── documentation.json
│   │   │   └── jsonschema.json
│   │   └── src/
│   │       ├── alterschema/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── alterschema.cc
│   │       │   ├── canonicalizer/
│   │       │   │   ├── additional_items_implicit.h
│   │       │   │   ├── allof_merge_compatible_branches.h
│   │       │   │   ├── comment_drop.h
│   │       │   │   ├── const_as_enum.h
│   │       │   │   ├── dependencies_to_any_of.h
│   │       │   │   ├── dependencies_to_extends_disallow.h
│   │       │   │   ├── dependent_required_to_any_of.h
│   │       │   │   ├── dependent_schemas_to_any_of.h
│   │       │   │   ├── deprecated_false_drop.h
│   │       │   │   ├── disallow_to_array_of_schemas.h
│   │       │   │   ├── divisible_by_implicit.h
│   │       │   │   ├── draft3_type_any.h
│   │       │   │   ├── empty_definitions_drop.h
│   │       │   │   ├── empty_defs_drop.h
│   │       │   │   ├── empty_dependencies_drop.h
│   │       │   │   ├── empty_dependent_required_drop.h
│   │       │   │   ├── empty_dependent_schemas_drop.h
│   │       │   │   ├── enum_drop_redundant_validation.h
│   │       │   │   ├── enum_filter_by_type.h
│   │       │   │   ├── exclusive_maximum_boolean_integer_fold.h
│   │       │   │   ├── exclusive_maximum_integer_to_maximum.h
│   │       │   │   ├── exclusive_minimum_boolean_integer_fold.h
│   │       │   │   ├── exclusive_minimum_integer_to_minimum.h
│   │       │   │   ├── extends_to_array.h
│   │       │   │   ├── if_then_else_implicit.h
│   │       │   │   ├── implicit_contains_keywords.h
│   │       │   │   ├── implicit_object_keywords.h
│   │       │   │   ├── inline_single_use_ref.h
│   │       │   │   ├── items_implicit.h
│   │       │   │   ├── max_contains_covered_by_max_items.h
│   │       │   │   ├── max_decimal_implicit.h
│   │       │   │   ├── maximum_can_equal_integer_fold.h
│   │       │   │   ├── maximum_can_equal_true_drop.h
│   │       │   │   ├── min_items_given_min_contains.h
│   │       │   │   ├── min_length_implicit.h
│   │       │   │   ├── min_properties_covered_by_required.h
│   │       │   │   ├── minimum_can_equal_integer_fold.h
│   │       │   │   ├── minimum_can_equal_true_drop.h
│   │       │   │   ├── multiple_of_implicit.h
│   │       │   │   ├── optional_property_implicit.h
│   │       │   │   ├── recursive_anchor_false_drop.h
│   │       │   │   ├── required_property_implicit.h
│   │       │   │   ├── single_branch_allof.h
│   │       │   │   ├── single_branch_anyof.h
│   │       │   │   ├── single_branch_oneof.h
│   │       │   │   ├── type_array_to_any_of.h
│   │       │   │   ├── type_boolean_as_enum.h
│   │       │   │   ├── type_inherit_in_place.h
│   │       │   │   ├── type_null_as_enum.h
│   │       │   │   ├── type_union_implicit.h
│   │       │   │   ├── type_union_to_schemas.h
│   │       │   │   ├── type_with_applicator_to_allof.h
│   │       │   │   ├── type_with_applicator_to_extends.h
│   │       │   │   ├── unevaluated_items_to_items.h
│   │       │   │   ├── unevaluated_properties_to_additional_properties.h
│   │       │   │   ├── unsatisfiable_can_equal_bounds.h
│   │       │   │   ├── unsatisfiable_exclusive_equal_bounds.h
│   │       │   │   └── unsatisfiable_type_and_enum.h
│   │       │   ├── common/
│   │       │   │   ├── allof_false_simplify.h
│   │       │   │   ├── anyof_false_simplify.h
│   │       │   │   ├── anyof_remove_false_schemas.h
│   │       │   │   ├── anyof_true_simplify.h
│   │       │   │   ├── const_in_enum.h
│   │       │   │   ├── const_with_type.h
│   │       │   │   ├── content_media_type_without_encoding.h
│   │       │   │   ├── content_schema_without_media_type.h
│   │       │   │   ├── dependencies_property_tautology.h
│   │       │   │   ├── dependent_required_tautology.h
│   │       │   │   ├── disallow_narrows_type.h
│   │       │   │   ├── double_negation_elimination.h
│   │       │   │   ├── draft_official_dialect_with_https.h
│   │       │   │   ├── draft_official_dialect_without_empty_fragment.h
│   │       │   │   ├── draft_ref_siblings.h
│   │       │   │   ├── drop_allof_empty_schemas.h
│   │       │   │   ├── drop_extends_empty_schemas.h
│   │       │   │   ├── duplicate_allof_branches.h
│   │       │   │   ├── duplicate_anyof_branches.h
│   │       │   │   ├── duplicate_enum_values.h
│   │       │   │   ├── duplicate_required_values.h
│   │       │   │   ├── dynamic_ref_to_static_ref.h
│   │       │   │   ├── else_without_if.h
│   │       │   │   ├── empty_object_as_true.h
│   │       │   │   ├── enum_with_type.h
│   │       │   │   ├── equal_numeric_bounds_to_enum.h
│   │       │   │   ├── exclusive_bounds_false_drop.h
│   │       │   │   ├── exclusive_maximum_number_and_maximum.h
│   │       │   │   ├── exclusive_minimum_number_and_minimum.h
│   │       │   │   ├── flatten_nested_allof.h
│   │       │   │   ├── flatten_nested_anyof.h
│   │       │   │   ├── flatten_nested_extends.h
│   │       │   │   ├── if_without_then_else.h
│   │       │   │   ├── ignored_metaschema.h
│   │       │   │   ├── max_contains_without_contains.h
│   │       │   │   ├── maximum_real_for_integer.h
│   │       │   │   ├── min_contains_without_contains.h
│   │       │   │   ├── minimum_real_for_integer.h
│   │       │   │   ├── modern_official_dialect_with_empty_fragment.h
│   │       │   │   ├── modern_official_dialect_with_http.h
│   │       │   │   ├── non_applicable_additional_items.h
│   │       │   │   ├── non_applicable_disallow_types.h
│   │       │   │   ├── non_applicable_enum_validation_keywords.h
│   │       │   │   ├── non_applicable_type_specific_keywords.h
│   │       │   │   ├── not_false.h
│   │       │   │   ├── oneof_false_simplify.h
│   │       │   │   ├── oneof_to_anyof_disjoint_types.h
│   │       │   │   ├── orphan_definitions.h
│   │       │   │   ├── required_properties_in_properties.h
│   │       │   │   ├── single_type_array.h
│   │       │   │   ├── then_without_if.h
│   │       │   │   ├── unknown_keywords_prefix.h
│   │       │   │   ├── unknown_local_ref.h
│   │       │   │   ├── unnecessary_allof_ref_wrapper_draft.h
│   │       │   │   ├── unnecessary_extends_ref_wrapper.h
│   │       │   │   ├── unsatisfiable_drop_validation.h
│   │       │   │   └── unsatisfiable_in_place_applicator_type.h
│   │       │   ├── include/
│   │       │   │   └── sourcemeta/
│   │       │   │       └── blaze/
│   │       │   │           ├── alterschema.h
│   │       │   │           ├── alterschema_error.h
│   │       │   │           └── alterschema_transformer.h
│   │       │   ├── linter/
│   │       │   │   ├── comment_trim.h
│   │       │   │   ├── const_not_in_enum.h
│   │       │   │   ├── content_schema_default.h
│   │       │   │   ├── definitions_to_defs.h
│   │       │   │   ├── dependencies_default.h
│   │       │   │   ├── dependent_required_default.h
│   │       │   │   ├── description_trailing_period.h
│   │       │   │   ├── description_trim.h
│   │       │   │   ├── disallow_default.h
│   │       │   │   ├── divisible_by_default.h
│   │       │   │   ├── duplicate_examples.h
│   │       │   │   ├── else_empty.h
│   │       │   │   ├── enum_to_const.h
│   │       │   │   ├── equal_numeric_bounds_to_const.h
│   │       │   │   ├── forbid_empty_enum.h
│   │       │   │   ├── incoherent_min_max_contains.h
│   │       │   │   ├── invalid_external_ref.h
│   │       │   │   ├── items_array_default.h
│   │       │   │   ├── items_schema_default.h
│   │       │   │   ├── multiple_of_default.h
│   │       │   │   ├── pattern_properties_default.h
│   │       │   │   ├── portable_anchor_names.h
│   │       │   │   ├── properties_default.h
│   │       │   │   ├── property_names_default.h
│   │       │   │   ├── property_names_type_default.h
│   │       │   │   ├── simple_properties_identifiers.h
│   │       │   │   ├── then_empty.h
│   │       │   │   ├── title_description_equal.h
│   │       │   │   ├── title_trailing_period.h
│   │       │   │   ├── title_trim.h
│   │       │   │   ├── top_level_description.h
│   │       │   │   ├── top_level_examples.h
│   │       │   │   ├── top_level_title.h
│   │       │   │   ├── unevaluated_items_default.h
│   │       │   │   ├── unevaluated_properties_default.h
│   │       │   │   ├── unknown_format_prefix.h
│   │       │   │   ├── unnecessary_allof_ref_wrapper_modern.h
│   │       │   │   ├── unnecessary_allof_wrapper.h
│   │       │   │   ├── unnecessary_extends_wrapper.h
│   │       │   │   ├── unsatisfiable_max_contains.h
│   │       │   │   ├── unsatisfiable_min_properties.h
│   │       │   │   ├── valid_default.h
│   │       │   │   └── valid_examples.h
│   │       │   ├── schema_rule.cc
│   │       │   ├── transformer.cc
│   │       │   └── upgrade/
│   │       │       ├── helpers.h
│   │       │       ├── prefix_promoted_2020_12_keywords.h
│   │       │       ├── prefix_promoted_draft_2019_09_keywords.h
│   │       │       ├── prefix_promoted_draft_4_keywords.h
│   │       │       ├── prefix_promoted_draft_6_keywords.h
│   │       │       ├── prefix_promoted_draft_7_keywords.h
│   │       │       ├── upgrade_2019_09_to_2020_12.h
│   │       │       ├── upgrade_dialect_override_cleanup.h
│   │       │       ├── upgrade_draft_3_to_draft_4.h
│   │       │       ├── upgrade_draft_4_to_draft_6.h
│   │       │       ├── upgrade_draft_6_to_draft_7.h
│   │       │       └── upgrade_draft_7_to_draft_2019_09.h
│   │       ├── codegen/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── codegen.cc
│   │       │   ├── codegen_default_compiler.h
│   │       │   ├── codegen_mangle.cc
│   │       │   ├── codegen_symbol.cc
│   │       │   ├── codegen_typescript.cc
│   │       │   └── include/
│   │       │       └── sourcemeta/
│   │       │           └── blaze/
│   │       │               ├── codegen.h
│   │       │               ├── codegen_error.h
│   │       │               └── codegen_typescript.h
│   │       ├── compiler/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── compile.cc
│   │       │   ├── compile_helpers.h
│   │       │   ├── compile_json.cc
│   │       │   ├── default_compiler.cc
│   │       │   ├── default_compiler_2019_09.h
│   │       │   ├── default_compiler_2020_12.h
│   │       │   ├── default_compiler_draft3.h
│   │       │   ├── default_compiler_draft4.h
│   │       │   ├── default_compiler_draft6.h
│   │       │   ├── default_compiler_draft7.h
│   │       │   ├── default_compiler_openapi.h
│   │       │   ├── include/
│   │       │   │   └── sourcemeta/
│   │       │   │       └── blaze/
│   │       │   │           ├── compiler.h
│   │       │   │           ├── compiler_error.h
│   │       │   │           └── compiler_unevaluated.h
│   │       │   ├── postprocess.h
│   │       │   └── unevaluated.cc
│   │       ├── configuration/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── configuration.cc
│   │       │   ├── fetch.cc
│   │       │   ├── include/
│   │       │   │   └── sourcemeta/
│   │       │   │       └── blaze/
│   │       │   │           ├── configuration.h
│   │       │   │           └── configuration_error.h
│   │       │   ├── json.cc
│   │       │   ├── lock.cc
│   │       │   └── parse.cc
│   │       ├── documentation/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── documentation.cc
│   │       │   ├── documentation_html.cc
│   │       │   └── include/
│   │       │       └── sourcemeta/
│   │       │           └── blaze/
│   │       │               └── documentation.h
│   │       ├── evaluator/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── evaluator_describe.cc
│   │       │   ├── evaluator_json.cc
│   │       │   └── include/
│   │       │       └── sourcemeta/
│   │       │           └── blaze/
│   │       │               ├── evaluator.h
│   │       │               ├── evaluator_dispatch.h
│   │       │               ├── evaluator_error.h
│   │       │               ├── evaluator_instruction.h
│   │       │               ├── evaluator_string_set.h
│   │       │               └── evaluator_value.h
│   │       ├── output/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── include/
│   │       │   │   └── sourcemeta/
│   │       │   │       └── blaze/
│   │       │   │           ├── output.h
│   │       │   │           ├── output_simple.h
│   │       │   │           ├── output_standard.h
│   │       │   │           └── output_trace.h
│   │       │   ├── output_simple.cc
│   │       │   ├── output_standard.cc
│   │       │   └── output_trace.cc
│   │       └── test/
│   │           ├── CMakeLists.txt
│   │           ├── include/
│   │           │   └── sourcemeta/
│   │           │       └── blaze/
│   │           │           ├── test.h
│   │           │           └── test_error.h
│   │           ├── test_parser.cc
│   │           └── test_runner.cc
│   ├── bootstrap/
│   │   └── scss/
│   │       ├── _accordion.scss
│   │       ├── _alert.scss
│   │       ├── _badge.scss
│   │       ├── _breadcrumb.scss
│   │       ├── _button-group.scss
│   │       ├── _buttons.scss
│   │       ├── _card.scss
│   │       ├── _carousel.scss
│   │       ├── _close.scss
│   │       ├── _containers.scss
│   │       ├── _dropdown.scss
│   │       ├── _forms.scss
│   │       ├── _functions.scss
│   │       ├── _grid.scss
│   │       ├── _helpers.scss
│   │       ├── _images.scss
│   │       ├── _list-group.scss
│   │       ├── _mixins.scss
│   │       ├── _modal.scss
│   │       ├── _nav.scss
│   │       ├── _navbar.scss
│   │       ├── _offcanvas.scss
│   │       ├── _pagination.scss
│   │       ├── _placeholders.scss
│   │       ├── _popover.scss
│   │       ├── _progress.scss
│   │       ├── _reboot.scss
│   │       ├── _root.scss
│   │       ├── _spinners.scss
│   │       ├── _tables.scss
│   │       ├── _toasts.scss
│   │       ├── _tooltip.scss
│   │       ├── _transitions.scss
│   │       ├── _type.scss
│   │       ├── _utilities.scss
│   │       ├── _variables.scss
│   │       ├── bootstrap-grid.scss
│   │       ├── bootstrap-reboot.scss
│   │       ├── bootstrap-utilities.scss
│   │       ├── bootstrap.scss
│   │       ├── forms/
│   │       │   ├── _floating-labels.scss
│   │       │   ├── _form-check.scss
│   │       │   ├── _form-control.scss
│   │       │   ├── _form-range.scss
│   │       │   ├── _form-select.scss
│   │       │   ├── _form-text.scss
│   │       │   ├── _input-group.scss
│   │       │   ├── _labels.scss
│   │       │   └── _validation.scss
│   │       ├── helpers/
│   │       │   ├── _clearfix.scss
│   │       │   ├── _colored-links.scss
│   │       │   ├── _position.scss
│   │       │   ├── _ratio.scss
│   │       │   ├── _stacks.scss
│   │       │   ├── _stretched-link.scss
│   │       │   ├── _text-truncation.scss
│   │       │   ├── _visually-hidden.scss
│   │       │   └── _vr.scss
│   │       ├── mixins/
│   │       │   ├── _alert.scss
│   │       │   ├── _backdrop.scss
│   │       │   ├── _border-radius.scss
│   │       │   ├── _box-shadow.scss
│   │       │   ├── _breakpoints.scss
│   │       │   ├── _buttons.scss
│   │       │   ├── _caret.scss
│   │       │   ├── _clearfix.scss
│   │       │   ├── _color-scheme.scss
│   │       │   ├── _container.scss
│   │       │   ├── _deprecate.scss
│   │       │   ├── _forms.scss
│   │       │   ├── _gradients.scss
│   │       │   ├── _grid.scss
│   │       │   ├── _image.scss
│   │       │   ├── _list-group.scss
│   │       │   ├── _lists.scss
│   │       │   ├── _pagination.scss
│   │       │   ├── _reset-text.scss
│   │       │   ├── _resize.scss
│   │       │   ├── _table-variants.scss
│   │       │   ├── _text-truncate.scss
│   │       │   ├── _transition.scss
│   │       │   ├── _utilities.scss
│   │       │   └── _visually-hidden.scss
│   │       ├── utilities/
│   │       │   └── _api.scss
│   │       └── vendor/
│   │           └── _rfs.scss
│   ├── bootstrap.mask
│   ├── core/
│   │   ├── CMakeLists.txt
│   │   ├── DEPENDENCIES
│   │   ├── LICENSE
│   │   ├── cmake/
│   │   │   ├── FindCMarkGFM.cmake
│   │   │   ├── FindGoogleBenchmark.cmake
│   │   │   ├── FindGoogleTest.cmake
│   │   │   ├── FindLibDeflate.cmake
│   │   │   ├── FindPCRE2.cmake
│   │   │   ├── FindZLIB.cmake
│   │   │   ├── Sourcemeta.cmake
│   │   │   └── common/
│   │   │       ├── clang-tidy.cmake
│   │   │       ├── clang-tidy.json
│   │   │       ├── commands/
│   │   │       │   └── copy-file.cmake
│   │   │       ├── compiler/
│   │   │       │   ├── options.cmake
│   │   │       │   ├── sanitizer.cmake
│   │   │       │   └── simd.cmake
│   │   │       ├── defaults.cmake
│   │   │       ├── options/
│   │   │       │   └── enum.cmake
│   │   │       ├── shim.cmake
│   │   │       ├── targets/
│   │   │       │   ├── clang-format.cmake
│   │   │       │   ├── clang-format.json
│   │   │       │   ├── doxygen.cmake
│   │   │       │   ├── executable.cmake
│   │   │       │   ├── googlebenchmark.cmake
│   │   │       │   ├── googletest.cmake
│   │   │       │   ├── library.cmake
│   │   │       │   └── shellcheck.cmake
│   │   │       └── variables.cmake
│   │   ├── config.cmake.in
│   │   ├── src/
│   │   │   ├── core/
│   │   │   │   ├── crypto/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── crypto_sha256.cc
│   │   │   │   │   ├── crypto_uuid.cc
│   │   │   │   │   └── include/
│   │   │   │   │       └── sourcemeta/
│   │   │   │   │           └── core/
│   │   │   │   │               ├── crypto.h
│   │   │   │   │               ├── crypto_sha256.h
│   │   │   │   │               └── crypto_uuid.h
│   │   │   │   ├── dns/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── hostname.cc
│   │   │   │   │   └── include/
│   │   │   │   │       └── sourcemeta/
│   │   │   │   │           └── core/
│   │   │   │   │               └── dns.h
│   │   │   │   ├── gzip/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── gzip.cc
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           ├── gzip.h
│   │   │   │   │   │           ├── gzip_error.h
│   │   │   │   │   │           └── gzip_streambuf.h
│   │   │   │   │   └── streambuf.cc
│   │   │   │   ├── html/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── escape.cc
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           ├── html.h
│   │   │   │   │   │           ├── html_buffer.h
│   │   │   │   │   │           ├── html_escape.h
│   │   │   │   │   │           └── html_writer.h
│   │   │   │   │   └── writer.cc
│   │   │   │   ├── ip/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           └── ip.h
│   │   │   │   │   ├── ipv4.cc
│   │   │   │   │   └── ipv6.cc
│   │   │   │   ├── json/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── construct.h
│   │   │   │   │   ├── grammar.h
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           ├── json.h
│   │   │   │   │   │           ├── json_array.h
│   │   │   │   │   │           ├── json_auto.h
│   │   │   │   │   │           ├── json_error.h
│   │   │   │   │   │           ├── json_hash.h
│   │   │   │   │   │           ├── json_object.h
│   │   │   │   │   │           └── json_value.h
│   │   │   │   │   ├── json.cc
│   │   │   │   │   ├── json_value.cc
│   │   │   │   │   ├── parser.h
│   │   │   │   │   └── stringify.h
│   │   │   │   ├── jsonl/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── grammar.h
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           ├── jsonl.h
│   │   │   │   │   │           └── jsonl_iterator.h
│   │   │   │   │   ├── iterator.cc
│   │   │   │   │   └── jsonl.cc
│   │   │   │   ├── jsonpointer/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── grammar.h
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           ├── jsonpointer.h
│   │   │   │   │   │           ├── jsonpointer_error.h
│   │   │   │   │   │           ├── jsonpointer_pointer.h
│   │   │   │   │   │           ├── jsonpointer_position.h
│   │   │   │   │   │           ├── jsonpointer_token.h
│   │   │   │   │   │           └── jsonpointer_walker.h
│   │   │   │   │   ├── jsonpointer.cc
│   │   │   │   │   ├── parser.h
│   │   │   │   │   ├── position.cc
│   │   │   │   │   └── stringify.h
│   │   │   │   ├── jsonschema/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── bundle.cc
│   │   │   │   │   ├── format.cc
│   │   │   │   │   ├── frame.cc
│   │   │   │   │   ├── helpers.h
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           ├── jsonschema.h
│   │   │   │   │   │           ├── jsonschema_bundle.h
│   │   │   │   │   │           ├── jsonschema_error.h
│   │   │   │   │   │           ├── jsonschema_frame.h
│   │   │   │   │   │           ├── jsonschema_types.h
│   │   │   │   │   │           ├── jsonschema_vocabularies.h
│   │   │   │   │   │           └── jsonschema_walker.h
│   │   │   │   │   ├── jsonschema.cc
│   │   │   │   │   ├── known_resolver.cmake
│   │   │   │   │   ├── known_resolver.in.cc
│   │   │   │   │   ├── known_walker.cc
│   │   │   │   │   ├── vocabularies.cc
│   │   │   │   │   └── walker.cc
│   │   │   │   ├── markdown/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           └── markdown.h
│   │   │   │   │   └── markdown.cc
│   │   │   │   ├── punycode/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           ├── punycode.h
│   │   │   │   │   │           └── punycode_error.h
│   │   │   │   │   └── punycode.cc
│   │   │   │   ├── regex/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           └── regex.h
│   │   │   │   │   ├── preprocess.h
│   │   │   │   │   └── regex.cc
│   │   │   │   ├── semver/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           ├── semver.h
│   │   │   │   │   │           └── semver_error.h
│   │   │   │   │   └── semver.cc
│   │   │   │   ├── time/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── gmt.cc
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           └── time.h
│   │   │   │   │   └── rfc3339_datetime.cc
│   │   │   │   ├── unicode/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           └── unicode.h
│   │   │   │   │   └── unicode.cc
│   │   │   │   ├── uri/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── accessors.cc
│   │   │   │   │   ├── canonicalize.cc
│   │   │   │   │   ├── escaping.h
│   │   │   │   │   ├── filesystem.cc
│   │   │   │   │   ├── grammar.h
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           ├── uri.h
│   │   │   │   │   │           └── uri_error.h
│   │   │   │   │   ├── normalize.h
│   │   │   │   │   ├── parse.cc
│   │   │   │   │   ├── query.cc
│   │   │   │   │   ├── recompose.cc
│   │   │   │   │   ├── resolution.cc
│   │   │   │   │   ├── setters.cc
│   │   │   │   │   └── uri.cc
│   │   │   │   ├── uritemplate/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── helpers.h
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           ├── uritemplate.h
│   │   │   │   │   │           ├── uritemplate_error.h
│   │   │   │   │   │           ├── uritemplate_router.h
│   │   │   │   │   │           └── uritemplate_token.h
│   │   │   │   │   ├── uritemplate.cc
│   │   │   │   │   ├── uritemplate_router.cc
│   │   │   │   │   └── uritemplate_router_view.cc
│   │   │   │   └── yaml/
│   │   │   │       ├── CMakeLists.txt
│   │   │   │       ├── include/
│   │   │   │       │   └── sourcemeta/
│   │   │   │       │       └── core/
│   │   │   │       │           ├── yaml.h
│   │   │   │       │           ├── yaml_error.h
│   │   │   │       │           └── yaml_roundtrip.h
│   │   │   │       ├── lexer.h
│   │   │   │       ├── parser.h
│   │   │   │       ├── stringify.h
│   │   │   │       └── yaml.cc
│   │   │   ├── extension/
│   │   │   │   └── editorschema/
│   │   │   │       ├── CMakeLists.txt
│   │   │   │       ├── editorschema.cc
│   │   │   │       └── include/
│   │   │   │           └── sourcemeta/
│   │   │   │               └── core/
│   │   │   │                   └── editorschema.h
│   │   │   └── lang/
│   │   │       ├── error/
│   │   │       │   ├── CMakeLists.txt
│   │   │       │   └── include/
│   │   │       │       └── sourcemeta/
│   │   │       │           └── core/
│   │   │       │               ├── error.h
│   │   │       │               └── error_file.h
│   │   │       ├── io/
│   │   │       │   ├── CMakeLists.txt
│   │   │       │   ├── include/
│   │   │       │   │   └── sourcemeta/
│   │   │       │   │       └── core/
│   │   │       │   │           ├── io.h
│   │   │       │   │           ├── io_atomic.h
│   │   │       │   │           ├── io_binary.h
│   │   │       │   │           ├── io_error.h
│   │   │       │   │           ├── io_fileview.h
│   │   │       │   │           └── io_temporary.h
│   │   │       │   ├── io.cc
│   │   │       │   ├── io_atomic.cc
│   │   │       │   ├── io_binary.cc
│   │   │       │   ├── io_fileview.cc
│   │   │       │   └── io_temporary.cc
│   │   │       ├── numeric/
│   │   │       │   ├── CMakeLists.txt
│   │   │       │   ├── big_coefficient.h
│   │   │       │   ├── decimal.cc
│   │   │       │   ├── include/
│   │   │       │   │   └── sourcemeta/
│   │   │       │   │       └── core/
│   │   │       │   │           ├── numeric.h
│   │   │       │   │           ├── numeric_decimal.h
│   │   │       │   │           ├── numeric_error.h
│   │   │       │   │           ├── numeric_parse.h
│   │   │       │   │           ├── numeric_uint128.h
│   │   │       │   │           ├── numeric_util.h
│   │   │       │   │           └── numeric_zigzag.h
│   │   │       │   └── parse.cc
│   │   │       ├── options/
│   │   │       │   ├── CMakeLists.txt
│   │   │       │   ├── include/
│   │   │       │   │   └── sourcemeta/
│   │   │       │   │       └── core/
│   │   │       │   │           ├── options.h
│   │   │       │   │           └── options_error.h
│   │   │       │   └── options.cc
│   │   │       ├── parallel/
│   │   │       │   ├── CMakeLists.txt
│   │   │       │   └── include/
│   │   │       │       └── sourcemeta/
│   │   │       │           └── core/
│   │   │       │               ├── parallel.h
│   │   │       │               └── parallel_for_each.h
│   │   │       ├── preprocessor/
│   │   │       │   ├── CMakeLists.txt
│   │   │       │   └── include/
│   │   │       │       └── sourcemeta/
│   │   │       │           └── core/
│   │   │       │               └── preprocessor.h
│   │   │       └── process/
│   │   │           ├── CMakeLists.txt
│   │   │           ├── include/
│   │   │           │   └── sourcemeta/
│   │   │           │       └── core/
│   │   │           │           ├── process.h
│   │   │           │           └── process_error.h
│   │   │           └── spawn.cc
│   │   └── vendor/
│   │       ├── cmark-gfm/
│   │       │   ├── COPYING
│   │       │   ├── extensions/
│   │       │   │   ├── autolink.c
│   │       │   │   ├── autolink.h
│   │       │   │   ├── cmark-gfm-core-extensions.h
│   │       │   │   ├── core-extensions.c
│   │       │   │   ├── ext_scanners.c
│   │       │   │   ├── ext_scanners.h
│   │       │   │   ├── ext_scanners.re
│   │       │   │   ├── strikethrough.c
│   │       │   │   ├── strikethrough.h
│   │       │   │   ├── table.c
│   │       │   │   ├── table.h
│   │       │   │   ├── tagfilter.c
│   │       │   │   ├── tagfilter.h
│   │       │   │   ├── tasklist.c
│   │       │   │   └── tasklist.h
│   │       │   └── src/
│   │       │       ├── arena.c
│   │       │       ├── blocks.c
│   │       │       ├── buffer.c
│   │       │       ├── buffer.h
│   │       │       ├── case_fold_switch.inc
│   │       │       ├── chunk.h
│   │       │       ├── cmark-gfm-extension_api.h
│   │       │       ├── cmark-gfm.h
│   │       │       ├── cmark-gfm_version.h.in
│   │       │       ├── cmark.c
│   │       │       ├── cmark_ctype.c
│   │       │       ├── cmark_ctype.h
│   │       │       ├── commonmark.c
│   │       │       ├── config.h.in
│   │       │       ├── entities.inc
│   │       │       ├── footnotes.c
│   │       │       ├── footnotes.h
│   │       │       ├── houdini.h
│   │       │       ├── houdini_href_e.c
│   │       │       ├── houdini_html_e.c
│   │       │       ├── houdini_html_u.c
│   │       │       ├── html.c
│   │       │       ├── html.h
│   │       │       ├── inlines.c
│   │       │       ├── inlines.h
│   │       │       ├── iterator.c
│   │       │       ├── iterator.h
│   │       │       ├── latex.c
│   │       │       ├── linked_list.c
│   │       │       ├── main.c
│   │       │       ├── man.c
│   │       │       ├── map.c
│   │       │       ├── map.h
│   │       │       ├── node.c
│   │       │       ├── node.h
│   │       │       ├── parser.h
│   │       │       ├── plaintext.c
│   │       │       ├── plugin.c
│   │       │       ├── plugin.h
│   │       │       ├── references.c
│   │       │       ├── references.h
│   │       │       ├── registry.c
│   │       │       ├── registry.h
│   │       │       ├── render.c
│   │       │       ├── render.h
│   │       │       ├── scanners.c
│   │       │       ├── scanners.h
│   │       │       ├── scanners.re
│   │       │       ├── syntax_extension.c
│   │       │       ├── syntax_extension.h
│   │       │       ├── utf8.c
│   │       │       ├── utf8.h
│   │       │       └── xml.c
│   │       ├── googlebenchmark/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── LICENSE
│   │       │   ├── cmake/
│   │       │   │   ├── AddCXXCompilerFlag.cmake
│   │       │   │   ├── CXXFeatureCheck.cmake
│   │       │   │   ├── Config.cmake.in
│   │       │   │   ├── GetGitVersion.cmake
│   │       │   │   ├── GoogleTest.cmake
│   │       │   │   ├── GoogleTest.cmake.in
│   │       │   │   ├── Modules/
│   │       │   │   │   ├── FindLLVMAr.cmake
│   │       │   │   │   ├── FindLLVMNm.cmake
│   │       │   │   │   ├── FindLLVMRanLib.cmake
│   │       │   │   │   └── FindPFM.cmake
│   │       │   │   ├── benchmark.pc.in
│   │       │   │   ├── benchmark_main.pc.in
│   │       │   │   ├── gnu_posix_regex.cpp
│   │       │   │   ├── llvm-toolchain.cmake
│   │       │   │   ├── posix_regex.cpp
│   │       │   │   ├── pthread_affinity.cpp
│   │       │   │   ├── split_list.cmake
│   │       │   │   ├── std_regex.cpp
│   │       │   │   ├── steady_clock.cpp
│   │       │   │   └── thread_safety_attributes.cpp
│   │       │   ├── include/
│   │       │   │   └── benchmark/
│   │       │   │       ├── benchmark.h
│   │       │   │       └── export.h
│   │       │   └── src/
│   │       │       ├── CMakeLists.txt
│   │       │       ├── arraysize.h
│   │       │       ├── benchmark.cc
│   │       │       ├── benchmark_api_internal.cc
│   │       │       ├── benchmark_api_internal.h
│   │       │       ├── benchmark_main.cc
│   │       │       ├── benchmark_name.cc
│   │       │       ├── benchmark_register.cc
│   │       │       ├── benchmark_register.h
│   │       │       ├── benchmark_runner.cc
│   │       │       ├── benchmark_runner.h
│   │       │       ├── check.cc
│   │       │       ├── check.h
│   │       │       ├── colorprint.cc
│   │       │       ├── colorprint.h
│   │       │       ├── commandlineflags.cc
│   │       │       ├── commandlineflags.h
│   │       │       ├── complexity.cc
│   │       │       ├── complexity.h
│   │       │       ├── console_reporter.cc
│   │       │       ├── counter.cc
│   │       │       ├── counter.h
│   │       │       ├── csv_reporter.cc
│   │       │       ├── cycleclock.h
│   │       │       ├── internal_macros.h
│   │       │       ├── json_reporter.cc
│   │       │       ├── log.h
│   │       │       ├── mutex.h
│   │       │       ├── perf_counters.cc
│   │       │       ├── perf_counters.h
│   │       │       ├── re.h
│   │       │       ├── reporter.cc
│   │       │       ├── statistics.cc
│   │       │       ├── statistics.h
│   │       │       ├── string_util.cc
│   │       │       ├── string_util.h
│   │       │       ├── sysinfo.cc
│   │       │       ├── thread_manager.h
│   │       │       ├── thread_timer.h
│   │       │       ├── timers.cc
│   │       │       └── timers.h
│   │       ├── googletest/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── LICENSE
│   │       │   ├── googlemock/
│   │       │   │   ├── CMakeLists.txt
│   │       │   │   ├── cmake/
│   │       │   │   │   ├── gmock.pc.in
│   │       │   │   │   └── gmock_main.pc.in
│   │       │   │   ├── include/
│   │       │   │   │   └── gmock/
│   │       │   │   │       ├── gmock-actions.h
│   │       │   │   │       ├── gmock-cardinalities.h
│   │       │   │   │       ├── gmock-function-mocker.h
│   │       │   │   │       ├── gmock-matchers.h
│   │       │   │   │       ├── gmock-more-actions.h
│   │       │   │   │       ├── gmock-more-matchers.h
│   │       │   │   │       ├── gmock-nice-strict.h
│   │       │   │   │       ├── gmock-spec-builders.h
│   │       │   │   │       ├── gmock.h
│   │       │   │   │       └── internal/
│   │       │   │   │           ├── custom/
│   │       │   │   │           │   ├── README.md
│   │       │   │   │           │   ├── gmock-generated-actions.h
│   │       │   │   │           │   ├── gmock-matchers.h
│   │       │   │   │           │   └── gmock-port.h
│   │       │   │   │           ├── gmock-internal-utils.h
│   │       │   │   │           ├── gmock-port.h
│   │       │   │   │           └── gmock-pp.h
│   │       │   │   └── src/
│   │       │   │       ├── gmock-all.cc
│   │       │   │       ├── gmock-cardinalities.cc
│   │       │   │       ├── gmock-internal-utils.cc
│   │       │   │       ├── gmock-matchers.cc
│   │       │   │       ├── gmock-spec-builders.cc
│   │       │   │       ├── gmock.cc
│   │       │   │       └── gmock_main.cc
│   │       │   └── googletest/
│   │       │       ├── CMakeLists.txt
│   │       │       ├── cmake/
│   │       │       │   ├── Config.cmake.in
│   │       │       │   ├── gtest.pc.in
│   │       │       │   ├── gtest_main.pc.in
│   │       │       │   ├── internal_utils.cmake
│   │       │       │   └── libgtest.la.in
│   │       │       ├── include/
│   │       │       │   └── gtest/
│   │       │       │       ├── gtest-assertion-result.h
│   │       │       │       ├── gtest-death-test.h
│   │       │       │       ├── gtest-matchers.h
│   │       │       │       ├── gtest-message.h
│   │       │       │       ├── gtest-param-test.h
│   │       │       │       ├── gtest-printers.h
│   │       │       │       ├── gtest-spi.h
│   │       │       │       ├── gtest-test-part.h
│   │       │       │       ├── gtest-typed-test.h
│   │       │       │       ├── gtest.h
│   │       │       │       ├── gtest_pred_impl.h
│   │       │       │       ├── gtest_prod.h
│   │       │       │       └── internal/
│   │       │       │           ├── custom/
│   │       │       │           │   ├── README.md
│   │       │       │           │   ├── gtest-port.h
│   │       │       │           │   ├── gtest-printers.h
│   │       │       │           │   └── gtest.h
│   │       │       │           ├── gtest-death-test-internal.h
│   │       │       │           ├── gtest-filepath.h
│   │       │       │           ├── gtest-internal.h
│   │       │       │           ├── gtest-param-util.h
│   │       │       │           ├── gtest-port-arch.h
│   │       │       │           ├── gtest-port.h
│   │       │       │           ├── gtest-string.h
│   │       │       │           └── gtest-type-util.h
│   │       │       └── src/
│   │       │           ├── gtest-all.cc
│   │       │           ├── gtest-assertion-result.cc
│   │       │           ├── gtest-death-test.cc
│   │       │           ├── gtest-filepath.cc
│   │       │           ├── gtest-internal-inl.h
│   │       │           ├── gtest-matchers.cc
│   │       │           ├── gtest-port.cc
│   │       │           ├── gtest-printers.cc
│   │       │           ├── gtest-test-part.cc
│   │       │           ├── gtest-typed-test.cc
│   │       │           ├── gtest.cc
│   │       │           └── gtest_main.cc
│   │       ├── jsonschema-2019-09/
│   │       │   ├── hyper-schema.json
│   │       │   ├── links.json
│   │       │   ├── meta/
│   │       │   │   ├── applicator.json
│   │       │   │   ├── content.json
│   │       │   │   ├── core.json
│   │       │   │   ├── format.json
│   │       │   │   ├── hyper-schema.json
│   │       │   │   ├── meta-data.json
│   │       │   │   └── validation.json
│   │       │   ├── output/
│   │       │   │   ├── hyper-schema.json
│   │       │   │   └── schema.json
│   │       │   └── schema.json
│   │       ├── jsonschema-2020-12/
│   │       │   ├── hyper-schema.json
│   │       │   ├── links.json
│   │       │   ├── meta/
│   │       │   │   ├── applicator.json
│   │       │   │   ├── content.json
│   │       │   │   ├── core.json
│   │       │   │   ├── format-annotation.json
│   │       │   │   ├── format-assertion.json
│   │       │   │   ├── hyper-schema.json
│   │       │   │   ├── meta-data.json
│   │       │   │   ├── unevaluated.json
│   │       │   │   └── validation.json
│   │       │   ├── output/
│   │       │   │   └── schema.json
│   │       │   └── schema.json
│   │       ├── jsonschema-draft0/
│   │       │   ├── hyper-schema.json
│   │       │   ├── json-ref.json
│   │       │   ├── links.json
│   │       │   └── schema.json
│   │       ├── jsonschema-draft1/
│   │       │   ├── hyper-schema.json
│   │       │   ├── json-ref.json
│   │       │   ├── links.json
│   │       │   └── schema.json
│   │       ├── jsonschema-draft2/
│   │       │   ├── hyper-schema.json
│   │       │   ├── json-ref.json
│   │       │   ├── links.json
│   │       │   └── schema.json
│   │       ├── jsonschema-draft3/
│   │       │   ├── hyper-schema.json
│   │       │   ├── json-ref.json
│   │       │   ├── links.json
│   │       │   └── schema.json
│   │       ├── jsonschema-draft4/
│   │       │   ├── hyper-schema.json
│   │       │   ├── links.json
│   │       │   └── schema.json
│   │       ├── jsonschema-draft6/
│   │       │   ├── hyper-schema.json
│   │       │   ├── links.json
│   │       │   └── schema.json
│   │       ├── jsonschema-draft7/
│   │       │   ├── hyper-schema-output.json
│   │       │   ├── hyper-schema.json
│   │       │   ├── links.json
│   │       │   └── schema.json
│   │       ├── libdeflate/
│   │       │   ├── COPYING
│   │       │   ├── common_defs.h
│   │       │   ├── lib/
│   │       │   │   ├── adler32.c
│   │       │   │   ├── arm/
│   │       │   │   │   ├── adler32_impl.h
│   │       │   │   │   ├── cpu_features.c
│   │       │   │   │   ├── cpu_features.h
│   │       │   │   │   ├── crc32_impl.h
│   │       │   │   │   ├── crc32_pmull_helpers.h
│   │       │   │   │   ├── crc32_pmull_wide.h
│   │       │   │   │   └── matchfinder_impl.h
│   │       │   │   ├── bt_matchfinder.h
│   │       │   │   ├── cpu_features_common.h
│   │       │   │   ├── crc32.c
│   │       │   │   ├── crc32_multipliers.h
│   │       │   │   ├── crc32_tables.h
│   │       │   │   ├── decompress_template.h
│   │       │   │   ├── deflate_compress.c
│   │       │   │   ├── deflate_compress.h
│   │       │   │   ├── deflate_constants.h
│   │       │   │   ├── deflate_decompress.c
│   │       │   │   ├── gzip_compress.c
│   │       │   │   ├── gzip_constants.h
│   │       │   │   ├── gzip_decompress.c
│   │       │   │   ├── hc_matchfinder.h
│   │       │   │   ├── ht_matchfinder.h
│   │       │   │   ├── lib_common.h
│   │       │   │   ├── matchfinder_common.h
│   │       │   │   ├── riscv/
│   │       │   │   │   └── matchfinder_impl.h
│   │       │   │   ├── utils.c
│   │       │   │   ├── x86/
│   │       │   │   │   ├── adler32_impl.h
│   │       │   │   │   ├── adler32_template.h
│   │       │   │   │   ├── cpu_features.c
│   │       │   │   │   ├── cpu_features.h
│   │       │   │   │   ├── crc32_impl.h
│   │       │   │   │   ├── crc32_pclmul_template.h
│   │       │   │   │   ├── decompress_impl.h
│   │       │   │   │   └── matchfinder_impl.h
│   │       │   │   ├── zlib_compress.c
│   │       │   │   ├── zlib_constants.h
│   │       │   │   └── zlib_decompress.c
│   │       │   └── libdeflate.h
│   │       ├── openapi/
│   │       │   ├── LICENSE
│   │       │   └── oas/
│   │       │       ├── 2.0/
│   │       │       │   └── schema/
│   │       │       │       └── 2017-08-27
│   │       │       ├── 3.0/
│   │       │       │   └── schema/
│   │       │       │       ├── 2021-09-28
│   │       │       │       └── 2024-10-18
│   │       │       ├── 3.1/
│   │       │       │   ├── dialect/
│   │       │       │   │   ├── 2024-10-25
│   │       │       │   │   ├── 2024-11-10
│   │       │       │   │   └── base
│   │       │       │   ├── meta/
│   │       │       │   │   ├── 2024-10-25
│   │       │       │   │   ├── 2024-11-10
│   │       │       │   │   └── base
│   │       │       │   ├── schema/
│   │       │       │   │   ├── 2021-03-02
│   │       │       │   │   ├── 2021-04-15
│   │       │       │   │   ├── 2021-05-20
│   │       │       │   │   ├── 2021-09-28
│   │       │       │   │   ├── 2022-02-27
│   │       │       │   │   ├── 2022-10-07
│   │       │       │   │   ├── 2024-11-14
│   │       │       │   │   ├── 2025-02-13
│   │       │       │   │   ├── 2025-08-31
│   │       │       │   │   └── 2025-09-15
│   │       │       │   └── schema-base/
│   │       │       │       ├── 2021-03-02
│   │       │       │       ├── 2021-04-15
│   │       │       │       ├── 2021-05-20
│   │       │       │       ├── 2021-09-28
│   │       │       │       ├── 2022-02-27
│   │       │       │       ├── 2022-10-07
│   │       │       │       ├── 2024-11-14
│   │       │       │       ├── 2025-02-13
│   │       │       │       ├── 2025-08-31
│   │       │       │       └── 2025-09-15
│   │       │       └── 3.2/
│   │       │           ├── dialect/
│   │       │           │   └── 2025-09-17
│   │       │           ├── meta/
│   │       │           │   └── 2025-09-17
│   │       │           ├── schema/
│   │       │           │   └── 2025-09-17
│   │       │           └── schema-base/
│   │       │               └── 2025-09-17
│   │       ├── pcre2/
│   │       │   ├── LICENCE.md
│   │       │   ├── deps/
│   │       │   │   └── sljit/
│   │       │   │       ├── LICENSE
│   │       │   │       └── sljit_src/
│   │       │   │           ├── allocator_src/
│   │       │   │           │   ├── sljitExecAllocatorApple.c
│   │       │   │           │   ├── sljitExecAllocatorCore.c
│   │       │   │           │   ├── sljitExecAllocatorFreeBSD.c
│   │       │   │           │   ├── sljitExecAllocatorPosix.c
│   │       │   │           │   ├── sljitExecAllocatorWindows.c
│   │       │   │           │   ├── sljitProtExecAllocatorNetBSD.c
│   │       │   │           │   ├── sljitProtExecAllocatorPosix.c
│   │       │   │           │   ├── sljitWXExecAllocatorPosix.c
│   │       │   │           │   └── sljitWXExecAllocatorWindows.c
│   │       │   │           ├── sljitConfig.h
│   │       │   │           ├── sljitConfigCPU.h
│   │       │   │           ├── sljitConfigInternal.h
│   │       │   │           ├── sljitLir.c
│   │       │   │           ├── sljitLir.h
│   │       │   │           ├── sljitNativeARM_32.c
│   │       │   │           ├── sljitNativeARM_64.c
│   │       │   │           ├── sljitNativeARM_T2_32.c
│   │       │   │           ├── sljitNativeLOONGARCH_64.c
│   │       │   │           ├── sljitNativeMIPS_32.c
│   │       │   │           ├── sljitNativeMIPS_64.c
│   │       │   │           ├── sljitNativeMIPS_common.c
│   │       │   │           ├── sljitNativePPC_32.c
│   │       │   │           ├── sljitNativePPC_64.c
│   │       │   │           ├── sljitNativePPC_common.c
│   │       │   │           ├── sljitNativeRISCV_32.c
│   │       │   │           ├── sljitNativeRISCV_64.c
│   │       │   │           ├── sljitNativeRISCV_common.c
│   │       │   │           ├── sljitNativeS390X.c
│   │       │   │           ├── sljitNativeX86_32.c
│   │       │   │           ├── sljitNativeX86_64.c
│   │       │   │           ├── sljitNativeX86_common.c
│   │       │   │           ├── sljitSerialize.c
│   │       │   │           └── sljitUtils.c
│   │       │   └── src/
│   │       │       ├── config-cmake.h.in
│   │       │       ├── config.h.generic
│   │       │       ├── config.h.in
│   │       │       ├── libpcre2-16.sym
│   │       │       ├── libpcre2-32.sym
│   │       │       ├── libpcre2-8.sym
│   │       │       ├── libpcre2-posix.sym
│   │       │       ├── pcre2.h.generic
│   │       │       ├── pcre2.h.in
│   │       │       ├── pcre2_auto_possess.c
│   │       │       ├── pcre2_chartables.c.dist
│   │       │       ├── pcre2_chartables.c.ebcdic-1047-nl15
│   │       │       ├── pcre2_chartables.c.ebcdic-1047-nl25
│   │       │       ├── pcre2_chkdint.c
│   │       │       ├── pcre2_compile.c
│   │       │       ├── pcre2_compile.h
│   │       │       ├── pcre2_compile_cgroup.c
│   │       │       ├── pcre2_compile_class.c
│   │       │       ├── pcre2_config.c
│   │       │       ├── pcre2_context.c
│   │       │       ├── pcre2_convert.c
│   │       │       ├── pcre2_dfa_match.c
│   │       │       ├── pcre2_error.c
│   │       │       ├── pcre2_extuni.c
│   │       │       ├── pcre2_find_bracket.c
│   │       │       ├── pcre2_internal.h
│   │       │       ├── pcre2_intmodedep.h
│   │       │       ├── pcre2_jit_char_inc.h
│   │       │       ├── pcre2_jit_compile.c
│   │       │       ├── pcre2_jit_match_inc.h
│   │       │       ├── pcre2_jit_misc_inc.h
│   │       │       ├── pcre2_jit_simd_inc.h
│   │       │       ├── pcre2_maketables.c
│   │       │       ├── pcre2_match.c
│   │       │       ├── pcre2_match_data.c
│   │       │       ├── pcre2_match_next.c
│   │       │       ├── pcre2_newline.c
│   │       │       ├── pcre2_ord2utf.c
│   │       │       ├── pcre2_pattern_info.c
│   │       │       ├── pcre2_printint_inc.h
│   │       │       ├── pcre2_script_run.c
│   │       │       ├── pcre2_serialize.c
│   │       │       ├── pcre2_string_utils.c
│   │       │       ├── pcre2_study.c
│   │       │       ├── pcre2_substitute.c
│   │       │       ├── pcre2_substring.c
│   │       │       ├── pcre2_tables.c
│   │       │       ├── pcre2_ucd.c
│   │       │       ├── pcre2_ucp.h
│   │       │       ├── pcre2_ucptables_inc.h
│   │       │       ├── pcre2_util.h
│   │       │       ├── pcre2_valid_utf.c
│   │       │       ├── pcre2_xclass.c
│   │       │       ├── pcre2posix.h
│   │       │       └── pcre2test_inc.h
│   │       ├── zlib/
│   │       │   ├── LICENSE
│   │       │   ├── adler32.c
│   │       │   ├── compress.c
│   │       │   ├── crc32.c
│   │       │   ├── crc32.h
│   │       │   ├── deflate.c
│   │       │   ├── deflate.h
│   │       │   ├── gzclose.c
│   │       │   ├── gzguts.h
│   │       │   ├── gzlib.c
│   │       │   ├── gzread.c
│   │       │   ├── gzwrite.c
│   │       │   ├── infback.c
│   │       │   ├── inffast.c
│   │       │   ├── inffast.h
│   │       │   ├── inffixed.h
│   │       │   ├── inflate.c
│   │       │   ├── inflate.h
│   │       │   ├── inftrees.c
│   │       │   ├── inftrees.h
│   │       │   ├── trees.c
│   │       │   ├── trees.h
│   │       │   ├── uncompr.c
│   │       │   ├── zconf.h
│   │       │   ├── zlib.h
│   │       │   ├── zutil.c
│   │       │   └── zutil.h
│   │       └── zlib.mask
│   ├── noa/
│   │   ├── CMakeLists.txt
│   │   ├── LICENSE
│   │   ├── cmake/
│   │   │   ├── FindBoostRegex.cmake
│   │   │   ├── FindGoogleBenchmark.cmake
│   │   │   ├── FindGoogleTest.cmake
│   │   │   ├── noa/
│   │   │   │   ├── commands/
│   │   │   │   │   └── copy-file.cmake
│   │   │   │   ├── compiler/
│   │   │   │   │   ├── options.cmake
│   │   │   │   │   └── sanitizer.cmake
│   │   │   │   ├── defaults.cmake
│   │   │   │   ├── options/
│   │   │   │   │   └── enum.cmake
│   │   │   │   ├── shim.cmake
│   │   │   │   ├── targets/
│   │   │   │   │   ├── clang-format.cmake
│   │   │   │   │   ├── clang-format.config
│   │   │   │   │   ├── clang-tidy.cmake
│   │   │   │   │   ├── clang-tidy.config
│   │   │   │   │   ├── doxygen.cmake
│   │   │   │   │   ├── executable.cmake
│   │   │   │   │   ├── googlebenchmark.cmake
│   │   │   │   │   ├── googletest.cmake
│   │   │   │   │   ├── library.cmake
│   │   │   │   │   └── shellcheck.cmake
│   │   │   │   └── variables.cmake
│   │   │   └── noa.cmake
│   │   ├── config.cmake.in
│   │   ├── src/
│   │   │   ├── flat_map/
│   │   │   │   ├── CMakeLists.txt
│   │   │   │   └── include/
│   │   │   │       └── sourcemeta/
│   │   │   │           └── noa/
│   │   │   │               └── flat_map.h
│   │   │   ├── hash/
│   │   │   │   ├── CMakeLists.txt
│   │   │   │   └── include/
│   │   │   │       └── sourcemeta/
│   │   │   │           └── noa/
│   │   │   │               └── hash.h
│   │   │   └── regex/
│   │   │       ├── CMakeLists.txt
│   │   │       └── include/
│   │   │           └── sourcemeta/
│   │   │               └── noa/
│   │   │                   └── regex.h
│   │   └── vendor/
│   │       ├── boost-regex/
│   │       │   └── include/
│   │       │       └── boost/
│   │       │           ├── cregex.hpp
│   │       │           ├── regex/
│   │       │           │   ├── concepts.hpp
│   │       │           │   ├── config/
│   │       │           │   │   ├── borland.hpp
│   │       │           │   │   └── cwchar.hpp
│   │       │           │   ├── config.hpp
│   │       │           │   ├── icu.hpp
│   │       │           │   ├── mfc.hpp
│   │       │           │   ├── pattern_except.hpp
│   │       │           │   ├── pending/
│   │       │           │   │   ├── object_cache.hpp
│   │       │           │   │   ├── static_mutex.hpp
│   │       │           │   │   └── unicode_iterator.hpp
│   │       │           │   ├── regex_traits.hpp
│   │       │           │   ├── user.hpp
│   │       │           │   ├── v4/
│   │       │           │   │   ├── basic_regex.hpp
│   │       │           │   │   ├── basic_regex_creator.hpp
│   │       │           │   │   ├── basic_regex_parser.hpp
│   │       │           │   │   ├── c_regex_traits.hpp
│   │       │           │   │   ├── char_regex_traits.hpp
│   │       │           │   │   ├── cpp_regex_traits.hpp
│   │       │           │   │   ├── cregex.hpp
│   │       │           │   │   ├── error_type.hpp
│   │       │           │   │   ├── icu.hpp
│   │       │           │   │   ├── indexed_bit_flag.hpp
│   │       │           │   │   ├── iterator_category.hpp
│   │       │           │   │   ├── iterator_traits.hpp
│   │       │           │   │   ├── match_flags.hpp
│   │       │           │   │   ├── match_results.hpp
│   │       │           │   │   ├── mem_block_cache.hpp
│   │       │           │   │   ├── object_cache.hpp
│   │       │           │   │   ├── pattern_except.hpp
│   │       │           │   │   ├── perl_matcher.hpp
│   │       │           │   │   ├── perl_matcher_common.hpp
│   │       │           │   │   ├── perl_matcher_non_recursive.hpp
│   │       │           │   │   ├── perl_matcher_recursive.hpp
│   │       │           │   │   ├── primary_transform.hpp
│   │       │           │   │   ├── protected_call.hpp
│   │       │           │   │   ├── regbase.hpp
│   │       │           │   │   ├── regex.hpp
│   │       │           │   │   ├── regex_format.hpp
│   │       │           │   │   ├── regex_fwd.hpp
│   │       │           │   │   ├── regex_grep.hpp
│   │       │           │   │   ├── regex_iterator.hpp
│   │       │           │   │   ├── regex_match.hpp
│   │       │           │   │   ├── regex_merge.hpp
│   │       │           │   │   ├── regex_raw_buffer.hpp
│   │       │           │   │   ├── regex_replace.hpp
│   │       │           │   │   ├── regex_search.hpp
│   │       │           │   │   ├── regex_split.hpp
│   │       │           │   │   ├── regex_token_iterator.hpp
│   │       │           │   │   ├── regex_traits.hpp
│   │       │           │   │   ├── regex_traits_defaults.hpp
│   │       │           │   │   ├── regex_workaround.hpp
│   │       │           │   │   ├── states.hpp
│   │       │           │   │   ├── sub_match.hpp
│   │       │           │   │   ├── syntax_type.hpp
│   │       │           │   │   ├── u32regex_iterator.hpp
│   │       │           │   │   ├── u32regex_token_iterator.hpp
│   │       │           │   │   ├── unicode_iterator.hpp
│   │       │           │   │   └── w32_regex_traits.hpp
│   │       │           │   └── v5/
│   │       │           │       ├── basic_regex.hpp
│   │       │           │       ├── basic_regex_creator.hpp
│   │       │           │       ├── basic_regex_parser.hpp
│   │       │           │       ├── c_regex_traits.hpp
│   │       │           │       ├── char_regex_traits.hpp
│   │       │           │       ├── cpp_regex_traits.hpp
│   │       │           │       ├── cregex.hpp
│   │       │           │       ├── error_type.hpp
│   │       │           │       ├── icu.hpp
│   │       │           │       ├── iterator_category.hpp
│   │       │           │       ├── iterator_traits.hpp
│   │       │           │       ├── match_flags.hpp
│   │       │           │       ├── match_results.hpp
│   │       │           │       ├── mem_block_cache.hpp
│   │       │           │       ├── object_cache.hpp
│   │       │           │       ├── pattern_except.hpp
│   │       │           │       ├── perl_matcher.hpp
│   │       │           │       ├── perl_matcher_common.hpp
│   │       │           │       ├── perl_matcher_non_recursive.hpp
│   │       │           │       ├── primary_transform.hpp
│   │       │           │       ├── regbase.hpp
│   │       │           │       ├── regex.hpp
│   │       │           │       ├── regex_format.hpp
│   │       │           │       ├── regex_fwd.hpp
│   │       │           │       ├── regex_grep.hpp
│   │       │           │       ├── regex_iterator.hpp
│   │       │           │       ├── regex_match.hpp
│   │       │           │       ├── regex_merge.hpp
│   │       │           │       ├── regex_raw_buffer.hpp
│   │       │           │       ├── regex_replace.hpp
│   │       │           │       ├── regex_search.hpp
│   │       │           │       ├── regex_split.hpp
│   │       │           │       ├── regex_token_iterator.hpp
│   │       │           │       ├── regex_traits.hpp
│   │       │           │       ├── regex_traits_defaults.hpp
│   │       │           │       ├── regex_workaround.hpp
│   │       │           │       ├── states.hpp
│   │       │           │       ├── sub_match.hpp
│   │       │           │       ├── syntax_type.hpp
│   │       │           │       ├── u32regex_iterator.hpp
│   │       │           │       ├── u32regex_token_iterator.hpp
│   │       │           │       ├── unicode_iterator.hpp
│   │       │           │       └── w32_regex_traits.hpp
│   │       │           ├── regex.h
│   │       │           ├── regex.hpp
│   │       │           └── regex_fwd.hpp
│   │       ├── googlebenchmark/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── LICENSE
│   │       │   ├── cmake/
│   │       │   │   ├── AddCXXCompilerFlag.cmake
│   │       │   │   ├── CXXFeatureCheck.cmake
│   │       │   │   ├── Config.cmake.in
│   │       │   │   ├── GetGitVersion.cmake
│   │       │   │   ├── GoogleTest.cmake
│   │       │   │   ├── GoogleTest.cmake.in
│   │       │   │   ├── Modules/
│   │       │   │   │   ├── FindLLVMAr.cmake
│   │       │   │   │   ├── FindLLVMNm.cmake
│   │       │   │   │   ├── FindLLVMRanLib.cmake
│   │       │   │   │   └── FindPFM.cmake
│   │       │   │   ├── benchmark.pc.in
│   │       │   │   ├── benchmark_main.pc.in
│   │       │   │   ├── gnu_posix_regex.cpp
│   │       │   │   ├── llvm-toolchain.cmake
│   │       │   │   ├── posix_regex.cpp
│   │       │   │   ├── pthread_affinity.cpp
│   │       │   │   ├── split_list.cmake
│   │       │   │   ├── std_regex.cpp
│   │       │   │   ├── steady_clock.cpp
│   │       │   │   └── thread_safety_attributes.cpp
│   │       │   ├── include/
│   │       │   │   └── benchmark/
│   │       │   │       ├── benchmark.h
│   │       │   │       └── export.h
│   │       │   └── src/
│   │       │       ├── CMakeLists.txt
│   │       │       ├── arraysize.h
│   │       │       ├── benchmark.cc
│   │       │       ├── benchmark_api_internal.cc
│   │       │       ├── benchmark_api_internal.h
│   │       │       ├── benchmark_main.cc
│   │       │       ├── benchmark_name.cc
│   │       │       ├── benchmark_register.cc
│   │       │       ├── benchmark_register.h
│   │       │       ├── benchmark_runner.cc
│   │       │       ├── benchmark_runner.h
│   │       │       ├── check.cc
│   │       │       ├── check.h
│   │       │       ├── colorprint.cc
│   │       │       ├── colorprint.h
│   │       │       ├── commandlineflags.cc
│   │       │       ├── commandlineflags.h
│   │       │       ├── complexity.cc
│   │       │       ├── complexity.h
│   │       │       ├── console_reporter.cc
│   │       │       ├── counter.cc
│   │       │       ├── counter.h
│   │       │       ├── csv_reporter.cc
│   │       │       ├── cycleclock.h
│   │       │       ├── internal_macros.h
│   │       │       ├── json_reporter.cc
│   │       │       ├── log.h
│   │       │       ├── mutex.h
│   │       │       ├── perf_counters.cc
│   │       │       ├── perf_counters.h
│   │       │       ├── re.h
│   │       │       ├── reporter.cc
│   │       │       ├── statistics.cc
│   │       │       ├── statistics.h
│   │       │       ├── string_util.cc
│   │       │       ├── string_util.h
│   │       │       ├── sysinfo.cc
│   │       │       ├── thread_manager.h
│   │       │       ├── thread_timer.h
│   │       │       ├── timers.cc
│   │       │       └── timers.h
│   │       ├── googletest/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── LICENSE
│   │       │   ├── googlemock/
│   │       │   │   ├── CMakeLists.txt
│   │       │   │   ├── cmake/
│   │       │   │   │   ├── gmock.pc.in
│   │       │   │   │   └── gmock_main.pc.in
│   │       │   │   ├── include/
│   │       │   │   │   └── gmock/
│   │       │   │   │       ├── gmock-actions.h
│   │       │   │   │       ├── gmock-cardinalities.h
│   │       │   │   │       ├── gmock-function-mocker.h
│   │       │   │   │       ├── gmock-matchers.h
│   │       │   │   │       ├── gmock-more-actions.h
│   │       │   │   │       ├── gmock-more-matchers.h
│   │       │   │   │       ├── gmock-nice-strict.h
│   │       │   │   │       ├── gmock-spec-builders.h
│   │       │   │   │       ├── gmock.h
│   │       │   │   │       └── internal/
│   │       │   │   │           ├── custom/
│   │       │   │   │           │   ├── README.md
│   │       │   │   │           │   ├── gmock-generated-actions.h
│   │       │   │   │           │   ├── gmock-matchers.h
│   │       │   │   │           │   └── gmock-port.h
│   │       │   │   │           ├── gmock-internal-utils.h
│   │       │   │   │           ├── gmock-port.h
│   │       │   │   │           └── gmock-pp.h
│   │       │   │   └── src/
│   │       │   │       ├── gmock-all.cc
│   │       │   │       ├── gmock-cardinalities.cc
│   │       │   │       ├── gmock-internal-utils.cc
│   │       │   │       ├── gmock-matchers.cc
│   │       │   │       ├── gmock-spec-builders.cc
│   │       │   │       ├── gmock.cc
│   │       │   │       └── gmock_main.cc
│   │       │   └── googletest/
│   │       │       ├── CMakeLists.txt
│   │       │       ├── cmake/
│   │       │       │   ├── Config.cmake.in
│   │       │       │   ├── gtest.pc.in
│   │       │       │   ├── gtest_main.pc.in
│   │       │       │   ├── internal_utils.cmake
│   │       │       │   └── libgtest.la.in
│   │       │       ├── include/
│   │       │       │   └── gtest/
│   │       │       │       ├── gtest-assertion-result.h
│   │       │       │       ├── gtest-death-test.h
│   │       │       │       ├── gtest-matchers.h
│   │       │       │       ├── gtest-message.h
│   │       │       │       ├── gtest-param-test.h
│   │       │       │       ├── gtest-printers.h
│   │       │       │       ├── gtest-spi.h
│   │       │       │       ├── gtest-test-part.h
│   │       │       │       ├── gtest-typed-test.h
│   │       │       │       ├── gtest.h
│   │       │       │       ├── gtest_pred_impl.h
│   │       │       │       ├── gtest_prod.h
│   │       │       │       └── internal/
│   │       │       │           ├── custom/
│   │       │       │           │   ├── README.md
│   │       │       │           │   ├── gtest-port.h
│   │       │       │           │   ├── gtest-printers.h
│   │       │       │           │   └── gtest.h
│   │       │       │           ├── gtest-death-test-internal.h
│   │       │       │           ├── gtest-filepath.h
│   │       │       │           ├── gtest-internal.h
│   │       │       │           ├── gtest-param-util.h
│   │       │       │           ├── gtest-port-arch.h
│   │       │       │           ├── gtest-port.h
│   │       │       │           ├── gtest-string.h
│   │       │       │           └── gtest-type-util.h
│   │       │       └── src/
│   │       │           ├── gtest-all.cc
│   │       │           ├── gtest-assertion-result.cc
│   │       │           ├── gtest-death-test.cc
│   │       │           ├── gtest-filepath.cc
│   │       │           ├── gtest-internal-inl.h
│   │       │           ├── gtest-matchers.cc
│   │       │           ├── gtest-port.cc
│   │       │           ├── gtest-printers.cc
│   │       │           ├── gtest-test-part.cc
│   │       │           ├── gtest-typed-test.cc
│   │       │           ├── gtest.cc
│   │       │           └── gtest_main.cc
│   │       └── vendorpull/
│   │           ├── LICENSE
│   │           └── pull
│   └── vendorpull/
│       ├── LICENSE
│       ├── pull
│       └── upgrade
└── vendorpull.mask

================================================
FILE CONTENTS
================================================

================================================
FILE: .ackrc
================================================
--ignore-dir=vendor
--ignore-dir=build


================================================
FILE: .editorconfig
================================================
# editorconfig.org
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[Makefile]
indent_style = tab

[*.mk]
indent_style = tab


================================================
FILE: .gitattributes
================================================
/vendor/** linguist-generated=true
*.bin binary diff=hex
* -text


================================================
FILE: .github/workflows/ci.yml
================================================
name: JSON BinPack

on:
  schedule:
    # Once per day, Monday to Friday
    - cron: '0 19 * * 1-5'
  push:
    branches:
      - main
  pull_request:

jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        platform:
          - os: macos-latest
            cc: clang
            cxx: clang++
            type: static
          - os: macos-latest
            cc: clang
            cxx: clang++
            type: shared
          - os: macos-latest
            cc: gcc-13
            cxx: g++-13
            type: static
          - os: ubuntu-latest
            cc: clang
            cxx: clang++
            type: static
          - os: ubuntu-latest
            cc: gcc
            cxx: g++
            type: static
          - os: ubuntu-latest
            cc: clang
            cxx: clang++
            type: shared
          - os: ubuntu-latest
            cc: gcc
            cxx: g++
            type: shared
          - os: windows-latest
            type: static
          - os: windows-latest
            type: shared

          # Sanitizers
          - os: ubuntu-latest
            cc: clang
            cxx: clang++
            type: static
            options: -DJSONBINPACK_ADDRESS_SANITIZER:BOOL=ON
          - os: ubuntu-latest
            cc: clang
            cxx: clang++
            type: static
            options: -DJSONBINPACK_UNDEFINED_SANITIZER:BOOL=ON

    runs-on: ${{ matrix.platform.os }}
    env:
      CC: ${{ matrix.platform.cc }}
      CXX: ${{ matrix.platform.cxx }}
    steps:
      - uses: actions/checkout@v3
      - name: Install dependencies (macOS)
        if: runner.os == 'macos'
        run: brew bundle
        env:
          HOMEBREW_NO_ANALYTICS: 1
          HOMEBREW_NO_AUTO_UPDATE: 1

      - run: cmake --version
      - name: Configure JSON BinPack (static)
        if: matrix.platform.type == 'static'
        run: >
          cmake -S . -B ./build
          -DCMAKE_BUILD_TYPE:STRING=Release
          -DJSONBINPACK_NUMERIC:BOOL=ON
          -DJSONBINPACK_RUNTIME:BOOL=ON
          -DJSONBINPACK_COMPILER:BOOL=ON
          -DJSONBINPACK_TESTS:BOOL=ON
          -DJSONBINPACK_DOCS:BOOL=OFF
          -DBUILD_SHARED_LIBS:BOOL=OFF
          -DCMAKE_COMPILE_WARNING_AS_ERROR:BOOL=ON
          ${{ matrix.platform.options }}
      - name: Configure JSON BinPack (shared)
        if: matrix.platform.type == 'shared'
        run: >
          cmake -S . -B ./build
          -DCMAKE_BUILD_TYPE:STRING=Release
          -DJSONBINPACK_NUMERIC:BOOL=ON
          -DJSONBINPACK_RUNTIME:BOOL=ON
          -DJSONBINPACK_COMPILER:BOOL=ON
          -DJSONBINPACK_TESTS:BOOL=ON
          -DJSONBINPACK_DOCS:BOOL=OFF
          -DBUILD_SHARED_LIBS:BOOL=ON
          -DCMAKE_COMPILE_WARNING_AS_ERROR:BOOL=ON
          ${{ matrix.platform.options }}

      - run: cmake --build ./build --config Release --target clang_format_test
      - run: cmake --build ./build --config Release --parallel 4
      - run: >
          cmake --install ./build --prefix ./build/dist --config Release --verbose
          --component sourcemeta_core
      - run: >
          cmake --install ./build --prefix ./build/dist --config Release --verbose
          --component sourcemeta_core_dev
      - run: >
          cmake --install ./build --prefix ./build/dist --config Release --verbose
          --component sourcemeta_blaze
      - run: >
          cmake --install ./build --prefix ./build/dist --config Release --verbose
          --component sourcemeta_blaze_dev
      - run: >
          cmake --install ./build --prefix ./build/dist --config Release --verbose
          --component sourcemeta_jsonbinpack
      - run: >
          cmake --install ./build --prefix ./build/dist --config Release --verbose
          --component sourcemeta_jsonbinpack_dev

      # Not every CTest version supports the --test-dir option. If such option
      # is not recognized, `ctest` will successfully exit finding no tests.
      # Better to be sure and `cd` all the time here.
      - run: cd ./build && ctest --build-config Release --output-on-failure --parallel
        env:
          # See https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html
          UBSAN_OPTIONS: print_stacktrace=1


================================================
FILE: .github/workflows/website-build.yml
================================================
name: website
on:
  pull_request:

concurrency:
  group: website-build-${{ github.ref }}
  cancel-in-progress: true

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v3
      - run: sudo apt update
      - run: sudo apt-get install --yes doxygen
      - run: >
          cmake -S . -B ./build
          -DCMAKE_BUILD_TYPE:STRING=Release
          -DJSONBINPACK_NUMERIC:BOOL=OFF
          -DJSONBINPACK_RUNTIME:BOOL=OFF
          -DJSONBINPACK_COMPILER:BOOL=OFF
          -DJSONBINPACK_TESTS:BOOL=OFF
          -DJSONBINPACK_DOCS:BOOL=ON
      - run: cmake --build ./build --config Release --target doxygen


================================================
FILE: .github/workflows/website-deploy.yml
================================================
name: website
on:
  push:
    branches: [ "main" ]
  workflow_dispatch:

permissions:
  contents: read
  pages: write
  id-token: write

concurrency:
  group: website-deploy-${{ github.ref }}
  cancel-in-progress: true

jobs:
  deploy:
    environment:
      name: github-pages
      url: ${{ steps.deployment.outputs.page_url }}
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v3
      - run: sudo apt update
      - run: sudo apt-get install --yes doxygen
      - run: >
          cmake -S . -B ./build
          -DCMAKE_BUILD_TYPE:STRING=Release
          -DJSONBINPACK_NUMERIC:BOOL=OFF
          -DJSONBINPACK_RUNTIME:BOOL=OFF
          -DJSONBINPACK_COMPILER:BOOL=OFF
          -DJSONBINPACK_TESTS:BOOL=OFF
          -DJSONBINPACK_DOCS:BOOL=ON

      - run: cmake --build ./build --config Release --target doxygen

      - name: Setup Pages
        uses: actions/configure-pages@v5
      - name: Upload artifact
        uses: actions/upload-pages-artifact@v3
        with:
          path: ./build/www
      - name: Deploy to GitHub Pages
        id: deployment
        uses: actions/deploy-pages@v4


================================================
FILE: .gitignore
================================================
# Created by https://www.toptal.com/developers/gitignore/api/c,c++,node,cmake
# Edit at https://www.toptal.com/developers/gitignore?templates=c,c++,node,cmake

### C ###
# Prerequisites
*.d

# Object files
*.o
*.ko
*.obj
*.elf

# Linker output
*.ilk
*.map
*.exp

# Precompiled Headers
*.gch
*.pch

# Libraries
*.lib
*.a
*.la
*.lo

# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib

# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex

# Debug files
*.dSYM/
*.su
*.idb
*.pdb

# Kernel Module Compile Results
*.mod*
*.cmd
.tmp_versions/
modules.order
Module.symvers
Mkfile.old
dkms.conf

### C++ ###
# Prerequisites

# Compiled Object files
*.slo

# Precompiled Headers

# Compiled Dynamic libraries

# Fortran module files
*.mod
*.smod

# Compiled Static libraries
*.lai

# Executables

### CMake ###
CMakeLists.txt.user
CMakeCache.txt
CMakeFiles
CMakeScripts
Testing
Makefile
cmake_install.cmake
install_manifest.txt
compile_commands.json
CTestTestfile.cmake
_deps

### CMake Patch ###
# External projects
*-prefix/

### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp

# Docusaurus cache and generated files
.docusaurus

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

### Node Patch ###
# Serverless Webpack directories
.webpack/

# Optional stylelint cache

# SvelteKit build / generate output
.svelte-kit

# End of https://www.toptal.com/developers/gitignore/api/c,c++,node,cmake,jekyll

/build
!/Makefile
.DS_Store
CMakeUserPresets.json
Brewfile.lock.json


================================================
FILE: Brewfile
================================================
brew "cmake"
brew "gcc@13"


================================================
FILE: CMakeLists.txt
================================================
cmake_minimum_required(VERSION 3.16)
project(jsonbinpack VERSION 0.0.1 LANGUAGES CXX
  DESCRIPTION "\
A space-efficient open-source binary JSON serialization \
format based on JSON Schema with \
both schema-driven and schema-less support."
  HOMEPAGE_URL "https://jsonbinpack.sourcemeta.com")
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")

# Options
option(JSONBINPACK_RUNTIME "Build the JSON BinPack runtime" ON)
option(JSONBINPACK_COMPILER "Build the JSON BinPack compiler" ON)
option(JSONBINPACK_TESTS "Build the JSON BinPack tests" OFF)
option(JSONBINPACK_INSTALL "Install the JSON BinPack library" ON)
option(JSONBINPACK_DOCS "Build the JSON BinPack documentation" OFF)
option(JSONBINPACK_ADDRESS_SANITIZER "Build JSON BinPack with an address sanitizer" OFF)
option(JSONBINPACK_UNDEFINED_SANITIZER "Build JSON BinPack with an undefined behavior sanitizer" OFF)

find_package(Core REQUIRED)
find_package(Blaze REQUIRED)

if(JSONBINPACK_INSTALL)
  include(GNUInstallDirs)
  include(CMakePackageConfigHelpers)
  configure_package_config_file(
    config.cmake.in
    "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}-config.cmake"
    INSTALL_DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}")
  write_basic_package_version_file(
    "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}-config-version.cmake"
    COMPATIBILITY SameMajorVersion)
  install(FILES
    "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}-config-version.cmake"
    "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}-config.cmake"
    DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}"
    COMPONENT sourcemeta_jsonbinpack_dev)
endif()

# Runtime
if(JSONBINPACK_RUNTIME)
  add_subdirectory(src/runtime)
endif()

# Compiler
if(JSONBINPACK_COMPILER)
  add_subdirectory(src/compiler)
endif()

if(JSONBINPACK_ADDRESS_SANITIZER)
  sourcemeta_sanitizer(TYPE address)
elseif(JSONBINPACK_UNDEFINED_SANITIZER)
  sourcemeta_sanitizer(TYPE undefined)
endif()

if(JSONBINPACK_DOCS)
  sourcemeta_target_doxygen(CONFIG "${PROJECT_SOURCE_DIR}/doxygen/Doxyfile.in"
    OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/www")
endif()

if(PROJECT_IS_TOP_LEVEL)
  sourcemeta_target_clang_format(SOURCES
    src/*.h src/*.cc
    test/*.h test/*.cc)
endif()

# Testing
if(JSONBINPACK_TESTS)
  enable_testing()

  if(JSONBINPACK_RUNTIME)
    add_subdirectory(test/runtime)
  endif()

  if(JSONBINPACK_COMPILER)
    add_subdirectory(test/compiler)
  endif()

  add_subdirectory(test/e2e)

  if(PROJECT_IS_TOP_LEVEL)
    # Otherwise we need the child project to link
    # against the sanitizers too.
    if(NOT JSONBINPACK_ADDRESS_SANITIZER AND NOT JSONBINPACK_UNDEFINED_SANITIZER)
      add_subdirectory(test/packaging)
    endif()
  endif()
endif()


================================================
FILE: DEPENDENCIES
================================================
vendorpull https://github.com/sourcemeta/vendorpull 1dcbac42809cf87cb5b045106b863e17ad84ba02
core https://github.com/sourcemeta/core aa314809fdb59ed6fcb1b10b3087f32eebf708c5
blaze https://github.com/sourcemeta/blaze 5554d3106d7920b28b852e929f0a31d7805effe1
bootstrap https://github.com/twbs/bootstrap 1a6fdfae6be09b09eaced8f0e442ca6f7680a61e


================================================
FILE: LICENSE
================================================
This software is dual-licensed: you can redistribute it and/or modify it under
the terms of the GNU Affero General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option) any
later version. For the terms of this license, see
<http://www.gnu.org/licenses/>.

You are free to use this software under the terms of the GNU Affero General
Public License WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Alternatively, you can use this software under a commercial license, as set out
in <https://www.sourcemeta.com/licensing/>.


================================================
FILE: Makefile
================================================
# Programs
CMAKE = cmake
CTEST = ctest
PYTHON = python3

# Options
PRESET = Debug
SHARED = OFF

all: configure compile test

configure: .always
	$(CMAKE) -S . -B ./build \
		-DCMAKE_BUILD_TYPE:STRING=$(PRESET) \
		-DCMAKE_COMPILE_WARNING_AS_ERROR:BOOL=ON \
		-DJSONBINPACK_NUMERIC:BOOL=ON \
		-DJSONBINPACK_RUNTIME:BOOL=ON \
		-DJSONBINPACK_COMPILER:BOOL=ON \
		-DJSONBINPACK_TESTS:BOOL=ON \
		-DJSONBINPACK_DOCS:BOOL=ON \
		-DBUILD_SHARED_LIBS:BOOL=$(SHARED)

compile: .always
	$(CMAKE) --build ./build --config $(PRESET) --target clang_format
	$(CMAKE) --build ./build --config $(PRESET) --parallel 4
	$(CMAKE) --install ./build --prefix ./build/dist --config $(PRESET) --verbose \
		--component sourcemeta_core
	$(CMAKE) --install ./build --prefix ./build/dist --config $(PRESET) --verbose \
		--component sourcemeta_core_dev
	$(CMAKE) --install ./build --prefix ./build/dist --config $(PRESET) --verbose \
		--component sourcemeta_blaze
	$(CMAKE) --install ./build --prefix ./build/dist --config $(PRESET) --verbose \
		--component sourcemeta_blaze_dev
	$(CMAKE) --install ./build --prefix ./build/dist --config $(PRESET) --verbose \
		--component sourcemeta_jsonbinpack
	$(CMAKE) --install ./build --prefix ./build/dist --config $(PRESET) --verbose \
		--component sourcemeta_jsonbinpack_dev

test: .always
	$(CMAKE) -E env UBSAN_OPTIONS=print_stacktrace=1 \
		$(CTEST) --test-dir ./build --build-config $(PRESET) \
			--output-on-failure --progress --parallel

doxygen: .always
	$(CMAKE) --build ./build --config $(PRESET) --target doxygen

clean: .always
	$(CMAKE) -E rm -R -f build

# For NMake, which doesn't support .PHONY
.always:


================================================
FILE: README.markdown
================================================
**This is a work-in-progress. Please consider starring or watching the repository
to stay up to date.**

***

![JSON BinPack](./assets/banner.png)

JSON BinPack is an open-source binary JSON serialization format with a **strong
focus on space efficiency**. It supports schema-driven and schema-less modes to
encode any [JSON](https://www.json.org) document given a matching [JSON Schema
2020-12](http://json-schema.org) definition.

![](./assets/example.png)

- **Highly Space-efficient**: A reproducible benchmark study has proven JSON
  BinPack to be space-efficient in comparison to 12 alternative binary
  serialization formats in every considered case. Additionally, JSON BinPack
  typically provides higher average size reduction than general purpose
  compressors such as GZIP, LZMA and LZ4 with the highest compression levels.

    [Take a look at the benchmark](https://benchmark.sourcemeta.com)

- **Based on JSON Schema**: JSON BinPack adopts the industry-standard schema
  language for JSON documents. Re-use the same schemas you already have in your
  OpenAPI, AsyncAPI, RAML or other specifications. No need to learn more
  domain-specific schema languages or attempt to translate between them.

    [Learn more about JSON Schema](https://json-schema.org/)

- **Optional Schema**: JSON BinPack is a hybrid serialization format that runs
  in both schema-driven and schema-less modes. Thanks to JSON Schema, JSON
  BinPack allows you to be as loose or specific as your use case demands, even
  within the same document, without having to use different serialization
  technologies.

    [Read more about JSON Schema as a constraint system](https://modern-json-schema.com/json-schema-is-a-constraint-system)

Documentation
-------------

Refer to the project website for reference documentation:
[https://jsonbinpack.sourcemeta.com](https://jsonbinpack.sourcemeta.com).

Do you have any questions? Open a ticket on [GitHub
Discussions](https://github.com/sourcemeta/jsonbinpack/discussions)!

Frequently Asked Questions
--------------------------

### How does JSON BinPack compare to compression formats like GZIP?

Our [reproducible benchmark study](https://benchmark.sourcemeta.com) shows that
the semantic information provided by detailed schema definitions enables a
serialization format such as JSON BinPack to often outperform general-purpose
compressors configured with even their highest supported compression levels,
specially for small and medium-sized JSON documents. For large JSON documents,
you can experiment combining JSON BinPack with a compression format to
potentially achieve greater space-efficiency.

### JSON BinPack is space-efficient, but what about runtime-efficiency?

When transmitting data over the Internet, time is the bottleneck, making
computation much cheaper in comparison. Leaving extremely low-powered devices
aside, trading more CPU cycles for better compression is a sensible choice.
JSON BinPack particularly excels at improving network performance when
transmitting data through unreliable and low-bandwidth connections on mobile
and IoT systems, and it is still optimized to deliver the best runtime
efficiency possible.

If your use-case demands extreme runtime-efficiency or zero-copy serialization,
such as in the case of intra-service or inter-process communication, we suggest
you consider alternative serialization formats such as
[FlatBuffers](https://google.github.io/flatbuffers/) and [Cap'n
Proto](https://capnproto.org/).

### How does JSON BinPack handle unknown fields?

JSON BinPack serializes any instance that matches its JSON Schema definition.
JSON Schema is an expressive constrain-based language that permits
schema-writers to be as strict or loose on defining data as they wish. As a
consequence of adopting JSON Schema, JSON BinPack elegantly supports encoding
free-form data and unknown fields as long as the corresponding JSON Schema
definition successfully validates the data.

However, deserializing data that does not match the given JSON Schema
definition is undefined behavior and will likely result in an exception being
thrown.

### How does JSON BinPack compare to [alternative]?

We maintain a [live benchmark](https://benchmark.sourcemeta.com/) comparing
JSON BinPack to various popular alternatives, including Protocol Buffers, CBOR,
MessagePack, Apache Avro, and more. We also published an [academic
paper](https://arxiv.org/abs/2211.12799) discussing the benchmark results in
more detail. In summary, you can expect JSON BinPack to be as or more
space-efficient than every alternative in every tested case.

### How does JSON BinPack support schema evolution?

In comparison to schema-driven alternatives like Protocol Buffers and Apache
Avro that invented their own specialized schema language, JSON BinPack adopts a
popular and industry-standard one: [JSON Schema](https://json-schema.org/).
This means that you can use JSON BinPack alongside any schema evolution tooling
or approach from the wider JSON Schema ecosystem. A popular one from the
decentralised systems world is
[Cambria](https://www.inkandswitch.com/cambria/).

***

Do you have further questions or feedback? Don't hesitate in reaching out on
[GitHub
Discussions](https://github.com/sourcemeta/jsonbinpack/discussions)!

Research
--------

JSON BinPack is the result of extensive binary serialization research at the
Department of Computer Science of University of Oxford. The project is led by
Juan Cruz Viotti, a computer scientist with first-hand exposure to the problem
of space-efficient network communication in the context of IoT and APIs, under
the supervision of Mital Kinderkhedia.

- [JSON BinPack: A space-efficient schema-driven and schema-less binary
serialization specification based on JSON
Schema](https://www.jviotti.com/dissertation.pdf)

    - Awarded the 2022 CAR Hoare Prize for the best performance on the project
      in the MSc in Software Engineering
    - Awarded the 2022 CAR Hoare Prize for the best performance in the
      examination by coursework in the MSc in Software Engineering

- [Benchmarking JSON BinPack](https://arxiv.org/abs/2211.12799)
- [A benchmark of JSON-compatible binary serialization
  specifications](https://arxiv.org/abs/2201.03051)
- [A survey of JSON-compatible binary serialization
  specification](https://arxiv.org/abs/2201.02089)


================================================
FILE: cmake/FindBlaze.cmake
================================================
if(NOT Blaze_FOUND)
  if(JSONBINPACK_INSTALL)
    set(SOURCEMETA_BLAZE_INSTALL ON CACHE BOOL "enable installation")
  else()
    set(SOURCEMETA_BLAZE_INSTALL OFF CACHE BOOL "disable installation")
  endif()

  set(BLAZE_TEST OFF CACHE BOOL "disable")
  set(BLAZE_CONFIGURATION OFF CACHE BOOL "disable")
  set(BLAZE_CONTRIB OFF CACHE BOOL "disable")
  add_subdirectory("${PROJECT_SOURCE_DIR}/vendor/blaze")
  include(Sourcemeta)
  set(Blaze_FOUND ON)
endif()


================================================
FILE: cmake/FindCore.cmake
================================================
if(NOT Core_FOUND)
  if(JSONBINPACK_INSTALL)
    set(SOURCEMETA_CORE_INSTALL ON CACHE BOOL "enable installation")
  else()
    set(SOURCEMETA_CORE_INSTALL OFF CACHE BOOL "disable installation")
  endif()

  set(SOURCEMETA_CORE_TIME OFF CACHE BOOL "disable")
  set(SOURCEMETA_CORE_UUID OFF CACHE BOOL "disable")
  set(SOURCEMETA_CORE_GZIP OFF CACHE BOOL "disable")
  set(SOURCEMETA_CORE_MD5  OFF CACHE BOOL "disable")
  set(SOURCEMETA_CORE_JSONL OFF CACHE BOOL "disable JSONL support")
  set(SOURCEMETA_CORE_YAML ON CACHE BOOL "needed by Blaze")
  set(SOURCEMETA_CORE_EXTENSION_OPTIONS OFF CACHE BOOL "disable")
  set(SOURCEMETA_CORE_EXTENSION_BUILD OFF CACHE BOOL "disable")
  set(SOURCEMETA_CORE_CONTRIB_GOOGLETEST ${JSONBINPACK_TESTS} CACHE BOOL "GoogleTest")
  set(SOURCEMETA_CORE_CONTRIB_GOOGLEBENCHMARK OFF CACHE BOOL "GoogleBenchmark")
  add_subdirectory("${PROJECT_SOURCE_DIR}/vendor/core")
  include(Sourcemeta)
  set(Core_FOUND ON)
endif()


================================================
FILE: config.cmake.in
================================================
@PACKAGE_INIT@

# Support both casing styles
list(APPEND JSONBINPACK_COMPONENTS ${JSONBinPack_FIND_COMPONENTS})
list(APPEND JSONBINPACK_COMPONENTS ${jsonbinpack_FIND_COMPONENTS})
if(NOT JSONBINPACK_COMPONENTS)
  list(APPEND JSONBINPACK_COMPONENTS runtime)
  list(APPEND JSONBINPACK_COMPONENTS compiler)
endif()

include(CMakeFindDependencyMacro)
find_dependency(Core COMPONENTS numeric regex uri json jsonpointer jsonschema io)
find_dependency(Blaze COMPONENTS alterschema)

foreach(component ${JSONBINPACK_COMPONENTS})
  if(component STREQUAL "runtime")
    include("${CMAKE_CURRENT_LIST_DIR}/sourcemeta_jsonbinpack_runtime.cmake")
  elseif(component STREQUAL "compiler")
    include("${CMAKE_CURRENT_LIST_DIR}/sourcemeta_jsonbinpack_compiler.cmake")
  else()
    message(FATAL_ERROR "Unknown JSON BinPack component: ${component}")
  endif()
endforeach()

check_required_components("@PROJECT_NAME@")


================================================
FILE: doxygen/Doxyfile.in
================================================
# Doxyfile 1.9.3

# This file describes the settings to be used by the documentation system
# doxygen (www.doxygen.org) for a project.
#
# All text after a double hash (##) is considered a comment and is placed in
# front of the TAG it is preceding.
#
# All text after a single hash (#) is considered a comment and will be ignored.
# The format is:
# TAG = value [value, ...]
# For lists, items can also be appended using:
# TAG += value [value, ...]
# Values that contain spaces should be placed between quotes (\" \").

#---------------------------------------------------------------------------
# Project related configuration options
#---------------------------------------------------------------------------

# This tag specifies the encoding used for all characters in the configuration
# file that follow. The default is UTF-8 which is also the encoding used for all
# text before the first occurrence of this tag. Doxygen uses libiconv (or the
# iconv built into libc) for the transcoding. See
# https://www.gnu.org/software/libiconv/ for the list of possible encodings.
# The default value is: UTF-8.

DOXYFILE_ENCODING      = UTF-8

# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
# double-quotes, unless you are using Doxywizard) that should identify the
# project for which the documentation is generated. This name is used in the
# title of most generated pages and in a few other places.
# The default value is: My Project.

PROJECT_NAME           = JSON BinPack

# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER         = @CMAKE_PROJECT_VERSION@

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
# quick idea about the purpose of the project. Keep the description short.

PROJECT_BRIEF          = "@CMAKE_PROJECT_DESCRIPTION@"

# With the PROJECT_LOGO tag one can specify a logo or an icon that is included
# in the documentation. The maximum height of the logo should not exceed 55
# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
# the logo to the output directory.

PROJECT_LOGO           = @PROJECT_SOURCE_DIR@/doxygen/logo.png

# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
# into which the generated documentation will be written. If a relative path is
# entered, it will be relative to the location where doxygen was started. If
# left blank the current directory will be used.

OUTPUT_DIRECTORY       = @SOURCEMETA_TARGET_DOXYGEN_OUTPUT@

# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
# directories (in 2 levels) under the output directory of each output format and
# will distribute the generated files over these directories. Enabling this
# option can be useful when feeding doxygen a huge amount of source files, where
# putting all generated files in the same directory would otherwise causes
# performance problems for the file system.
# The default value is: NO.

CREATE_SUBDIRS         = NO

# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII
# characters to appear in the names of generated files. If set to NO, non-ASCII
# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode
# U+3044.
# The default value is: NO.

ALLOW_UNICODE_NAMES    = NO

# The OUTPUT_LANGUAGE tag is used to specify the language in which all
# documentation generated by doxygen is written. Doxygen will use this
# information to generate all constant output in the proper language.
# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese,
# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States),
# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian,
# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages),
# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian,
# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian,
# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish,
# Ukrainian and Vietnamese.
# The default value is: English.

OUTPUT_LANGUAGE        = English

# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member
# descriptions after the members that are listed in the file and class
# documentation (similar to Javadoc). Set to NO to disable this.
# The default value is: YES.

BRIEF_MEMBER_DESC      = YES

# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief
# description of a member or function before the detailed description
#
# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
# brief descriptions will be completely suppressed.
# The default value is: YES.

REPEAT_BRIEF           = YES

# This tag implements a quasi-intelligent brief description abbreviator that is
# used to form the text in various listings. Each string in this list, if found
# as the leading text of the brief description, will be stripped from the text
# and the result, after processing the whole list, is used as the annotated
# text. Otherwise, the brief description is used as-is. If left blank, the
# following values are used ($name is automatically replaced with the name of
# the entity):The $name class, The $name widget, The $name file, is, provides,
# specifies, contains, represents, a, an and the.

ABBREVIATE_BRIEF       = "The $name class" \
                         "The $name widget" \
                         "The $name file" \
                         is \
                         provides \
                         specifies \
                         contains \
                         represents \
                         a \
                         an \
                         the

# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
# doxygen will generate a detailed section even if there is only a brief
# description.
# The default value is: NO.

ALWAYS_DETAILED_SEC    = NO

# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
# inherited members of a class in the documentation of that class as if those
# members were ordinary class members. Constructors, destructors and assignment
# operators of the base classes will not be shown.
# The default value is: NO.

INLINE_INHERITED_MEMB  = NO

# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path
# before files name in the file list and in the header files. If set to NO the
# shortest path that makes the file name unique will be used
# The default value is: YES.

FULL_PATH_NAMES        = YES

# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.
# Stripping is only done if one of the specified strings matches the left-hand
# part of the path. The tag can be used to show relative paths in the file list.
# If left blank the directory from which doxygen is run is used as the path to
# strip.
#
# Note that you can specify absolute paths here, but also relative paths, which
# will be relative from the directory where doxygen is started.
# This tag requires that the tag FULL_PATH_NAMES is set to YES.

STRIP_FROM_PATH        = @PROJECT_SOURCE_DIR@/doxygen

# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
# path mentioned in the documentation of a class, which tells the reader which
# header file to include in order to use a class. If left blank only the name of
# the header file containing the class definition is used. Otherwise one should
# specify the list of include paths that are normally passed to the compiler
# using the -I flag.

STRIP_FROM_INC_PATH    =

# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
# less readable) file names. This can be useful is your file systems doesn't
# support long names like on DOS, Mac, or CD-ROM.
# The default value is: NO.

SHORT_NAMES            = NO

# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the
# first line (until the first dot) of a Javadoc-style comment as the brief
# description. If set to NO, the Javadoc-style will behave just like regular Qt-
# style comments (thus requiring an explicit @brief command for a brief
# description.)
# The default value is: NO.

JAVADOC_AUTOBRIEF      = NO

# If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line
# such as
# /***************
# as being the beginning of a Javadoc-style comment "banner". If set to NO, the
# Javadoc-style will behave just like regular comments and it will not be
# interpreted by doxygen.
# The default value is: NO.

JAVADOC_BANNER         = NO

# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first
# line (until the first dot) of a Qt-style comment as the brief description. If
# set to NO, the Qt-style will behave just like regular Qt-style comments (thus
# requiring an explicit \brief command for a brief description.)
# The default value is: NO.

QT_AUTOBRIEF           = NO

# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a
# multi-line C++ special comment block (i.e. a block of //! or /// comments) as
# a brief description. This used to be the default behavior. The new default is
# to treat a multi-line C++ comment block as a detailed description. Set this
# tag to YES if you prefer the old behavior instead.
#
# Note that setting this tag to YES also means that rational rose comments are
# not recognized any more.
# The default value is: NO.

MULTILINE_CPP_IS_BRIEF = NO

# By default Python docstrings are displayed as preformatted text and doxygen's
# special commands cannot be used. By setting PYTHON_DOCSTRING to NO the
# doxygen's special commands can be used and the contents of the docstring
# documentation blocks is shown as doxygen documentation.
# The default value is: YES.

PYTHON_DOCSTRING       = YES

# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the
# documentation from any documented member that it re-implements.
# The default value is: YES.

INHERIT_DOCS           = YES

# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new
# page for each member. If set to NO, the documentation of a member will be part
# of the file/class/namespace that contains it.
# The default value is: NO.

SEPARATE_MEMBER_PAGES  = NO

# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen
# uses this value to replace tabs by spaces in code fragments.
# Minimum value: 1, maximum value: 16, default value: 4.

TAB_SIZE               = 4

# This tag can be used to specify a number of aliases that act as commands in
# the documentation. An alias has the form:
# name=value
# For example adding
# "sideeffect=@par Side Effects:^^"
# will allow you to put the command \sideeffect (or @sideeffect) in the
# documentation, which will result in a user-defined paragraph with heading
# "Side Effects:". Note that you cannot put \n's in the value part of an alias
# to insert newlines (in the resulting output). You can put ^^ in the value part
# of an alias to insert a newline as if a physical newline was in the original
# file. When you need a literal { or } or , in the value part of an alias you
# have to escape them by means of a backslash (\), this can lead to conflicts
# with the commands \{ and \} for these it is advised to use the version @{ and
# @} or use a double escape (\\{ and \\})

ALIASES                =

# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
# only. Doxygen will then generate output that is more tailored for C. For
# instance, some of the names that are used will be different. The list of all
# members will be omitted, etc.
# The default value is: NO.

OPTIMIZE_OUTPUT_FOR_C  = NO

# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or
# Python sources only. Doxygen will then generate output that is more tailored
# for that language. For instance, namespaces will be presented as packages,
# qualified scopes will look different, etc.
# The default value is: NO.

OPTIMIZE_OUTPUT_JAVA   = NO

# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
# sources. Doxygen will then generate output that is tailored for Fortran.
# The default value is: NO.

OPTIMIZE_FOR_FORTRAN   = NO

# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
# sources. Doxygen will then generate output that is tailored for VHDL.
# The default value is: NO.

OPTIMIZE_OUTPUT_VHDL   = NO

# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice
# sources only. Doxygen will then generate output that is more tailored for that
# language. For instance, namespaces will be presented as modules, types will be
# separated into more groups, etc.
# The default value is: NO.

OPTIMIZE_OUTPUT_SLICE  = NO

# Doxygen selects the parser to use depending on the extension of the files it
# parses. With this tag you can assign which parser to use for a given
# extension. Doxygen has a built-in mapping, but you can override or extend it
# using this tag. The format is ext=language, where ext is a file extension, and
# language is one of the parsers supported by doxygen: IDL, Java, JavaScript,
# Csharp (C#), C, C++, Lex, D, PHP, md (Markdown), Objective-C, Python, Slice,
# VHDL, Fortran (fixed format Fortran: FortranFixed, free formatted Fortran:
# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser
# tries to guess whether the code is fixed or free formatted code, this is the
# default for Fortran type files). For instance to make doxygen treat .inc files
# as Fortran files (default is PHP), and .f files as C (default is Fortran),
# use: inc=Fortran f=C.
#
# Note: For files without extension you can use no_extension as a placeholder.
#
# Note that for custom extensions you also need to set FILE_PATTERNS otherwise
# the files are not read by doxygen. When specifying no_extension you should add
# * to the FILE_PATTERNS.
#
# Note see also the list of default file extension mappings.

EXTENSION_MAPPING      =

# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
# according to the Markdown format, which allows for more readable
# documentation. See https://daringfireball.net/projects/markdown/ for details.
# The output of markdown processing is further processed by doxygen, so you can
# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in
# case of backward compatibilities issues.
# The default value is: YES.

MARKDOWN_SUPPORT       = YES

# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up
# to that level are automatically included in the table of contents, even if
# they do not have an id attribute.
# Note: This feature currently applies only to Markdown headings.
# Minimum value: 0, maximum value: 99, default value: 5.
# This tag requires that the tag MARKDOWN_SUPPORT is set to YES.

TOC_INCLUDE_HEADINGS   = 5

# When enabled doxygen tries to link words that correspond to documented
# classes, or namespaces to their corresponding documentation. Such a link can
# be prevented in individual cases by putting a % sign in front of the word or
# globally by setting AUTOLINK_SUPPORT to NO.
# The default value is: YES.

AUTOLINK_SUPPORT       = YES

# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
# to include (a tag file for) the STL sources as input, then you should set this
# tag to YES in order to let doxygen match functions declarations and
# definitions whose arguments contain STL classes (e.g. func(std::string);
# versus func(std::string) {}). This also make the inheritance and collaboration
# diagrams that involve STL classes more complete and accurate.
# The default value is: NO.

BUILTIN_STL_SUPPORT    = NO

# If you use Microsoft's C++/CLI language, you should set this option to YES to
# enable parsing support.
# The default value is: NO.

CPP_CLI_SUPPORT        = NO

# Set the SIP_SUPPORT tag to YES if your project consists of sip (see:
# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen
# will parse them like normal C++ but will assume all classes use public instead
# of private inheritance when no explicit protection keyword is present.
# The default value is: NO.

SIP_SUPPORT            = NO

# For Microsoft's IDL there are propget and propput attributes to indicate
# getter and setter methods for a property. Setting this option to YES will make
# doxygen to replace the get and set methods by a property in the documentation.
# This will only work if the methods are indeed getting or setting a simple
# type. If this is not the case, or you want to show the methods anyway, you
# should set this option to NO.
# The default value is: YES.

IDL_PROPERTY_SUPPORT   = YES

# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
# tag is set to YES then doxygen will reuse the documentation of the first
# member in the group (if any) for the other members of the group. By default
# all members of a group must be documented explicitly.
# The default value is: NO.

DISTRIBUTE_GROUP_DOC   = NO

# If one adds a struct or class to a group and this option is enabled, then also
# any nested class or struct is added to the same group. By default this option
# is disabled and one has to add nested compounds explicitly via \ingroup.
# The default value is: NO.

GROUP_NESTED_COMPOUNDS = NO

# Set the SUBGROUPING tag to YES to allow class member groups of the same type
# (for instance a group of public functions) to be put as a subgroup of that
# type (e.g. under the Public Functions section). Set it to NO to prevent
# subgrouping. Alternatively, this can be done per class using the
# \nosubgrouping command.
# The default value is: YES.

SUBGROUPING            = YES

# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions
# are shown inside the group in which they are included (e.g. using \ingroup)
# instead of on a separate page (for HTML and Man pages) or section (for LaTeX
# and RTF).
#
# Note that this feature does not work in combination with
# SEPARATE_MEMBER_PAGES.
# The default value is: NO.

INLINE_GROUPED_CLASSES = NO

# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions
# with only public data fields or simple typedef fields will be shown inline in
# the documentation of the scope in which they are defined (i.e. file,
# namespace, or group documentation), provided this scope is documented. If set
# to NO, structs, classes, and unions are shown on a separate page (for HTML and
# Man pages) or section (for LaTeX and RTF).
# The default value is: NO.

INLINE_SIMPLE_STRUCTS  = NO

# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or
# enum is documented as struct, union, or enum with the name of the typedef. So
# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
# with name TypeT. When disabled the typedef will appear as a member of a file,
# namespace, or class. And the struct will be named TypeS. This can typically be
# useful for C code in case the coding convention dictates that all compound
# types are typedef'ed and only the typedef is referenced, never the tag name.
# The default value is: NO.

TYPEDEF_HIDES_STRUCT   = NO

# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
# cache is used to resolve symbols given their name and scope. Since this can be
# an expensive process and often the same symbol appears multiple times in the
# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small
# doxygen will become slower. If the cache is too large, memory is wasted. The
# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
# symbols. At the end of a run doxygen will report the cache usage and suggest
# the optimal cache size from a speed point of view.
# Minimum value: 0, maximum value: 9, default value: 0.

LOOKUP_CACHE_SIZE      = 0

# The NUM_PROC_THREADS specifies the number threads doxygen is allowed to use
# during processing. When set to 0 doxygen will based this on the number of
# cores available in the system. You can set it explicitly to a value larger
# than 0 to get more control over the balance between CPU load and processing
# speed. At this moment only the input processing can be done using multiple
# threads. Since this is still an experimental feature the default is set to 1,
# which effectively disables parallel processing. Please report any issues you
# encounter. Generating dot graphs in parallel is controlled by the
# DOT_NUM_THREADS setting.
# Minimum value: 0, maximum value: 32, default value: 1.

NUM_PROC_THREADS       = 1

#---------------------------------------------------------------------------
# Build related configuration options
#---------------------------------------------------------------------------

# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in
# documentation are documented, even if no documentation was available. Private
# class members and static file members will be hidden unless the
# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.
# Note: This will also disable the warnings about undocumented members that are
# normally produced when WARNINGS is set to YES.
# The default value is: NO.

EXTRACT_ALL            = NO

# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will
# be included in the documentation.
# The default value is: NO.

EXTRACT_PRIVATE        = NO

# If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual
# methods of a class will be included in the documentation.
# The default value is: NO.

EXTRACT_PRIV_VIRTUAL   = NO

# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal
# scope will be included in the documentation.
# The default value is: NO.

EXTRACT_PACKAGE        = NO

# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be
# included in the documentation.
# The default value is: NO.

EXTRACT_STATIC         = NO

# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined
# locally in source files will be included in the documentation. If set to NO,
# only classes defined in header files are included. Does not have any effect
# for Java sources.
# The default value is: YES.

EXTRACT_LOCAL_CLASSES  = YES

# This flag is only useful for Objective-C code. If set to YES, local methods,
# which are defined in the implementation section but not in the interface are
# included in the documentation. If set to NO, only methods in the interface are
# included.
# The default value is: NO.

EXTRACT_LOCAL_METHODS  = NO

# If this flag is set to YES, the members of anonymous namespaces will be
# extracted and appear in the documentation as a namespace called
# 'anonymous_namespace{file}', where file will be replaced with the base name of
# the file that contains the anonymous namespace. By default anonymous namespace
# are hidden.
# The default value is: NO.

EXTRACT_ANON_NSPACES   = NO

# If this flag is set to YES, the name of an unnamed parameter in a declaration
# will be determined by the corresponding definition. By default unnamed
# parameters remain unnamed in the output.
# The default value is: YES.

RESOLVE_UNNAMED_PARAMS = YES

# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
# undocumented members inside documented classes or files. If set to NO these
# members will be included in the various overviews, but no documentation
# section is generated. This option has no effect if EXTRACT_ALL is enabled.
# The default value is: NO.

HIDE_UNDOC_MEMBERS     = NO

# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
# undocumented classes that are normally visible in the class hierarchy. If set
# to NO, these classes will be included in the various overviews. This option
# has no effect if EXTRACT_ALL is enabled.
# The default value is: NO.

HIDE_UNDOC_CLASSES     = NO

# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend
# declarations. If set to NO, these declarations will be included in the
# documentation.
# The default value is: NO.

HIDE_FRIEND_COMPOUNDS  = NO

# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
# documentation blocks found inside the body of a function. If set to NO, these
# blocks will be appended to the function's detailed documentation block.
# The default value is: NO.

HIDE_IN_BODY_DOCS      = NO

# The INTERNAL_DOCS tag determines if documentation that is typed after a
# \internal command is included. If the tag is set to NO then the documentation
# will be excluded. Set it to YES to include the internal documentation.
# The default value is: NO.

INTERNAL_DOCS          = NO

# With the correct setting of option CASE_SENSE_NAMES doxygen will better be
# able to match the capabilities of the underlying filesystem. In case the
# filesystem is case sensitive (i.e. it supports files in the same directory
# whose names only differ in casing), the option must be set to YES to properly
# deal with such files in case they appear in the input. For filesystems that
# are not case sensitive the option should be be set to NO to properly deal with
# output files written for symbols that only differ in casing, such as for two
# classes, one named CLASS and the other named Class, and to also support
# references to files without having to specify the exact matching casing. On
# Windows (including Cygwin) and MacOS, users should typically set this option
# to NO, whereas on Linux or other Unix flavors it should typically be set to
# YES.
# The default value is: system dependent.

CASE_SENSE_NAMES       = NO

# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with
# their full class and namespace scopes in the documentation. If set to YES, the
# scope will be hidden.
# The default value is: NO.

HIDE_SCOPE_NAMES       = NO

# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will
# append additional text to a page's title, such as Class Reference. If set to
# YES the compound reference will be hidden.
# The default value is: NO.

HIDE_COMPOUND_REFERENCE= NO

# If the SHOW_HEADERFILE tag is set to YES then the documentation for a class
# will show which file needs to be included to use the class.
# The default value is: YES.

SHOW_HEADERFILE        = NO

# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of
# the files that are included by a file in the documentation of that file.
# The default value is: YES.

SHOW_INCLUDE_FILES     = YES

# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each
# grouped member an include statement to the documentation, telling the reader
# which file to include in order to use the member.
# The default value is: NO.

SHOW_GROUPED_MEMB_INC  = NO

# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include
# files with double quotes in the documentation rather than with sharp brackets.
# The default value is: NO.

FORCE_LOCAL_INCLUDES   = NO

# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the
# documentation for inline members.
# The default value is: YES.

INLINE_INFO            = YES

# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the
# (detailed) documentation of file and class members alphabetically by member
# name. If set to NO, the members will appear in declaration order.
# The default value is: YES.

SORT_MEMBER_DOCS       = YES

# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief
# descriptions of file, namespace and class members alphabetically by member
# name. If set to NO, the members will appear in declaration order. Note that
# this will also influence the order of the classes in the class list.
# The default value is: NO.

SORT_BRIEF_DOCS        = NO

# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the
# (brief and detailed) documentation of class members so that constructors and
# destructors are listed first. If set to NO the constructors will appear in the
# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS.
# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief
# member documentation.
# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting
# detailed member documentation.
# The default value is: NO.

SORT_MEMBERS_CTORS_1ST = NO

# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy
# of group names into alphabetical order. If set to NO the group names will
# appear in their defined order.
# The default value is: NO.

SORT_GROUP_NAMES       = NO

# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by
# fully-qualified names, including namespaces. If set to NO, the class list will
# be sorted only by class name, not including the namespace part.
# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
# Note: This option applies only to the class list, not to the alphabetical
# list.
# The default value is: NO.

SORT_BY_SCOPE_NAME     = NO

# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper
# type resolution of all parameters of a function it will reject a match between
# the prototype and the implementation of a member function even if there is
# only one candidate or it is obvious which candidate to choose by doing a
# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still
# accept a match between prototype and implementation in such cases.
# The default value is: NO.

STRICT_PROTO_MATCHING  = NO

# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo
# list. This list is created by putting \todo commands in the documentation.
# The default value is: YES.

GENERATE_TODOLIST      = YES

# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test
# list. This list is created by putting \test commands in the documentation.
# The default value is: YES.

GENERATE_TESTLIST      = YES

# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug
# list. This list is created by putting \bug commands in the documentation.
# The default value is: YES.

GENERATE_BUGLIST       = YES

# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO)
# the deprecated list. This list is created by putting \deprecated commands in
# the documentation.
# The default value is: YES.

GENERATE_DEPRECATEDLIST= YES

# The ENABLED_SECTIONS tag can be used to enable conditional documentation
# sections, marked by \if <section_label> ... \endif and \cond <section_label>
# ... \endcond blocks.

ENABLED_SECTIONS       =

# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the
# initial value of a variable or macro / define can have for it to appear in the
# documentation. If the initializer consists of more lines than specified here
# it will be hidden. Use a value of 0 to hide initializers completely. The
# appearance of the value of individual variables and macros / defines can be
# controlled using \showinitializer or \hideinitializer command in the
# documentation regardless of this setting.
# Minimum value: 0, maximum value: 10000, default value: 30.

MAX_INITIALIZER_LINES  = 30

# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at
# the bottom of the documentation of classes and structs. If set to YES, the
# list will mention the files that were used to generate the documentation.
# The default value is: YES.

SHOW_USED_FILES        = NO

# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This
# will remove the Files entry from the Quick Index and from the Folder Tree View
# (if specified).
# The default value is: YES.

SHOW_FILES             = NO

# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces
# page. This will remove the Namespaces entry from the Quick Index and from the
# Folder Tree View (if specified).
# The default value is: YES.

SHOW_NAMESPACES        = NO

# The FILE_VERSION_FILTER tag can be used to specify a program or script that
# doxygen should invoke to get the current version for each file (typically from
# the version control system). Doxygen will invoke the program by executing (via
# popen()) the command command input-file, where command is the value of the
# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided
# by doxygen. Whatever the program writes to standard output is used as the file
# version. For an example see the documentation.

FILE_VERSION_FILTER    =

# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
# by doxygen. The layout file controls the global structure of the generated
# output files in an output format independent way. To create the layout file
# that represents doxygen's defaults, run doxygen with the -l option. You can
# optionally specify a file name after the option, if omitted DoxygenLayout.xml
# will be used as the name of the layout file. See also section "Changing the
# layout of pages" for information.
#
# Note that if you run doxygen from a directory containing a file called
# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE
# tag is left empty.

LAYOUT_FILE            =

# The CITE_BIB_FILES tag can be used to specify one or more bib files containing
# the reference definitions. This must be a list of .bib files. The .bib
# extension is automatically appended if omitted. This requires the bibtex tool
# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info.
# For LaTeX the style of the bibliography can be controlled using
# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the
# search path. See also \cite for info how to create references.

CITE_BIB_FILES         =

#---------------------------------------------------------------------------
# Configuration options related to warning and progress messages
#---------------------------------------------------------------------------

# The QUIET tag can be used to turn on/off the messages that are generated to
# standard output by doxygen. If QUIET is set to YES this implies that the
# messages are off.
# The default value is: NO.

QUIET                  = NO

# The WARNINGS tag can be used to turn on/off the warning messages that are
# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES
# this implies that the warnings are on.
#
# Tip: Turn warnings on while writing the documentation.
# The default value is: YES.

WARNINGS               = YES

# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate
# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag
# will automatically be disabled.
# The default value is: YES.

WARN_IF_UNDOCUMENTED   = YES

# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for
# potential errors in the documentation, such as documenting some parameters in
# a documented function twice, or documenting parameters that don't exist or
# using markup commands wrongly.
# The default value is: YES.

WARN_IF_DOC_ERROR      = YES

# If WARN_IF_INCOMPLETE_DOC is set to YES, doxygen will warn about incomplete
# function parameter documentation. If set to NO, doxygen will accept that some
# parameters have no documentation without warning.
# The default value is: YES.

WARN_IF_INCOMPLETE_DOC = YES

# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that
# are documented, but have no documentation for their parameters or return
# value. If set to NO, doxygen will only warn about wrong parameter
# documentation, but not about the absence of documentation. If EXTRACT_ALL is
# set to YES then this flag will automatically be disabled. See also
# WARN_IF_INCOMPLETE_DOC
# The default value is: NO.

WARN_NO_PARAMDOC       = NO

# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when
# a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS
# then doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but
# at the end of the doxygen process doxygen will return with a non-zero status.
# Possible values are: NO, YES and FAIL_ON_WARNINGS.
# The default value is: NO.

WARN_AS_ERROR          = NO

# The WARN_FORMAT tag determines the format of the warning messages that doxygen
# can produce. The string should contain the $file, $line, and $text tags, which
# will be replaced by the file and line number from which the warning originated
# and the warning text. Optionally the format may contain $version, which will
# be replaced by the version of the file (if it could be obtained via
# FILE_VERSION_FILTER)
# The default value is: $file:$line: $text.

WARN_FORMAT            = "$file:$line: $text"

# The WARN_LOGFILE tag can be used to specify a file to which warning and error
# messages should be written. If left blank the output is written to standard
# error (stderr). In case the file specified cannot be opened for writing the
# warning and error messages are written to standard error. When as file - is
# specified the warning and error messages are written to standard output
# (stdout).

WARN_LOGFILE           =

#---------------------------------------------------------------------------
# Configuration options related to the input files
#---------------------------------------------------------------------------

# The INPUT tag is used to specify the files and/or directories that contain
# documented source files. You may enter file names like myfile.cpp or
# directories like /usr/src/myproject. Separate the files or directories with
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
# Note: If this tag is empty the current directory is searched.

INPUT                  = @PROJECT_SOURCE_DIR@/src
INPUT                  += @PROJECT_SOURCE_DIR@/doxygen/todo.markdown
INPUT                  += @PROJECT_SOURCE_DIR@/doxygen/schemas.markdown

# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
# libiconv (or the iconv built into libc) for the transcoding. See the libiconv
# documentation (see:
# https://www.gnu.org/software/libiconv/) for the list of possible encodings.
# The default value is: UTF-8.

INPUT_ENCODING         = UTF-8

# If the value of the INPUT tag contains directories, you can use the
# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and
# *.h) to filter out the source-files in the directories.
#
# Note that for custom extensions or not directly supported extensions you also
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
# read by doxygen.
#
# Note the list of default checked file patterns might differ from the list of
# default file extension mappings.
#
# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,
# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h,
# *.hh, *.hxx, *.hpp, *.h++, *.l, *.cs, *.d, *.php, *.php4, *.php5, *.phtml,
# *.inc, *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C
# comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd,
# *.vhdl, *.ucf, *.qsf and *.ice.

FILE_PATTERNS          = */include/*.h

# The RECURSIVE tag can be used to specify whether or not subdirectories should
# be searched for input files as well.
# The default value is: NO.

RECURSIVE              = YES

# The EXCLUDE tag can be used to specify files and/or directories that should be
# excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag.
#
# Note that relative paths are relative to the directory from which doxygen is
# run.

EXCLUDE                =

# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
# directories that are symbolic links (a Unix file system feature) are excluded
# from the input.
# The default value is: NO.

EXCLUDE_SYMLINKS       = NO

# If the value of the INPUT tag contains directories, you can use the
# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
# certain files from those directories.
#
# Note that the wildcards are matched against the file with absolute path, so to
# exclude all test directories for example use the pattern */test/*

EXCLUDE_PATTERNS       =

# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
# (namespaces, classes, functions, etc.) that should be excluded from the
# output. The symbol name can be a fully qualified name, a word, or if the
# wildcard * is used, a substring. Examples: ANamespace, AClass,
# ANamespace::AClass, ANamespace::*Test
#
# Note that the wildcards are matched against the file with absolute path, so to
# exclude all test directories use the pattern */test/*

EXCLUDE_SYMBOLS        =

# The EXAMPLE_PATH tag can be used to specify one or more files or directories
# that contain example code fragments that are included (see the \include
# command).

EXAMPLE_PATH           =

# If the value of the EXAMPLE_PATH tag contains directories, you can use the
# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
# *.h) to filter out the source-files in the directories. If left blank all
# files are included.

EXAMPLE_PATTERNS       = *

# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
# searched for input files to be used with the \include or \dontinclude commands
# irrespective of the value of the RECURSIVE tag.
# The default value is: NO.

EXAMPLE_RECURSIVE      = NO

# The IMAGE_PATH tag can be used to specify one or more files or directories
# that contain images that are to be included in the documentation (see the
# \image command).

IMAGE_PATH             = @PROJECT_SOURCE_DIR@/assets

# The INPUT_FILTER tag can be used to specify a program that doxygen should
# invoke to filter for each input file. Doxygen will invoke the filter program
# by executing (via popen()) the command:
#
# <filter> <input-file>
#
# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the
# name of an input file. Doxygen will then use the output that the filter
# program writes to standard output. If FILTER_PATTERNS is specified, this tag
# will be ignored.
#
# Note that the filter must not add or remove lines; it is applied before the
# code is scanned, but not when the output code is generated. If lines are added
# or removed, the anchors will not be placed correctly.
#
# Note that for custom extensions or not directly supported extensions you also
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
# properly processed by doxygen.

INPUT_FILTER           =

# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
# basis. Doxygen will compare the file name with each pattern and apply the
# filter if there is a match. The filters are a list of the form: pattern=filter
# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how
# filters are used. If the FILTER_PATTERNS tag is empty or if none of the
# patterns match the file name, INPUT_FILTER is applied.
#
# Note that for custom extensions or not directly supported extensions you also
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
# properly processed by doxygen.

FILTER_PATTERNS        =

# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
# INPUT_FILTER) will also be used to filter the input files that are used for
# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).
# The default value is: NO.

FILTER_SOURCE_FILES    = NO

# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and
# it is also possible to disable source filtering for a specific pattern using
# *.ext= (so without naming a filter).
# This tag requires that the tag FILTER_SOURCE_FILES is set to YES.

FILTER_SOURCE_PATTERNS =

# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that
# is part of the input, its contents will be placed on the main page
# (index.html). This can be useful if you have a project on for instance GitHub
# and want to reuse the introduction page also for the doxygen output.

USE_MDFILE_AS_MAINPAGE = @PROJECT_SOURCE_DIR@/doxygen/todo.markdown

#---------------------------------------------------------------------------
# Configuration options related to source browsing
#---------------------------------------------------------------------------

# If the SOURCE_BROWSER tag is set to YES then a list of source files will be
# generated. Documented entities will be cross-referenced with these sources.
#
# Note: To get rid of all source code in the generated output, make sure that
# also VERBATIM_HEADERS is set to NO.
# The default value is: NO.

SOURCE_BROWSER         = NO

# Setting the INLINE_SOURCES tag to YES will include the body of functions,
# classes and enums directly into the documentation.
# The default value is: NO.

INLINE_SOURCES         = NO

# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any
# special comment blocks from generated source code fragments. Normal C, C++ and
# Fortran comments will always remain visible.
# The default value is: YES.

STRIP_CODE_COMMENTS    = YES

# If the REFERENCED_BY_RELATION tag is set to YES then for each documented
# entity all documented functions referencing it will be listed.
# The default value is: NO.

REFERENCED_BY_RELATION = NO

# If the REFERENCES_RELATION tag is set to YES then for each documented function
# all documented entities called/used by that function will be listed.
# The default value is: NO.

REFERENCES_RELATION    = NO

# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set
# to YES then the hyperlinks from functions in REFERENCES_RELATION and
# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will
# link to the documentation.
# The default value is: YES.

REFERENCES_LINK_SOURCE = YES

# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the
# source code will show a tooltip with additional information such as prototype,
# brief description and links to the definition and documentation. Since this
# will make the HTML file larger and loading of large files a bit slower, you
# can opt to disable this feature.
# The default value is: YES.
# This tag requires that the tag SOURCE_BROWSER is set to YES.

SOURCE_TOOLTIPS        = YES

# If the USE_HTAGS tag is set to YES then the references to source code will
# point to the HTML generated by the htags(1) tool instead of doxygen built-in
# source browser. The htags tool is part of GNU's global source tagging system
# (see https://www.gnu.org/software/global/global.html). You will need version
# 4.8.6 or higher.
#
# To use it do the following:
# - Install the latest version of global
# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file
# - Make sure the INPUT points to the root of the source tree
# - Run doxygen as normal
#
# Doxygen will invoke htags (and that will in turn invoke gtags), so these
# tools must be available from the command line (i.e. in the search path).
#
# The result: instead of the source browser generated by doxygen, the links to
# source code will now point to the output of htags.
# The default value is: NO.
# This tag requires that the tag SOURCE_BROWSER is set to YES.

USE_HTAGS              = NO

# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a
# verbatim copy of the header file for each class for which an include is
# specified. Set to NO to disable this.
# See also: Section \class.
# The default value is: YES.

VERBATIM_HEADERS       = YES

#---------------------------------------------------------------------------
# Configuration options related to the alphabetical class index
#---------------------------------------------------------------------------

# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all
# compounds will be generated. Enable this if the project contains a lot of
# classes, structs, unions or interfaces.
# The default value is: YES.

ALPHABETICAL_INDEX     = YES

# In case all classes in a project start with a common prefix, all classes will
# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
# can be used to specify a prefix (or a list of prefixes) that should be ignored
# while generating the index headers.
# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.

IGNORE_PREFIX          =

#---------------------------------------------------------------------------
# Configuration options related to the HTML output
#---------------------------------------------------------------------------

# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output
# The default value is: YES.

GENERATE_HTML          = YES

# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
# it.
# The default directory is: html.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_OUTPUT            = .

# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each
# generated HTML page (for example: .htm, .php, .asp).
# The default value is: .html.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_FILE_EXTENSION    = .html

# The HTML_HEADER tag can be used to specify a user-defined HTML header file for
# each generated HTML page. If the tag is left blank doxygen will generate a
# standard header.
#
# To get valid HTML the header file that includes any scripts and style sheets
# that doxygen needs, which is dependent on the configuration options used (e.g.
# the setting GENERATE_TREEVIEW). It is highly recommended to start with a
# default header using
# doxygen -w html new_header.html new_footer.html new_stylesheet.css
# YourConfigFile
# and then modify the file new_header.html. See also section "Doxygen usage"
# for information on how to generate the default header that doxygen normally
# uses.
# Note: The header is subject to change so you typically have to regenerate the
# default header when upgrading to a newer version of doxygen. For a description
# of the possible markers and block names see the documentation.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_HEADER            =

# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
# generated HTML page. If the tag is left blank doxygen will generate a standard
# footer. See HTML_HEADER for more information on how to generate a default
# footer and what special commands can be used inside the footer. See also
# section "Doxygen usage" for information on how to generate the default footer
# that doxygen normally uses.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_FOOTER            =

# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
# sheet that is used by each HTML page. It can be used to fine-tune the look of
# the HTML output. If left blank doxygen will generate a default style sheet.
# See also section "Doxygen usage" for information on how to generate the style
# sheet that doxygen normally uses.
# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as
# it is more robust and this tag (HTML_STYLESHEET) will in the future become
# obsolete.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_STYLESHEET        =

# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined
# cascading style sheets that are included after the standard style sheets
# created by doxygen. Using this option one can overrule certain style aspects.
# This is preferred over using HTML_STYLESHEET since it does not replace the
# standard style sheet and is therefore more robust against future updates.
# Doxygen will copy the style sheet files to the output directory.
# Note: The order of the extra style sheet files is of importance (e.g. the last
# style sheet in the list overrules the setting of the previous ones in the
# list). For an example see the documentation.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_EXTRA_STYLESHEET  =

# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
# other source files which should be copied to the HTML output directory. Note
# that these files will be copied to the base HTML output directory. Use the
# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
# files. In the HTML_STYLESHEET file, use the file name only. Also note that the
# files will be copied as-is; there are no commands or markers available.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_EXTRA_FILES       =

# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen
# will adjust the colors in the style sheet and background images according to
# this color. Hue is specified as an angle on a color-wheel, see
# https://en.wikipedia.org/wiki/Hue for more information. For instance the value
# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300
# purple, and 360 is red again.
# Minimum value: 0, maximum value: 359, default value: 220.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_COLORSTYLE_HUE    = 220

# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors
# in the HTML output. For a value of 0 the output will use gray-scales only. A
# value of 255 will produce the most vivid colors.
# Minimum value: 0, maximum value: 255, default value: 100.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_COLORSTYLE_SAT    = 100

# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the
# luminance component of the colors in the HTML output. Values below 100
# gradually make the output lighter, whereas values above 100 make the output
# darker. The value divided by 100 is the actual gamma applied, so 80 represents
# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not
# change the gamma.
# Minimum value: 40, maximum value: 240, default value: 80.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_COLORSTYLE_GAMMA  = 80

# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
# page will contain the date and time when the page was generated. Setting this
# to YES can help to show when doxygen was last run and thus if the
# documentation is up to date.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_TIMESTAMP         = NO

# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML
# documentation will contain a main index with vertical navigation menus that
# are dynamically created via JavaScript. If disabled, the navigation index will
# consists of multiple levels of tabs that are statically embedded in every HTML
# page. Disable this option to support browsers that do not have JavaScript,
# like the Qt help browser.
# The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_DYNAMIC_MENUS     = YES

# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
# documentation will contain sections that can be hidden and shown after the
# page has loaded.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_DYNAMIC_SECTIONS  = NO

# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries
# shown in the various tree structured indices initially; the user can expand
# and collapse entries dynamically later on. Doxygen will expand the tree to
# such a level that at most the specified number of entries are visible (unless
# a fully collapsed tree already exceeds this amount). So setting the number of
# entries 1 will produce a full collapsed tree by default. 0 is a special value
# representing an infinite number of entries and will result in a full expanded
# tree by default.
# Minimum value: 0, maximum value: 9999, default value: 100.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_INDEX_NUM_ENTRIES = 100

# If the GENERATE_DOCSET tag is set to YES, additional index files will be
# generated that can be used as input for Apple's Xcode 3 integrated development
# environment (see:
# https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To
# create a documentation set, doxygen will generate a Makefile in the HTML
# output directory. Running make will produce the docset in that directory and
# running make install will install the docset in
# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at
# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy
# genXcode/_index.html for more information.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

GENERATE_DOCSET        = NO

# This tag determines the name of the docset feed. A documentation feed provides
# an umbrella under which multiple documentation sets from a single provider
# (such as a company or product suite) can be grouped.
# The default value is: Doxygen generated docs.
# This tag requires that the tag GENERATE_DOCSET is set to YES.

DOCSET_FEEDNAME        = "Doxygen generated docs"

# This tag determines the URL of the docset feed. A documentation feed provides
# an umbrella under which multiple documentation sets from a single provider
# (such as a company or product suite) can be grouped.
# This tag requires that the tag GENERATE_DOCSET is set to YES.

DOCSET_FEEDURL         =

# This tag specifies a string that should uniquely identify the documentation
# set bundle. This should be a reverse domain-name style string, e.g.
# com.mycompany.MyDocSet. Doxygen will append .docset to the name.
# The default value is: org.doxygen.Project.
# This tag requires that the tag GENERATE_DOCSET is set to YES.

DOCSET_BUNDLE_ID       = com.sourcemeta.jsonbinpack

# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify
# the documentation publisher. This should be a reverse domain-name style
# string, e.g. com.mycompany.MyDocSet.documentation.
# The default value is: org.doxygen.Publisher.
# This tag requires that the tag GENERATE_DOCSET is set to YES.

DOCSET_PUBLISHER_ID    = com.sourcemeta.docs

# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher.
# The default value is: Publisher.
# This tag requires that the tag GENERATE_DOCSET is set to YES.

DOCSET_PUBLISHER_NAME  = Sourcemeta

# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three
# additional HTML index files: index.hhp, index.hhc, and index.hhk. The
# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop
# on Windows. In the beginning of 2021 Microsoft took the original page, with
# a.o. the download links, offline the HTML help workshop was already many years
# in maintenance mode). You can download the HTML help workshop from the web
# archives at Installation executable (see:
# http://web.archive.org/web/20160201063255/http://download.microsoft.com/downlo
# ad/0/A/9/0A939EF6-E31C-430F-A3DF-DFAE7960D564/htmlhelp.exe).
#
# The HTML Help Workshop contains a compiler that can convert all HTML output
# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML
# files are now used as the Windows 98 help format, and will replace the old
# Windows help format (.hlp) on all Windows platforms in the future. Compressed
# HTML files also contain an index, a table of contents, and you can search for
# words in the documentation. The HTML workshop also contains a viewer for
# compressed HTML files.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

GENERATE_HTMLHELP      = NO

# The CHM_FILE tag can be used to specify the file name of the resulting .chm
# file. You can add a path in front of the file if the result should not be
# written to the html output directory.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.

CHM_FILE               =

# The HHC_LOCATION tag can be used to specify the location (absolute path
# including file name) of the HTML help compiler (hhc.exe). If non-empty,
# doxygen will try to run the HTML help compiler on the generated index.hhp.
# The file has to be specified with full path.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.

HHC_LOCATION           =

# The GENERATE_CHI flag controls if a separate .chi index file is generated
# (YES) or that it should be included in the main .chm file (NO).
# The default value is: NO.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.

GENERATE_CHI           = NO

# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc)
# and project file content.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.

CHM_INDEX_ENCODING     =

# The BINARY_TOC flag controls whether a binary table of contents is generated
# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it
# enables the Previous and Next buttons.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.

BINARY_TOC             = NO

# The TOC_EXPAND flag can be set to YES to add extra items for group members to
# the table of contents of the HTML help documentation and to the tree view.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.

TOC_EXPAND             = NO

# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that
# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help
# (.qch) of the generated HTML documentation.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

GENERATE_QHP           = NO

# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify
# the file name of the resulting .qch file. The path specified is relative to
# the HTML output folder.
# This tag requires that the tag GENERATE_QHP is set to YES.

QCH_FILE               =

# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help
# Project output. For more information please see Qt Help Project / Namespace
# (see:
# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace).
# The default value is: org.doxygen.Project.
# This tag requires that the tag GENERATE_QHP is set to YES.

QHP_NAMESPACE          = com.sourcemeta.jsonbinpack

# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt
# Help Project output. For more information please see Qt Help Project / Virtual
# Folders (see:
# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders).
# The default value is: doc.
# This tag requires that the tag GENERATE_QHP is set to YES.

QHP_VIRTUAL_FOLDER     = doc

# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom
# filter to add. For more information please see Qt Help Project / Custom
# Filters (see:
# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters).
# This tag requires that the tag GENERATE_QHP is set to YES.

QHP_CUST_FILTER_NAME   =

# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the
# custom filter to add. For more information please see Qt Help Project / Custom
# Filters (see:
# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters).
# This tag requires that the tag GENERATE_QHP is set to YES.

QHP_CUST_FILTER_ATTRS  =

# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
# project's filter section matches. Qt Help Project / Filter Attributes (see:
# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes).
# This tag requires that the tag GENERATE_QHP is set to YES.

QHP_SECT_FILTER_ATTRS  =

# The QHG_LOCATION tag can be used to specify the location (absolute path
# including file name) of Qt's qhelpgenerator. If non-empty doxygen will try to
# run qhelpgenerator on the generated .qhp file.
# This tag requires that the tag GENERATE_QHP is set to YES.

QHG_LOCATION           =

# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be
# generated, together with the HTML files, they form an Eclipse help plugin. To
# install this plugin and make it available under the help contents menu in
# Eclipse, the contents of the directory containing the HTML and XML files needs
# to be copied into the plugins directory of eclipse. The name of the directory
# within the plugins directory should be the same as the ECLIPSE_DOC_ID value.
# After copying Eclipse needs to be restarted before the help appears.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

GENERATE_ECLIPSEHELP   = NO

# A unique identifier for the Eclipse help plugin. When installing the plugin
# the directory name containing the HTML and XML files should also have this
# name. Each documentation set should have its own identifier.
# The default value is: org.doxygen.Project.
# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES.

ECLIPSE_DOC_ID         = com.sourcemeta.jsonbinpack

# If you want full control over the layout of the generated HTML pages it might
# be necessary to disable the index and replace it with your own. The
# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top
# of each HTML page. A value of NO enables the index and the value YES disables
# it. Since the tabs in the index contain the same information as the navigation
# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

DISABLE_INDEX          = YES

# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
# structure should be generated to display hierarchical information. If the tag
# value is set to YES, a side panel will be generated containing a tree-like
# index structure (just like the one that is generated for HTML Help). For this
# to work a browser that supports JavaScript, DHTML, CSS and frames is required
# (i.e. any modern browser). Windows users are probably better off using the
# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can
# further fine tune the look of the index (see "Fine-tuning the output"). As an
# example, the default style sheet generated by doxygen has an example that
# shows how to put an image at the root of the tree instead of the PROJECT_NAME.
# Since the tree basically has the same information as the tab index, you could
# consider setting DISABLE_INDEX to YES when enabling this option.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

GENERATE_TREEVIEW      = YES

# When both GENERATE_TREEVIEW and DISABLE_INDEX are set to YES, then the
# FULL_SIDEBAR option determines if the side bar is limited to only the treeview
# area (value NO) or if it should extend to the full height of the window (value
# YES). Setting this to YES gives a layout similar to
# https://docs.readthedocs.io with more room for contents, but less room for the
# project logo, title, and description. If either GENERATE_TREEVIEW or
# DISABLE_INDEX is set to NO, this option has no effect.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

FULL_SIDEBAR           = NO

# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that
# doxygen will group on one line in the generated HTML documentation.
#
# Note that a value of 0 will completely suppress the enum values from appearing
# in the overview section.
# Minimum value: 0, maximum value: 20, default value: 4.
# This tag requires that the tag GENERATE_HTML is set to YES.

ENUM_VALUES_PER_LINE   = 4

# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used
# to set the initial width (in pixels) of the frame in which the tree is shown.
# Minimum value: 0, maximum value: 1500, default value: 250.
# This tag requires that the tag GENERATE_HTML is set to YES.

TREEVIEW_WIDTH         = 250

# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to
# external symbols imported via tag files in a separate window.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

EXT_LINKS_IN_WINDOW    = NO

# If the OBFUSCATE_EMAILS tag is set to YES, doxygen will obfuscate email
# addresses.
# The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES.

OBFUSCATE_EMAILS       = YES

# If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg
# tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see
# https://inkscape.org) to generate formulas as SVG images instead of PNGs for
# the HTML output. These images will generally look nicer at scaled resolutions.
# Possible values are: png (the default) and svg (looks nicer but requires the
# pdf2svg or inkscape tool).
# The default value is: png.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_FORMULA_FORMAT    = png

# Use this tag to change the font size of LaTeX formulas included as images in
# the HTML documentation. When you change the font size after a successful
# doxygen run you need to manually remove any form_*.png images from the HTML
# output directory to force them to be regenerated.
# Minimum value: 8, maximum value: 50, default value: 10.
# This tag requires that the tag GENERATE_HTML is set to YES.

FORMULA_FONTSIZE       = 20

# Use the FORMULA_TRANSPARENT tag to determine whether or not the images
# generated for formulas are transparent PNGs. Transparent PNGs are not
# supported properly for IE 6.0, but are supported on all modern browsers.
#
# Note that when changing this option you need to delete any form_*.png files in
# the HTML output directory before the changes have effect.
# The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES.

FORMULA_TRANSPARENT    = YES

# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands
# to create new LaTeX commands to be used in formulas as building blocks. See
# the section "Including formulas" for details.

FORMULA_MACROFILE      =

# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see
# https://www.mathjax.org) which uses client side JavaScript for the rendering
# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX
# installed or if you want to formulas look prettier in the HTML output. When
# enabled you may also need to install MathJax separately and configure the path
# to it using the MATHJAX_RELPATH option.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

USE_MATHJAX            = NO

# With MATHJAX_VERSION it is possible to specify the MathJax version to be used.
# Note that the different versions of MathJax have different requirements with
# regards to the different settings, so it is possible that also other MathJax
# settings have to be changed when switching between the different MathJax
# versions.
# Possible values are: MathJax_2 and MathJax_3.
# The default value is: MathJax_2.
# This tag requires that the tag USE_MATHJAX is set to YES.

MATHJAX_VERSION        = MathJax_2

# When MathJax is enabled you can set the default output format to be used for
# the MathJax output. For more details about the output format see MathJax
# version 2 (see:
# http://docs.mathjax.org/en/v2.7-latest/output.html) and MathJax version 3
# (see:
# http://docs.mathjax.org/en/latest/web/components/output.html).
# Possible values are: HTML-CSS (which is slower, but has the best
# compatibility. This is the name for Mathjax version 2, for MathJax version 3
# this will be translated into chtml), NativeMML (i.e. MathML. Only supported
# for NathJax 2. For MathJax version 3 chtml will be used instead.), chtml (This
# is the name for Mathjax version 3, for MathJax version 2 this will be
# translated into HTML-CSS) and SVG.
# The default value is: HTML-CSS.
# This tag requires that the tag USE_MATHJAX is set to YES.

MATHJAX_FORMAT         = HTML-CSS

# When MathJax is enabled you need to specify the location relative to the HTML
# output directory using the MATHJAX_RELPATH option. The destination directory
# should contain the MathJax.js script. For instance, if the mathjax directory
# is located at the same level as the HTML output directory, then
# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax
# Content Delivery Network so you can quickly see the result without installing
# MathJax. However, it is strongly recommended to install a local copy of
# MathJax from https://www.mathjax.org before deployment. The default value is:
# - in case of MathJax version 2: https://cdn.jsdelivr.net/npm/mathjax@2
# - in case of MathJax version 3: https://cdn.jsdelivr.net/npm/mathjax@3
# This tag requires that the tag USE_MATHJAX is set to YES.

MATHJAX_RELPATH        =

# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax
# extension names that should be enabled during MathJax rendering. For example
# for MathJax version 2 (see https://docs.mathjax.org/en/v2.7-latest/tex.html
# #tex-and-latex-extensions):
# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols
# For example for MathJax version 3 (see
# http://docs.mathjax.org/en/latest/input/tex/extensions/index.html):
# MATHJAX_EXTENSIONS = ams
# This tag requires that the tag USE_MATHJAX is set to YES.

MATHJAX_EXTENSIONS     =

# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
# of code that will be used on startup of the MathJax code. See the MathJax site
# (see:
# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an
# example see the documentation.
# This tag requires that the tag USE_MATHJAX is set to YES.

MATHJAX_CODEFILE       =

# When the SEARCHENGINE tag is enabled doxygen will generate a search box for
# the HTML output. The underlying search engine uses javascript and DHTML and
# should work on any modern browser. Note that when using HTML help
# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET)
# there is already a search function so this one should typically be disabled.
# For large projects the javascript based search engine can be slow, then
# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to
# search using the keyboard; to jump to the search box use <access key> + S
# (what the <access key> is depends on the OS and browser, but it is typically
# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down
# key> to jump into the search results window, the results can be navigated
# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel
# the search. The filter options can be selected when the cursor is inside the
# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys>
# to select a filter and <Enter> or <escape> to activate or cancel the filter
# option.
# The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES.

SEARCHENGINE           = YES

# When the SERVER_BASED_SEARCH tag is enabled the search engine will be
# implemented using a web server instead of a web client using JavaScript. There
# are two flavors of web server based searching depending on the EXTERNAL_SEARCH
# setting. When disabled, doxygen will generate a PHP script for searching and
# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing
# and searching needs to be provided by external tools. See the section
# "External Indexing and Searching" for details.
# The default value is: NO.
# This tag requires that the tag SEARCHENGINE is set to YES.

SERVER_BASED_SEARCH    = NO

# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP
# script for searching. Instead the search results are written to an XML file
# which needs to be processed by an external indexer. Doxygen will invoke an
# external search engine pointed to by the SEARCHENGINE_URL option to obtain the
# search results.
#
# Doxygen ships with an example indexer (doxyindexer) and search engine
# (doxysearch.cgi) which are based on the open source search engine library
# Xapian (see:
# https://xapian.org/).
#
# See the section "External Indexing and Searching" for details.
# The default value is: NO.
# This tag requires that the tag SEARCHENGINE is set to YES.

EXTERNAL_SEARCH        = NO

# The SEARCHENGINE_URL should point to a search engine hosted by a web server
# which will return the search results when EXTERNAL_SEARCH is enabled.
#
# Doxygen ships with an example indexer (doxyindexer) and search engine
# (doxysearch.cgi) which are based on the open source search engine library
# Xapian (see:
# https://xapian.org/). See the section "External Indexing and Searching" for
# details.
# This tag requires that the tag SEARCHENGINE is set to YES.

SEARCHENGINE_URL       =

# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed
# search data is written to a file for indexing by an external tool. With the
# SEARCHDATA_FILE tag the name of this file can be specified.
# The default file is: searchdata.xml.
# This tag requires that the tag SEARCHENGINE is set to YES.

SEARCHDATA_FILE        = searchdata.xml

# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the
# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is
# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple
# projects and redirect the results back to the right project.
# This tag requires that the tag SEARCHENGINE is set to YES.

EXTERNAL_SEARCH_ID     =

# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen
# projects other than the one defined by this configuration file, but that are
# all added to the same external search index. Each project needs to have a
# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of
# to a relative location where the documentation can be found. The format is:
# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ...
# This tag requires that the tag SEARCHENGINE is set to YES.

EXTRA_SEARCH_MAPPINGS  =

#---------------------------------------------------------------------------
# Configuration options related to the LaTeX output
#---------------------------------------------------------------------------

# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output.
# The default value is: YES.

GENERATE_LATEX         = NO

# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
# it.
# The default directory is: latex.
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_OUTPUT           = latex

# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
# invoked.
#
# Note that when not enabling USE_PDFLATEX the default is latex when enabling
# USE_PDFLATEX the default is pdflatex and when in the later case latex is
# chosen this is overwritten by pdflatex. For specific output languages the
# default can have been set differently, this depends on the implementation of
# the output language.
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_CMD_NAME         =

# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate
# index for LaTeX.
# Note: This tag is used in the Makefile / make.bat.
# See also: LATEX_MAKEINDEX_CMD for the part in the generated output file
# (.tex).
# The default file is: makeindex.
# This tag requires that the tag GENERATE_LATEX is set to YES.

MAKEINDEX_CMD_NAME     = makeindex

# The LATEX_MAKEINDEX_CMD tag can be used to specify the command name to
# generate index for LaTeX. In case there is no backslash (\) as first character
# it will be automatically added in the LaTeX code.
# Note: This tag is used in the generated output file (.tex).
# See also: MAKEINDEX_CMD_NAME for the part in the Makefile / make.bat.
# The default value is: makeindex.
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_MAKEINDEX_CMD    = makeindex

# If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX
# documents. This may be useful for small projects and may help to save some
# trees in general.
# The default value is: NO.
# This tag requires that the tag GENERATE_LATEX is set to YES.

COMPACT_LATEX          = NO

# The PAPER_TYPE tag can be used to set the paper type that is used by the
# printer.
# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x
# 14 inches) and executive (7.25 x 10.5 inches).
# The default value is: a4.
# This tag requires that the tag GENERATE_LATEX is set to YES.

PAPER_TYPE             = a4

# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names
# that should be included in the LaTeX output. The package can be specified just
# by its name or with the correct syntax as to be used with the LaTeX
# \usepackage command. To get the times font for instance you can specify :
# EXTRA_PACKAGES=times or EXTRA_PACKAGES={times}
# To use the option intlimits with the amsmath package you can specify:
# EXTRA_PACKAGES=[intlimits]{amsmath}
# If left blank no extra packages will be included.
# This tag requires that the tag GENERATE_LATEX is set to YES.

EXTRA_PACKAGES         = amsfonts

# The LATEX_HEADER tag can be used to specify a user-defined LaTeX header for
# the generated LaTeX document. The header should contain everything until the
# first chapter. If it is left blank doxygen will generate a standard header. It
# is highly recommended to start with a default header using
# doxygen -w latex new_header.tex new_footer.tex new_stylesheet.sty
# and then modify the file new_header.tex. See also section "Doxygen usage" for
# information on how to generate the default header that doxygen normally uses.
#
# Note: Only use a user-defined header if you know what you are doing!
# Note: The header is subject to change so you typically have to regenerate the
# default header when upgrading to a newer version of doxygen. The following
# commands have a special meaning inside the header (and footer): For a
# description of the possible markers and block names see the documentation.
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_HEADER           =

# The LATEX_FOOTER tag can be used to specify a user-defined LaTeX footer for
# the generated LaTeX document. The footer should contain everything after the
# last chapter. If it is left blank doxygen will generate a standard footer. See
# LATEX_HEADER for more information on how to generate a default footer and what
# special commands can be used inside the footer. See also section "Doxygen
# usage" for information on how to generate the default footer that doxygen
# normally uses. Note: Only use a user-defined footer if you know what you are
# doing!
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_FOOTER           =

# The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined
# LaTeX style sheets that are included after the standard style sheets created
# by doxygen. Using this option one can overrule certain style aspects. Doxygen
# will copy the style sheet files to the output directory.
# Note: The order of the extra style sheet files is of importance (e.g. the last
# style sheet in the list overrules the setting of the previous ones in the
# list).
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_EXTRA_STYLESHEET =

# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or
# other source files which should be copied to the LATEX_OUTPUT output
# directory. Note that the files will be copied as-is; there are no commands or
# markers available.
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_EXTRA_FILES      =

# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is
# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will
# contain links (just like the HTML output) instead of page references. This
# makes the output suitable for online browsing using a PDF viewer.
# The default value is: YES.
# This tag requires that the tag GENERATE_LATEX is set to YES.

PDF_HYPERLINKS         = YES

# If the USE_PDFLATEX tag is set to YES, doxygen will use the engine as
# specified with LATEX_CMD_NAME to generate the PDF file directly from the LaTeX
# files. Set this option to YES, to get a higher quality PDF documentation.
#
# See also section LATEX_CMD_NAME for selecting the engine.
# The default value is: YES.
# This tag requires that the tag GENERATE_LATEX is set to YES.

USE_PDFLATEX           = YES

# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode
# command to the generated LaTeX files. This will instruct LaTeX to keep running
# if errors occur, instead of asking the user for help.
# The default value is: NO.
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_BATCHMODE        = NO

# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the
# index chapters (such as File Index, Compound Index, etc.) in the output.
# The default value is: NO.
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_HIDE_INDICES     = NO

# The LATEX_BIB_STYLE tag can be used to specify the style to use for the
# bibliography, e.g. plainnat, or ieeetr. See
# https://en.wikipedia.org/wiki/BibTeX and \cite for more info.
# The default value is: plain.
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_BIB_STYLE        = plain

# If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated
# page will contain the date and time when the page was generated. Setting this
# to NO can help when comparing the output of multiple runs.
# The default value is: NO.
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_TIMESTAMP        = NO

# The LATEX_EMOJI_DIRECTORY tag is used to specify the (relative or absolute)
# path from which the emoji images will be read. If a relative path is entered,
# it will be relative to the LATEX_OUTPUT directory. If left blank the
# LATEX_OUTPUT directory will be used.
# This tag requires that the tag GENERATE_LATEX is set to YES.

LATEX_EMOJI_DIRECTORY  =

#---------------------------------------------------------------------------
# Configuration options related to the RTF output
#---------------------------------------------------------------------------

# If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The
# RTF output is optimized for Word 97 and may not look too pretty with other RTF
# readers/editors.
# The default value is: NO.

GENERATE_RTF           = NO

# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
# it.
# The default directory is: rtf.
# This tag requires that the tag GENERATE_RTF is set to YES.

RTF_OUTPUT             = rtf

# If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF
# documents. This may be useful for small projects and may help to save some
# trees in general.
# The default value is: NO.
# This tag requires that the tag GENERATE_RTF is set to YES.

COMPACT_RTF            = NO

# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will
# contain hyperlink fields. The RTF file will contain links (just like the HTML
# output) instead of page references. This makes the output suitable for online
# browsing using Word or some other Word compatible readers that support those
# fields.
#
# Note: WordPad (write) and others do not support links.
# The default value is: NO.
# This tag requires that the tag GENERATE_RTF is set to YES.

RTF_HYPERLINKS         = NO

# Load stylesheet definitions from file. Syntax is similar to doxygen's
# configuration file, i.e. a series of assignments. You only have to provide
# replacements, missing definitions are set to their default value.
#
# See also section "Doxygen usage" for information on how to generate the
# default style sheet that doxygen normally uses.
# This tag requires that the tag GENERATE_RTF is set to YES.

RTF_STYLESHEET_FILE    =

# Set optional variables used in the generation of an RTF document. Syntax is
# similar to doxygen's configuration file. A template extensions file can be
# generated using doxygen -e rtf extensionFile.
# This tag requires that the tag GENERATE_RTF is set to YES.

RTF_EXTENSIONS_FILE    =

#---------------------------------------------------------------------------
# Configuration options related to the man page output
#---------------------------------------------------------------------------

# If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for
# classes and files.
# The default value is: NO.

GENERATE_MAN           = NO

# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
# it. A directory man3 will be created inside the directory specified by
# MAN_OUTPUT.
# The default directory is: man.
# This tag requires that the tag GENERATE_MAN is set to YES.

MAN_OUTPUT             = man

# The MAN_EXTENSION tag determines the extension that is added to the generated
# man pages. In case the manual section does not start with a number, the number
# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is
# optional.
# The default value is: .3.
# This tag requires that the tag GENERATE_MAN is set to YES.

MAN_EXTENSION          = .3

# The MAN_SUBDIR tag determines the name of the directory created within
# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by
# MAN_EXTENSION with the initial . removed.
# This tag requires that the tag GENERATE_MAN is set to YES.

MAN_SUBDIR             =

# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it
# will generate one additional man file for each entity documented in the real
# man page(s). These additional files only source the real man page, but without
# them the man command would be unable to find the correct page.
# The default value is: NO.
# This tag requires that the tag GENERATE_MAN is set to YES.

MAN_LINKS              = NO

#---------------------------------------------------------------------------
# Configuration options related to the XML output
#---------------------------------------------------------------------------

# If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that
# captures the structure of the code including all documentation.
# The default value is: NO.

GENERATE_XML           = NO

# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
# it.
# The default directory is: xml.
# This tag requires that the tag GENERATE_XML is set to YES.

XML_OUTPUT             = xml

# If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program
# listings (including syntax highlighting and cross-referencing information) to
# the XML output. Note that enabling this will significantly increase the size
# of the XML output.
# The default value is: YES.
# This tag requires that the tag GENERATE_XML is set to YES.

XML_PROGRAMLISTING     = YES

# If the XML_NS_MEMB_FILE_SCOPE tag is set to YES, doxygen will include
# namespace members in file scope as well, matching the HTML output.
# The default value is: NO.
# This tag requires that the tag GENERATE_XML is set to YES.

XML_NS_MEMB_FILE_SCOPE = NO

#---------------------------------------------------------------------------
# Configuration options related to the DOCBOOK output
#---------------------------------------------------------------------------

# If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files
# that can be used to generate PDF.
# The default value is: NO.

GENERATE_DOCBOOK       = NO

# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put.
# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in
# front of it.
# The default directory is: docbook.
# This tag requires that the tag GENERATE_DOCBOOK is set to YES.

DOCBOOK_OUTPUT         = docbook

#---------------------------------------------------------------------------
# Configuration options for the AutoGen Definitions output
#---------------------------------------------------------------------------

# If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an
# AutoGen Definitions (see http://autogen.sourceforge.net/) file that captures
# the structure of the code including all documentation. Note that this feature
# is still experimental and incomplete at the moment.
# The default value is: NO.

GENERATE_AUTOGEN_DEF   = NO

#---------------------------------------------------------------------------
# Configuration options related to the Perl module output
#---------------------------------------------------------------------------

# If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module
# file that captures the structure of the code including all documentation.
#
# Note that this feature is still experimental and incomplete at the moment.
# The default value is: NO.

GENERATE_PERLMOD       = NO

# If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary
# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI
# output from the Perl module output.
# The default value is: NO.
# This tag requires that the tag GENERATE_PERLMOD is set to YES.

PERLMOD_LATEX          = NO

# If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely
# formatted so it can be parsed by a human reader. This is useful if you want to
# understand what is going on. On the other hand, if this tag is set to NO, the
# size of the Perl module output will be much smaller and Perl will parse it
# just the same.
# The default value is: YES.
# This tag requires that the tag GENERATE_PERLMOD is set to YES.

PERLMOD_PRETTY         = YES

# The names of the make variables in the generated doxyrules.make file are
# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful
# so different doxyrules.make files included by the same Makefile don't
# overwrite each other's variables.
# This tag requires that the tag GENERATE_PERLMOD is set to YES.

PERLMOD_MAKEVAR_PREFIX =

#---------------------------------------------------------------------------
# Configuration options related to the preprocessor
#---------------------------------------------------------------------------

# If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all
# C-preprocessor directives found in the sources and include files.
# The default value is: YES.

ENABLE_PREPROCESSING   = YES

# If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names
# in the source code. If set to NO, only conditional compilation will be
# performed. Macro expansion can be done in a controlled way by setting
# EXPAND_ONLY_PREDEF to YES.
# The default value is: NO.
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.

MACRO_EXPANSION        = NO

# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then
# the macro expansion is limited to the macros specified with the PREDEFINED and
# EXPAND_AS_DEFINED tags.
# The default value is: NO.
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.

EXPAND_ONLY_PREDEF     = NO

# If the SEARCH_INCLUDES tag is set to YES, the include files in the
# INCLUDE_PATH will be searched if a #include is found.
# The default value is: YES.
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.

SEARCH_INCLUDES        = YES

# The INCLUDE_PATH tag can be used to specify one or more directories that
# contain include files that are not input files but should be processed by the
# preprocessor.
# This tag requires that the tag SEARCH_INCLUDES is set to YES.

INCLUDE_PATH           =

# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
# patterns (like *.h and *.hpp) to filter out the header-files in the
# directories. If left blank, the patterns specified with FILE_PATTERNS will be
# used.
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.

INCLUDE_FILE_PATTERNS  =

# The PREDEFINED tag can be used to specify one or more macro names that are
# defined before the preprocessor is started (similar to the -D option of e.g.
# gcc). The argument of the tag is a list of macros of the form: name or
# name=definition (no spaces). If the definition and the "=" are omitted, "=1"
# is assumed. To prevent a macro definition from being undefined via #undef or
# recursively expanded use the := operator instead of the = operator.
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.

PREDEFINED             += SOURCEMETA_JSONBINPACK_NUMERIC_EXPORT=
PREDEFINED             += SOURCEMETA_JSONBINPACK_COMPILER_EXPORT=
PREDEFINED             += SOURCEMETA_JSONBINPACK_RUNTIME_EXPORT=
PREDEFINED             += DOXYGEN

# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
# tag can be used to specify a list of macro names that should be expanded. The
# macro definition that is found in the sources will be used. Use the PREDEFINED
# tag if you want to use a different macro definition that overrules the
# definition found in the source code.
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.

EXPAND_AS_DEFINED      += SOURCEMETA_JSONBINPACK_NUMERIC_EXPORT
EXPAND_AS_DEFINED      += SOURCEMETA_JSONBINPACK_COMPILER_EXPORT
EXPAND_AS_DEFINED      += SOURCEMETA_JSONBINPACK_RUNTIME_EXPORT

# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will
# remove all references to function-like macros that are alone on a line, have
# an all uppercase name, and do not end with a semicolon. Such function macros
# are typically used for boiler-plate code, and will confuse the parser if not
# removed.
# The default value is: YES.
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.

SKIP_FUNCTION_MACROS   = YES

#---------------------------------------------------------------------------
# Configuration options related to external references
#---------------------------------------------------------------------------

# The TAGFILES tag can be used to specify one or more tag files. For each tag
# file the location of the external documentation should be added. The format of
# a tag file without this location is as follows:
# TAGFILES = file1 file2 ...
# Adding location for the tag files is done as follows:
# TAGFILES = file1=loc1 "file2 = loc2" ...
# where loc1 and loc2 can be relative or absolute paths or URLs. See the
# section "Linking to external documentation" for more information about the use
# of tag files.
# Note: Each tag file must have a unique name (where the name does NOT include
# the path). If a tag file is not located in the directory in which doxygen is
# run, you must also specify the path to the tagfile here.

TAGFILES               =

# When a file name is specified after GENERATE_TAGFILE, doxygen will create a
# tag file that is based on the input files it reads. See section "Linking to
# external documentation" for more information about the usage of tag files.

GENERATE_TAGFILE       =

# If the ALLEXTERNALS tag is set to YES, all external class will be listed in
# the class index. If set to NO, only the inherited external classes will be
# listed.
# The default value is: NO.

ALLEXTERNALS           = NO

# If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed
# in the modules index. If set to NO, only the current project's groups will be
# listed.
# The default value is: YES.

EXTERNAL_GROUPS        = YES

# If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in
# the related pages index. If set to NO, only the current project's pages will
# be listed.
# The default value is: YES.

EXTERNAL_PAGES         = YES

#---------------------------------------------------------------------------
# Configuration options related to the dot tool
#---------------------------------------------------------------------------

# You can include diagrams made with dia in doxygen documentation. Doxygen will
# then run dia to produce the diagram and insert it in the documentation. The
# DIA_PATH tag allows you to specify the directory where the dia binary resides.
# If left empty dia is assumed to be found in the default search path.

DIA_PATH               =

# If set to YES the inheritance and collaboration graphs will hide inheritance
# and usage relations if the target is undocumented or is not a class.
# The default value is: YES.

HIDE_UNDOC_RELATIONS   = YES

# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
# available from the path. This tool is part of Graphviz (see:
# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent
# Bell Labs. The other options in this section have no effect if this option is
# set to NO
# The default value is: NO.

HAVE_DOT               = NO

# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed
# to run in parallel. When set to 0 doxygen will base this on the number of
# processors available in the system. You can set it explicitly to a value
# larger than 0 to get control over the balance between CPU load and processing
# speed.
# Minimum value: 0, maximum value: 32, default value: 0.
# This tag requires that the tag HAVE_DOT is set to YES.

DOT_NUM_THREADS        = 0

# When you want a differently looking font in the dot files that doxygen
# generates you can specify the font name using DOT_FONTNAME. You need to make
# sure dot is able to find the font, which can be done by putting it in a
# standard location or by setting the DOTFONTPATH environment variable or by
# setting DOT_FONTPATH to the directory containing the font.
# The default value is: Helvetica.
# This tag requires that the tag HAVE_DOT is set to YES.

DOT_FONTNAME           = Helvetica

# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of
# dot graphs.
# Minimum value: 4, maximum value: 24, default value: 10.
# This tag requires that the tag HAVE_DOT is set to YES.

DOT_FONTSIZE           = 10

# By default doxygen will tell dot to use the default font as specified with
# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set
# the path where dot can find it using this tag.
# This tag requires that the tag HAVE_DOT is set to YES.

DOT_FONTPATH           =

# If the CLASS_GRAPH tag is set to YES (or GRAPH) then doxygen will generate a
# graph for each documented class showing the direct and indirect inheritance
# relations. In case HAVE_DOT is set as well dot will be used to draw the graph,
# otherwise the built-in generator will be used. If the CLASS_GRAPH tag is set
# to TEXT the direct and indirect inheritance relations will be shown as texts /
# links.
# Possible values are: NO, YES, TEXT and GRAPH.
# The default value is: YES.

CLASS_GRAPH            = YES

# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a
# graph for each documented class showing the direct and indirect implementation
# dependencies (inheritance, containment, and class references variables) of the
# class with other documented classes.
# The default value is: YES.
# This tag requires that the tag HAVE_DOT is set to YES.

COLLABORATION_GRAPH    = YES

# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for
# groups, showing the direct groups dependencies.
# The default value is: YES.
# This tag requires that the tag HAVE_DOT is set to YES.

GROUP_GRAPHS           = YES

# If the UML_LOOK tag is set to YES, doxygen will generate inheritance and
# collaboration diagrams in a style similar to the OMG's Unified Modeling
# Language.
# The default value is: NO.
# This tag requires that the tag HAVE_DOT is set to YES.

UML_LOOK               = NO

# If the UML_LOOK tag is enabled, the fields and methods are shown inside the
# class node. If there are many fields or methods and many nodes the graph may
# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the
# number of items for each type to make the size more manageable. Set this to 0
# for no limit. Note that the threshold may be exceeded by 50% before the limit
# is enforced. So when you set the threshold to 10, up to 15 fields may appear,
# but if the number exceeds 15, the total amount of fields shown is limited to
# 10.
# Minimum value: 0, maximum value: 100, default value: 10.
# This tag requires that the tag UML_LOOK is set to YES.

UML_LIMIT_NUM_FIELDS   = 10

# If the DOT_UML_DETAILS tag is set to NO, doxygen will show attributes and
# methods without types and arguments in the UML graphs. If the DOT_UML_DETAILS
# tag is set to YES, doxygen will add type and arguments for attributes and
# methods in the UML graphs. If the DOT_UML_DETAILS tag is set to NONE, doxygen
# will not generate fields with class member information in the UML graphs. The
# class diagrams will look similar to the default class diagrams but using UML
# notation for the relationships.
# Possible values are: NO, YES and NONE.
# The default value is: NO.
# This tag requires that the tag UML_LOOK is set to YES.

DOT_UML_DETAILS        = NO

# The DOT_WRAP_THRESHOLD tag can be used to set the maximum number of characters
# to display on a single line. If the actual line length exceeds this threshold
# significantly it will wrapped across multiple lines. Some heuristics are apply
# to avoid ugly line breaks.
# Minimum value: 0, maximum value: 1000, default value: 17.
# This tag requires that the tag HAVE_DOT is set to YES.

DOT_WRAP_THRESHOLD     = 17

# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and
# collaboration graphs will show the relations between templates and their
# instances.
# The default value is: NO.
# This tag requires that the tag HAVE_DOT is set to YES.

TEMPLATE_RELATIONS     = NO

# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to
# YES then doxygen will generate a graph for each documented file showing the
# direct and indirect include dependencies of the file with other documented
# files.
# The default value is: YES.
# This tag requires that the tag HAVE_DOT is set to YES.

INCLUDE_GRAPH          = YES

# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are
# set to YES then doxygen will generate a graph for each documented file showing
# the direct and indirect include dependencies of the file with other documented
# files.
# The default value is: YES.
# This tag requires that the tag HAVE_DOT is set to YES.

INCLUDED_BY_GRAPH      = YES

# If the CALL_GRAPH tag is set to YES then doxygen will generate a call
# dependency graph for every global function or class method.
#
# Note that enabling this option will significantly increase the time of a run.
# So in most cases it will be better to enable call graphs for selected
# functions only using the \callgraph command. Disabling a call graph can be
# accomplished by means of the command \hidecallgraph.
# The default value is: NO.
# This tag requires that the tag HAVE_DOT is set to YES.

CALL_GRAPH             = NO

# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller
# dependency graph for every global function or class method.
#
# Note that enabling this option will significantly increase the time of a run.
# So in most cases it will be better to enable caller graphs for selected
# functions only using the \callergraph command. Disabling a caller graph can be
# accomplished by means of the command \hidecallergraph.
# The default value is: NO.
# This tag requires that the tag HAVE_DOT is set to YES.

CALLER_GRAPH           = NO

# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical
# hierarchy of all classes instead of a textual one.
# The default value is: YES.
# This tag requires that the tag HAVE_DOT is set to YES.

GRAPHICAL_HIERARCHY    = YES

# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the
# dependencies a directory has on other directories in a graphical way. The
# dependency relations are determined by the #include relations between the
# files in the directories.
# The default value is: YES.
# This tag requires that the tag HAVE_DOT is set to YES.

DIRECTORY_GRAPH        = YES

# The DIR_GRAPH_MAX_DEPTH tag can be used to limit the maximum number of levels
# of child directories generated in directory dependency graphs by dot.
# Minimum value: 1, maximum value: 25, default value: 1.
# This tag requires that the tag DIRECTORY_GRAPH is set to YES.

DIR_GRAPH_MAX_DEPTH    = 1

# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
# generated by dot. For an explanation of the image formats see the section
# output formats in the documentation of the dot tool (Graphviz (see:
# http://www.graphviz.org/)).
# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order
# to make the SVG files visible in IE 9+ (other browsers do not have this
# requirement).
# Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo,
# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and
# png:gdiplus:gdiplus.
# The default value is: png.
# This tag requires that the tag HAVE_DOT is set to YES.

DOT_IMAGE_FORMAT       = png

# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to
# enable generation of interactive SVG images that allow zooming and panning.
#
# Note that this requires a modern browser other than Internet Explorer. Tested
# and working are Firefox, Chrome, Safari, and Opera.
# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make
# the SVG files visible. Older versions of IE do not have SVG support.
# The default value is: NO.
# This tag requires that the tag HAVE_DOT is set to YES.

INTERACTIVE_SVG        = NO

# The DOT_PATH tag can be used to specify the path where the dot tool can be
# found. If left blank, it is assumed the dot tool can be found in the path.
# This tag requires that the tag HAVE_DOT is set to YES.

DOT_PATH               =

# The DOTFILE_DIRS tag can be used to specify one or more directories that
# contain dot files that are included in the documentation (see the \dotfile
# command).
# This tag requires that the tag HAVE_DOT is set to YES.

DOTFILE_DIRS           =

# The MSCFILE_DIRS tag can be used to specify one or more directories that
# contain msc files that are included in the documentation (see the \mscfile
# command).

MSCFILE_DIRS           =

# The DIAFILE_DIRS tag can be used to specify one or more directories that
# contain dia files that are included in the documentation (see the \diafile
# command).

DIAFILE_DIRS           =

# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the
# path where java can find the plantuml.jar file or to the filename of jar file
# to be used. If left blank, it is assumed PlantUML is not used or called during
# a preprocessing step. Doxygen will generate a warning when it encounters a
# \startuml command in this case and will not generate output for the diagram.

PLANTUML_JAR_PATH      =

# When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a
# configuration file for plantuml.

PLANTUML_CFG_FILE      =

# When using plantuml, the specified paths are searched for files specified by
# the !include statement in a plantuml block.

PLANTUML_INCLUDE_PATH  =

# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes
# that will be shown in the graph. If the number of nodes in a graph becomes
# larger than this value, doxygen will truncate the graph, which is visualized
# by representing a node as a red box. Note that doxygen if the number of direct
# children of the root node in a graph is already larger than
# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that
# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
# Minimum value: 0, maximum value: 10000, default value: 50.
# This tag requires that the tag HAVE_DOT is set to YES.

DOT_GRAPH_MAX_NODES    = 50

# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs
# generated by dot. A depth value of 3 means that only nodes reachable from the
# root by following a path via at most 3 edges will be shown. Nodes that lay
# further from the root node will be omitted. Note that setting this option to 1
# or 2 may greatly reduce the computation time needed for large code bases. Also
# note that the size of a graph can be further restricted by
# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
# Minimum value: 0, maximum value: 1000, default value: 0.
# This tag requires that the tag HAVE_DOT is set to YES.

MAX_DOT_GRAPH_DEPTH    = 0

# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
# background. This is disabled by default, because dot on Windows does not seem
# to support this out of the box.
#
# Warning: Depending on the platform used, enabling this option may lead to
# badly anti-aliased labels on the edges of a graph (i.e. they become hard to
# read).
# The default value is: NO.
# This tag requires that the tag HAVE_DOT is set to YES.

DOT_TRANSPARENT        = NO

# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output
# files in one run (i.e. multiple -o and -T options on the command line). This
# makes dot run faster, but since only newer versions of dot (>1.8.10) support
# this, this feature is disabled by default.
# The default value is: NO.
# This tag requires that the tag HAVE_DOT is set to YES.

DOT_MULTI_TARGETS      = NO

# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page
# explaining the meaning of the various boxes and arrows in the dot generated
# graphs.
# Note: This tag requires that UML_LOOK isn't set, i.e. the doxygen internal
# graphical representation for inheritance and collaboration diagrams is used.
# The default value is: YES.
# This tag requires that the tag HAVE_DOT is set to YES.

GENERATE_LEGEND        = YES

# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate
# files that are used to generate the various graphs.
#
# Note: This setting is not only used for dot files but also for msc temporary
# files.
# The default value is: YES.

DOT_CLEANUP            = YES


================================================
FILE: doxygen/todo.markdown
================================================
Status
======

JSON BinPack is under heavy development. This page aims to document what's
missing. If you want to fund JSON BinPack's development, please consider
[becoming a sponsor](https://github.com/sponsors/sourcemeta).

Mapper
------

Defined in @ref compiler.

| Category | Status                           |
|----------|----------------------------------|
| Any      | Partial. Does not handle `oneOf` |
| Array    | Missing implementation           |
| Object   | Missing implementation           |
| String   | Missing implementation           |

Encodings
---------

Defined in @ref runtime.

| Encoding                             | Type                 | Notes                  |
|--------------------------------------|----------------------|------------------------|
| `ONEOF_CHOICE_INDEX_PREFIX`          | @ref encoding_any    | Missing implementation |
| `BOUNDED_TYPED_LENGTH_PREFIX`        | @ref encoding_array  | Missing implementation |
| `REQUIRED_ONLY_BOUNDED_TYPED_OBJECT` | @ref encoding_object | Missing implementation |
| `NON_REQUIRED_BOUNDED_TYPED_OBJECT`  | @ref encoding_object | Missing implementation |
| `MIXED_BOUNDED_TYPED_OBJECT`         | @ref encoding_object | Missing implementation |
| `REQUIRED_UNBOUNDED_TYPED_OBJECT`    | @ref encoding_object | Missing implementation |
| `OPTIONAL_UNBOUNDED_TYPED_OBJECT`    | @ref encoding_object | Missing implementation |
| `MIXED_UNBOUNDED_TYPED_OBJECT`       | @ref encoding_object | Missing implementation |
| `PACKED_BOUNDED_REQUIRED_OBJECT`     | @ref encoding_object | Missing implementation |
| `PACKED_UNBOUNDED_OBJECT`            | @ref encoding_object | Missing implementation |
| `URL_PROTOCOL_HOST_REST`             | @ref encoding_string | Missing implementation |
| `STRING_BROTLI`                      | @ref encoding_string | Missing implementation |
| `STRING_DICTIONARY_COMPRESSOR`       | @ref encoding_string | Missing implementation |

JSON Schema keywords
--------------------

A set of remaining keywords that JSON BinPack is expected to cover, without
which a schema-less encoding is often unacceptable.

| Keyword                 | Vocabulary  | Dialect |
|-------------------------|-------------|---------|
| `$ref`                  | Core        | 2020-12 |
| `$anchor`               | Core        | 2020-12 |
| `$dynamicRef`           | Core        | 2020-12 |
| `$dynamicAnchor`        | Core        | 2020-12 |
| `allOf`                 | Applicator  | 2020-12 |
| `anyOf`                 | Applicator  | 2020-12 |
| `oneOf`                 | Applicator  | 2020-12 |
| `if`                    | Applicator  | 2020-12 |
| `then`                  | Applicator  | 2020-12 |
| `else`                  | Applicator  | 2020-12 |
| `not`                   | Applicator  | 2020-12 |
| `propertyNames`         | Applicator  | 2020-12 |
| `dependentSchemas`      | Applicator  | 2020-12 |
| `unevaluatedProperties` | Unevaluated | 2020-12 |
| `unevaluatedItems`      | Unevaluated | 2020-12 |
| `contentSchema`         | Content     | 2020-12 |
| `contentMediaType`      | Content     | 2020-12 |
| `contentEncoding`       | Content     | 2020-12 |

Other
-----

- Support for recursive schemas
- Deploy an online web playground


================================================
FILE: src/compiler/CMakeLists.txt
================================================
sourcemeta_library(NAMESPACE sourcemeta PROJECT jsonbinpack NAME compiler
  FOLDER "JSON BinPack/Compiler"
  SOURCES
    encoding.h compiler.cc
    mapper/enum_8_bit.h
    mapper/enum_8_bit_top_level.h
    mapper/enum_arbitrary.h
    mapper/enum_singleton.h
    mapper/integer_bounded_8_bit.h
    mapper/integer_bounded_greater_than_8_bit.h
    mapper/integer_bounded_multiplier_8_bit.h
    mapper/integer_bounded_multiplier_greater_than_8_bit.h
    mapper/integer_lower_bound.h
    mapper/integer_lower_bound_multiplier.h
    mapper/integer_unbound.h
    mapper/integer_unbound_multiplier.h
    mapper/integer_upper_bound.h
    mapper/integer_upper_bound_multiplier.h
    mapper/number_arbitrary.h)

if(JSONBINPACK_INSTALL)
  sourcemeta_library_install(NAMESPACE sourcemeta PROJECT jsonbinpack NAME compiler)
endif()

target_link_libraries(sourcemeta_jsonbinpack_compiler PRIVATE
  sourcemeta::core::numeric)
target_link_libraries(sourcemeta_jsonbinpack_compiler PUBLIC
  sourcemeta::core::json)
target_link_libraries(sourcemeta_jsonbinpack_compiler PRIVATE
  sourcemeta::core::jsonpointer)
target_link_libraries(sourcemeta_jsonbinpack_compiler PUBLIC
  sourcemeta::core::jsonschema)
target_link_libraries(sourcemeta_jsonbinpack_compiler PRIVATE
  sourcemeta::blaze::alterschema)


================================================
FILE: src/compiler/compiler.cc
================================================
#include <sourcemeta/jsonbinpack/compiler.h>

#include <sourcemeta/core/numeric.h>

#include <sourcemeta/blaze/alterschema.h>
#include <sourcemeta/core/jsonpointer.h>

#include "encoding.h"

#include <cassert>     // assert
#include <type_traits> // std::true_type

static auto transformer_callback_noop(
    const sourcemeta::core::Pointer &, const std::string_view,
    const std::string_view,
    const sourcemeta::blaze::SchemaTransformRule::Result &,
    [[maybe_unused]] const bool applied) -> void {
  assert(applied);
}

namespace sourcemeta::jsonbinpack {

auto canonicalize(sourcemeta::core::JSON &schema,
                  const sourcemeta::core::SchemaWalker &walker,
                  const sourcemeta::core::SchemaResolver &resolver,
                  const std::string_view default_dialect) -> void {
  sourcemeta::blaze::SchemaTransformer canonicalizer;
  sourcemeta::blaze::add(canonicalizer,
                         sourcemeta::blaze::AlterSchemaMode::Canonicalizer);
  [[maybe_unused]] const auto result =
      canonicalizer.apply(schema, walker, make_resolver(resolver),
                          transformer_callback_noop, default_dialect);
  assert(result.first);
}

auto make_encoding(sourcemeta::core::JSON &document,
                   const std::string &encoding,
                   const sourcemeta::core::JSON &options) -> void {
  document.into_object();
  document.assign("$schema", sourcemeta::core::JSON{ENCODING_V1});
  document.assign("binpackEncoding", sourcemeta::core::JSON{encoding});
  document.assign("binpackOptions", options);
}

#include "mapper/enum_8_bit.h"
#include "mapper/enum_8_bit_top_level.h"
#include "mapper/enum_arbitrary.h"
#include "mapper/enum_singleton.h"
#include "mapper/integer_bounded_8_bit.h"
#include "mapper/integer_bounded_greater_than_8_bit.h"
#include "mapper/integer_bounded_multiplier_8_bit.h"
#include "mapper/integer_bounded_multiplier_greater_than_8_bit.h"
#include "mapper/integer_lower_bound.h"
#include "mapper/integer_lower_bound_multiplier.h"
#include "mapper/integer_unbound.h"
#include "mapper/integer_unbound_multiplier.h"
#include "mapper/integer_upper_bound.h"
#include "mapper/integer_upper_bound_multiplier.h"
#include "mapper/number_arbitrary.h"

auto compile(sourcemeta::core::JSON &schema,
             const sourcemeta::core::SchemaWalker &walker,
             const sourcemeta::core::SchemaResolver &resolver,
             const std::string_view default_dialect) -> void {
  canonicalize(schema, walker, resolver, default_dialect);

  sourcemeta::blaze::SchemaTransformer mapper;

  // Enums
  mapper.add<Enum8Bit>();
  mapper.add<Enum8BitTopLevel>();
  mapper.add<EnumArbitrary>();
  mapper.add<EnumSingleton>();

  // Integers
  mapper.add<IntegerBounded8Bit>();
  mapper.add<IntegerBoundedMultiplier8Bit>();
  mapper.add<IntegerBoundedGreaterThan8Bit>();
  mapper.add<IntegerBoundedMultiplierGreaterThan8Bit>();
  mapper.add<IntegerLowerBound>();
  mapper.add<IntegerLowerBoundMultiplier>();
  mapper.add<IntegerUpperBound>();
  mapper.add<IntegerUpperBoundMultiplier>();
  mapper.add<IntegerUnbound>();
  mapper.add<IntegerUnboundMultiplier>();

  // Numbers
  mapper.add<NumberArbitrary>();

  [[maybe_unused]] const auto mapper_result =
      mapper.apply(schema, walker, make_resolver(resolver),
                   transformer_callback_noop, default_dialect);
  assert(mapper_result.first);

  // The "any" encoding is always the last resort
  const auto dialect{sourcemeta::core::dialect(schema)};
  if (dialect.empty() || dialect != ENCODING_V1) {
    make_encoding(schema, "ANY_PACKED_TYPE_TAG_BYTE_PREFIX",
                  sourcemeta::core::JSON::make_object());
  }
}

} // namespace sourcemeta::jsonbinpack


================================================
FILE: src/compiler/encoding.h
================================================
#ifndef SOURCEMETA_JSONBINPACK_COMPILER_ENCODING_H_
#define SOURCEMETA_JSONBINPACK_COMPILER_ENCODING_H_

#include <sourcemeta/core/json.h>
#include <sourcemeta/core/jsonschema.h>

namespace sourcemeta::jsonbinpack {

constexpr auto ENCODING_V1{"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1"};

inline auto make_resolver(const sourcemeta::core::SchemaResolver &fallback)
    -> auto {
  return [&fallback](std::string_view identifier)
             -> std::optional<sourcemeta::core::JSON> {
    if (identifier == ENCODING_V1) {
      return sourcemeta::core::parse_json(R"JSON({
        "$id": "tag:sourcemeta.com,2024:jsonbinpack/encoding/v1",
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "$vocabulary": {
          "https://json-schema.org/draft/2020-12/vocab/core": true,
          "tag:sourcemeta.com,2024:jsonbinpack/encoding/v1": true
        }
      })JSON");
    } else {
      return fallback(identifier);
    }
  };
}

} // namespace sourcemeta::jsonbinpack

#endif


================================================
FILE: src/compiler/include/sourcemeta/jsonbinpack/compiler.h
================================================
#ifndef SOURCEMETA_JSONBINPACK_COMPILER_H_
#define SOURCEMETA_JSONBINPACK_COMPILER_H_

#ifndef SOURCEMETA_JSONBINPACK_COMPILER_EXPORT
#include <sourcemeta/jsonbinpack/compiler_export.h>
#endif

/// @defgroup compiler Compiler
/// @brief The built-time schema compiler of JSON BinPack
///
/// This functionality is included as follows:
///
/// ```cpp
/// #include <sourcemeta/jsonbinpack/compiler.h>
/// ```

#include <sourcemeta/core/json.h>
#include <sourcemeta/core/jsonschema.h>

#include <string_view> // std::string_view

namespace sourcemeta::jsonbinpack {

/// @ingroup compiler
///
/// Compile a JSON Schema into an encoding schema. Keep in mind this function
/// mutates the input schema. For example:
///
/// ```cpp
/// #include <sourcemeta/binpack/compiler.h>
/// #include <sourcemeta/core/json.h>
/// #include <sourcemeta/core/jsonschema.h>
///
/// #include <iostream>
///
/// auto schema{sourcemeta::core::parse_json(R"JSON({
///   "$schema": "https://json-schema.org/draft/2020-12/schema",
///   "type": "string"
/// })JSON")};
///
/// sourcemeta::jsonbinpack::compile(
///     schema, sourcemeta::core::schema_walker,
///     sourcemeta::core::schema_resolver);
///
/// sourcemeta::core::prettify(schema, std::cout);
/// std::cout << std::endl;
/// ```
SOURCEMETA_JSONBINPACK_COMPILER_EXPORT
auto compile(sourcemeta::core::JSON &schema,
             const sourcemeta::core::SchemaWalker &walker,
             const sourcemeta::core::SchemaResolver &resolver,
             std::string_view default_dialect = "") -> void;

/// @ingroup compiler
///
/// Transform a JSON Schema into its canonical form to prepare it for
/// compilation. Keep in mind this function mutates the input schema. Also, the
/// `compile` function already performs canonicalization. This function is
/// exposed mainly for debugging and testing purposes. For example:
///
/// ```cpp
/// #include <sourcemeta/binpack/compiler.h>
/// #include <sourcemeta/core/json.h>
/// #include <sourcemeta/core/jsonschema.h>
///
/// #include <iostream>
///
/// auto schema{sourcemeta::core::parse_json(R"JSON({
///   "$schema": "https://json-schema.org/draft/2020-12/schema",
///   "type": "string"
/// })JSON")};
///
/// sourcemeta::jsonbinpack::canonicalize(
///     schema, sourcemeta::core::schema_walker,
///     sourcemeta::core::schema_resolver);
///
/// sourcemeta::core::prettify(schema, std::cout);
/// std::cout << std::endl;
/// ```
SOURCEMETA_JSONBINPACK_COMPILER_EXPORT
auto canonicalize(sourcemeta::core::JSON &schema,
                  const sourcemeta::core::SchemaWalker &walker,
                  const sourcemeta::core::SchemaResolver &resolver,
                  std::string_view default_dialect = "") -> void;

} // namespace sourcemeta::jsonbinpack

#endif


================================================
FILE: src/compiler/mapper/enum_8_bit.h
================================================
// TODO: Unit test this mapping once we have container encodings
class Enum8Bit final : public sourcemeta::blaze::SchemaTransformRule {
public:
  using mutates = std::true_type;
  using reframe_after_transform = std::true_type;
  Enum8Bit() : sourcemeta::blaze::SchemaTransformRule{"enum_8_bit", ""} {};

  [[nodiscard]] auto
  condition(const sourcemeta::core::JSON &schema,
            const sourcemeta::core::JSON &,
            const sourcemeta::core::Vocabularies &vocabularies,
            const sourcemeta::core::SchemaFrame &,
            const sourcemeta::core::SchemaFrame::Location &location,
            const sourcemeta::core::SchemaWalker &,
            const sourcemeta::core::SchemaResolver &) const
      -> sourcemeta::blaze::SchemaTransformRule::Result override {
    return location.dialect == "https://json-schema.org/draft/2020-12/schema" &&
           vocabularies.contains(sourcemeta::core::Vocabularies::Known::
                                     JSON_Schema_2020_12_Validation) &&
           schema.is_object() && schema.defines("enum") &&
           schema.at("enum").is_array() && !location.pointer.empty() &&
           schema.at("enum").size() > 1 &&
           sourcemeta::core::is_byte(schema.at("enum").size() - 1);
  }

  auto transform(sourcemeta::core::JSON &schema,
                 const sourcemeta::blaze::SchemaTransformRule::Result &) const
      -> void override {
    auto options = sourcemeta::core::JSON::make_object();
    options.assign("choices", schema.at("enum"));
    make_encoding(schema, "BYTE_CHOICE_INDEX", options);
  }
};


================================================
FILE: src/compiler/mapper/enum_8_bit_top_level.h
================================================
class Enum8BitTopLevel final : public sourcemeta::blaze::SchemaTransformRule {
public:
  using mutates = std::true_type;
  using reframe_after_transform = std::true_type;
  Enum8BitTopLevel()
      : sourcemeta::blaze::SchemaTransformRule{"enum_8_bit_top_level", ""} {};

  [[nodiscard]] auto
  condition(const sourcemeta::core::JSON &schema,
            const sourcemeta::core::JSON &,
            const sourcemeta::core::Vocabularies &vocabularies,
            const sourcemeta::core::SchemaFrame &,
            const sourcemeta::core::SchemaFrame::Location &location,
            const sourcemeta::core::SchemaWalker &,
            const sourcemeta::core::SchemaResolver &) const
      -> sourcemeta::blaze::SchemaTransformRule::Result override {
    return location.dialect == "https://json-schema.org/draft/2020-12/schema" &&
           vocabularies.contains(sourcemeta::core::Vocabularies::Known::
                                     JSON_Schema_2020_12_Validation) &&
           schema.is_object() && schema.defines("enum") &&
           schema.at("enum").is_array() && location.pointer.empty() &&
           schema.at("enum").size() > 1 &&
           sourcemeta::core::is_byte(schema.at("enum").size() - 1);
  }

  auto transform(sourcemeta::core::JSON &schema,
                 const sourcemeta::blaze::SchemaTransformRule::Result &) const
      -> void override {
    auto options = sourcemeta::core::JSON::make_object();
    options.assign("choices", schema.at("enum"));
    make_encoding(schema, "TOP_LEVEL_BYTE_CHOICE_INDEX", options);
  }
};


================================================
FILE: src/compiler/mapper/enum_arbitrary.h
================================================
// TODO: Unit test this mapping once we have container encodings
class EnumArbitrary final : public sourcemeta::blaze::SchemaTransformRule {
public:
  using mutates = std::true_type;
  using reframe_after_transform = std::true_type;
  EnumArbitrary()
      : sourcemeta::blaze::SchemaTransformRule{"enum_arbitrary", ""} {};

  [[nodiscard]] auto
  condition(const sourcemeta::core::JSON &schema,
            const sourcemeta::core::JSON &,
            const sourcemeta::core::Vocabularies &vocabularies,
            const sourcemeta::core::SchemaFrame &,
            const sourcemeta::core::SchemaFrame::Location &location,
            const sourcemeta::core::SchemaWalker &,
            const sourcemeta::core::SchemaResolver &) const
      -> sourcemeta::blaze::SchemaTransformRule::Result override {
    return location.dialect == "https://json-schema.org/draft/2020-12/schema" &&
           vocabularies.contains(sourcemeta::core::Vocabularies::Known::
                                     JSON_Schema_2020_12_Validation) &&
           schema.is_object() && schema.defines("enum") &&
           schema.at("enum").is_array() && !location.pointer.empty() &&
           schema.at("enum").size() > 1 &&
           !sourcemeta::core::is_byte(schema.at("enum").size() - 1);
  }

  auto transform(sourcemeta::core::JSON &schema,
                 const sourcemeta::blaze::SchemaTransformRule::Result &) const
      -> void override {
    auto options = sourcemeta::core::JSON::make_object();
    options.assign("choices", schema.at("enum"));
    make_encoding(schema, "LARGE_CHOICE_INDEX", options);
  }
};


================================================
FILE: src/compiler/mapper/enum_singleton.h
================================================
class EnumSingleton final : public sourcemeta::blaze::SchemaTransformRule {
public:
  using mutates = std::true_type;
  using reframe_after_transform = std::true_type;
  EnumSingleton()
      : sourcemeta::blaze::SchemaTransformRule{"enum_singleton", ""} {};

  [[nodiscard]] auto
  condition(const sourcemeta::core::JSON &schema,
            const sourcemeta::core::JSON &,
            const sourcemeta::core::Vocabularies &vocabularies,
            const sourcemeta::core::SchemaFrame &,
            const sourcemeta::core::SchemaFrame::Location &location,
            const sourcemeta::core::SchemaWalker &,
            const sourcemeta::core::SchemaResolver &) const
      -> sourcemeta::blaze::SchemaTransformRule::Result override {
    return location.dialect == "https://json-schema.org/draft/2020-12/schema" &&
           vocabularies.contains(sourcemeta::core::Vocabularies::Known::
                                     JSON_Schema_2020_12_Validation) &&
           schema.is_object() && schema.defines("enum") &&
           schema.at("enum").is_array() && schema.at("enum").size() == 1;
  }

  auto transform(sourcemeta::core::JSON &schema,
                 const sourcemeta::blaze::SchemaTransformRule::Result &) const
      -> void override {
    auto options = sourcemeta::core::JSON::make_object();
    options.assign("value", schema.at("enum").at(0));
    make_encoding(schema, "CONST_NONE", options);
  }
};


================================================
FILE: src/compiler/mapper/integer_bounded_8_bit.h
================================================
class IntegerBounded8Bit final : public sourcemeta::blaze::SchemaTransformRule {
public:
  using mutates = std::true_type;
  using reframe_after_transform = std::true_type;
  IntegerBounded8Bit()
      : sourcemeta::blaze::SchemaTransformRule{"integer_bounded_8_bit", ""} {};

  [[nodiscard]] auto
  condition(const sourcemeta::core::JSON &schema,
            const sourcemeta::core::JSON &,
            const sourcemeta::core::Vocabularies &vocabularies,
            const sourcemeta::core::SchemaFrame &,
            const sourcemeta::core::SchemaFrame::Location &location,
            const sourcemeta::core::SchemaWalker &,
            const sourcemeta::core::SchemaResolver &) const
      -> sourcemeta::blaze::SchemaTransformRule::Result override {
    return location.dialect == "https://json-schema.org/draft/2020-12/schema" &&
           vocabularies.contains(sourcemeta::core::Vocabularies::Known::
                                     JSON_Schema_2020_12_Validation) &&
           schema.is_object() && schema.defines("type") &&
           schema.at("type").to_string() == "integer" &&
           schema.defines("minimum") && schema.defines("maximum") &&
           sourcemeta::core::is_byte(schema.at("maximum").to_integer() -
                                     schema.at("minimum").to_integer()) &&
           !schema.defines("multipleOf");
  }

  auto transform(sourcemeta::core::JSON &schema,
                 const sourcemeta::blaze::SchemaTransformRule::Result &) const
      -> void override {
    auto minimum = schema.at("minimum");
    auto maximum = schema.at("maximum");
    auto options = sourcemeta::core::JSON::make_object();
    options.assign("minimum", std::move(minimum));
    options.assign("maximum", std::move(maximum));
    options.assign("multiplier", sourcemeta::core::JSON{1});
    make_encoding(schema, "BOUNDED_MULTIPLE_8BITS_ENUM_FIXED", options);
  }
};


================================================
FILE: src/compiler/mapper/integer_bounded_greater_than_8_bit.h
================================================
class IntegerBoundedGreaterThan8Bit final
    : public sourcemeta::blaze::SchemaTransformRule {
public:
  using mutates = std::true_type;
  using reframe_after_transform = std::true_type;
  IntegerBoundedGreaterThan8Bit()
      : sourcemeta::blaze::SchemaTransformRule{
            "integer_bounded_greater_than_8_bit", ""} {};

  [[nodiscard]] auto
  condition(const sourcemeta::core::JSON &schema,
            const sourcemeta::core::JSON &,
            const sourcemeta::core::Vocabularies &vocabularies,
            const sourcemeta::core::SchemaFrame &,
            const sourcemeta::core::SchemaFrame::Location &location,
            const sourcemeta::core::SchemaWalker &,
            const sourcemeta::core::SchemaResolver &) const
      -> sourcemeta::blaze::SchemaTransformRule::Result override {
    return location.dialect == "https://json-schema.org/draft/2020-12/schema" &&
           vocabularies.contains(sourcemeta::core::Vocabularies::Known::
                                     JSON_Schema_2020_12_Validation) &&
           schema.is_object() && schema.defines("type") &&
           schema.at("type").to_string() == "integer" &&
           schema.defines("minimum") && schema.defines("maximum") &&
           !sourcemeta::core::is_byte(schema.at("maximum").to_integer() -
                                      schema.at("minimum").to_integer()) &&
           !schema.defines("multipleOf");
  }

  auto transform(sourcemeta::core::JSON &schema,
                 const sourcemeta::blaze::SchemaTransformRule::Result &) const
      -> void override {
    auto minimum = schema.at("minimum");
    auto options = sourcemeta::core::JSON::make_object();
    options.assign("minimum", std::move(minimum));
    options.assign("multiplier", sourcemeta::core::JSON{1});
    make_encoding(schema, "FLOOR_MULTIPLE_ENUM_VARINT", options);
  }
};


================================================
FILE: src/compiler/mapper/integer_bounded_multiplier_8_bit.h
================================================
class IntegerBoundedMultiplier8Bit final
    : public sourcemeta::blaze::SchemaTransformRule {
public:
  using mutates = std::true_type;
  using reframe_after_transform = std::true_type;
  IntegerBoundedMultiplier8Bit()
      : sourcemeta::blaze::SchemaTransformRule{
            "integer_bounded_multiplier_8_bit", ""} {};

  [[nodiscard]] auto
  condition(const sourcemeta::core::JSON &schema,
            const sourcemeta::core::JSON &,
            const sourcemeta::core::Vocabularies &vocabularies,
            const sourcemeta::core::SchemaFrame &,
            const sourcemeta::core::SchemaFrame::Location &location,
            const sourcemeta::core::SchemaWalker &,
            const sourcemeta::core::SchemaResolver &) const
      -> sourcemeta::blaze::SchemaTransformRule::Result override {
    if (location.dialect != "https://json-schema.org/draft/2020-12/schema" ||
        !vocabularies.contains(sourcemeta::core::Vocabularies::Known::
                                   JSON_Schema_2020_12_Validation) ||
        !schema.is_object() || !schema.defines("type") ||
        schema.at("type").to_string() != "integer" ||
        !schema.defines("minimum") || !schema.at("minimum").is_integer() ||
        !schema.defines("maximum") || !schema.at("maximum").is_integer() ||
        !schema.defines("multipleOf") ||
        !schema.at("multipleOf").is_integer()) {
      return false;
    }

    return sourcemeta::core::is_byte(sourcemeta::core::count_multiples(
        schema.at("minimum").to_integer(), schema.at("maximum").to_integer(),
        schema.at("multipleOf").to_integer()));
  }

  auto transform(sourcemeta::core::JSON &schema,
                 const sourcemeta::blaze::SchemaTransformRule::Result &) const
      -> void override {
    auto minimum = schema.at("minimum");
    auto maximum = schema.at("maximum");
    auto multiplier = schema.at("multipleOf");

    auto options = sourcemeta::core::JSON::make_object();
    options.assign("minimum", std::move(minimum));
    options.assign("maximum", std::move(maximum));
    options.assign("multiplier", std::move(multiplier));
    make_encoding(schema, "BOUNDED_MULTIPLE_8BITS_ENUM_FIXED", options);
  }
};


================================================
FILE: src/compiler/mapper/integer_bounded_multiplier_greater_than_8_bit.h
================================================
class IntegerBoundedMultiplierGreaterThan8Bit final
    : public sourcemeta::blaze::SchemaTransformRule {
public:
  using mutates = std::true_type;
  using reframe_after_transform = std::true_type;
  IntegerBoundedMultiplierGreaterThan8Bit()
      : sourcemeta::blaze::SchemaTransformRule{
            "integer_bounded_multiplier_greater_than_8_bit", ""} {};

  [[nodiscard]] auto
  condition(const sourcemeta::core::JSON &schema,
            const sourcemeta::core::JSON &,
            const sourcemeta::core::Vocabularies &vocabularies,
            const sourcemeta::core::SchemaFrame &,
            const sourcemeta::core::SchemaFrame::Location &location,
            const sourcemeta::core::SchemaWalker &,
            const sourcemeta::core::SchemaResolver &) const
      -> sourcemeta::blaze::SchemaTransformRule::Result override {
    if (location.dialect != "https://json-schema.org/draft/2020-12/schema" ||
        !vocabularies.contains(sourcemeta::core::Vocabularies::Known::
                                   JSON_Schema_2020_12_Validation) ||
        !schema.is_object() || !schema.defines("type") ||
        schema.at("type").to_string() != "integer" ||
        !schema.defines("minimum") || !schema.at("minimum").is_integer() ||
        !schema.defines("maximum") || !schema.at("maximum").is_integer() ||
        !schema.defines("multipleOf") ||
        !schema.at("multipleOf").is_integer()) {
      return false;
    }

    return !sourcemeta::core::is_byte(sourcemeta::core::count_multiples(
        schema.at("minimum").to_integer(), schema.at("maximum").to_integer(),
        schema.at("multipleOf").to_integer()));
  }

  auto transform(sourcemeta::core::JSON &schema,
                 const sourcemeta::blaze::SchemaTransformRule::Result &) const
      -> void override {
    auto minimum = schema.at("minimum");
    auto multiplier = schema.at("multipleOf");
    auto options = sourcemeta::core::JSON::make_object();
    options.assign("minimum", std::move(minimum));
    options.assign("multiplier", std::move(multiplier));
    make_encoding(schema, "FLOOR_MULTIPLE_ENUM_VARINT", options);
  }
};


================================================
FILE: src/compiler/mapper/integer_lower_bound.h
================================================
class IntegerLowerBound final : public sourcemeta::blaze::SchemaTransformRule {
public:
  using mutates = std::true_type;
  using reframe_after_transform = std::true_type;
  IntegerLowerBound()
      : sourcemeta::blaze::SchemaTransformRule{"integer_lower_bound", ""} {};

  [[nodiscard]] auto
  condition(const sourcemeta::core::JSON &schema,
            const sourcemeta::core::JSON &,
            const sourcemeta::core::Vocabularies &vocabularies,
            const sourcemeta::core::SchemaFrame &,
            const sourcemeta::core::SchemaFrame::Location &location,
            const sourcemeta::core::SchemaWalker &,
            const sourcemeta::core::SchemaResolver &) const
      -> sourcemeta::blaze::SchemaTransformRule::Result override {
    return location.dialect == "https://json-schema.org/draft/2020-12/schema" &&
           vocabularies.contains(sourcemeta::core::Vocabularies::Known::
                                     JSON_Schema_2020_12_Validation) &&
           schema.is_object() && schema.defines("type") &&
           schema.at("type").to_string() == "integer" &&
           schema.defines("minimum") && !schema.defines("maximum") &&
           !schema.defines("multipleOf");
  }

  auto transform(sourcemeta::core::JSON &schema,
                 const sourcemeta::blaze::SchemaTransformRule::Result &) const
      -> void override {
    auto minimum = schema.at("minimum");
    auto options = sourcemeta::core::JSON::make_object();
    options.assign("minimum", std::move(minimum));
    options.assign("multiplier", sourcemeta::core::JSON{1});
    make_encoding(schema, "FLOOR_MULTIPLE_ENUM_VARINT", options);
  }
};


================================================
FILE: src/compiler/mapper/integer_lower_bound_multiplier.h
================================================
class IntegerLowerBoundMultiplier final
    : public sourcemeta::blaze::SchemaTransformRule {
public:
  using mutates = std::true_type;
  using reframe_after_transform = std::true_type;
  IntegerLowerBoundMultiplier()
      : sourcemeta::blaze::SchemaTransformRule{"integer_lower_bound_multiplier",
                                               ""} {};

  [[nodiscard]] auto
  condition(const sourcemeta::core::JSON &schema,
            const sourcemeta::core::JSON &,
            const sourcemeta::core::Vocabularies &vocabularies,
            const sourcemeta::core::SchemaFrame &,
            const sourcemeta::core::SchemaFrame::Location &location,
            const sourcemeta::core::SchemaWalker &,
            const sourcemeta::core::SchemaResolver &) const
      -> sourcemeta::blaze::SchemaTransformRule::Result override {
    return location.dialect == "https://json-schema.org/draft/2020-12/schema" &&
           vocabularies.contains(sourcemeta::core::Vocabularies::Known::
                                     JSON_Schema_2020_12_Validation) &&
           schema.is_object() && schema.defines("type") &&
           schema.at("type").to_string() == "integer" &&
           schema.defines("minimum") && !schema.defines("maximum") &&
           schema.defines("multipleOf") && schema.at("multipleOf").is_integer();
  }

  auto transform(sourcemeta::core::JSON &schema,
                 const sourcemeta::blaze::SchemaTransformRule::Result &) const
      -> void override {
    auto minimum = schema.at("minimum");
    auto multiplier = schema.at("multipleOf");
    auto options = sourcemeta::core::JSON::make_object();
    options.assign("minimum", std::move(minimum));
    options.assign("multiplier", std::move(multiplier));
    make_encoding(schema, "FLOOR_MULTIPLE_ENUM_VARINT", options);
  }
};


================================================
FILE: src/compiler/mapper/integer_unbound.h
================================================
class IntegerUnbound final : public sourcemeta::blaze::SchemaTransformRule {
public:
  using mutates = std::true_type;
  using reframe_after_transform = std::true_type;
  IntegerUnbound()
      : sourcemeta::blaze::SchemaTransformRule{"integer_unbound", ""} {};

  [[nodiscard]] auto
  condition(const sourcemeta::core::JSON &schema,
            const sourcemeta::core::JSON &,
            const sourcemeta::core::Vocabularies &vocabularies,
            const sourcemeta::core::SchemaFrame &,
            const sourcemeta::core::SchemaFrame::Location &location,
            const sourcemeta::core::SchemaWalker &,
            const sourcemeta::core::SchemaResolver &) const
      -> sourcemeta::blaze::SchemaTransformRule::Result override {
    return location.dialect == "https://json-schema.org/draft/2020-12/schema" &&
           vocabularies.contains(sourcemeta::core::Vocabularies::Known::
                                     JSON_Schema_2020_12_Validation) &&
           schema.is_object() && schema.defines("type") &&
           schema.at("type").to_string() == "integer" &&
           !schema.defines("minimum") && !schema.defines("maximum") &&
           !schema.defines("multipleOf");
  }

  auto transform(sourcemeta::core::JSON &schema,
                 const sourcemeta::blaze::SchemaTransformRule::Result &) const
      -> void override {
    auto options = sourcemeta::core::JSON::make_object();
    options.assign("multiplier", sourcemeta::core::JSON{1});
    make_encoding(schema, "ARBITRARY_MULTIPLE_ZIGZAG_VARINT", options);
  }
};


================================================
FILE: src/compiler/mapper/integer_unbound_multiplier.h
================================================
class IntegerUnboundMultiplier final
    : public sourcemeta::blaze::SchemaTransformRule {
public:
  using mutates = std::true_type;
  using reframe_after_transform = std::true_type;
  IntegerUnboundMultiplier()
      : sourcemeta::blaze::SchemaTransformRule{"integer_unbound_multiplier",
                                               ""} {};

  [[nodiscard]] auto
  condition(const sourcemeta::core::JSON &schema,
            const sourcemeta::core::JSON &,
            const sourcemeta::core::Vocabularies &vocabularies,
            const sourcemeta::core::SchemaFrame &,
            const sourcemeta::core::SchemaFrame::Location &location,
            const sourcemeta::core::SchemaWalker &,
            const sourcemeta::core::SchemaResolver &) const
      -> sourcemeta::blaze::SchemaTransformRule::Result override {
    return location.dialect == "https://json-schema.org/draft/2020-12/schema" &&
           vocabularies.contains(sourcemeta::core::Vocabularies::Known::
                                     JSON_Schema_2020_12_Validation) &&
           schema.is_object() && schema.defines("type") &&
           schema.at("type").to_string() == "integer" &&
           !schema.defines("minimum") && !schema.defines("maximum") &&
           schema.defines("multipleOf") && schema.at("multipleOf").is_integer();
  }

  auto transform(sourcemeta::core::JSON &schema,
                 const sourcemeta::blaze::SchemaTransformRule::Result &) const
      -> void override {
    auto multiplier = schema.at("multipleOf");
    auto options = sourcemeta::core::JSON::make_object();
    options.assign("multiplier", std::move(multiplier));
    make_encoding(schema, "ARBITRARY_MULTIPLE_ZIGZAG_VARINT", options);
  }
};


================================================
FILE: src/compiler/mapper/integer_upper_bound.h
================================================
class IntegerUpperBound final : public sourcemeta::blaze::SchemaTransformRule {
public:
  using mutates = std::true_type;
  using reframe_after_transform = std::true_type;
  IntegerUpperBound()
      : sourcemeta::blaze::SchemaTransformRule{"integer_upper_bound", ""} {};

  [[nodiscard]] auto
  condition(const sourcemeta::core::JSON &schema,
            const sourcemeta::core::JSON &,
            const sourcemeta::core::Vocabularies &vocabularies,
            const sourcemeta::core::SchemaFrame &,
            const sourcemeta::core::SchemaFrame::Location &location,
            const sourcemeta::core::SchemaWalker &,
            const sourcemeta::core::SchemaResolver &) const
      -> sourcemeta::blaze::SchemaTransformRule::Result override {
    return location.dialect == "https://json-schema.org/draft/2020-12/schema" &&
           vocabularies.contains(sourcemeta::core::Vocabularies::Known::
                                     JSON_Schema_2020_12_Validation) &&
           schema.is_object() && schema.defines("type") &&
           schema.at("type").to_string() == "integer" &&
           !schema.defines("minimum") && schema.defines("maximum") &&
           !schema.defines("multipleOf");
  }

  auto transform(sourcemeta::core::JSON &schema,
                 const sourcemeta::blaze::SchemaTransformRule::Result &) const
      -> void override {
    auto maximum = schema.at("maximum");
    auto options = sourcemeta::core::JSON::make_object();
    options.assign("maximum", std::move(maximum));
    options.assign("multiplier", sourcemeta::core::JSON{1});
    make_encoding(schema, "ROOF_MULTIPLE_MIRROR_ENUM_VARINT", options);
  }
};


================================================
FILE: src/compiler/mapper/integer_upper_bound_multiplier.h
================================================
class IntegerUpperBoundMultiplier final
    : public sourcemeta::blaze::SchemaTransformRule {
public:
  using mutates = std::true_type;
  using reframe_after_transform = std::true_type;
  IntegerUpperBoundMultiplier()
      : sourcemeta::blaze::SchemaTransformRule{"integer_upper_bound_multiplier",
                                               ""} {};

  [[nodiscard]] auto
  condition(const sourcemeta::core::JSON &schema,
            const sourcemeta::core::JSON &,
            const sourcemeta::core::Vocabularies &vocabularies,
            const sourcemeta::core::SchemaFrame &,
            const sourcemeta::core::SchemaFrame::Location &location,
            const sourcemeta::core::SchemaWalker &,
            const sourcemeta::core::SchemaResolver &) const
      -> sourcemeta::blaze::SchemaTransformRule::Result override {
    return location.dialect == "https://json-schema.org/draft/2020-12/schema" &&
           vocabularies.contains(sourcemeta::core::Vocabularies::Known::
                                     JSON_Schema_2020_12_Validation) &&
           schema.is_object() && schema.defines("type") &&
           schema.at("type").to_string() == "integer" &&
           !schema.defines("minimum") && schema.defines("maximum") &&
           schema.defines("multipleOf") && schema.at("multipleOf").is_integer();
  }

  auto transform(sourcemeta::core::JSON &schema,
                 const sourcemeta::blaze::SchemaTransformRule::Result &) const
      -> void override {
    auto maximum = schema.at("maximum");
    auto multiplier = schema.at("multipleOf");
    auto options = sourcemeta::core::JSON::make_object();
    options.assign("maximum", std::move(maximum));
    options.assign("multiplier", std::move(multiplier));
    make_encoding(schema, "ROOF_MULTIPLE_MIRROR_ENUM_VARINT", options);
  }
};


================================================
FILE: src/compiler/mapper/number_arbitrary.h
================================================
class NumberArbitrary final : public sourcemeta::blaze::SchemaTransformRule {
public:
  using mutates = std::true_type;
  using reframe_after_transform = std::true_type;
  NumberArbitrary()
      : sourcemeta::blaze::SchemaTransformRule{"number_arbitrary", ""} {};

  [[nodiscard]] auto
  condition(const sourcemeta::core::JSON &schema,
            const sourcemeta::core::JSON &,
            const sourcemeta::core::Vocabularies &vocabularies,
            const sourcemeta::core::SchemaFrame &,
            const sourcemeta::core::SchemaFrame::Location &location,
            const sourcemeta::core::SchemaWalker &,
            const sourcemeta::core::SchemaResolver &) const
      -> sourcemeta::blaze::SchemaTransformRule::Result override {
    return location.dialect == "https://json-schema.org/draft/2020-12/schema" &&
           vocabularies.contains(sourcemeta::core::Vocabularies::Known::
                                     JSON_Schema_2020_12_Validation) &&
           schema.is_object() && schema.defines("type") &&
           schema.at("type").to_string() == "number";
  }

  auto transform(sourcemeta::core::JSON &schema,
                 const sourcemeta::blaze::SchemaTransformRule::Result &) const
      -> void override {
    make_encoding(schema, "DOUBLE_VARINT_TUPLE",
                  sourcemeta::core::JSON::make_object());
  }
};


================================================
FILE: src/runtime/CMakeLists.txt
================================================
sourcemeta_library(NAMESPACE sourcemeta PROJECT jsonbinpack NAME runtime
  FOLDER "JSON BinPack/Runtime"
  PRIVATE_HEADERS
    decoder.h
    encoder.h
    input_stream.h
    output_stream.h
    encoder_cache.h
    encoding.h
  SOURCES
    input_stream.cc
    output_stream.cc
    unreachable.h
    cache.cc

    loader.cc
    loader_v1_any.h
    loader_v1_array.h
    loader_v1_integer.h
    loader_v1_number.h
    loader_v1_string.h

    decoder_any.cc
    decoder_array.cc
    decoder_common.cc
    decoder_integer.cc
    decoder_number.cc
    decoder_object.cc
    decoder_string.cc
    encoder_any.cc
    encoder_array.cc
    encoder_common.cc
    encoder_integer.cc
    encoder_number.cc
    encoder_object.cc
    encoder_string.cc)

if(JSONBINPACK_INSTALL)
  sourcemeta_library_install(NAMESPACE sourcemeta PROJECT jsonbinpack NAME runtime)
endif()

target_link_libraries(sourcemeta_jsonbinpack_runtime PUBLIC
  sourcemeta::core::json)
target_link_libraries(sourcemeta_jsonbinpack_runtime PUBLIC
  sourcemeta::core::numeric)
target_link_libraries(sourcemeta_jsonbinpack_runtime PUBLIC
  sourcemeta::core::io)


================================================
FILE: src/runtime/cache.cc
================================================
#include <sourcemeta/jsonbinpack/runtime_encoder_cache.h>

namespace sourcemeta::jsonbinpack {

auto Cache::record(const sourcemeta::core::JSON::String &value,
                   const std::uint64_t offset, const Type type) -> void {
  // Encoding a shared string has some overhead, such as the
  // shared string marker + the offset, so its not worth
  // doing for strings that are too small.
  constexpr auto MINIMUM_STRING_LENGTH{3};

  // We don't want to allow the context to grow
  // forever, otherwise an attacker could force the
  // program to exhaust memory given an input
  // document that contains a high number of large strings.
  constexpr auto MAXIMUM_BYTE_SIZE{20971520};

  const auto value_size{value.size()};
  if (value_size < MINIMUM_STRING_LENGTH || value_size >= MAXIMUM_BYTE_SIZE) {
    return;
  }

  // Remove the oldest entries to make space if needed
  while (!this->data.empty() &&
         this->byte_size + value_size >= MAXIMUM_BYTE_SIZE) {
    this->remove_oldest();
  }

  auto result{this->data.insert({std::make_pair(value, type), offset})};
  if (result.second) {
    this->byte_size += value_size;
    this->order.emplace(offset, result.first->first);
  } else if (offset > result.first->second) {
    this->order.erase(result.first->second);
    // If the string already exists, we want to
    // bump the offset for locality purposes.
    result.first->second = offset;
    this->order.emplace(offset, result.first->first);
  }

  // Otherwise we are doing something wrong
  assert(this->order.size() == this->data.size());
}

auto Cache::remove_oldest() -> void {
  assert(!this->data.empty());
  // std::map are by definition ordered by key,
  // so the begin iterator points to the entry
  // with the lowest offset, a.k.a. the oldest.
  const auto iterator{this->order.cbegin()};
  this->byte_size -= iterator->second.get().first.size();
  this->data.erase(iterator->second.get());
  this->order.erase(iterator);
}

auto Cache::find(const sourcemeta::core::JSON::String &value,
                 const Type type) const -> std::optional<std::uint64_t> {
  const auto result{this->data.find(std::make_pair(value, type))};
  if (result == this->data.cend()) {
    return std::nullopt;
  }

  return result->second;
}

} // namespace sourcemeta::jsonbinpack


================================================
FILE: src/runtime/decoder_any.cc
================================================
#include <sourcemeta/jsonbinpack/runtime_decoder.h>

#include <sourcemeta/core/numeric.h>

#include "unreachable.h"

#include <cassert> // assert
#include <cstdint> // std::uint8_t, std::uint16_t, std::uint64_t
#include <memory>  // std::make_shared

namespace sourcemeta::jsonbinpack {

auto Decoder::BYTE_CHOICE_INDEX(const struct BYTE_CHOICE_INDEX &options)
    -> sourcemeta::core::JSON {
  assert(!options.choices.empty());
  assert(sourcemeta::core::is_byte(options.choices.size()));
  const std::uint8_t index{this->get_byte()};
  assert(options.choices.size() > index);
  return options.choices[index];
}

auto Decoder::LARGE_CHOICE_INDEX(const struct LARGE_CHOICE_INDEX &options)
    -> sourcemeta::core::JSON {
  assert(!options.choices.empty());
  const std::uint64_t index{this->get_varint()};
  assert(options.choices.size() > index);
  return options.choices[index];
}

auto Decoder::TOP_LEVEL_BYTE_CHOICE_INDEX(
    const struct TOP_LEVEL_BYTE_CHOICE_INDEX &options)
    -> sourcemeta::core::JSON {
  assert(!options.choices.empty());
  assert(sourcemeta::core::is_byte(options.choices.size()));
  if (!this->has_more_data()) {
    return options.choices.front();
  } else {
    const std::uint16_t index{static_cast<std::uint16_t>(this->get_byte() + 1)};
    assert(options.choices.size() > index);
    return options.choices[index];
  }
}

auto Decoder::CONST_NONE(const struct CONST_NONE &options)
    -> sourcemeta::core::JSON {
  return options.value;
}

auto Decoder::ANY_PACKED_TYPE_TAG_BYTE_PREFIX(
    const struct ANY_PACKED_TYPE_TAG_BYTE_PREFIX &) -> sourcemeta::core::JSON {
  using namespace internal::ANY_PACKED_TYPE_TAG_BYTE_PREFIX;
  const std::uint8_t byte{this->get_byte()};
  const std::uint8_t type{
      static_cast<std::uint8_t>(byte & (0xff >> subtype_size))};
  const std::uint8_t subtype{static_cast<std::uint8_t>(byte >> type_size)};

  if (type == TYPE_OTHER) {
    switch (subtype) {
      case SUBTYPE_NULL:
        return sourcemeta::core::JSON{nullptr};
      case SUBTYPE_FALSE:
        return sourcemeta::core::JSON{false};
      case SUBTYPE_TRUE:
        return sourcemeta::core::JSON{true};
      case SUBTYPE_NUMBER:
        return this->DOUBLE_VARINT_TUPLE({});
      case SUBTYPE_POSITIVE_REAL_INTEGER_BYTE:
        return sourcemeta::core::JSON{static_cast<double>(this->get_byte())};
      case SUBTYPE_POSITIVE_INTEGER:
        return sourcemeta::core::JSON{
            static_cast<std::int64_t>(this->get_varint())};
      case SUBTYPE_NEGATIVE_INTEGER:
        return sourcemeta::core::JSON{
            -static_cast<std::int64_t>(this->get_varint()) - 1};
      case SUBTYPE_LONG_STRING_BASE_EXPONENT_7:
        return sourcemeta::core::JSON{
            this->get_string_utf8(this->get_varint() + 128)};
      case SUBTYPE_LONG_STRING_BASE_EXPONENT_8:
        return sourcemeta::core::JSON{
            this->get_string_utf8(this->get_varint() + 256)};
      case SUBTYPE_LONG_STRING_BASE_EXPONENT_9:
        return sourcemeta::core::JSON{
            this->get_string_utf8(this->get_varint() + 512)};
      case SUBTYPE_LONG_STRING_BASE_EXPONENT_10:
        return sourcemeta::core::JSON{
            this->get_string_utf8(this->get_varint() + 1024)};
      default:
        unreachable();
    }
  } else {
    switch (type) {
      case TYPE_POSITIVE_INTEGER_BYTE:
        return sourcemeta::core::JSON{subtype > 0 ? subtype - 1
                                                  : this->get_byte()};
      case TYPE_NEGATIVE_INTEGER_BYTE:
        return sourcemeta::core::JSON{
            subtype > 0 ? static_cast<std::int64_t>(-subtype)
                        : static_cast<std::int64_t>(-this->get_byte() - 1)};
      case TYPE_SHARED_STRING: {
        const auto length = subtype == 0
                                ? this->get_varint() - 1 +
                                      static_cast<std::uint64_t>(
                                          sourcemeta::core::uint_max<5>) *
                                          2
                                : subtype - 1;
        const std::uint64_t position{this->position()};
        const std::uint64_t current{this->rewind(this->get_varint(), position)};
        const sourcemeta::core::JSON value{this->get_string_utf8(length)};
        this->seek(current);
        return value;
      };
      case TYPE_STRING:
        return subtype == 0
                   ? this->FLOOR_VARINT_PREFIX_UTF8_STRING_SHARED(
                         {static_cast<std::uint64_t>(
                              sourcemeta::core::uint_max<5>) *
                          2})
                   : sourcemeta::core::JSON{this->get_string_utf8(subtype - 1)};
      case TYPE_LONG_STRING:
        return sourcemeta::core::JSON{
            this->get_string_utf8(subtype + sourcemeta::core::uint_max<5>)};
      case TYPE_ARRAY:
        return subtype == 0
                   ? this->FIXED_TYPED_ARRAY(
                         {.size = this->get_varint() +
                                  sourcemeta::core::uint_max<5>,
                          .encoding = std::make_shared<Encoding>(
                              sourcemeta::jsonbinpack::
                                  ANY_PACKED_TYPE_TAG_BYTE_PREFIX{}),
                          .prefix_encodings = {}})
                   : this->FIXED_TYPED_ARRAY(
                         {.size = static_cast<std::uint64_t>(subtype - 1),
                          .encoding = std::make_shared<Encoding>(
                              sourcemeta::jsonbinpack::
                                  ANY_PACKED_TYPE_TAG_BYTE_PREFIX{}),
                          .prefix_encodings = {}});
      case TYPE_OBJECT:
        return subtype == 0
                   ? this->FIXED_TYPED_ARBITRARY_OBJECT(
                         {.size = this->get_varint() +
                                  sourcemeta::core::uint_max<5>,
                          .key_encoding = std::make_shared<Encoding>(
                              sourcemeta::jsonbinpack::
                                  PREFIX_VARINT_LENGTH_STRING_SHARED{}),
                          .encoding = std::make_shared<Encoding>(
                              sourcemeta::jsonbinpack::
                                  ANY_PACKED_TYPE_TAG_BYTE_PREFIX{})})
                   : this->FIXED_TYPED_ARBITRARY_OBJECT(
                         {.size = static_cast<std::uint64_t>(subtype - 1),
                          .key_encoding = std::make_shared<Encoding>(
                              sourcemeta::jsonbinpack::
                                  PREFIX_VARINT_LENGTH_STRING_SHARED{}),
                          .encoding = std::make_shared<Encoding>(
                              sourcemeta::jsonbinpack::
                                  ANY_PACKED_TYPE_TAG_BYTE_PREFIX{})});
      default:
        unreachable();
    }
  }
}

} // namespace sourcemeta::jsonbinpack


================================================
FILE: src/runtime/decoder_array.cc
================================================
#include <sourcemeta/jsonbinpack/runtime_decoder.h>

#include <sourcemeta/core/numeric.h>

#include <cassert> // assert
#include <cstdint> // std::uint8_t, std::uint64_t
#include <utility> // std::move

namespace sourcemeta::jsonbinpack {

auto Decoder::FIXED_TYPED_ARRAY(const struct FIXED_TYPED_ARRAY &options)
    -> sourcemeta::core::JSON {
  const auto prefix_encodings{options.prefix_encodings.size()};
  sourcemeta::core::JSON result = sourcemeta::core::JSON::make_array();
  for (std::size_t index = 0; index < options.size; index++) {
    const Encoding &encoding{prefix_encodings > index
                                 ? options.prefix_encodings[index]
                                 : *(options.encoding)};
    result.push_back(this->read(encoding));
  }

  assert(result.size() == options.size);
  return result;
};

auto Decoder::BOUNDED_8BITS_TYPED_ARRAY(
    const struct BOUNDED_8BITS_TYPED_ARRAY &options) -> sourcemeta::core::JSON {
  assert(options.maximum >= options.minimum);
  assert(sourcemeta::core::is_byte(options.maximum - options.minimum));
  const std::uint8_t byte{this->get_byte()};
  const std::uint64_t size{byte + options.minimum};
  assert(sourcemeta::core::is_within(size, options.minimum, options.maximum));
  return this->FIXED_TYPED_ARRAY(
      {.size = size,
       .encoding = options.encoding,
       .prefix_encodings = options.prefix_encodings});
};

auto Decoder::FLOOR_TYPED_ARRAY(const struct FLOOR_TYPED_ARRAY &options)
    -> sourcemeta::core::JSON {
  const std::uint64_t value{this->get_varint()};
  const std::uint64_t size{value + options.minimum};
  assert(size >= value);
  assert(size >= options.minimum);
  return this->FIXED_TYPED_ARRAY(
      {.size = size,
       .encoding = options.encoding,
       .prefix_encodings = options.prefix_encodings});
};

auto Decoder::ROOF_TYPED_ARRAY(const struct ROOF_TYPED_ARRAY &options)
    -> sourcemeta::core::JSON {
  const std::uint64_t value{this->get_varint()};
  const std::uint64_t size{options.maximum - value};
  assert(size <= options.maximum);
  return this->FIXED_TYPED_ARRAY(
      {.size = size,
       .encoding = options.encoding,
       .prefix_encodings = options.prefix_encodings});
};

} // namespace sourcemeta::jsonbinpack


================================================
FILE: src/runtime/decoder_common.cc
================================================
#include <sourcemeta/jsonbinpack/runtime_decoder.h>

#include "unreachable.h"

#include <cassert> // assert
#include <variant> // std::get

namespace sourcemeta::jsonbinpack {

Decoder::Decoder(Stream &input) : InputStream{input} {}

auto Decoder::read(const Encoding &encoding) -> sourcemeta::core::JSON {
  switch (encoding.index()) {
#define HANDLE_DECODING(index, name)                                           \
  case (index):                                                                \
    return this->name(std::get<sourcemeta::jsonbinpack::name>(encoding));
    HANDLE_DECODING(0, BOUNDED_MULTIPLE_8BITS_ENUM_FIXED)
    HANDLE_DECODING(1, FLOOR_MULTIPLE_ENUM_VARINT)
    HANDLE_DECODING(2, ROOF_MULTIPLE_MIRROR_ENUM_VARINT)
    HANDLE_DECODING(3, ARBITRARY_MULTIPLE_ZIGZAG_VARINT)
    HANDLE_DECODING(4, DOUBLE_VARINT_TUPLE)
    HANDLE_DECODING(5, BYTE_CHOICE_INDEX)
    HANDLE_DECODING(6, LARGE_CHOICE_INDEX)
    HANDLE_DECODING(7, TOP_LEVEL_BYTE_CHOICE_INDEX)
    HANDLE_DECODING(8, CONST_NONE)
    HANDLE_DECODING(9, ANY_PACKED_TYPE_TAG_BYTE_PREFIX)
    HANDLE_DECODING(10, UTF8_STRING_NO_LENGTH)
    HANDLE_DECODING(11, FLOOR_VARINT_PREFIX_UTF8_STRING_SHARED)
    HANDLE_DECODING(12, ROOF_VARINT_PREFIX_UTF8_STRING_SHARED)
    HANDLE_DECODING(13, BOUNDED_8BIT_PREFIX_UTF8_STRING_SHARED)
    HANDLE_DECODING(14, RFC3339_DATE_INTEGER_TRIPLET)
    HANDLE_DECODING(15, PREFIX_VARINT_LENGTH_STRING_SHARED)
    HANDLE_DECODING(16, FIXED_TYPED_ARRAY)
    HANDLE_DECODING(17, BOUNDED_8BITS_TYPED_ARRAY)
    HANDLE_DECODING(18, FLOOR_TYPED_ARRAY)
    HANDLE_DECODING(19, ROOF_TYPED_ARRAY)
    HANDLE_DECODING(20, FIXED_TYPED_ARBITRARY_OBJECT)
    HANDLE_DECODING(21, VARINT_TYPED_ARBITRARY_OBJECT)
#undef HANDLE_DECODING
    default:
      // We should never get here. If so, it is definitely a bug
      unreachable();
  }
}

} // namespace sourcemeta::jsonbinpack


================================================
FILE: src/runtime/decoder_integer.cc
================================================
#include <sourcemeta/jsonbinpack/runtime_decoder.h>

#include <sourcemeta/core/numeric.h>

#include <cassert> // assert
#include <cstdint> // std::uint8_t, std::uint32_t, std::int64_t, std::uint64_t

namespace sourcemeta::jsonbinpack {

auto Decoder::BOUNDED_MULTIPLE_8BITS_ENUM_FIXED(
    const struct BOUNDED_MULTIPLE_8BITS_ENUM_FIXED &options)
    -> sourcemeta::core::JSON {
  assert(options.multiplier > 0);
  const std::uint8_t byte{this->get_byte()};
  const std::int64_t closest_minimum{
      sourcemeta::core::divide_ceil(options.minimum, options.multiplier)};
  if (closest_minimum >= 0) {
    const std::uint64_t closest_minimum_multiple{
        static_cast<std::uint32_t>(closest_minimum) * options.multiplier};
    // We trust the encoder that the data we are seeing
    // corresponds to a valid 64-bit signed integer.
    return sourcemeta::core::JSON{static_cast<std::int64_t>(
        (byte * options.multiplier) + closest_minimum_multiple)};
  } else {
    const std::uint64_t closest_minimum_multiple{
        sourcemeta::core::abs(closest_minimum) * options.multiplier};
    // We trust the encoder that the data we are seeing
    // corresponds to a valid 64-bit signed integer.
    return sourcemeta::core::JSON{static_cast<std::int64_t>(
        (byte * options.multiplier) - closest_minimum_multiple)};
  }
}

auto Decoder::FLOOR_MULTIPLE_ENUM_VARINT(
    const struct FLOOR_MULTIPLE_ENUM_VARINT &options)
    -> sourcemeta::core::JSON {
  assert(options.multiplier > 0);
  const std::int64_t closest_minimum{
      sourcemeta::core::divide_ceil(options.minimum, options.multiplier)};
  if (closest_minimum >= 0) {
    const std::uint64_t closest_minimum_multiple{
        static_cast<std::uint32_t>(closest_minimum) * options.multiplier};
    // We trust the encoder that the data we are seeing
    // corresponds to a valid 64-bit signed integer.
    return sourcemeta::core::JSON{static_cast<std::i
Download .txt
gitextract_ih6xuymu/

├── .ackrc
├── .editorconfig
├── .gitattributes
├── .github/
│   └── workflows/
│       ├── ci.yml
│       ├── website-build.yml
│       └── website-deploy.yml
├── .gitignore
├── Brewfile
├── CMakeLists.txt
├── DEPENDENCIES
├── LICENSE
├── Makefile
├── README.markdown
├── assets/
│   ├── artwork.sketch
│   └── timeline.sketch
├── cmake/
│   ├── FindBlaze.cmake
│   └── FindCore.cmake
├── config.cmake.in
├── doxygen/
│   ├── Doxyfile.in
│   └── todo.markdown
├── src/
│   ├── compiler/
│   │   ├── CMakeLists.txt
│   │   ├── compiler.cc
│   │   ├── encoding.h
│   │   ├── include/
│   │   │   └── sourcemeta/
│   │   │       └── jsonbinpack/
│   │   │           └── compiler.h
│   │   └── mapper/
│   │       ├── enum_8_bit.h
│   │       ├── enum_8_bit_top_level.h
│   │       ├── enum_arbitrary.h
│   │       ├── enum_singleton.h
│   │       ├── integer_bounded_8_bit.h
│   │       ├── integer_bounded_greater_than_8_bit.h
│   │       ├── integer_bounded_multiplier_8_bit.h
│   │       ├── integer_bounded_multiplier_greater_than_8_bit.h
│   │       ├── integer_lower_bound.h
│   │       ├── integer_lower_bound_multiplier.h
│   │       ├── integer_unbound.h
│   │       ├── integer_unbound_multiplier.h
│   │       ├── integer_upper_bound.h
│   │       ├── integer_upper_bound_multiplier.h
│   │       └── number_arbitrary.h
│   └── runtime/
│       ├── CMakeLists.txt
│       ├── cache.cc
│       ├── decoder_any.cc
│       ├── decoder_array.cc
│       ├── decoder_common.cc
│       ├── decoder_integer.cc
│       ├── decoder_number.cc
│       ├── decoder_object.cc
│       ├── decoder_string.cc
│       ├── encoder_any.cc
│       ├── encoder_array.cc
│       ├── encoder_common.cc
│       ├── encoder_integer.cc
│       ├── encoder_number.cc
│       ├── encoder_object.cc
│       ├── encoder_string.cc
│       ├── include/
│       │   └── sourcemeta/
│       │       └── jsonbinpack/
│       │           ├── runtime.h
│       │           ├── runtime_decoder.h
│       │           ├── runtime_encoder.h
│       │           ├── runtime_encoder_cache.h
│       │           ├── runtime_encoding.h
│       │           ├── runtime_input_stream.h
│       │           └── runtime_output_stream.h
│       ├── input_stream.cc
│       ├── loader.cc
│       ├── loader_v1_any.h
│       ├── loader_v1_array.h
│       ├── loader_v1_integer.h
│       ├── loader_v1_number.h
│       ├── loader_v1_string.h
│       ├── output_stream.cc
│       └── unreachable.h
├── test/
│   ├── compiler/
│   │   ├── 2020_12_compiler_any_test.cc
│   │   ├── 2020_12_compiler_integer_test.cc
│   │   ├── 2020_12_compiler_number_test.cc
│   │   ├── CMakeLists.txt
│   │   ├── canonicalizer_test.cc
│   │   └── compiler_test.cc
│   ├── e2e/
│   │   ├── CMakeLists.txt
│   │   ├── circleciblank/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── circlecimatrix/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── commitlint/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── commitlintbasic/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── epr/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── eslintrc/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── esmrc/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── geojson/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── githubfundingblank/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── githubworkflow/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── gruntcontribclean/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── imageoptimizerwebjob/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── jsonereversesort/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── jsonesort/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── jsonfeed/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── jsonresume/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── mixed-bounded-object/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── netcoreproject/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── nightwatch/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── openweathermap/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── openweatherroadrisk/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── ox-test/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── packagejson/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── packagejsonlintrc/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── runner.cc
│   │   ├── sapcloudsdkpipeline/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── travisnotifications/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── tslintbasic/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   ├── tslintextend/
│   │   │   ├── document.json
│   │   │   └── schema-less/
│   │   │       ├── canonical.json
│   │   │       ├── encoding.json
│   │   │       ├── schema.json
│   │   │       └── size.txt
│   │   └── tslintmulti/
│   │       ├── document.json
│   │       └── schema-less/
│   │           ├── canonical.json
│   │           ├── encoding.json
│   │           ├── schema.json
│   │           └── size.txt
│   ├── packaging/
│   │   ├── CMakeLists.txt
│   │   └── find_package/
│   │       ├── CMakeLists.txt
│   │       └── hello.cc
│   └── runtime/
│       ├── CMakeLists.txt
│       ├── decode_any_test.cc
│       ├── decode_array_test.cc
│       ├── decode_integer_test.cc
│       ├── decode_number_test.cc
│       ├── decode_object_test.cc
│       ├── decode_string_test.cc
│       ├── decode_test.cc
│       ├── decode_traits_test.cc
│       ├── decode_utils.h
│       ├── encode_any_test.cc
│       ├── encode_array_test.cc
│       ├── encode_cache_test.cc
│       ├── encode_integer_test.cc
│       ├── encode_number_test.cc
│       ├── encode_object_test.cc
│       ├── encode_real_test.cc
│       ├── encode_string_test.cc
│       ├── encode_test.cc
│       ├── encode_traits_test.cc
│       ├── encode_utils.h
│       ├── encoding_traits_test.cc
│       ├── input_stream_varint_test.cc
│       ├── output_stream_varint_test.cc
│       ├── v1_any_loader_test.cc
│       ├── v1_array_loader_test.cc
│       ├── v1_integer_loader_test.cc
│       ├── v1_loader_test.cc
│       ├── v1_number_loader_test.cc
│       └── v1_string_loader_test.cc
├── vendor/
│   ├── alterschema/
│   │   ├── CMakeLists.txt
│   │   ├── LICENSE
│   │   ├── config.cmake.in
│   │   └── src/
│   │       ├── engine/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── bundle.cc
│   │       │   ├── include/
│   │       │   │   └── sourcemeta/
│   │       │   │       └── alterschema/
│   │       │   │           ├── engine.h
│   │       │   │           ├── engine_bundle.h
│   │       │   │           ├── engine_rule.h
│   │       │   │           └── engine_transformer.h
│   │       │   ├── rule.cc
│   │       │   └── transformer.cc
│   │       └── linter/
│   │           ├── CMakeLists.txt
│   │           ├── antipattern/
│   │           │   ├── const_with_type.h
│   │           │   ├── duplicate_enum_values.h
│   │           │   ├── duplicate_required_values.h
│   │           │   ├── enum_with_type.h
│   │           │   ├── exclusive_maximum_number_and_maximum.h
│   │           │   └── exclusive_minimum_number_and_minimum.h
│   │           ├── desugar/
│   │           │   ├── boolean_true.h
│   │           │   ├── const_as_enum.h
│   │           │   ├── exclusive_maximum_integer_to_maximum.h
│   │           │   ├── exclusive_minimum_integer_to_minimum.h
│   │           │   ├── type_array_to_any_of_2020_12.h
│   │           │   ├── type_boolean_as_enum.h
│   │           │   └── type_null_as_enum.h
│   │           ├── implicit/
│   │           │   ├── max_contains_covered_by_max_items.h
│   │           │   ├── min_items_given_min_contains.h
│   │           │   ├── min_items_implicit.h
│   │           │   ├── min_length_implicit.h
│   │           │   ├── min_properties_covered_by_required.h
│   │           │   ├── min_properties_implicit.h
│   │           │   ├── multiple_of_implicit.h
│   │           │   ├── properties_implicit.h
│   │           │   └── type_union_implicit.h
│   │           ├── include/
│   │           │   └── sourcemeta/
│   │           │       └── alterschema/
│   │           │           └── linter.h
│   │           ├── linter.cc
│   │           ├── redundant/
│   │           │   ├── additional_properties_default.h
│   │           │   ├── content_schema_default.h
│   │           │   ├── dependencies_default.h
│   │           │   ├── dependent_required_default.h
│   │           │   ├── items_array_default.h
│   │           │   ├── items_schema_default.h
│   │           │   ├── pattern_properties_default.h
│   │           │   ├── properties_default.h
│   │           │   ├── unevaluated_items_default.h
│   │           │   ├── unevaluated_properties_default.h
│   │           │   ├── unsatisfiable_max_contains.h
│   │           │   └── unsatisfiable_min_properties.h
│   │           ├── simplify/
│   │           │   ├── dependencies_property_tautology.h
│   │           │   ├── dependent_required_tautology.h
│   │           │   ├── equal_numeric_bounds_to_enum.h
│   │           │   ├── maximum_real_for_integer.h
│   │           │   ├── minimum_real_for_integer.h
│   │           │   └── single_type_array.h
│   │           ├── superfluous/
│   │           │   ├── content_media_type_without_encoding.h
│   │           │   ├── content_schema_without_media_type.h
│   │           │   ├── drop_non_array_keywords_applicator_2019_09.h
│   │           │   ├── drop_non_array_keywords_applicator_2020_12.h
│   │           │   ├── drop_non_array_keywords_content_2019_09.h
│   │           │   ├── drop_non_array_keywords_content_2020_12.h
│   │           │   ├── drop_non_array_keywords_draft0.h
│   │           │   ├── drop_non_array_keywords_draft1.h
│   │           │   ├── drop_non_array_keywords_draft2.h
│   │           │   ├── drop_non_array_keywords_draft3.h
│   │           │   ├── drop_non_array_keywords_draft4.h
│   │           │   ├── drop_non_array_keywords_draft6.h
│   │           │   ├── drop_non_array_keywords_draft7.h
│   │           │   ├── drop_non_array_keywords_format_2019_09.h
│   │           │   ├── drop_non_array_keywords_format_2020_12.h
│   │           │   ├── drop_non_array_keywords_unevaluated_2020_12.h
│   │           │   ├── drop_non_array_keywords_validation_2019_09.h
│   │           │   ├── drop_non_array_keywords_validation_2020_12.h
│   │           │   ├── drop_non_boolean_keywords_applicator_2019_09.h
│   │           │   ├── drop_non_boolean_keywords_applicator_2020_12.h
│   │           │   ├── drop_non_boolean_keywords_content_2019_09.h
│   │           │   ├── drop_non_boolean_keywords_content_2020_12.h
│   │           │   ├── drop_non_boolean_keywords_draft0.h
│   │           │   ├── drop_non_boolean_keywords_draft1.h
│   │           │   ├── drop_non_boolean_keywords_draft2.h
│   │           │   ├── drop_non_boolean_keywords_draft3.h
│   │           │   ├── drop_non_boolean_keywords_draft4.h
│   │           │   ├── drop_non_boolean_keywords_draft6.h
│   │           │   ├── drop_non_boolean_keywords_draft7.h
│   │           │   ├── drop_non_boolean_keywords_format_2019_09.h
│   │           │   ├── drop_non_boolean_keywords_format_2020_12.h
│   │           │   ├── drop_non_boolean_keywords_unevaluated_2020_12.h
│   │           │   ├── drop_non_boolean_keywords_validation_2019_09.h
│   │           │   ├── drop_non_boolean_keywords_validation_2020_12.h
│   │           │   ├── drop_non_null_keywords_applicator_2019_09.h
│   │           │   ├── drop_non_null_keywords_applicator_2020_12.h
│   │           │   ├── drop_non_null_keywords_content_2019_09.h
│   │           │   ├── drop_non_null_keywords_content_2020_12.h
│   │           │   ├── drop_non_null_keywords_draft0.h
│   │           │   ├── drop_non_null_keywords_draft1.h
│   │           │   ├── drop_non_null_keywords_draft2.h
│   │           │   ├── drop_non_null_keywords_draft3.h
│   │           │   ├── drop_non_null_keywords_draft4.h
│   │           │   ├── drop_non_null_keywords_draft6.h
│   │           │   ├── drop_non_null_keywords_draft7.h
│   │           │   ├── drop_non_null_keywords_format_2019_09.h
│   │           │   ├── drop_non_null_keywords_format_2020_12.h
│   │           │   ├── drop_non_null_keywords_unevaluated_2020_12.h
│   │           │   ├── drop_non_null_keywords_validation_2019_09.h
│   │           │   ├── drop_non_null_keywords_validation_2020_12.h
│   │           │   ├── drop_non_numeric_keywords_applicator_2019_09.h
│   │           │   ├── drop_non_numeric_keywords_applicator_2020_12.h
│   │           │   ├── drop_non_numeric_keywords_content_2019_09.h
│   │           │   ├── drop_non_numeric_keywords_content_2020_12.h
│   │           │   ├── drop_non_numeric_keywords_draft0.h
│   │           │   ├── drop_non_numeric_keywords_draft1.h
│   │           │   ├── drop_non_numeric_keywords_draft2.h
│   │           │   ├── drop_non_numeric_keywords_draft3.h
│   │           │   ├── drop_non_numeric_keywords_draft4.h
│   │           │   ├── drop_non_numeric_keywords_draft6.h
│   │           │   ├── drop_non_numeric_keywords_draft7.h
│   │           │   ├── drop_non_numeric_keywords_format_2019_09.h
│   │           │   ├── drop_non_numeric_keywords_format_2020_12.h
│   │           │   ├── drop_non_numeric_keywords_unevaluated_2020_12.h
│   │           │   ├── drop_non_numeric_keywords_validation_2019_09.h
│   │           │   ├── drop_non_numeric_keywords_validation_2020_12.h
│   │           │   ├── drop_non_object_keywords_applicator_2019_09.h
│   │           │   ├── drop_non_object_keywords_applicator_2020_12.h
│   │           │   ├── drop_non_object_keywords_content_2019_09.h
│   │           │   ├── drop_non_object_keywords_content_2020_12.h
│   │           │   ├── drop_non_object_keywords_draft0.h
│   │           │   ├── drop_non_object_keywords_draft1.h
│   │           │   ├── drop_non_object_keywords_draft2.h
│   │           │   ├── drop_non_object_keywords_draft3.h
│   │           │   ├── drop_non_object_keywords_draft4.h
│   │           │   ├── drop_non_object_keywords_draft6.h
│   │           │   ├── drop_non_object_keywords_draft7.h
│   │           │   ├── drop_non_object_keywords_format_2019_09.h
│   │           │   ├── drop_non_object_keywords_format_2020_12.h
│   │           │   ├── drop_non_object_keywords_unevaluated_2020_12.h
│   │           │   ├── drop_non_object_keywords_validation_2019_09.h
│   │           │   ├── drop_non_object_keywords_validation_2020_12.h
│   │           │   ├── drop_non_string_keywords_applicator_2019_09.h
│   │           │   ├── drop_non_string_keywords_applicator_2020_12.h
│   │           │   ├── drop_non_string_keywords_draft0.h
│   │           │   ├── drop_non_string_keywords_draft1.h
│   │           │   ├── drop_non_string_keywords_draft2.h
│   │           │   ├── drop_non_string_keywords_draft3.h
│   │           │   ├── drop_non_string_keywords_draft4.h
│   │           │   ├── drop_non_string_keywords_draft6.h
│   │           │   ├── drop_non_string_keywords_draft7.h
│   │           │   ├── drop_non_string_keywords_unevaluated_2020_12.h
│   │           │   ├── drop_non_string_keywords_validation_2019_09.h
│   │           │   ├── drop_non_string_keywords_validation_2020_12.h
│   │           │   ├── duplicate_allof_branches.h
│   │           │   ├── duplicate_anyof_branches.h
│   │           │   ├── else_without_if.h
│   │           │   ├── if_without_then_else.h
│   │           │   ├── max_contains_without_contains.h
│   │           │   ├── min_contains_without_contains.h
│   │           │   └── then_without_if.h
│   │           └── syntax_sugar/
│   │               └── enum_to_const.h
│   ├── blaze/
│   │   ├── CMakeLists.txt
│   │   ├── DEPENDENCIES
│   │   ├── LICENSE
│   │   ├── config.cmake.in
│   │   ├── package.json
│   │   ├── patches/
│   │   │   └── jsonschema-test-suite/
│   │   │       └── 0001-draft3-ref-sibling.patch
│   │   ├── ports/
│   │   │   └── javascript/
│   │   │       ├── LICENSE
│   │   │       ├── README.md
│   │   │       ├── describe.mjs
│   │   │       ├── index.d.mts
│   │   │       ├── index.mjs
│   │   │       ├── opcodes.mjs
│   │   │       └── package.json
│   │   ├── schemas/
│   │   │   ├── canonical-2019-09.json
│   │   │   ├── canonical-2020-12.json
│   │   │   ├── canonical-draft1.json
│   │   │   ├── canonical-draft2.json
│   │   │   ├── canonical-draft3.json
│   │   │   ├── canonical-draft4.json
│   │   │   ├── canonical-draft6.json
│   │   │   ├── canonical-draft7.json
│   │   │   ├── documentation.json
│   │   │   └── jsonschema.json
│   │   └── src/
│   │       ├── alterschema/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── alterschema.cc
│   │       │   ├── canonicalizer/
│   │       │   │   ├── additional_items_implicit.h
│   │       │   │   ├── allof_merge_compatible_branches.h
│   │       │   │   ├── comment_drop.h
│   │       │   │   ├── const_as_enum.h
│   │       │   │   ├── dependencies_to_any_of.h
│   │       │   │   ├── dependencies_to_extends_disallow.h
│   │       │   │   ├── dependent_required_to_any_of.h
│   │       │   │   ├── dependent_schemas_to_any_of.h
│   │       │   │   ├── deprecated_false_drop.h
│   │       │   │   ├── disallow_to_array_of_schemas.h
│   │       │   │   ├── divisible_by_implicit.h
│   │       │   │   ├── draft3_type_any.h
│   │       │   │   ├── empty_definitions_drop.h
│   │       │   │   ├── empty_defs_drop.h
│   │       │   │   ├── empty_dependencies_drop.h
│   │       │   │   ├── empty_dependent_required_drop.h
│   │       │   │   ├── empty_dependent_schemas_drop.h
│   │       │   │   ├── enum_drop_redundant_validation.h
│   │       │   │   ├── enum_filter_by_type.h
│   │       │   │   ├── exclusive_maximum_boolean_integer_fold.h
│   │       │   │   ├── exclusive_maximum_integer_to_maximum.h
│   │       │   │   ├── exclusive_minimum_boolean_integer_fold.h
│   │       │   │   ├── exclusive_minimum_integer_to_minimum.h
│   │       │   │   ├── extends_to_array.h
│   │       │   │   ├── if_then_else_implicit.h
│   │       │   │   ├── implicit_contains_keywords.h
│   │       │   │   ├── implicit_object_keywords.h
│   │       │   │   ├── inline_single_use_ref.h
│   │       │   │   ├── items_implicit.h
│   │       │   │   ├── max_contains_covered_by_max_items.h
│   │       │   │   ├── max_decimal_implicit.h
│   │       │   │   ├── maximum_can_equal_integer_fold.h
│   │       │   │   ├── maximum_can_equal_true_drop.h
│   │       │   │   ├── min_items_given_min_contains.h
│   │       │   │   ├── min_length_implicit.h
│   │       │   │   ├── min_properties_covered_by_required.h
│   │       │   │   ├── minimum_can_equal_integer_fold.h
│   │       │   │   ├── minimum_can_equal_true_drop.h
│   │       │   │   ├── multiple_of_implicit.h
│   │       │   │   ├── optional_property_implicit.h
│   │       │   │   ├── recursive_anchor_false_drop.h
│   │       │   │   ├── required_property_implicit.h
│   │       │   │   ├── single_branch_allof.h
│   │       │   │   ├── single_branch_anyof.h
│   │       │   │   ├── single_branch_oneof.h
│   │       │   │   ├── type_array_to_any_of.h
│   │       │   │   ├── type_boolean_as_enum.h
│   │       │   │   ├── type_inherit_in_place.h
│   │       │   │   ├── type_null_as_enum.h
│   │       │   │   ├── type_union_implicit.h
│   │       │   │   ├── type_union_to_schemas.h
│   │       │   │   ├── type_with_applicator_to_allof.h
│   │       │   │   ├── type_with_applicator_to_extends.h
│   │       │   │   ├── unevaluated_items_to_items.h
│   │       │   │   ├── unevaluated_properties_to_additional_properties.h
│   │       │   │   ├── unsatisfiable_can_equal_bounds.h
│   │       │   │   ├── unsatisfiable_exclusive_equal_bounds.h
│   │       │   │   └── unsatisfiable_type_and_enum.h
│   │       │   ├── common/
│   │       │   │   ├── allof_false_simplify.h
│   │       │   │   ├── anyof_false_simplify.h
│   │       │   │   ├── anyof_remove_false_schemas.h
│   │       │   │   ├── anyof_true_simplify.h
│   │       │   │   ├── const_in_enum.h
│   │       │   │   ├── const_with_type.h
│   │       │   │   ├── content_media_type_without_encoding.h
│   │       │   │   ├── content_schema_without_media_type.h
│   │       │   │   ├── dependencies_property_tautology.h
│   │       │   │   ├── dependent_required_tautology.h
│   │       │   │   ├── disallow_narrows_type.h
│   │       │   │   ├── double_negation_elimination.h
│   │       │   │   ├── draft_official_dialect_with_https.h
│   │       │   │   ├── draft_official_dialect_without_empty_fragment.h
│   │       │   │   ├── draft_ref_siblings.h
│   │       │   │   ├── drop_allof_empty_schemas.h
│   │       │   │   ├── drop_extends_empty_schemas.h
│   │       │   │   ├── duplicate_allof_branches.h
│   │       │   │   ├── duplicate_anyof_branches.h
│   │       │   │   ├── duplicate_enum_values.h
│   │       │   │   ├── duplicate_required_values.h
│   │       │   │   ├── dynamic_ref_to_static_ref.h
│   │       │   │   ├── else_without_if.h
│   │       │   │   ├── empty_object_as_true.h
│   │       │   │   ├── enum_with_type.h
│   │       │   │   ├── equal_numeric_bounds_to_enum.h
│   │       │   │   ├── exclusive_bounds_false_drop.h
│   │       │   │   ├── exclusive_maximum_number_and_maximum.h
│   │       │   │   ├── exclusive_minimum_number_and_minimum.h
│   │       │   │   ├── flatten_nested_allof.h
│   │       │   │   ├── flatten_nested_anyof.h
│   │       │   │   ├── flatten_nested_extends.h
│   │       │   │   ├── if_without_then_else.h
│   │       │   │   ├── ignored_metaschema.h
│   │       │   │   ├── max_contains_without_contains.h
│   │       │   │   ├── maximum_real_for_integer.h
│   │       │   │   ├── min_contains_without_contains.h
│   │       │   │   ├── minimum_real_for_integer.h
│   │       │   │   ├── modern_official_dialect_with_empty_fragment.h
│   │       │   │   ├── modern_official_dialect_with_http.h
│   │       │   │   ├── non_applicable_additional_items.h
│   │       │   │   ├── non_applicable_disallow_types.h
│   │       │   │   ├── non_applicable_enum_validation_keywords.h
│   │       │   │   ├── non_applicable_type_specific_keywords.h
│   │       │   │   ├── not_false.h
│   │       │   │   ├── oneof_false_simplify.h
│   │       │   │   ├── oneof_to_anyof_disjoint_types.h
│   │       │   │   ├── orphan_definitions.h
│   │       │   │   ├── required_properties_in_properties.h
│   │       │   │   ├── single_type_array.h
│   │       │   │   ├── then_without_if.h
│   │       │   │   ├── unknown_keywords_prefix.h
│   │       │   │   ├── unknown_local_ref.h
│   │       │   │   ├── unnecessary_allof_ref_wrapper_draft.h
│   │       │   │   ├── unnecessary_extends_ref_wrapper.h
│   │       │   │   ├── unsatisfiable_drop_validation.h
│   │       │   │   └── unsatisfiable_in_place_applicator_type.h
│   │       │   ├── include/
│   │       │   │   └── sourcemeta/
│   │       │   │       └── blaze/
│   │       │   │           ├── alterschema.h
│   │       │   │           ├── alterschema_error.h
│   │       │   │           └── alterschema_transformer.h
│   │       │   ├── linter/
│   │       │   │   ├── comment_trim.h
│   │       │   │   ├── const_not_in_enum.h
│   │       │   │   ├── content_schema_default.h
│   │       │   │   ├── definitions_to_defs.h
│   │       │   │   ├── dependencies_default.h
│   │       │   │   ├── dependent_required_default.h
│   │       │   │   ├── description_trailing_period.h
│   │       │   │   ├── description_trim.h
│   │       │   │   ├── disallow_default.h
│   │       │   │   ├── divisible_by_default.h
│   │       │   │   ├── duplicate_examples.h
│   │       │   │   ├── else_empty.h
│   │       │   │   ├── enum_to_const.h
│   │       │   │   ├── equal_numeric_bounds_to_const.h
│   │       │   │   ├── forbid_empty_enum.h
│   │       │   │   ├── incoherent_min_max_contains.h
│   │       │   │   ├── invalid_external_ref.h
│   │       │   │   ├── items_array_default.h
│   │       │   │   ├── items_schema_default.h
│   │       │   │   ├── multiple_of_default.h
│   │       │   │   ├── pattern_properties_default.h
│   │       │   │   ├── portable_anchor_names.h
│   │       │   │   ├── properties_default.h
│   │       │   │   ├── property_names_default.h
│   │       │   │   ├── property_names_type_default.h
│   │       │   │   ├── simple_properties_identifiers.h
│   │       │   │   ├── then_empty.h
│   │       │   │   ├── title_description_equal.h
│   │       │   │   ├── title_trailing_period.h
│   │       │   │   ├── title_trim.h
│   │       │   │   ├── top_level_description.h
│   │       │   │   ├── top_level_examples.h
│   │       │   │   ├── top_level_title.h
│   │       │   │   ├── unevaluated_items_default.h
│   │       │   │   ├── unevaluated_properties_default.h
│   │       │   │   ├── unknown_format_prefix.h
│   │       │   │   ├── unnecessary_allof_ref_wrapper_modern.h
│   │       │   │   ├── unnecessary_allof_wrapper.h
│   │       │   │   ├── unnecessary_extends_wrapper.h
│   │       │   │   ├── unsatisfiable_max_contains.h
│   │       │   │   ├── unsatisfiable_min_properties.h
│   │       │   │   ├── valid_default.h
│   │       │   │   └── valid_examples.h
│   │       │   ├── schema_rule.cc
│   │       │   ├── transformer.cc
│   │       │   └── upgrade/
│   │       │       ├── helpers.h
│   │       │       ├── prefix_promoted_2020_12_keywords.h
│   │       │       ├── prefix_promoted_draft_2019_09_keywords.h
│   │       │       ├── prefix_promoted_draft_4_keywords.h
│   │       │       ├── prefix_promoted_draft_6_keywords.h
│   │       │       ├── prefix_promoted_draft_7_keywords.h
│   │       │       ├── upgrade_2019_09_to_2020_12.h
│   │       │       ├── upgrade_dialect_override_cleanup.h
│   │       │       ├── upgrade_draft_3_to_draft_4.h
│   │       │       ├── upgrade_draft_4_to_draft_6.h
│   │       │       ├── upgrade_draft_6_to_draft_7.h
│   │       │       └── upgrade_draft_7_to_draft_2019_09.h
│   │       ├── codegen/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── codegen.cc
│   │       │   ├── codegen_default_compiler.h
│   │       │   ├── codegen_mangle.cc
│   │       │   ├── codegen_symbol.cc
│   │       │   ├── codegen_typescript.cc
│   │       │   └── include/
│   │       │       └── sourcemeta/
│   │       │           └── blaze/
│   │       │               ├── codegen.h
│   │       │               ├── codegen_error.h
│   │       │               └── codegen_typescript.h
│   │       ├── compiler/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── compile.cc
│   │       │   ├── compile_helpers.h
│   │       │   ├── compile_json.cc
│   │       │   ├── default_compiler.cc
│   │       │   ├── default_compiler_2019_09.h
│   │       │   ├── default_compiler_2020_12.h
│   │       │   ├── default_compiler_draft3.h
│   │       │   ├── default_compiler_draft4.h
│   │       │   ├── default_compiler_draft6.h
│   │       │   ├── default_compiler_draft7.h
│   │       │   ├── default_compiler_openapi.h
│   │       │   ├── include/
│   │       │   │   └── sourcemeta/
│   │       │   │       └── blaze/
│   │       │   │           ├── compiler.h
│   │       │   │           ├── compiler_error.h
│   │       │   │           └── compiler_unevaluated.h
│   │       │   ├── postprocess.h
│   │       │   └── unevaluated.cc
│   │       ├── configuration/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── configuration.cc
│   │       │   ├── fetch.cc
│   │       │   ├── include/
│   │       │   │   └── sourcemeta/
│   │       │   │       └── blaze/
│   │       │   │           ├── configuration.h
│   │       │   │           └── configuration_error.h
│   │       │   ├── json.cc
│   │       │   ├── lock.cc
│   │       │   └── parse.cc
│   │       ├── documentation/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── documentation.cc
│   │       │   ├── documentation_html.cc
│   │       │   └── include/
│   │       │       └── sourcemeta/
│   │       │           └── blaze/
│   │       │               └── documentation.h
│   │       ├── evaluator/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── evaluator_describe.cc
│   │       │   ├── evaluator_json.cc
│   │       │   └── include/
│   │       │       └── sourcemeta/
│   │       │           └── blaze/
│   │       │               ├── evaluator.h
│   │       │               ├── evaluator_dispatch.h
│   │       │               ├── evaluator_error.h
│   │       │               ├── evaluator_instruction.h
│   │       │               ├── evaluator_string_set.h
│   │       │               └── evaluator_value.h
│   │       ├── output/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── include/
│   │       │   │   └── sourcemeta/
│   │       │   │       └── blaze/
│   │       │   │           ├── output.h
│   │       │   │           ├── output_simple.h
│   │       │   │           ├── output_standard.h
│   │       │   │           └── output_trace.h
│   │       │   ├── output_simple.cc
│   │       │   ├── output_standard.cc
│   │       │   └── output_trace.cc
│   │       └── test/
│   │           ├── CMakeLists.txt
│   │           ├── include/
│   │           │   └── sourcemeta/
│   │           │       └── blaze/
│   │           │           ├── test.h
│   │           │           └── test_error.h
│   │           ├── test_parser.cc
│   │           └── test_runner.cc
│   ├── bootstrap/
│   │   └── scss/
│   │       ├── _accordion.scss
│   │       ├── _alert.scss
│   │       ├── _badge.scss
│   │       ├── _breadcrumb.scss
│   │       ├── _button-group.scss
│   │       ├── _buttons.scss
│   │       ├── _card.scss
│   │       ├── _carousel.scss
│   │       ├── _close.scss
│   │       ├── _containers.scss
│   │       ├── _dropdown.scss
│   │       ├── _forms.scss
│   │       ├── _functions.scss
│   │       ├── _grid.scss
│   │       ├── _helpers.scss
│   │       ├── _images.scss
│   │       ├── _list-group.scss
│   │       ├── _mixins.scss
│   │       ├── _modal.scss
│   │       ├── _nav.scss
│   │       ├── _navbar.scss
│   │       ├── _offcanvas.scss
│   │       ├── _pagination.scss
│   │       ├── _placeholders.scss
│   │       ├── _popover.scss
│   │       ├── _progress.scss
│   │       ├── _reboot.scss
│   │       ├── _root.scss
│   │       ├── _spinners.scss
│   │       ├── _tables.scss
│   │       ├── _toasts.scss
│   │       ├── _tooltip.scss
│   │       ├── _transitions.scss
│   │       ├── _type.scss
│   │       ├── _utilities.scss
│   │       ├── _variables.scss
│   │       ├── bootstrap-grid.scss
│   │       ├── bootstrap-reboot.scss
│   │       ├── bootstrap-utilities.scss
│   │       ├── bootstrap.scss
│   │       ├── forms/
│   │       │   ├── _floating-labels.scss
│   │       │   ├── _form-check.scss
│   │       │   ├── _form-control.scss
│   │       │   ├── _form-range.scss
│   │       │   ├── _form-select.scss
│   │       │   ├── _form-text.scss
│   │       │   ├── _input-group.scss
│   │       │   ├── _labels.scss
│   │       │   └── _validation.scss
│   │       ├── helpers/
│   │       │   ├── _clearfix.scss
│   │       │   ├── _colored-links.scss
│   │       │   ├── _position.scss
│   │       │   ├── _ratio.scss
│   │       │   ├── _stacks.scss
│   │       │   ├── _stretched-link.scss
│   │       │   ├── _text-truncation.scss
│   │       │   ├── _visually-hidden.scss
│   │       │   └── _vr.scss
│   │       ├── mixins/
│   │       │   ├── _alert.scss
│   │       │   ├── _backdrop.scss
│   │       │   ├── _border-radius.scss
│   │       │   ├── _box-shadow.scss
│   │       │   ├── _breakpoints.scss
│   │       │   ├── _buttons.scss
│   │       │   ├── _caret.scss
│   │       │   ├── _clearfix.scss
│   │       │   ├── _color-scheme.scss
│   │       │   ├── _container.scss
│   │       │   ├── _deprecate.scss
│   │       │   ├── _forms.scss
│   │       │   ├── _gradients.scss
│   │       │   ├── _grid.scss
│   │       │   ├── _image.scss
│   │       │   ├── _list-group.scss
│   │       │   ├── _lists.scss
│   │       │   ├── _pagination.scss
│   │       │   ├── _reset-text.scss
│   │       │   ├── _resize.scss
│   │       │   ├── _table-variants.scss
│   │       │   ├── _text-truncate.scss
│   │       │   ├── _transition.scss
│   │       │   ├── _utilities.scss
│   │       │   └── _visually-hidden.scss
│   │       ├── utilities/
│   │       │   └── _api.scss
│   │       └── vendor/
│   │           └── _rfs.scss
│   ├── bootstrap.mask
│   ├── core/
│   │   ├── CMakeLists.txt
│   │   ├── DEPENDENCIES
│   │   ├── LICENSE
│   │   ├── cmake/
│   │   │   ├── FindCMarkGFM.cmake
│   │   │   ├── FindGoogleBenchmark.cmake
│   │   │   ├── FindGoogleTest.cmake
│   │   │   ├── FindLibDeflate.cmake
│   │   │   ├── FindPCRE2.cmake
│   │   │   ├── FindZLIB.cmake
│   │   │   ├── Sourcemeta.cmake
│   │   │   └── common/
│   │   │       ├── clang-tidy.cmake
│   │   │       ├── clang-tidy.json
│   │   │       ├── commands/
│   │   │       │   └── copy-file.cmake
│   │   │       ├── compiler/
│   │   │       │   ├── options.cmake
│   │   │       │   ├── sanitizer.cmake
│   │   │       │   └── simd.cmake
│   │   │       ├── defaults.cmake
│   │   │       ├── options/
│   │   │       │   └── enum.cmake
│   │   │       ├── shim.cmake
│   │   │       ├── targets/
│   │   │       │   ├── clang-format.cmake
│   │   │       │   ├── clang-format.json
│   │   │       │   ├── doxygen.cmake
│   │   │       │   ├── executable.cmake
│   │   │       │   ├── googlebenchmark.cmake
│   │   │       │   ├── googletest.cmake
│   │   │       │   ├── library.cmake
│   │   │       │   └── shellcheck.cmake
│   │   │       └── variables.cmake
│   │   ├── config.cmake.in
│   │   ├── src/
│   │   │   ├── core/
│   │   │   │   ├── crypto/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── crypto_sha256.cc
│   │   │   │   │   ├── crypto_uuid.cc
│   │   │   │   │   └── include/
│   │   │   │   │       └── sourcemeta/
│   │   │   │   │           └── core/
│   │   │   │   │               ├── crypto.h
│   │   │   │   │               ├── crypto_sha256.h
│   │   │   │   │               └── crypto_uuid.h
│   │   │   │   ├── dns/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── hostname.cc
│   │   │   │   │   └── include/
│   │   │   │   │       └── sourcemeta/
│   │   │   │   │           └── core/
│   │   │   │   │               └── dns.h
│   │   │   │   ├── gzip/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── gzip.cc
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           ├── gzip.h
│   │   │   │   │   │           ├── gzip_error.h
│   │   │   │   │   │           └── gzip_streambuf.h
│   │   │   │   │   └── streambuf.cc
│   │   │   │   ├── html/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── escape.cc
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           ├── html.h
│   │   │   │   │   │           ├── html_buffer.h
│   │   │   │   │   │           ├── html_escape.h
│   │   │   │   │   │           └── html_writer.h
│   │   │   │   │   └── writer.cc
│   │   │   │   ├── ip/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           └── ip.h
│   │   │   │   │   ├── ipv4.cc
│   │   │   │   │   └── ipv6.cc
│   │   │   │   ├── json/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── construct.h
│   │   │   │   │   ├── grammar.h
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           ├── json.h
│   │   │   │   │   │           ├── json_array.h
│   │   │   │   │   │           ├── json_auto.h
│   │   │   │   │   │           ├── json_error.h
│   │   │   │   │   │           ├── json_hash.h
│   │   │   │   │   │           ├── json_object.h
│   │   │   │   │   │           └── json_value.h
│   │   │   │   │   ├── json.cc
│   │   │   │   │   ├── json_value.cc
│   │   │   │   │   ├── parser.h
│   │   │   │   │   └── stringify.h
│   │   │   │   ├── jsonl/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── grammar.h
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           ├── jsonl.h
│   │   │   │   │   │           └── jsonl_iterator.h
│   │   │   │   │   ├── iterator.cc
│   │   │   │   │   └── jsonl.cc
│   │   │   │   ├── jsonpointer/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── grammar.h
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           ├── jsonpointer.h
│   │   │   │   │   │           ├── jsonpointer_error.h
│   │   │   │   │   │           ├── jsonpointer_pointer.h
│   │   │   │   │   │           ├── jsonpointer_position.h
│   │   │   │   │   │           ├── jsonpointer_token.h
│   │   │   │   │   │           └── jsonpointer_walker.h
│   │   │   │   │   ├── jsonpointer.cc
│   │   │   │   │   ├── parser.h
│   │   │   │   │   ├── position.cc
│   │   │   │   │   └── stringify.h
│   │   │   │   ├── jsonschema/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── bundle.cc
│   │   │   │   │   ├── format.cc
│   │   │   │   │   ├── frame.cc
│   │   │   │   │   ├── helpers.h
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           ├── jsonschema.h
│   │   │   │   │   │           ├── jsonschema_bundle.h
│   │   │   │   │   │           ├── jsonschema_error.h
│   │   │   │   │   │           ├── jsonschema_frame.h
│   │   │   │   │   │           ├── jsonschema_types.h
│   │   │   │   │   │           ├── jsonschema_vocabularies.h
│   │   │   │   │   │           └── jsonschema_walker.h
│   │   │   │   │   ├── jsonschema.cc
│   │   │   │   │   ├── known_resolver.cmake
│   │   │   │   │   ├── known_resolver.in.cc
│   │   │   │   │   ├── known_walker.cc
│   │   │   │   │   ├── vocabularies.cc
│   │   │   │   │   └── walker.cc
│   │   │   │   ├── markdown/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           └── markdown.h
│   │   │   │   │   └── markdown.cc
│   │   │   │   ├── punycode/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           ├── punycode.h
│   │   │   │   │   │           └── punycode_error.h
│   │   │   │   │   └── punycode.cc
│   │   │   │   ├── regex/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           └── regex.h
│   │   │   │   │   ├── preprocess.h
│   │   │   │   │   └── regex.cc
│   │   │   │   ├── semver/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           ├── semver.h
│   │   │   │   │   │           └── semver_error.h
│   │   │   │   │   └── semver.cc
│   │   │   │   ├── time/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── gmt.cc
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           └── time.h
│   │   │   │   │   └── rfc3339_datetime.cc
│   │   │   │   ├── unicode/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           └── unicode.h
│   │   │   │   │   └── unicode.cc
│   │   │   │   ├── uri/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── accessors.cc
│   │   │   │   │   ├── canonicalize.cc
│   │   │   │   │   ├── escaping.h
│   │   │   │   │   ├── filesystem.cc
│   │   │   │   │   ├── grammar.h
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           ├── uri.h
│   │   │   │   │   │           └── uri_error.h
│   │   │   │   │   ├── normalize.h
│   │   │   │   │   ├── parse.cc
│   │   │   │   │   ├── query.cc
│   │   │   │   │   ├── recompose.cc
│   │   │   │   │   ├── resolution.cc
│   │   │   │   │   ├── setters.cc
│   │   │   │   │   └── uri.cc
│   │   │   │   ├── uritemplate/
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── helpers.h
│   │   │   │   │   ├── include/
│   │   │   │   │   │   └── sourcemeta/
│   │   │   │   │   │       └── core/
│   │   │   │   │   │           ├── uritemplate.h
│   │   │   │   │   │           ├── uritemplate_error.h
│   │   │   │   │   │           ├── uritemplate_router.h
│   │   │   │   │   │           └── uritemplate_token.h
│   │   │   │   │   ├── uritemplate.cc
│   │   │   │   │   ├── uritemplate_router.cc
│   │   │   │   │   └── uritemplate_router_view.cc
│   │   │   │   └── yaml/
│   │   │   │       ├── CMakeLists.txt
│   │   │   │       ├── include/
│   │   │   │       │   └── sourcemeta/
│   │   │   │       │       └── core/
│   │   │   │       │           ├── yaml.h
│   │   │   │       │           ├── yaml_error.h
│   │   │   │       │           └── yaml_roundtrip.h
│   │   │   │       ├── lexer.h
│   │   │   │       ├── parser.h
│   │   │   │       ├── stringify.h
│   │   │   │       └── yaml.cc
│   │   │   ├── extension/
│   │   │   │   └── editorschema/
│   │   │   │       ├── CMakeLists.txt
│   │   │   │       ├── editorschema.cc
│   │   │   │       └── include/
│   │   │   │           └── sourcemeta/
│   │   │   │               └── core/
│   │   │   │                   └── editorschema.h
│   │   │   └── lang/
│   │   │       ├── error/
│   │   │       │   ├── CMakeLists.txt
│   │   │       │   └── include/
│   │   │       │       └── sourcemeta/
│   │   │       │           └── core/
│   │   │       │               ├── error.h
│   │   │       │               └── error_file.h
│   │   │       ├── io/
│   │   │       │   ├── CMakeLists.txt
│   │   │       │   ├── include/
│   │   │       │   │   └── sourcemeta/
│   │   │       │   │       └── core/
│   │   │       │   │           ├── io.h
│   │   │       │   │           ├── io_atomic.h
│   │   │       │   │           ├── io_binary.h
│   │   │       │   │           ├── io_error.h
│   │   │       │   │           ├── io_fileview.h
│   │   │       │   │           └── io_temporary.h
│   │   │       │   ├── io.cc
│   │   │       │   ├── io_atomic.cc
│   │   │       │   ├── io_binary.cc
│   │   │       │   ├── io_fileview.cc
│   │   │       │   └── io_temporary.cc
│   │   │       ├── numeric/
│   │   │       │   ├── CMakeLists.txt
│   │   │       │   ├── big_coefficient.h
│   │   │       │   ├── decimal.cc
│   │   │       │   ├── include/
│   │   │       │   │   └── sourcemeta/
│   │   │       │   │       └── core/
│   │   │       │   │           ├── numeric.h
│   │   │       │   │           ├── numeric_decimal.h
│   │   │       │   │           ├── numeric_error.h
│   │   │       │   │           ├── numeric_parse.h
│   │   │       │   │           ├── numeric_uint128.h
│   │   │       │   │           ├── numeric_util.h
│   │   │       │   │           └── numeric_zigzag.h
│   │   │       │   └── parse.cc
│   │   │       ├── options/
│   │   │       │   ├── CMakeLists.txt
│   │   │       │   ├── include/
│   │   │       │   │   └── sourcemeta/
│   │   │       │   │       └── core/
│   │   │       │   │           ├── options.h
│   │   │       │   │           └── options_error.h
│   │   │       │   └── options.cc
│   │   │       ├── parallel/
│   │   │       │   ├── CMakeLists.txt
│   │   │       │   └── include/
│   │   │       │       └── sourcemeta/
│   │   │       │           └── core/
│   │   │       │               ├── parallel.h
│   │   │       │               └── parallel_for_each.h
│   │   │       ├── preprocessor/
│   │   │       │   ├── CMakeLists.txt
│   │   │       │   └── include/
│   │   │       │       └── sourcemeta/
│   │   │       │           └── core/
│   │   │       │               └── preprocessor.h
│   │   │       └── process/
│   │   │           ├── CMakeLists.txt
│   │   │           ├── include/
│   │   │           │   └── sourcemeta/
│   │   │           │       └── core/
│   │   │           │           ├── process.h
│   │   │           │           └── process_error.h
│   │   │           └── spawn.cc
│   │   └── vendor/
│   │       ├── cmark-gfm/
│   │       │   ├── COPYING
│   │       │   ├── extensions/
│   │       │   │   ├── autolink.c
│   │       │   │   ├── autolink.h
│   │       │   │   ├── cmark-gfm-core-extensions.h
│   │       │   │   ├── core-extensions.c
│   │       │   │   ├── ext_scanners.c
│   │       │   │   ├── ext_scanners.h
│   │       │   │   ├── ext_scanners.re
│   │       │   │   ├── strikethrough.c
│   │       │   │   ├── strikethrough.h
│   │       │   │   ├── table.c
│   │       │   │   ├── table.h
│   │       │   │   ├── tagfilter.c
│   │       │   │   ├── tagfilter.h
│   │       │   │   ├── tasklist.c
│   │       │   │   └── tasklist.h
│   │       │   └── src/
│   │       │       ├── arena.c
│   │       │       ├── blocks.c
│   │       │       ├── buffer.c
│   │       │       ├── buffer.h
│   │       │       ├── case_fold_switch.inc
│   │       │       ├── chunk.h
│   │       │       ├── cmark-gfm-extension_api.h
│   │       │       ├── cmark-gfm.h
│   │       │       ├── cmark-gfm_version.h.in
│   │       │       ├── cmark.c
│   │       │       ├── cmark_ctype.c
│   │       │       ├── cmark_ctype.h
│   │       │       ├── commonmark.c
│   │       │       ├── config.h.in
│   │       │       ├── entities.inc
│   │       │       ├── footnotes.c
│   │       │       ├── footnotes.h
│   │       │       ├── houdini.h
│   │       │       ├── houdini_href_e.c
│   │       │       ├── houdini_html_e.c
│   │       │       ├── houdini_html_u.c
│   │       │       ├── html.c
│   │       │       ├── html.h
│   │       │       ├── inlines.c
│   │       │       ├── inlines.h
│   │       │       ├── iterator.c
│   │       │       ├── iterator.h
│   │       │       ├── latex.c
│   │       │       ├── linked_list.c
│   │       │       ├── main.c
│   │       │       ├── man.c
│   │       │       ├── map.c
│   │       │       ├── map.h
│   │       │       ├── node.c
│   │       │       ├── node.h
│   │       │       ├── parser.h
│   │       │       ├── plaintext.c
│   │       │       ├── plugin.c
│   │       │       ├── plugin.h
│   │       │       ├── references.c
│   │       │       ├── references.h
│   │       │       ├── registry.c
│   │       │       ├── registry.h
│   │       │       ├── render.c
│   │       │       ├── render.h
│   │       │       ├── scanners.c
│   │       │       ├── scanners.h
│   │       │       ├── scanners.re
│   │       │       ├── syntax_extension.c
│   │       │       ├── syntax_extension.h
│   │       │       ├── utf8.c
│   │       │       ├── utf8.h
│   │       │       └── xml.c
│   │       ├── googlebenchmark/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── LICENSE
│   │       │   ├── cmake/
│   │       │   │   ├── AddCXXCompilerFlag.cmake
│   │       │   │   ├── CXXFeatureCheck.cmake
│   │       │   │   ├── Config.cmake.in
│   │       │   │   ├── GetGitVersion.cmake
│   │       │   │   ├── GoogleTest.cmake
│   │       │   │   ├── GoogleTest.cmake.in
│   │       │   │   ├── Modules/
│   │       │   │   │   ├── FindLLVMAr.cmake
│   │       │   │   │   ├── FindLLVMNm.cmake
│   │       │   │   │   ├── FindLLVMRanLib.cmake
│   │       │   │   │   └── FindPFM.cmake
│   │       │   │   ├── benchmark.pc.in
│   │       │   │   ├── benchmark_main.pc.in
│   │       │   │   ├── gnu_posix_regex.cpp
│   │       │   │   ├── llvm-toolchain.cmake
│   │       │   │   ├── posix_regex.cpp
│   │       │   │   ├── pthread_affinity.cpp
│   │       │   │   ├── split_list.cmake
│   │       │   │   ├── std_regex.cpp
│   │       │   │   ├── steady_clock.cpp
│   │       │   │   └── thread_safety_attributes.cpp
│   │       │   ├── include/
│   │       │   │   └── benchmark/
│   │       │   │       ├── benchmark.h
│   │       │   │       └── export.h
│   │       │   └── src/
│   │       │       ├── CMakeLists.txt
│   │       │       ├── arraysize.h
│   │       │       ├── benchmark.cc
│   │       │       ├── benchmark_api_internal.cc
│   │       │       ├── benchmark_api_internal.h
│   │       │       ├── benchmark_main.cc
│   │       │       ├── benchmark_name.cc
│   │       │       ├── benchmark_register.cc
│   │       │       ├── benchmark_register.h
│   │       │       ├── benchmark_runner.cc
│   │       │       ├── benchmark_runner.h
│   │       │       ├── check.cc
│   │       │       ├── check.h
│   │       │       ├── colorprint.cc
│   │       │       ├── colorprint.h
│   │       │       ├── commandlineflags.cc
│   │       │       ├── commandlineflags.h
│   │       │       ├── complexity.cc
│   │       │       ├── complexity.h
│   │       │       ├── console_reporter.cc
│   │       │       ├── counter.cc
│   │       │       ├── counter.h
│   │       │       ├── csv_reporter.cc
│   │       │       ├── cycleclock.h
│   │       │       ├── internal_macros.h
│   │       │       ├── json_reporter.cc
│   │       │       ├── log.h
│   │       │       ├── mutex.h
│   │       │       ├── perf_counters.cc
│   │       │       ├── perf_counters.h
│   │       │       ├── re.h
│   │       │       ├── reporter.cc
│   │       │       ├── statistics.cc
│   │       │       ├── statistics.h
│   │       │       ├── string_util.cc
│   │       │       ├── string_util.h
│   │       │       ├── sysinfo.cc
│   │       │       ├── thread_manager.h
│   │       │       ├── thread_timer.h
│   │       │       ├── timers.cc
│   │       │       └── timers.h
│   │       ├── googletest/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── LICENSE
│   │       │   ├── googlemock/
│   │       │   │   ├── CMakeLists.txt
│   │       │   │   ├── cmake/
│   │       │   │   │   ├── gmock.pc.in
│   │       │   │   │   └── gmock_main.pc.in
│   │       │   │   ├── include/
│   │       │   │   │   └── gmock/
│   │       │   │   │       ├── gmock-actions.h
│   │       │   │   │       ├── gmock-cardinalities.h
│   │       │   │   │       ├── gmock-function-mocker.h
│   │       │   │   │       ├── gmock-matchers.h
│   │       │   │   │       ├── gmock-more-actions.h
│   │       │   │   │       ├── gmock-more-matchers.h
│   │       │   │   │       ├── gmock-nice-strict.h
│   │       │   │   │       ├── gmock-spec-builders.h
│   │       │   │   │       ├── gmock.h
│   │       │   │   │       └── internal/
│   │       │   │   │           ├── custom/
│   │       │   │   │           │   ├── README.md
│   │       │   │   │           │   ├── gmock-generated-actions.h
│   │       │   │   │           │   ├── gmock-matchers.h
│   │       │   │   │           │   └── gmock-port.h
│   │       │   │   │           ├── gmock-internal-utils.h
│   │       │   │   │           ├── gmock-port.h
│   │       │   │   │           └── gmock-pp.h
│   │       │   │   └── src/
│   │       │   │       ├── gmock-all.cc
│   │       │   │       ├── gmock-cardinalities.cc
│   │       │   │       ├── gmock-internal-utils.cc
│   │       │   │       ├── gmock-matchers.cc
│   │       │   │       ├── gmock-spec-builders.cc
│   │       │   │       ├── gmock.cc
│   │       │   │       └── gmock_main.cc
│   │       │   └── googletest/
│   │       │       ├── CMakeLists.txt
│   │       │       ├── cmake/
│   │       │       │   ├── Config.cmake.in
│   │       │       │   ├── gtest.pc.in
│   │       │       │   ├── gtest_main.pc.in
│   │       │       │   ├── internal_utils.cmake
│   │       │       │   └── libgtest.la.in
│   │       │       ├── include/
│   │       │       │   └── gtest/
│   │       │       │       ├── gtest-assertion-result.h
│   │       │       │       ├── gtest-death-test.h
│   │       │       │       ├── gtest-matchers.h
│   │       │       │       ├── gtest-message.h
│   │       │       │       ├── gtest-param-test.h
│   │       │       │       ├── gtest-printers.h
│   │       │       │       ├── gtest-spi.h
│   │       │       │       ├── gtest-test-part.h
│   │       │       │       ├── gtest-typed-test.h
│   │       │       │       ├── gtest.h
│   │       │       │       ├── gtest_pred_impl.h
│   │       │       │       ├── gtest_prod.h
│   │       │       │       └── internal/
│   │       │       │           ├── custom/
│   │       │       │           │   ├── README.md
│   │       │       │           │   ├── gtest-port.h
│   │       │       │           │   ├── gtest-printers.h
│   │       │       │           │   └── gtest.h
│   │       │       │           ├── gtest-death-test-internal.h
│   │       │       │           ├── gtest-filepath.h
│   │       │       │           ├── gtest-internal.h
│   │       │       │           ├── gtest-param-util.h
│   │       │       │           ├── gtest-port-arch.h
│   │       │       │           ├── gtest-port.h
│   │       │       │           ├── gtest-string.h
│   │       │       │           └── gtest-type-util.h
│   │       │       └── src/
│   │       │           ├── gtest-all.cc
│   │       │           ├── gtest-assertion-result.cc
│   │       │           ├── gtest-death-test.cc
│   │       │           ├── gtest-filepath.cc
│   │       │           ├── gtest-internal-inl.h
│   │       │           ├── gtest-matchers.cc
│   │       │           ├── gtest-port.cc
│   │       │           ├── gtest-printers.cc
│   │       │           ├── gtest-test-part.cc
│   │       │           ├── gtest-typed-test.cc
│   │       │           ├── gtest.cc
│   │       │           └── gtest_main.cc
│   │       ├── jsonschema-2019-09/
│   │       │   ├── hyper-schema.json
│   │       │   ├── links.json
│   │       │   ├── meta/
│   │       │   │   ├── applicator.json
│   │       │   │   ├── content.json
│   │       │   │   ├── core.json
│   │       │   │   ├── format.json
│   │       │   │   ├── hyper-schema.json
│   │       │   │   ├── meta-data.json
│   │       │   │   └── validation.json
│   │       │   ├── output/
│   │       │   │   ├── hyper-schema.json
│   │       │   │   └── schema.json
│   │       │   └── schema.json
│   │       ├── jsonschema-2020-12/
│   │       │   ├── hyper-schema.json
│   │       │   ├── links.json
│   │       │   ├── meta/
│   │       │   │   ├── applicator.json
│   │       │   │   ├── content.json
│   │       │   │   ├── core.json
│   │       │   │   ├── format-annotation.json
│   │       │   │   ├── format-assertion.json
│   │       │   │   ├── hyper-schema.json
│   │       │   │   ├── meta-data.json
│   │       │   │   ├── unevaluated.json
│   │       │   │   └── validation.json
│   │       │   ├── output/
│   │       │   │   └── schema.json
│   │       │   └── schema.json
│   │       ├── jsonschema-draft0/
│   │       │   ├── hyper-schema.json
│   │       │   ├── json-ref.json
│   │       │   ├── links.json
│   │       │   └── schema.json
│   │       ├── jsonschema-draft1/
│   │       │   ├── hyper-schema.json
│   │       │   ├── json-ref.json
│   │       │   ├── links.json
│   │       │   └── schema.json
│   │       ├── jsonschema-draft2/
│   │       │   ├── hyper-schema.json
│   │       │   ├── json-ref.json
│   │       │   ├── links.json
│   │       │   └── schema.json
│   │       ├── jsonschema-draft3/
│   │       │   ├── hyper-schema.json
│   │       │   ├── json-ref.json
│   │       │   ├── links.json
│   │       │   └── schema.json
│   │       ├── jsonschema-draft4/
│   │       │   ├── hyper-schema.json
│   │       │   ├── links.json
│   │       │   └── schema.json
│   │       ├── jsonschema-draft6/
│   │       │   ├── hyper-schema.json
│   │       │   ├── links.json
│   │       │   └── schema.json
│   │       ├── jsonschema-draft7/
│   │       │   ├── hyper-schema-output.json
│   │       │   ├── hyper-schema.json
│   │       │   ├── links.json
│   │       │   └── schema.json
│   │       ├── libdeflate/
│   │       │   ├── COPYING
│   │       │   ├── common_defs.h
│   │       │   ├── lib/
│   │       │   │   ├── adler32.c
│   │       │   │   ├── arm/
│   │       │   │   │   ├── adler32_impl.h
│   │       │   │   │   ├── cpu_features.c
│   │       │   │   │   ├── cpu_features.h
│   │       │   │   │   ├── crc32_impl.h
│   │       │   │   │   ├── crc32_pmull_helpers.h
│   │       │   │   │   ├── crc32_pmull_wide.h
│   │       │   │   │   └── matchfinder_impl.h
│   │       │   │   ├── bt_matchfinder.h
│   │       │   │   ├── cpu_features_common.h
│   │       │   │   ├── crc32.c
│   │       │   │   ├── crc32_multipliers.h
│   │       │   │   ├── crc32_tables.h
│   │       │   │   ├── decompress_template.h
│   │       │   │   ├── deflate_compress.c
│   │       │   │   ├── deflate_compress.h
│   │       │   │   ├── deflate_constants.h
│   │       │   │   ├── deflate_decompress.c
│   │       │   │   ├── gzip_compress.c
│   │       │   │   ├── gzip_constants.h
│   │       │   │   ├── gzip_decompress.c
│   │       │   │   ├── hc_matchfinder.h
│   │       │   │   ├── ht_matchfinder.h
│   │       │   │   ├── lib_common.h
│   │       │   │   ├── matchfinder_common.h
│   │       │   │   ├── riscv/
│   │       │   │   │   └── matchfinder_impl.h
│   │       │   │   ├── utils.c
│   │       │   │   ├── x86/
│   │       │   │   │   ├── adler32_impl.h
│   │       │   │   │   ├── adler32_template.h
│   │       │   │   │   ├── cpu_features.c
│   │       │   │   │   ├── cpu_features.h
│   │       │   │   │   ├── crc32_impl.h
│   │       │   │   │   ├── crc32_pclmul_template.h
│   │       │   │   │   ├── decompress_impl.h
│   │       │   │   │   └── matchfinder_impl.h
│   │       │   │   ├── zlib_compress.c
│   │       │   │   ├── zlib_constants.h
│   │       │   │   └── zlib_decompress.c
│   │       │   └── libdeflate.h
│   │       ├── openapi/
│   │       │   ├── LICENSE
│   │       │   └── oas/
│   │       │       ├── 2.0/
│   │       │       │   └── schema/
│   │       │       │       └── 2017-08-27
│   │       │       ├── 3.0/
│   │       │       │   └── schema/
│   │       │       │       ├── 2021-09-28
│   │       │       │       └── 2024-10-18
│   │       │       ├── 3.1/
│   │       │       │   ├── dialect/
│   │       │       │   │   ├── 2024-10-25
│   │       │       │   │   ├── 2024-11-10
│   │       │       │   │   └── base
│   │       │       │   ├── meta/
│   │       │       │   │   ├── 2024-10-25
│   │       │       │   │   ├── 2024-11-10
│   │       │       │   │   └── base
│   │       │       │   ├── schema/
│   │       │       │   │   ├── 2021-03-02
│   │       │       │   │   ├── 2021-04-15
│   │       │       │   │   ├── 2021-05-20
│   │       │       │   │   ├── 2021-09-28
│   │       │       │   │   ├── 2022-02-27
│   │       │       │   │   ├── 2022-10-07
│   │       │       │   │   ├── 2024-11-14
│   │       │       │   │   ├── 2025-02-13
│   │       │       │   │   ├── 2025-08-31
│   │       │       │   │   └── 2025-09-15
│   │       │       │   └── schema-base/
│   │       │       │       ├── 2021-03-02
│   │       │       │       ├── 2021-04-15
│   │       │       │       ├── 2021-05-20
│   │       │       │       ├── 2021-09-28
│   │       │       │       ├── 2022-02-27
│   │       │       │       ├── 2022-10-07
│   │       │       │       ├── 2024-11-14
│   │       │       │       ├── 2025-02-13
│   │       │       │       ├── 2025-08-31
│   │       │       │       └── 2025-09-15
│   │       │       └── 3.2/
│   │       │           ├── dialect/
│   │       │           │   └── 2025-09-17
│   │       │           ├── meta/
│   │       │           │   └── 2025-09-17
│   │       │           ├── schema/
│   │       │           │   └── 2025-09-17
│   │       │           └── schema-base/
│   │       │               └── 2025-09-17
│   │       ├── pcre2/
│   │       │   ├── LICENCE.md
│   │       │   ├── deps/
│   │       │   │   └── sljit/
│   │       │   │       ├── LICENSE
│   │       │   │       └── sljit_src/
│   │       │   │           ├── allocator_src/
│   │       │   │           │   ├── sljitExecAllocatorApple.c
│   │       │   │           │   ├── sljitExecAllocatorCore.c
│   │       │   │           │   ├── sljitExecAllocatorFreeBSD.c
│   │       │   │           │   ├── sljitExecAllocatorPosix.c
│   │       │   │           │   ├── sljitExecAllocatorWindows.c
│   │       │   │           │   ├── sljitProtExecAllocatorNetBSD.c
│   │       │   │           │   ├── sljitProtExecAllocatorPosix.c
│   │       │   │           │   ├── sljitWXExecAllocatorPosix.c
│   │       │   │           │   └── sljitWXExecAllocatorWindows.c
│   │       │   │           ├── sljitConfig.h
│   │       │   │           ├── sljitConfigCPU.h
│   │       │   │           ├── sljitConfigInternal.h
│   │       │   │           ├── sljitLir.c
│   │       │   │           ├── sljitLir.h
│   │       │   │           ├── sljitNativeARM_32.c
│   │       │   │           ├── sljitNativeARM_64.c
│   │       │   │           ├── sljitNativeARM_T2_32.c
│   │       │   │           ├── sljitNativeLOONGARCH_64.c
│   │       │   │           ├── sljitNativeMIPS_32.c
│   │       │   │           ├── sljitNativeMIPS_64.c
│   │       │   │           ├── sljitNativeMIPS_common.c
│   │       │   │           ├── sljitNativePPC_32.c
│   │       │   │           ├── sljitNativePPC_64.c
│   │       │   │           ├── sljitNativePPC_common.c
│   │       │   │           ├── sljitNativeRISCV_32.c
│   │       │   │           ├── sljitNativeRISCV_64.c
│   │       │   │           ├── sljitNativeRISCV_common.c
│   │       │   │           ├── sljitNativeS390X.c
│   │       │   │           ├── sljitNativeX86_32.c
│   │       │   │           ├── sljitNativeX86_64.c
│   │       │   │           ├── sljitNativeX86_common.c
│   │       │   │           ├── sljitSerialize.c
│   │       │   │           └── sljitUtils.c
│   │       │   └── src/
│   │       │       ├── config-cmake.h.in
│   │       │       ├── config.h.generic
│   │       │       ├── config.h.in
│   │       │       ├── libpcre2-16.sym
│   │       │       ├── libpcre2-32.sym
│   │       │       ├── libpcre2-8.sym
│   │       │       ├── libpcre2-posix.sym
│   │       │       ├── pcre2.h.generic
│   │       │       ├── pcre2.h.in
│   │       │       ├── pcre2_auto_possess.c
│   │       │       ├── pcre2_chartables.c.dist
│   │       │       ├── pcre2_chartables.c.ebcdic-1047-nl15
│   │       │       ├── pcre2_chartables.c.ebcdic-1047-nl25
│   │       │       ├── pcre2_chkdint.c
│   │       │       ├── pcre2_compile.c
│   │       │       ├── pcre2_compile.h
│   │       │       ├── pcre2_compile_cgroup.c
│   │       │       ├── pcre2_compile_class.c
│   │       │       ├── pcre2_config.c
│   │       │       ├── pcre2_context.c
│   │       │       ├── pcre2_convert.c
│   │       │       ├── pcre2_dfa_match.c
│   │       │       ├── pcre2_error.c
│   │       │       ├── pcre2_extuni.c
│   │       │       ├── pcre2_find_bracket.c
│   │       │       ├── pcre2_internal.h
│   │       │       ├── pcre2_intmodedep.h
│   │       │       ├── pcre2_jit_char_inc.h
│   │       │       ├── pcre2_jit_compile.c
│   │       │       ├── pcre2_jit_match_inc.h
│   │       │       ├── pcre2_jit_misc_inc.h
│   │       │       ├── pcre2_jit_simd_inc.h
│   │       │       ├── pcre2_maketables.c
│   │       │       ├── pcre2_match.c
│   │       │       ├── pcre2_match_data.c
│   │       │       ├── pcre2_match_next.c
│   │       │       ├── pcre2_newline.c
│   │       │       ├── pcre2_ord2utf.c
│   │       │       ├── pcre2_pattern_info.c
│   │       │       ├── pcre2_printint_inc.h
│   │       │       ├── pcre2_script_run.c
│   │       │       ├── pcre2_serialize.c
│   │       │       ├── pcre2_string_utils.c
│   │       │       ├── pcre2_study.c
│   │       │       ├── pcre2_substitute.c
│   │       │       ├── pcre2_substring.c
│   │       │       ├── pcre2_tables.c
│   │       │       ├── pcre2_ucd.c
│   │       │       ├── pcre2_ucp.h
│   │       │       ├── pcre2_ucptables_inc.h
│   │       │       ├── pcre2_util.h
│   │       │       ├── pcre2_valid_utf.c
│   │       │       ├── pcre2_xclass.c
│   │       │       ├── pcre2posix.h
│   │       │       └── pcre2test_inc.h
│   │       ├── zlib/
│   │       │   ├── LICENSE
│   │       │   ├── adler32.c
│   │       │   ├── compress.c
│   │       │   ├── crc32.c
│   │       │   ├── crc32.h
│   │       │   ├── deflate.c
│   │       │   ├── deflate.h
│   │       │   ├── gzclose.c
│   │       │   ├── gzguts.h
│   │       │   ├── gzlib.c
│   │       │   ├── gzread.c
│   │       │   ├── gzwrite.c
│   │       │   ├── infback.c
│   │       │   ├── inffast.c
│   │       │   ├── inffast.h
│   │       │   ├── inffixed.h
│   │       │   ├── inflate.c
│   │       │   ├── inflate.h
│   │       │   ├── inftrees.c
│   │       │   ├── inftrees.h
│   │       │   ├── trees.c
│   │       │   ├── trees.h
│   │       │   ├── uncompr.c
│   │       │   ├── zconf.h
│   │       │   ├── zlib.h
│   │       │   ├── zutil.c
│   │       │   └── zutil.h
│   │       └── zlib.mask
│   ├── noa/
│   │   ├── CMakeLists.txt
│   │   ├── LICENSE
│   │   ├── cmake/
│   │   │   ├── FindBoostRegex.cmake
│   │   │   ├── FindGoogleBenchmark.cmake
│   │   │   ├── FindGoogleTest.cmake
│   │   │   ├── noa/
│   │   │   │   ├── commands/
│   │   │   │   │   └── copy-file.cmake
│   │   │   │   ├── compiler/
│   │   │   │   │   ├── options.cmake
│   │   │   │   │   └── sanitizer.cmake
│   │   │   │   ├── defaults.cmake
│   │   │   │   ├── options/
│   │   │   │   │   └── enum.cmake
│   │   │   │   ├── shim.cmake
│   │   │   │   ├── targets/
│   │   │   │   │   ├── clang-format.cmake
│   │   │   │   │   ├── clang-format.config
│   │   │   │   │   ├── clang-tidy.cmake
│   │   │   │   │   ├── clang-tidy.config
│   │   │   │   │   ├── doxygen.cmake
│   │   │   │   │   ├── executable.cmake
│   │   │   │   │   ├── googlebenchmark.cmake
│   │   │   │   │   ├── googletest.cmake
│   │   │   │   │   ├── library.cmake
│   │   │   │   │   └── shellcheck.cmake
│   │   │   │   └── variables.cmake
│   │   │   └── noa.cmake
│   │   ├── config.cmake.in
│   │   ├── src/
│   │   │   ├── flat_map/
│   │   │   │   ├── CMakeLists.txt
│   │   │   │   └── include/
│   │   │   │       └── sourcemeta/
│   │   │   │           └── noa/
│   │   │   │               └── flat_map.h
│   │   │   ├── hash/
│   │   │   │   ├── CMakeLists.txt
│   │   │   │   └── include/
│   │   │   │       └── sourcemeta/
│   │   │   │           └── noa/
│   │   │   │               └── hash.h
│   │   │   └── regex/
│   │   │       ├── CMakeLists.txt
│   │   │       └── include/
│   │   │           └── sourcemeta/
│   │   │               └── noa/
│   │   │                   └── regex.h
│   │   └── vendor/
│   │       ├── boost-regex/
│   │       │   └── include/
│   │       │       └── boost/
│   │       │           ├── cregex.hpp
│   │       │           ├── regex/
│   │       │           │   ├── concepts.hpp
│   │       │           │   ├── config/
│   │       │           │   │   ├── borland.hpp
│   │       │           │   │   └── cwchar.hpp
│   │       │           │   ├── config.hpp
│   │       │           │   ├── icu.hpp
│   │       │           │   ├── mfc.hpp
│   │       │           │   ├── pattern_except.hpp
│   │       │           │   ├── pending/
│   │       │           │   │   ├── object_cache.hpp
│   │       │           │   │   ├── static_mutex.hpp
│   │       │           │   │   └── unicode_iterator.hpp
│   │       │           │   ├── regex_traits.hpp
│   │       │           │   ├── user.hpp
│   │       │           │   ├── v4/
│   │       │           │   │   ├── basic_regex.hpp
│   │       │           │   │   ├── basic_regex_creator.hpp
│   │       │           │   │   ├── basic_regex_parser.hpp
│   │       │           │   │   ├── c_regex_traits.hpp
│   │       │           │   │   ├── char_regex_traits.hpp
│   │       │           │   │   ├── cpp_regex_traits.hpp
│   │       │           │   │   ├── cregex.hpp
│   │       │           │   │   ├── error_type.hpp
│   │       │           │   │   ├── icu.hpp
│   │       │           │   │   ├── indexed_bit_flag.hpp
│   │       │           │   │   ├── iterator_category.hpp
│   │       │           │   │   ├── iterator_traits.hpp
│   │       │           │   │   ├── match_flags.hpp
│   │       │           │   │   ├── match_results.hpp
│   │       │           │   │   ├── mem_block_cache.hpp
│   │       │           │   │   ├── object_cache.hpp
│   │       │           │   │   ├── pattern_except.hpp
│   │       │           │   │   ├── perl_matcher.hpp
│   │       │           │   │   ├── perl_matcher_common.hpp
│   │       │           │   │   ├── perl_matcher_non_recursive.hpp
│   │       │           │   │   ├── perl_matcher_recursive.hpp
│   │       │           │   │   ├── primary_transform.hpp
│   │       │           │   │   ├── protected_call.hpp
│   │       │           │   │   ├── regbase.hpp
│   │       │           │   │   ├── regex.hpp
│   │       │           │   │   ├── regex_format.hpp
│   │       │           │   │   ├── regex_fwd.hpp
│   │       │           │   │   ├── regex_grep.hpp
│   │       │           │   │   ├── regex_iterator.hpp
│   │       │           │   │   ├── regex_match.hpp
│   │       │           │   │   ├── regex_merge.hpp
│   │       │           │   │   ├── regex_raw_buffer.hpp
│   │       │           │   │   ├── regex_replace.hpp
│   │       │           │   │   ├── regex_search.hpp
│   │       │           │   │   ├── regex_split.hpp
│   │       │           │   │   ├── regex_token_iterator.hpp
│   │       │           │   │   ├── regex_traits.hpp
│   │       │           │   │   ├── regex_traits_defaults.hpp
│   │       │           │   │   ├── regex_workaround.hpp
│   │       │           │   │   ├── states.hpp
│   │       │           │   │   ├── sub_match.hpp
│   │       │           │   │   ├── syntax_type.hpp
│   │       │           │   │   ├── u32regex_iterator.hpp
│   │       │           │   │   ├── u32regex_token_iterator.hpp
│   │       │           │   │   ├── unicode_iterator.hpp
│   │       │           │   │   └── w32_regex_traits.hpp
│   │       │           │   └── v5/
│   │       │           │       ├── basic_regex.hpp
│   │       │           │       ├── basic_regex_creator.hpp
│   │       │           │       ├── basic_regex_parser.hpp
│   │       │           │       ├── c_regex_traits.hpp
│   │       │           │       ├── char_regex_traits.hpp
│   │       │           │       ├── cpp_regex_traits.hpp
│   │       │           │       ├── cregex.hpp
│   │       │           │       ├── error_type.hpp
│   │       │           │       ├── icu.hpp
│   │       │           │       ├── iterator_category.hpp
│   │       │           │       ├── iterator_traits.hpp
│   │       │           │       ├── match_flags.hpp
│   │       │           │       ├── match_results.hpp
│   │       │           │       ├── mem_block_cache.hpp
│   │       │           │       ├── object_cache.hpp
│   │       │           │       ├── pattern_except.hpp
│   │       │           │       ├── perl_matcher.hpp
│   │       │           │       ├── perl_matcher_common.hpp
│   │       │           │       ├── perl_matcher_non_recursive.hpp
│   │       │           │       ├── primary_transform.hpp
│   │       │           │       ├── regbase.hpp
│   │       │           │       ├── regex.hpp
│   │       │           │       ├── regex_format.hpp
│   │       │           │       ├── regex_fwd.hpp
│   │       │           │       ├── regex_grep.hpp
│   │       │           │       ├── regex_iterator.hpp
│   │       │           │       ├── regex_match.hpp
│   │       │           │       ├── regex_merge.hpp
│   │       │           │       ├── regex_raw_buffer.hpp
│   │       │           │       ├── regex_replace.hpp
│   │       │           │       ├── regex_search.hpp
│   │       │           │       ├── regex_split.hpp
│   │       │           │       ├── regex_token_iterator.hpp
│   │       │           │       ├── regex_traits.hpp
│   │       │           │       ├── regex_traits_defaults.hpp
│   │       │           │       ├── regex_workaround.hpp
│   │       │           │       ├── states.hpp
│   │       │           │       ├── sub_match.hpp
│   │       │           │       ├── syntax_type.hpp
│   │       │           │       ├── u32regex_iterator.hpp
│   │       │           │       ├── u32regex_token_iterator.hpp
│   │       │           │       ├── unicode_iterator.hpp
│   │       │           │       └── w32_regex_traits.hpp
│   │       │           ├── regex.h
│   │       │           ├── regex.hpp
│   │       │           └── regex_fwd.hpp
│   │       ├── googlebenchmark/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── LICENSE
│   │       │   ├── cmake/
│   │       │   │   ├── AddCXXCompilerFlag.cmake
│   │       │   │   ├── CXXFeatureCheck.cmake
│   │       │   │   ├── Config.cmake.in
│   │       │   │   ├── GetGitVersion.cmake
│   │       │   │   ├── GoogleTest.cmake
│   │       │   │   ├── GoogleTest.cmake.in
│   │       │   │   ├── Modules/
│   │       │   │   │   ├── FindLLVMAr.cmake
│   │       │   │   │   ├── FindLLVMNm.cmake
│   │       │   │   │   ├── FindLLVMRanLib.cmake
│   │       │   │   │   └── FindPFM.cmake
│   │       │   │   ├── benchmark.pc.in
│   │       │   │   ├── benchmark_main.pc.in
│   │       │   │   ├── gnu_posix_regex.cpp
│   │       │   │   ├── llvm-toolchain.cmake
│   │       │   │   ├── posix_regex.cpp
│   │       │   │   ├── pthread_affinity.cpp
│   │       │   │   ├── split_list.cmake
│   │       │   │   ├── std_regex.cpp
│   │       │   │   ├── steady_clock.cpp
│   │       │   │   └── thread_safety_attributes.cpp
│   │       │   ├── include/
│   │       │   │   └── benchmark/
│   │       │   │       ├── benchmark.h
│   │       │   │       └── export.h
│   │       │   └── src/
│   │       │       ├── CMakeLists.txt
│   │       │       ├── arraysize.h
│   │       │       ├── benchmark.cc
│   │       │       ├── benchmark_api_internal.cc
│   │       │       ├── benchmark_api_internal.h
│   │       │       ├── benchmark_main.cc
│   │       │       ├── benchmark_name.cc
│   │       │       ├── benchmark_register.cc
│   │       │       ├── benchmark_register.h
│   │       │       ├── benchmark_runner.cc
│   │       │       ├── benchmark_runner.h
│   │       │       ├── check.cc
│   │       │       ├── check.h
│   │       │       ├── colorprint.cc
│   │       │       ├── colorprint.h
│   │       │       ├── commandlineflags.cc
│   │       │       ├── commandlineflags.h
│   │       │       ├── complexity.cc
│   │       │       ├── complexity.h
│   │       │       ├── console_reporter.cc
│   │       │       ├── counter.cc
│   │       │       ├── counter.h
│   │       │       ├── csv_reporter.cc
│   │       │       ├── cycleclock.h
│   │       │       ├── internal_macros.h
│   │       │       ├── json_reporter.cc
│   │       │       ├── log.h
│   │       │       ├── mutex.h
│   │       │       ├── perf_counters.cc
│   │       │       ├── perf_counters.h
│   │       │       ├── re.h
│   │       │       ├── reporter.cc
│   │       │       ├── statistics.cc
│   │       │       ├── statistics.h
│   │       │       ├── string_util.cc
│   │       │       ├── string_util.h
│   │       │       ├── sysinfo.cc
│   │       │       ├── thread_manager.h
│   │       │       ├── thread_timer.h
│   │       │       ├── timers.cc
│   │       │       └── timers.h
│   │       ├── googletest/
│   │       │   ├── CMakeLists.txt
│   │       │   ├── LICENSE
│   │       │   ├── googlemock/
│   │       │   │   ├── CMakeLists.txt
│   │       │   │   ├── cmake/
│   │       │   │   │   ├── gmock.pc.in
│   │       │   │   │   └── gmock_main.pc.in
│   │       │   │   ├── include/
│   │       │   │   │   └── gmock/
│   │       │   │   │       ├── gmock-actions.h
│   │       │   │   │       ├── gmock-cardinalities.h
│   │       │   │   │       ├── gmock-function-mocker.h
│   │       │   │   │       ├── gmock-matchers.h
│   │       │   │   │       ├── gmock-more-actions.h
│   │       │   │   │       ├── gmock-more-matchers.h
│   │       │   │   │       ├── gmock-nice-strict.h
│   │       │   │   │       ├── gmock-spec-builders.h
│   │       │   │   │       ├── gmock.h
│   │       │   │   │       └── internal/
│   │       │   │   │           ├── custom/
│   │       │   │   │           │   ├── README.md
│   │       │   │   │           │   ├── gmock-generated-actions.h
│   │       │   │   │           │   ├── gmock-matchers.h
│   │       │   │   │           │   └── gmock-port.h
│   │       │   │   │           ├── gmock-internal-utils.h
│   │       │   │   │           ├── gmock-port.h
│   │       │   │   │           └── gmock-pp.h
│   │       │   │   └── src/
│   │       │   │       ├── gmock-all.cc
│   │       │   │       ├── gmock-cardinalities.cc
│   │       │   │       ├── gmock-internal-utils.cc
│   │       │   │       ├── gmock-matchers.cc
│   │       │   │       ├── gmock-spec-builders.cc
│   │       │   │       ├── gmock.cc
│   │       │   │       └── gmock_main.cc
│   │       │   └── googletest/
│   │       │       ├── CMakeLists.txt
│   │       │       ├── cmake/
│   │       │       │   ├── Config.cmake.in
│   │       │       │   ├── gtest.pc.in
│   │       │       │   ├── gtest_main.pc.in
│   │       │       │   ├── internal_utils.cmake
│   │       │       │   └── libgtest.la.in
│   │       │       ├── include/
│   │       │       │   └── gtest/
│   │       │       │       ├── gtest-assertion-result.h
│   │       │       │       ├── gtest-death-test.h
│   │       │       │       ├── gtest-matchers.h
│   │       │       │       ├── gtest-message.h
│   │       │       │       ├── gtest-param-test.h
│   │       │       │       ├── gtest-printers.h
│   │       │       │       ├── gtest-spi.h
│   │       │       │       ├── gtest-test-part.h
│   │       │       │       ├── gtest-typed-test.h
│   │       │       │       ├── gtest.h
│   │       │       │       ├── gtest_pred_impl.h
│   │       │       │       ├── gtest_prod.h
│   │       │       │       └── internal/
│   │       │       │           ├── custom/
│   │       │       │           │   ├── README.md
│   │       │       │           │   ├── gtest-port.h
│   │       │       │           │   ├── gtest-printers.h
│   │       │       │           │   └── gtest.h
│   │       │       │           ├── gtest-death-test-internal.h
│   │       │       │           ├── gtest-filepath.h
│   │       │       │           ├── gtest-internal.h
│   │       │       │           ├── gtest-param-util.h
│   │       │       │           ├── gtest-port-arch.h
│   │       │       │           ├── gtest-port.h
│   │       │       │           ├── gtest-string.h
│   │       │       │           └── gtest-type-util.h
│   │       │       └── src/
│   │       │           ├── gtest-all.cc
│   │       │           ├── gtest-assertion-result.cc
│   │       │           ├── gtest-death-test.cc
│   │       │           ├── gtest-filepath.cc
│   │       │           ├── gtest-internal-inl.h
│   │       │           ├── gtest-matchers.cc
│   │       │           ├── gtest-port.cc
│   │       │           ├── gtest-printers.cc
│   │       │           ├── gtest-test-part.cc
│   │       │           ├── gtest-typed-test.cc
│   │       │           ├── gtest.cc
│   │       │           └── gtest_main.cc
│   │       └── vendorpull/
│   │           ├── LICENSE
│   │           └── pull
│   └── vendorpull/
│       ├── LICENSE
│       ├── pull
│       └── upgrade
└── vendorpull.mask
Download .txt
Showing preview only (1,808K chars total). Download the full file or copy to clipboard to get everything.
SYMBOL INDEX (9560 symbols across 1031 files)

FILE: src/compiler/compiler.cc
  function transformer_callback_noop (line 13) | static auto transformer_callback_noop(
  type sourcemeta::jsonbinpack (line 21) | namespace sourcemeta::jsonbinpack {
    function canonicalize (line 23) | auto canonicalize(sourcemeta::core::JSON &schema,
    function make_encoding (line 36) | auto make_encoding(sourcemeta::core::JSON &document,
    function compile (line 61) | auto compile(sourcemeta::core::JSON &schema,

FILE: src/compiler/include/sourcemeta/jsonbinpack/compiler.h
  function namespace (line 22) | namespace sourcemeta::jsonbinpack {

FILE: src/compiler/mapper/enum_8_bit.h
  function override (line 8) | [[nodiscard]] auto
  function override (line 26) | auto transform(sourcemeta::core::JSON &schema,

FILE: src/compiler/mapper/enum_8_bit_top_level.h
  function override (line 8) | [[nodiscard]] auto
  function override (line 26) | auto transform(sourcemeta::core::JSON &schema,

FILE: src/compiler/mapper/enum_arbitrary.h
  function override (line 9) | [[nodiscard]] auto
  function override (line 27) | auto transform(sourcemeta::core::JSON &schema,

FILE: src/compiler/mapper/enum_singleton.h
  function override (line 8) | [[nodiscard]] auto
  function override (line 24) | auto transform(sourcemeta::core::JSON &schema,

FILE: src/compiler/mapper/integer_bounded_8_bit.h
  function override (line 8) | [[nodiscard]] auto
  function override (line 28) | auto transform(sourcemeta::core::JSON &schema,

FILE: src/compiler/mapper/integer_bounded_greater_than_8_bit.h
  function override (line 10) | [[nodiscard]] auto
  function override (line 30) | auto transform(sourcemeta::core::JSON &schema,

FILE: src/compiler/mapper/integer_bounded_multiplier_8_bit.h
  function override (line 10) | [[nodiscard]] auto
  function override (line 36) | auto transform(sourcemeta::core::JSON &schema,

FILE: src/compiler/mapper/integer_bounded_multiplier_greater_than_8_bit.h
  function override (line 10) | [[nodiscard]] auto
  function override (line 36) | auto transform(sourcemeta::core::JSON &schema,

FILE: src/compiler/mapper/integer_lower_bound.h
  function override (line 8) | [[nodiscard]] auto
  function override (line 26) | auto transform(sourcemeta::core::JSON &schema,

FILE: src/compiler/mapper/integer_lower_bound_multiplier.h
  function override (line 10) | [[nodiscard]] auto
  function override (line 28) | auto transform(sourcemeta::core::JSON &schema,

FILE: src/compiler/mapper/integer_unbound.h
  function override (line 8) | [[nodiscard]] auto
  function override (line 26) | auto transform(sourcemeta::core::JSON &schema,

FILE: src/compiler/mapper/integer_unbound_multiplier.h
  function override (line 10) | [[nodiscard]] auto
  function override (line 28) | auto transform(sourcemeta::core::JSON &schema,

FILE: src/compiler/mapper/integer_upper_bound.h
  function override (line 8) | [[nodiscard]] auto
  function override (line 26) | auto transform(sourcemeta::core::JSON &schema,

FILE: src/compiler/mapper/integer_upper_bound_multiplier.h
  function override (line 10) | [[nodiscard]] auto
  function override (line 28) | auto transform(sourcemeta::core::JSON &schema,

FILE: src/compiler/mapper/number_arbitrary.h
  function override (line 8) | [[nodiscard]] auto
  function override (line 24) | auto transform(sourcemeta::core::JSON &schema,

FILE: src/runtime/cache.cc
  type sourcemeta::jsonbinpack (line 3) | namespace sourcemeta::jsonbinpack {

FILE: src/runtime/decoder_any.cc
  type sourcemeta::jsonbinpack (line 11) | namespace sourcemeta::jsonbinpack {
    type BYTE_CHOICE_INDEX (line 13) | struct BYTE_CHOICE_INDEX
    type LARGE_CHOICE_INDEX (line 22) | struct LARGE_CHOICE_INDEX
    type TOP_LEVEL_BYTE_CHOICE_INDEX (line 31) | struct TOP_LEVEL_BYTE_CHOICE_INDEX
    type CONST_NONE (line 44) | struct CONST_NONE
    type ANY_PACKED_TYPE_TAG_BYTE_PREFIX (line 50) | struct ANY_PACKED_TYPE_TAG_BYTE_PREFIX

FILE: src/runtime/decoder_array.cc
  type sourcemeta::jsonbinpack (line 9) | namespace sourcemeta::jsonbinpack {
    type FIXED_TYPED_ARRAY (line 11) | struct FIXED_TYPED_ARRAY
    type BOUNDED_8BITS_TYPED_ARRAY (line 27) | struct BOUNDED_8BITS_TYPED_ARRAY
    type FLOOR_TYPED_ARRAY (line 39) | struct FLOOR_TYPED_ARRAY
    type ROOF_TYPED_ARRAY (line 51) | struct ROOF_TYPED_ARRAY

FILE: src/runtime/decoder_common.cc
  type sourcemeta::jsonbinpack (line 8) | namespace sourcemeta::jsonbinpack {

FILE: src/runtime/decoder_integer.cc
  type sourcemeta::jsonbinpack (line 8) | namespace sourcemeta::jsonbinpack {
    type BOUNDED_MULTIPLE_8BITS_ENUM_FIXED (line 11) | struct BOUNDED_MULTIPLE_8BITS_ENUM_FIXED
    type FLOOR_MULTIPLE_ENUM_VARINT (line 35) | struct FLOOR_MULTIPLE_ENUM_VARINT
    type ROOF_MULTIPLE_MIRROR_ENUM_VARINT (line 58) | struct ROOF_MULTIPLE_MIRROR_ENUM_VARINT
    type ARBITRARY_MULTIPLE_ZIGZAG_VARINT (line 83) | struct ARBITRARY_MULTIPLE_ZIGZAG_VARINT

FILE: src/runtime/decoder_number.cc
  type sourcemeta::jsonbinpack (line 9) | namespace sourcemeta::jsonbinpack {
    type DOUBLE_VARINT_TUPLE (line 11) | struct DOUBLE_VARINT_TUPLE

FILE: src/runtime/decoder_object.cc
  type sourcemeta::jsonbinpack (line 6) | namespace sourcemeta::jsonbinpack {
    type FIXED_TYPED_ARBITRARY_OBJECT (line 9) | struct FIXED_TYPED_ARBITRARY_OBJECT
    type VARINT_TYPED_ARBITRARY_OBJECT (line 23) | struct VARINT_TYPED_ARBITRARY_OBJECT

FILE: src/runtime/decoder_string.cc
  type sourcemeta::jsonbinpack (line 8) | namespace sourcemeta::jsonbinpack {
    type UTF8_STRING_NO_LENGTH (line 10) | struct UTF8_STRING_NO_LENGTH
    type FLOOR_VARINT_PREFIX_UTF8_STRING_SHARED (line 16) | struct FLOOR_VARINT_PREFIX_UTF8_STRING_SHARED
    type ROOF_VARINT_PREFIX_UTF8_STRING_SHARED (line 36) | struct ROOF_VARINT_PREFIX_UTF8_STRING_SHARED
    type BOUNDED_8BIT_PREFIX_UTF8_STRING_SHARED (line 56) | struct BOUNDED_8BIT_PREFIX_UTF8_STRING_SHARED
    type RFC3339_DATE_INTEGER_TRIPLET (line 78) | struct RFC3339_DATE_INTEGER_TRIPLET
    type PREFIX_VARINT_LENGTH_STRING_SHARED (line 103) | struct PREFIX_VARINT_LENGTH_STRING_SHARED

FILE: src/runtime/encoder_any.cc
  type sourcemeta::jsonbinpack (line 15) | namespace sourcemeta::jsonbinpack {
    type BYTE_CHOICE_INDEX (line 18) | struct BYTE_CHOICE_INDEX
    type LARGE_CHOICE_INDEX (line 31) | struct LARGE_CHOICE_INDEX
    type TOP_LEVEL_BYTE_CHOICE_INDEX (line 47) | struct TOP_LEVEL_BYTE_CHOICE_INDEX
    type CONST_NONE (line 66) | struct CONST_NONE
    type CONST_NONE (line 68) | struct CONST_NONE
  type ANY_PACKED_TYPE_TAG_BYTE_PREFIX (line 76) | struct ANY_PACKED_TYPE_TAG_BYTE_PREFIX

FILE: src/runtime/encoder_array.cc
  type sourcemeta::jsonbinpack (line 9) | namespace sourcemeta::jsonbinpack {
    type FIXED_TYPED_ARRAY (line 12) | struct FIXED_TYPED_ARRAY
    type BOUNDED_8BITS_TYPED_ARRAY (line 28) | struct BOUNDED_8BITS_TYPED_ARRAY
    type FLOOR_TYPED_ARRAY (line 41) | struct FLOOR_TYPED_ARRAY
    type ROOF_TYPED_ARRAY (line 53) | struct ROOF_TYPED_ARRAY

FILE: src/runtime/encoder_common.cc
  type sourcemeta::jsonbinpack (line 8) | namespace sourcemeta::jsonbinpack {

FILE: src/runtime/encoder_integer.cc
  type sourcemeta::jsonbinpack (line 8) | namespace sourcemeta::jsonbinpack {
    type BOUNDED_MULTIPLE_8BITS_ENUM_FIXED (line 12) | struct BOUNDED_MULTIPLE_8BITS_ENUM_FIXED
    type FLOOR_MULTIPLE_ENUM_VARINT (line 31) | struct FLOOR_MULTIPLE_ENUM_VARINT
    type ROOF_MULTIPLE_MIRROR_ENUM_VARINT (line 50) | struct ROOF_MULTIPLE_MIRROR_ENUM_VARINT
    type ARBITRARY_MULTIPLE_ZIGZAG_VARINT (line 69) | struct ARBITRARY_MULTIPLE_ZIGZAG_VARINT

FILE: src/runtime/encoder_number.cc
  type sourcemeta::jsonbinpack (line 8) | namespace sourcemeta::jsonbinpack {
    type DOUBLE_VARINT_TUPLE (line 11) | struct DOUBLE_VARINT_TUPLE

FILE: src/runtime/encoder_object.cc
  type sourcemeta::jsonbinpack (line 5) | namespace sourcemeta::jsonbinpack {
    type FIXED_TYPED_ARBITRARY_OBJECT (line 9) | struct FIXED_TYPED_ARBITRARY_OBJECT
    type VARINT_TYPED_ARBITRARY_OBJECT (line 21) | struct VARINT_TYPED_ARBITRARY_OBJECT

FILE: src/runtime/encoder_string.cc
  type sourcemeta::jsonbinpack (line 7) | namespace sourcemeta::jsonbinpack {
    type UTF8_STRING_NO_LENGTH (line 10) | struct UTF8_STRING_NO_LENGTH
    type FLOOR_VARINT_PREFIX_UTF8_STRING_SHARED (line 19) | struct FLOOR_VARINT_PREFIX_UTF8_STRING_SHARED
    type ROOF_VARINT_PREFIX_UTF8_STRING_SHARED (line 45) | struct ROOF_VARINT_PREFIX_UTF8_STRING_SHARED
    type BOUNDED_8BIT_PREFIX_UTF8_STRING_SHARED (line 72) | struct BOUNDED_8BIT_PREFIX_UTF8_STRING_SHARED
    type RFC3339_DATE_INTEGER_TRIPLET (line 101) | struct RFC3339_DATE_INTEGER_TRIPLET
    type PREFIX_VARINT_LENGTH_STRING_SHARED (line 125) | struct PREFIX_VARINT_LENGTH_STRING_SHARED

FILE: src/runtime/include/sourcemeta/jsonbinpack/runtime.h
  function override (line 47) | [[nodiscard]] auto what() const noexcept -> const char * override {

FILE: src/runtime/include/sourcemeta/jsonbinpack/runtime_decoder.h
  function namespace (line 13) | namespace sourcemeta::jsonbinpack {

FILE: src/runtime/include/sourcemeta/jsonbinpack/runtime_encoder_cache.h
  function namespace (line 16) | namespace sourcemeta::jsonbinpack {

FILE: src/runtime/include/sourcemeta/jsonbinpack/runtime_encoding.h
  function namespace (line 12) | namespace sourcemeta::jsonbinpack {

FILE: src/runtime/include/sourcemeta/jsonbinpack/runtime_input_stream.h
  function namespace (line 14) | namespace sourcemeta::jsonbinpack {

FILE: src/runtime/include/sourcemeta/jsonbinpack/runtime_output_stream.h
  function namespace (line 14) | namespace sourcemeta::jsonbinpack {

FILE: src/runtime/input_stream.cc
  type sourcemeta::jsonbinpack (line 9) | namespace sourcemeta::jsonbinpack {

FILE: src/runtime/loader.cc
  type sourcemeta::jsonbinpack (line 13) | namespace sourcemeta::jsonbinpack {
    function load (line 15) | auto load(const sourcemeta::core::JSON &input) -> Encoding {

FILE: src/runtime/loader_v1_any.h
  function array (line 39) | const auto &array{choices.as_array()};

FILE: src/runtime/loader_v1_array.h
  function array_encoding (line 22) | const auto &array_encoding{options.at("encoding")};
  function array_encoding (line 48) | const auto &array_encoding{options.at("encoding")};
  function array_encoding (line 74) | const auto &array_encoding{options.at("encoding")};
  function maximum (line 96) | const auto &maximum{options.at("maximum")};

FILE: src/runtime/loader_v1_integer.h
  function multiplier (line 20) | const auto &multiplier{options.at("multiplier")};
  function multiplier (line 36) | const auto &multiplier{options.at("multiplier")};
  function multiplier (line 50) | const auto &multiplier{options.at("multiplier")};
  function Encoding (line 59) | auto ARBITRARY_MULTIPLE_ZIGZAG_VARINT(const sourcemeta::core::JSON &opti...

FILE: src/runtime/loader_v1_number.h
  function namespace (line 8) | namespace sourcemeta::jsonbinpack::v1 {

FILE: src/runtime/loader_v1_string.h
  function size (line 15) | const auto &size{options.at("size")};
  function minimum (line 25) | const auto &minimum{options.at("minimum")};
  function maximum (line 35) | const auto &maximum{options.at("maximum")};
  function minimum (line 46) | const auto &minimum{options.at("minimum")};

FILE: src/runtime/output_stream.cc
  type sourcemeta::jsonbinpack (line 8) | namespace sourcemeta::jsonbinpack {

FILE: src/runtime/unreachable.h
  function unreachable (line 8) | [[noreturn]] inline void unreachable() {

FILE: test/compiler/2020_12_compiler_any_test.cc
  function TEST (line 6) | TEST(JSONBinPack_Compiler_Any_2020_12, enum_singleton) {
  function TEST (line 26) | TEST(JSONBinPack_Compiler_Any_2020_12, const_scalar) {
  function TEST (line 46) | TEST(JSONBinPack_Compiler_Any_2020_12, enum_small_top_level) {
  function TEST (line 66) | TEST(JSONBinPack_Compiler_Any_2020_12, only_metaschema) {
  function TEST (line 83) | TEST(JSONBinPack_Compiler_Any_2020_12, empty) {

FILE: test/compiler/2020_12_compiler_integer_test.cc
  function TEST (line 6) | TEST(JSONBinPack_Compiler_Integer_2020_12, maximum_minimum_8_bit) {
  function TEST (line 30) | TEST(JSONBinPack_Compiler_Integer_2020_12, maximum_minimum_multiplier_8_...
  function TEST (line 55) | TEST(JSONBinPack_Compiler_Integer_2020_12, maximum_minimum_greater_than_...
  function TEST (line 78) | TEST(JSONBinPack_Compiler_Integer_2020_12,
  function TEST (line 103) | TEST(JSONBinPack_Compiler_Integer_2020_12, minimum) {
  function TEST (line 125) | TEST(JSONBinPack_Compiler_Integer_2020_12, minimum_multiplier) {
  function TEST (line 148) | TEST(JSONBinPack_Compiler_Integer_2020_12, maximum) {
  function TEST (line 170) | TEST(JSONBinPack_Compiler_Integer_2020_12, maximum_multiplier) {
  function TEST (line 193) | TEST(JSONBinPack_Compiler_Integer_2020_12, unbounded) {
  function TEST (line 213) | TEST(JSONBinPack_Compiler_Integer_2020_12, unbounded_multiplier) {

FILE: test/compiler/2020_12_compiler_number_test.cc
  function TEST (line 6) | TEST(JSONBinPack_Compiler_Number_2020_12, arbitrary) {

FILE: test/compiler/canonicalizer_test.cc
  function test_resolver (line 10) | static auto test_resolver(std::string_view identifier)
  function TEST (line 22) | TEST(JSONBinPack_Canonicalizer, unsupported_draft) {
  function TEST (line 33) | TEST(JSONBinPack_Canonicalizer, unknown_draft) {

FILE: test/compiler/compiler_test.cc
  function TEST (line 8) | TEST(JSONBinPack_Compiler, dialect_2020_12) {
  function TEST (line 25) | TEST(JSONBinPack_Compiler, dialect_2019_09) {
  function TEST (line 42) | TEST(JSONBinPack_Compiler, dialect_draft7) {
  function TEST (line 59) | TEST(JSONBinPack_Compiler, dialect_draft6) {
  function TEST (line 76) | TEST(JSONBinPack_Compiler, dialect_draft4) {
  function TEST (line 93) | TEST(JSONBinPack_Compiler, dialect_draft3) {
  function TEST (line 110) | TEST(JSONBinPack_Compiler, dialect_draft2) {
  function TEST (line 127) | TEST(JSONBinPack_Compiler, dialect_draft1) {
  function TEST (line 144) | TEST(JSONBinPack_Compiler, dialect_draft0) {
  function TEST (line 161) | TEST(JSONBinPack_Compiler, unknown_dialect_default) {
  function TEST (line 182) | TEST(JSONBinPack_Compiler, unknown_dialect_without_default) {
  function TEST (line 193) | TEST(JSONBinPack_Compiler, invalid_dialect) {

FILE: test/e2e/runner.cc
  function main (line 18) | auto main(int argc, char *argv[]) -> int {

FILE: test/packaging/find_package/hello.cc
  function main (line 10) | auto main() -> int {

FILE: test/runtime/decode_any_test.cc
  function TEST (line 12) | TEST(JSONBinPack_Decoder, BYTE_CHOICE_INDEX_1__1_0_0) {
  function TEST (line 24) | TEST(JSONBinPack_Decoder, BYTE_CHOICE_INDEX_1__0_1_0) {
  function TEST (line 36) | TEST(JSONBinPack_Decoder, BYTE_CHOICE_INDEX_1__0_0_1) {
  function TEST (line 48) | TEST(JSONBinPack_Decoder, BYTE_CHOICE_INDEX_bar__foo_bar_bar) {
  function TEST (line 60) | TEST(JSONBinPack_Decoder, BYTE_CHOICE_INDEX_non_scalar_1) {
  function TEST (line 74) | TEST(JSONBinPack_Decoder, LARGE_CHOICE_INDEX_1__1_0_0) {
  function TEST (line 86) | TEST(JSONBinPack_Decoder, LARGE_CHOICE_INDEX_1__0_1_0) {
  function TEST (line 98) | TEST(JSONBinPack_Decoder, LARGE_CHOICE_INDEX_1__0_0_1) {
  function TEST (line 110) | TEST(JSONBinPack_Decoder, LARGE_CHOICE_INDEX_bar__foo_bar_bar) {
  function TEST (line 122) | TEST(JSONBinPack_Decoder, LARGE_CHOICE_INDEX_non_scalar_1) {
  function TEST (line 136) | TEST(JSONBinPack_Decoder, LARGE_CHOICE_INDEX_enum_250) {
  function TEST (line 150) | TEST(JSONBinPack_Decoder, TOP_LEVEL_BYTE_CHOICE_INDEX_1__1_0_0) {
  function TEST (line 162) | TEST(JSONBinPack_Decoder, TOP_LEVEL_BYTE_CHOICE_INDEX_1__0_1_0) {
  function TEST (line 174) | TEST(JSONBinPack_Decoder, TOP_LEVEL_BYTE_CHOICE_INDEX_1__0_0_1) {
  function TEST (line 186) | TEST(JSONBinPack_Decoder, TOP_LEVEL_BYTE_CHOICE_INDEX_bar__foo_bar_bar) {
  function TEST (line 198) | TEST(JSONBinPack_Decoder, TOP_LEVEL_BYTE_CHOICE_INDEX_non_scalar_1) {
  function TEST (line 212) | TEST(JSONBinPack_Decoder, CONST_NONE_scalar) {
  function TEST (line 220) | TEST(JSONBinPack_Decoder, CONST_NONE_complex) {
  function TEST (line 229) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__null) {
  function TEST (line 238) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__false) {
  function TEST (line 247) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__true) {
  function TEST (line 256) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__real_3_14) {
  function TEST (line 265) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__real_3_0) {
  function TEST (line 278) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__real_103_0) {
  function TEST (line 291) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__256) {
  function TEST (line 300) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__minus_257) {
  function TEST (line 309) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__255) {
  function TEST (line 318) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__minus_256) {
  function TEST (line 327) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__0) {
  function TEST (line 336) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__minus_1) {
  function TEST (line 345) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_space) {
  function TEST (line 354) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_foo) {
  function TEST (line 363) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_30_xs) {
  function TEST (line 375) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__shared_string...
  function TEST (line 393) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_31_xs) {
  function TEST (line 405) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_61_xs) {
  function TEST (line 420) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_url) {
  function TEST (line 432) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_128_xs) {
  function TEST (line 452) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_130_xs) {
  function TEST (line 472) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_256_xs) {
  function TEST (line 506) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_258_xs) {
  function TEST (line 540) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_512_xs) {
  function TEST (line 602) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_513_xs) {
  function TEST (line 665) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_1024_x...
  function TEST (line 778) | TEST(JSONBinPack_Decoder,
  function TEST (line 794) | TEST(JSONBinPack_Decoder,
  function TEST (line 810) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__foo_true_2000) {
  function TEST (line 824) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__array_30) {
  function TEST (line 871) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__array_31) {
  function TEST (line 920) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__array_32) {
  function TEST (line 970) | TEST(JSONBinPack_Decoder,
  function is_member_true (line 991) | static auto is_member_true(const sourcemeta::core::JSON &object,
  function TEST (line 997) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__object_30_ent...
  function TEST (line 1050) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__object_31_ent...
  function TEST (line 1105) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__object_32_ent...
  function TEST (line 1161) | TEST(JSONBinPack_Decoder,

FILE: test/runtime/decode_array_test.cc
  function TEST (line 10) | TEST(JSONBinPack_Decoder, FIXED_TYPED_ARRAY_0_1_2__no_prefix_encodings) {
  function TEST (line 22) | TEST(JSONBinPack_Decoder, FIXED_TYPED_ARRAY_0_1_true__semityped) {
  function TEST (line 43) | TEST(JSONBinPack_Decoder, FIXED_TYPED_ARRAY_empty__no_prefix_encodings) {
  function TEST (line 55) | TEST(JSONBinPack_Decoder,
  function TEST (line 75) | TEST(JSONBinPack_Decoder,
  function TEST (line 95) | TEST(JSONBinPack_Decoder, BOUNDED_8BITS_TYPED_ARRAY_true_false_5__1_3) {
  function TEST (line 114) | TEST(JSONBinPack_Decoder, BOUNDED_8BITS_TYPED_ARRAY_complex) {
  function TEST (line 134) | TEST(JSONBinPack_Decoder,
  function TEST (line 153) | TEST(JSONBinPack_Decoder, FLOOR_TYPED_ARRAY_true_false_5__1_3) {
  function TEST (line 171) | TEST(JSONBinPack_Decoder, FLOOR_TYPED_ARRAY_complex) {
  function TEST (line 190) | TEST(JSONBinPack_Decoder,
  function TEST (line 209) | TEST(JSONBinPack_Decoder, ROOF_TYPED_ARRAY_true_false_5__1_3) {
  function TEST (line 227) | TEST(JSONBinPack_Decoder, ROOF_TYPED_ARRAY_complex) {

FILE: test/runtime/decode_integer_test.cc
  function TEST (line 10) | TEST(JSONBinPack_Decoder,
  function TEST (line 19) | TEST(JSONBinPack_Decoder, BOUNDED_MULTIPLE_8BITS_ENUM_FIXED__2_minus_5_5...
  function TEST (line 27) | TEST(JSONBinPack_Decoder, BOUNDED_MULTIPLE_8BITS_ENUM_FIXED__5_2_8_1) {
  function TEST (line 35) | TEST(JSONBinPack_Decoder, BOUNDED_MULTIPLE_8BITS_ENUM_FIXED__5_1_19_5) {
  function TEST (line 43) | TEST(JSONBinPack_Decoder, BOUNDED_MULTIPLE_8BITS_ENUM_FIXED__255_0_255_1) {
  function TEST (line 51) | TEST(JSONBinPack_Decoder, FLOOR_MULTIPLE_ENUM_VARINT__minus_3_minus_10_1) {
  function TEST (line 59) | TEST(JSONBinPack_Decoder, FLOOR_MULTIPLE_ENUM_VARINT__5_2_1) {
  function TEST (line 67) | TEST(JSONBinPack_Decoder, FLOOR_MULTIPLE_ENUM_VARINT__10_5_5) {
  function TEST (line 75) | TEST(JSONBinPack_Decoder, FLOOR_MULTIPLE_ENUM_VARINT__10_2_5) {
  function TEST (line 83) | TEST(JSONBinPack_Decoder, FLOOR_MULTIPLE_ENUM_VARINT__1000_minus_2_4) {
  function TEST (line 91) | TEST(JSONBinPack_Decoder, ROOF_MULTIPLE_MIRROR_ENUM_VARINT__minus_3_minu...
  function TEST (line 99) | TEST(JSONBinPack_Decoder, ROOF_MULTIPLE_MIRROR_ENUM_VARINT__8_10_1) {
  function TEST (line 107) | TEST(JSONBinPack_Decoder, ROOF_MULTIPLE_MIRROR_ENUM_VARINT__5_16_5) {
  function TEST (line 115) | TEST(JSONBinPack_Decoder, ROOF_MULTIPLE_MIRROR_ENUM_VARINT__10_15_5) {
  function TEST (line 123) | TEST(JSONBinPack_Decoder, ARBITRARY_MULTIPLE_ZIGZAG_VARINT__minus_25200_...
  function TEST (line 131) | TEST(JSONBinPack_Decoder, ARBITRARY_MULTIPLE_ZIGZAG_VARINT__10_5) {
  function TEST (line 139) | TEST(JSONBinPack_Decoder, ARBITRARY_MULTIPLE_ZIGZAG_VARINT__int64_max_1) {
  function TEST (line 149) | TEST(JSONBinPack_Decoder, ARBITRARY_MULTIPLE_ZIGZAG_VARINT__int64_min_1) {

FILE: test/runtime/decode_number_test.cc
  function TEST (line 8) | TEST(JSONBinPack_Decoder, DOUBLE_VARINT_TUPLE_5) {
  function TEST (line 16) | TEST(JSONBinPack_Decoder, DOUBLE_VARINT_TUPLE_minus_3_point_14) {
  function TEST (line 24) | TEST(JSONBinPack_Decoder, DOUBLE_VARINT_TUPLE_minus_5) {
  function TEST (line 32) | TEST(JSONBinPack_Decoder, DOUBLE_VARINT_TUPLE_zero) {
  function TEST (line 40) | TEST(JSONBinPack_Decoder, DOUBLE_VARINT_TUPLE_1235) {
  function TEST (line 48) | TEST(JSONBinPack_Decoder, DOUBLE_VARINT_TUPLE_0_point_1235) {
  function TEST (line 56) | TEST(JSONBinPack_Decoder, DOUBLE_VARINT_TUPLE_1_point_235) {
  function TEST (line 64) | TEST(JSONBinPack_Decoder, DOUBLE_VARINT_TUPLE_0_point_01235) {
  function TEST (line 72) | TEST(JSONBinPack_Decoder, DOUBLE_VARINT_TUPLE_12_point_35) {
  function TEST (line 80) | TEST(JSONBinPack_Decoder, DOUBLE_VARINT_TUPLE_0_point_001235) {
  function TEST (line 88) | TEST(JSONBinPack_Decoder, DOUBLE_VARINT_TUPLE_123_point_5) {
  function TEST (line 96) | TEST(JSONBinPack_Decoder, DOUBLE_VARINT_TUPLE_314) {
  function TEST (line 104) | TEST(JSONBinPack_Decoder, DOUBLE_VARINT_TUPLE_0_point_314) {
  function TEST (line 112) | TEST(JSONBinPack_Decoder, DOUBLE_VARINT_TUPLE_3_point_14) {
  function TEST (line 120) | TEST(JSONBinPack_Decoder, DOUBLE_VARINT_TUPLE_0_point_0314) {
  function TEST (line 128) | TEST(JSONBinPack_Decoder, DOUBLE_VARINT_TUPLE_31_point_4) {

FILE: test/runtime/decode_object_test.cc
  function TEST (line 9) | TEST(JSONBinPack_Decoder,
  function TEST (line 35) | TEST(JSONBinPack_Decoder,

FILE: test/runtime/decode_string_test.cc
  function TEST (line 8) | TEST(JSONBinPack_Decoder, UTF8_STRING_NO_LENGTH_foo_bar) {
  function TEST (line 16) | TEST(JSONBinPack_Decoder, FLOOR_VARINT_PREFIX_UTF8_STRING_SHARED_foo_3) {
  function TEST (line 24) | TEST(JSONBinPack_Decoder, FLOOR_VARINT_PREFIX_UTF8_STRING_SHARED_foo_0_f...
  function TEST (line 40) | TEST(JSONBinPack_Decoder, FLOOR_VARINT_PREFIX_UTF8_STRING_SHARED_unicode...
  function TEST (line 48) | TEST(JSONBinPack_Decoder, ROOF_VARINT_PREFIX_UTF8_STRING_SHARED_foo_4) {
  function TEST (line 56) | TEST(JSONBinPack_Decoder, ROOF_VARINT_PREFIX_UTF8_STRING_SHARED_foo_3_fo...
  function TEST (line 72) | TEST(JSONBinPack_Decoder, ROOF_VARINT_PREFIX_UTF8_STRING_SHARED_unicode_...
  function TEST (line 80) | TEST(JSONBinPack_Decoder, BOUNDED_8BIT_PREFIX_UTF8_STRING_SHARED_foo_3_5) {
  function TEST (line 88) | TEST(JSONBinPack_Decoder, BOUNDED_8BIT_PREFIX_UTF8_STRING_SHARED_foo_3_3) {
  function TEST (line 96) | TEST(JSONBinPack_Decoder,
  function TEST (line 113) | TEST(JSONBinPack_Decoder, BOUNDED_8BIT_PREFIX_UTF8_STRING_SHARED_unicode...
  function TEST (line 121) | TEST(JSONBinPack_Decoder, RFC3339_DATE_INTEGER_TRIPLET_2014_10_01) {
  function TEST (line 129) | TEST(JSONBinPack_Decoder, PREFIX_VARINT_LENGTH_STRING_SHARED_foo) {
  function TEST (line 137) | TEST(JSONBinPack_Decoder, PREFIX_VARINT_LENGTH_STRING_SHARED_foo_foo_foo...
  function TEST (line 157) | TEST(JSONBinPack_Decoder,
  function TEST (line 170) | TEST(JSONBinPack_Decoder,
  function TEST (line 183) | TEST(JSONBinPack_Decoder, PREFIX_VARINT_LENGTH_STRING_SHARED_unicode) {

FILE: test/runtime/decode_test.cc
  function TEST (line 8) | TEST(JSONBinPack_Decoder, generic_decode_BOUNDED_MULTIPLE_8BITS_ENUM_FIX...
  function TEST (line 18) | TEST(JSONBinPack_Decoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX_many) {

FILE: test/runtime/decode_traits_test.cc
  function TEST (line 7) | TEST(JSONBinPack_Decoder, not_copy_constructible) {
  function TEST (line 13) | TEST(JSONBinPack_Decoder, not_trivially_copy_constructible) {
  function TEST (line 19) | TEST(JSONBinPack_Decoder, not_nothrow_copy_constructible) {
  function TEST (line 25) | TEST(JSONBinPack_Decoder, not_copy_assignable) {
  function TEST (line 31) | TEST(JSONBinPack_Decoder, not_trivially_copy_assignable) {
  function TEST (line 37) | TEST(JSONBinPack_Decoder, not_nothrow_copy_assignable) {

FILE: test/runtime/decode_utils.h
  function String (line 10) | static auto bytes_to_string(std::initializer_list<std::uint8_t> bytes)

FILE: test/runtime/encode_any_test.cc
  function TEST (line 12) | TEST(JSONBinPack_Encoder, BYTE_CHOICE_INDEX_1__1_0_0) {
  function TEST (line 24) | TEST(JSONBinPack_Encoder, BYTE_CHOICE_INDEX_1__0_1_0) {
  function TEST (line 36) | TEST(JSONBinPack_Encoder, BYTE_CHOICE_INDEX_1__0_0_1) {
  function TEST (line 48) | TEST(JSONBinPack_Encoder, BYTE_CHOICE_INDEX_bar__foo_bar_bar) {
  function TEST (line 60) | TEST(JSONBinPack_Encoder, BYTE_CHOICE_INDEX_non_scalar_1) {
  function TEST (line 77) | TEST(JSONBinPack_Encoder, LARGE_CHOICE_INDEX_1__1_0_0) {
  function TEST (line 89) | TEST(JSONBinPack_Encoder, LARGE_CHOICE_INDEX_1__0_1_0) {
  function TEST (line 101) | TEST(JSONBinPack_Encoder, LARGE_CHOICE_INDEX_1__0_0_1) {
  function TEST (line 113) | TEST(JSONBinPack_Encoder, LARGE_CHOICE_INDEX_bar__foo_bar_bar) {
  function TEST (line 125) | TEST(JSONBinPack_Encoder, LARGE_CHOICE_INDEX_non_scalar_1) {
  function TEST (line 142) | TEST(JSONBinPack_Encoder, LARGE_CHOICE_INDEX_enum_250) {
  function TEST (line 155) | TEST(JSONBinPack_Encoder, TOP_LEVEL_BYTE_CHOICE_INDEX_1__1_0_0) {
  function TEST (line 167) | TEST(JSONBinPack_Encoder, TOP_LEVEL_BYTE_CHOICE_INDEX_1__0_1_0) {
  function TEST (line 179) | TEST(JSONBinPack_Encoder, TOP_LEVEL_BYTE_CHOICE_INDEX_1__0_0_1) {
  function TEST (line 191) | TEST(JSONBinPack_Encoder, TOP_LEVEL_BYTE_CHOICE_INDEX_bar__foo_bar_bar) {
  function TEST (line 203) | TEST(JSONBinPack_Encoder, TOP_LEVEL_BYTE_CHOICE_INDEX_non_scalar_1) {
  function TEST (line 220) | TEST(JSONBinPack_Encoder, CONST_NONE_scalar) {
  function TEST (line 228) | TEST(JSONBinPack_Encoder, CONST_NONE_complex) {
  function TEST (line 237) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__null) {
  function TEST (line 247) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__false) {
  function TEST (line 257) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__true) {
  function TEST (line 267) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__real_3_14) {
  function TEST (line 280) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__real_3_0) {
  function TEST (line 293) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__real_103_0) {
  function TEST (line 306) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__256) {
  function TEST (line 319) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__minus_257) {
  function TEST (line 332) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__255) {
  function TEST (line 345) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__minus_256) {
  function TEST (line 358) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__0) {
  function TEST (line 368) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__minus_1) {
  function TEST (line 378) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_space) {
  function TEST (line 388) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_foo) {
  function TEST (line 398) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_30_xs) {
  function TEST (line 412) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__shared_string...
  function TEST (line 431) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_31_xs) {
  function TEST (line 445) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_61_xs) {
  function TEST (line 462) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_url) {
  function TEST (line 475) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_128_xs) {
  function TEST (line 500) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_130_xs) {
  function TEST (line 525) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_256_xs) {
  function TEST (line 564) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_258_xs) {
  function TEST (line 603) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_512_xs) {
  function TEST (line 669) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_513_xs) {
  function TEST (line 736) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__string_1024_x...
  function TEST (line 853) | TEST(JSONBinPack_Encoder,
  function TEST (line 871) | TEST(JSONBinPack_Encoder,
  function TEST (line 889) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__foo_true_2000) {
  function TEST (line 905) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__array_30) {
  function TEST (line 924) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__array_31) {
  function TEST (line 945) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__array_32) {
  function TEST (line 966) | TEST(JSONBinPack_Encoder,
  function TEST (line 998) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__object_30_ent...
  function TEST (line 1049) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__object_31_ent...
  function TEST (line 1104) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX__object_32_ent...
  function TEST (line 1160) | TEST(JSONBinPack_Encoder,

FILE: test/runtime/encode_array_test.cc
  function TEST (line 11) | TEST(JSONBinPack_Encoder, FIXED_TYPED_ARRAY_0_1_2__no_prefix_encodings) {
  function TEST (line 25) | TEST(JSONBinPack_Encoder, FIXED_TYPED_ARRAY_0_1_true__semityped) {
  function TEST (line 47) | TEST(JSONBinPack_Encoder, FIXED_TYPED_ARRAY_empty__no_prefix_encodings) {
  function TEST (line 61) | TEST(JSONBinPack_Encoder,
  function TEST (line 82) | TEST(JSONBinPack_Encoder,
  function TEST (line 103) | TEST(JSONBinPack_Encoder, BOUNDED_8BITS_TYPED_ARRAY_true_false_5__1_3) {
  function TEST (line 123) | TEST(JSONBinPack_Encoder, BOUNDED_8BITS_TYPED_ARRAY_complex) {
  function TEST (line 143) | TEST(JSONBinPack_Encoder,
  function TEST (line 163) | TEST(JSONBinPack_Encoder, FLOOR_TYPED_ARRAY_true_false_5__1_3) {
  function TEST (line 182) | TEST(JSONBinPack_Encoder, FLOOR_TYPED_ARRAY_complex) {
  function TEST (line 201) | TEST(JSONBinPack_Encoder,
  function TEST (line 221) | TEST(JSONBinPack_Encoder, ROOF_TYPED_ARRAY_true_false_5__1_3) {
  function TEST (line 240) | TEST(JSONBinPack_Encoder, ROOF_TYPED_ARRAY_complex) {

FILE: test/runtime/encode_cache_test.cc
  function TEST (line 9) | TEST(JSONBinPack_Encoder, cache_record_string) {
  function TEST (line 20) | TEST(JSONBinPack_Encoder, cache_record_string_too_short) {
  function TEST (line 30) | TEST(JSONBinPack_Encoder, cache_record_string_empty) {
  function TEST (line 40) | TEST(JSONBinPack_Encoder, cache_has_on_unknown_string) {
  function TEST (line 47) | TEST(JSONBinPack_Encoder, cache_increase_offset) {
  function TEST (line 57) | TEST(JSONBinPack_Encoder, cache_do_not_decrease_offset) {
  function TEST (line 67) | TEST(JSONBinPack_Encoder, cache_not_record_too_big) {
  function TEST (line 78) | TEST(JSONBinPack_Encoder, cache_remove_oldest) {
  function TEST (line 112) | TEST(JSONBinPack_Encoder, cache_is_a_circular_buffer) {
  function TEST (line 159) | TEST(JSONBinPack_Encoder, cache_same_string_different_type) {
  function TEST (line 175) | TEST(JSONBinPack_Encoder, cache_no_fallback_type) {

FILE: test/runtime/encode_integer_test.cc
  function TEST (line 9) | TEST(JSONBinPack_Encoder,
  function TEST (line 18) | TEST(JSONBinPack_Encoder, BOUNDED_MULTIPLE_8BITS_ENUM_FIXED__2_minus_5_5...
  function TEST (line 26) | TEST(JSONBinPack_Encoder, BOUNDED_MULTIPLE_8BITS_ENUM_FIXED__5_2_8_1) {
  function TEST (line 34) | TEST(JSONBinPack_Encoder, BOUNDED_MULTIPLE_8BITS_ENUM_FIXED__5_1_19_5) {
  function TEST (line 42) | TEST(JSONBinPack_Encoder, BOUNDED_MULTIPLE_8BITS_ENUM_FIXED__15_1_19_5) {
  function TEST (line 50) | TEST(JSONBinPack_Encoder, BOUNDED_MULTIPLE_8BITS_ENUM_FIXED__255_0_255_1) {
  function TEST (line 58) | TEST(JSONBinPack_Encoder, FLOOR_MULTIPLE_ENUM_VARINT__minus_3_minus_10_1) {
  function TEST (line 66) | TEST(JSONBinPack_Encoder, FLOOR_MULTIPLE_ENUM_VARINT__5_2_1) {
  function TEST (line 74) | TEST(JSONBinPack_Encoder, FLOOR_MULTIPLE_ENUM_VARINT__10_5_5) {
  function TEST (line 82) | TEST(JSONBinPack_Encoder, FLOOR_MULTIPLE_ENUM_VARINT__10_2_5) {
  function TEST (line 90) | TEST(JSONBinPack_Encoder, FLOOR_MULTIPLE_ENUM_VARINT__1000_minus_2_4) {
  function TEST (line 98) | TEST(JSONBinPack_Encoder, ROOF_MULTIPLE_MIRROR_ENUM_VARINT__minus_3_minu...
  function TEST (line 106) | TEST(JSONBinPack_Encoder, ROOF_MULTIPLE_MIRROR_ENUM_VARINT__8_10_1) {
  function TEST (line 114) | TEST(JSONBinPack_Encoder, ROOF_MULTIPLE_MIRROR_ENUM_VARINT__5_16_5) {
  function TEST (line 122) | TEST(JSONBinPack_Encoder, ROOF_MULTIPLE_MIRROR_ENUM_VARINT__10_15_5) {
  function TEST (line 130) | TEST(JSONBinPack_Encoder, ARBITRARY_MULTIPLE_ZIGZAG_VARINT__minus_25200_...
  function TEST (line 138) | TEST(JSONBinPack_Encoder, ARBITRARY_MULTIPLE_ZIGZAG_VARINT__10_5) {
  function TEST (line 146) | TEST(JSONBinPack_Encoder, ARBITRARY_MULTIPLE_ZIGZAG_VARINT__int64_max_1) {
  function TEST (line 156) | TEST(JSONBinPack_Encoder, ARBITRARY_MULTIPLE_ZIGZAG_VARINT__int64_min_1) {

FILE: test/runtime/encode_number_test.cc
  function TEST (line 7) | TEST(JSONBinPack_Encoder, DOUBLE_VARINT_TUPLE_5) {
  function TEST (line 15) | TEST(JSONBinPack_Encoder, DOUBLE_VARINT_TUPLE_minus_3_point_14) {
  function TEST (line 23) | TEST(JSONBinPack_Encoder, DOUBLE_VARINT_TUPLE_minus_5) {
  function TEST (line 31) | TEST(JSONBinPack_Encoder, DOUBLE_VARINT_TUPLE_zero) {
  function TEST (line 39) | TEST(JSONBinPack_Encoder, DOUBLE_VARINT_TUPLE_1235) {
  function TEST (line 47) | TEST(JSONBinPack_Encoder, DOUBLE_VARINT_TUPLE_0_point_1235) {
  function TEST (line 55) | TEST(JSONBinPack_Encoder, DOUBLE_VARINT_TUPLE_1_point_235) {
  function TEST (line 63) | TEST(JSONBinPack_Encoder, DOUBLE_VARINT_TUPLE_0_point_01235) {
  function TEST (line 71) | TEST(JSONBinPack_Encoder, DOUBLE_VARINT_TUPLE_12_35) {
  function TEST (line 79) | TEST(JSONBinPack_Encoder, DOUBLE_VARINT_TUPLE_0_point_001235) {
  function TEST (line 87) | TEST(JSONBinPack_Encoder, DOUBLE_VARINT_TUPLE_123_point_5) {
  function TEST (line 95) | TEST(JSONBinPack_Encoder, DOUBLE_VARINT_TUPLE_314) {
  function TEST (line 103) | TEST(JSONBinPack_Encoder, DOUBLE_VARINT_TUPLE_0_point_314) {
  function TEST (line 111) | TEST(JSONBinPack_Encoder, DOUBLE_VARINT_TUPLE_3_point_14) {
  function TEST (line 119) | TEST(JSONBinPack_Encoder, DOUBLE_VARINT_TUPLE_0_point_0314) {
  function TEST (line 127) | TEST(JSONBinPack_Encoder, DOUBLE_VARINT_TUPLE_31_point_4) {

FILE: test/runtime/encode_object_test.cc
  function TEST (line 9) | TEST(JSONBinPack_Encoder,
  function TEST (line 40) | TEST(JSONBinPack_Encoder,

FILE: test/runtime/encode_real_test.cc
  function TEST (line 5) | TEST(JSONBinPack_Encoder, real_digits_1) {
  function TEST (line 14) | TEST(JSONBinPack_Encoder, real_digits_2) {
  function TEST (line 23) | TEST(JSONBinPack_Encoder, real_digits_3) {
  function TEST (line 32) | TEST(JSONBinPack_Encoder, real_digits_4) {
  function TEST (line 41) | TEST(JSONBinPack_Encoder, real_digits_5) {
  function TEST (line 50) | TEST(JSONBinPack_Encoder, real_digits_6) {
  function TEST (line 59) | TEST(JSONBinPack_Encoder, real_digits_7) {
  function TEST (line 68) | TEST(JSONBinPack_Encoder, real_digits_8) {
  function TEST (line 77) | TEST(JSONBinPack_Encoder, real_digits_9) {
  function TEST (line 86) | TEST(JSONBinPack_Encoder, real_digits_10) {
  function TEST (line 95) | TEST(JSONBinPack_Encoder, integer_5) {

FILE: test/runtime/encode_string_test.cc
  function TEST (line 7) | TEST(JSONBinPack_Encoder, UTF8_STRING_NO_LENGTH_foo_bar) {
  function TEST (line 15) | TEST(JSONBinPack_Encoder, FLOOR_VARINT_PREFIX_UTF8_STRING_SHARED_foo_3) {
  function TEST (line 23) | TEST(JSONBinPack_Encoder, FLOOR_VARINT_PREFIX_UTF8_STRING_SHARED_foo_0_f...
  function TEST (line 32) | TEST(JSONBinPack_Encoder, FLOOR_VARINT_PREFIX_UTF8_STRING_SHARED_unicode...
  function TEST (line 40) | TEST(JSONBinPack_Encoder, ROOF_VARINT_PREFIX_UTF8_STRING_SHARED_foo_4) {
  function TEST (line 48) | TEST(JSONBinPack_Encoder, ROOF_VARINT_PREFIX_UTF8_STRING_SHARED_foo_3_fo...
  function TEST (line 57) | TEST(JSONBinPack_Encoder, ROOF_VARINT_PREFIX_UTF8_STRING_SHARED_unicode_...
  function TEST (line 65) | TEST(JSONBinPack_Encoder, BOUNDED_8BIT_PREFIX_UTF8_STRING_SHARED_foo_3_5) {
  function TEST (line 73) | TEST(JSONBinPack_Encoder, BOUNDED_8BIT_PREFIX_UTF8_STRING_SHARED_foo_3_3) {
  function TEST (line 81) | TEST(JSONBinPack_Encoder,
  function TEST (line 91) | TEST(JSONBinPack_Encoder, BOUNDED_8BIT_PREFIX_UTF8_STRING_SHARED_unicode...
  function TEST (line 99) | TEST(JSONBinPack_Encoder, RFC3339_DATE_INTEGER_TRIPLET_2014_10_01) {
  function TEST (line 107) | TEST(JSONBinPack_Encoder, PREFIX_VARINT_LENGTH_STRING_SHARED_foo) {
  function TEST (line 118) | TEST(JSONBinPack_Encoder, PREFIX_VARINT_LENGTH_STRING_SHARED_foo_foo_foo...
  function TEST (line 139) | TEST(JSONBinPack_Encoder,
  function TEST (line 155) | TEST(JSONBinPack_Encoder,
  function TEST (line 172) | TEST(JSONBinPack_Encoder, PREFIX_VARINT_LENGTH_STRING_SHARED_unicode) {

FILE: test/runtime/encode_test.cc
  function TEST (line 7) | TEST(JSONBinPack_Encoder, generic_encode_BOUNDED_MULTIPLE_8BITS_ENUM_FIX...
  function TEST (line 17) | TEST(JSONBinPack_Encoder, ANY_PACKED_TYPE_TAG_BYTE_PREFIX_many) {

FILE: test/runtime/encode_traits_test.cc
  function TEST (line 7) | TEST(JSONBinPack_Encoder, not_copy_constructible) {
  function TEST (line 13) | TEST(JSONBinPack_Encoder, not_trivially_copy_constructible) {
  function TEST (line 19) | TEST(JSONBinPack_Encoder, not_nothrow_copy_constructible) {
  function TEST (line 25) | TEST(JSONBinPack_Encoder, not_copy_assignable) {
  function TEST (line 31) | TEST(JSONBinPack_Encoder, not_trivially_copy_assignable) {
  function TEST (line 37) | TEST(JSONBinPack_Encoder, not_nothrow_copy_assignable) {

FILE: test/runtime/encode_utils.h
  function byte (line 17) | static inline auto to_byte(const std::uint8_t input) -> std::byte {
  function class (line 21) | class OutputByteStream
  function actual (line 36) | inline auto EXPECT_BYTES(const OutputByteStream &stream,
  function std (line 61) | const std::vector<std::byte> prefix{actual.cbegin(), iterator};

FILE: test/runtime/encoding_traits_test.cc
  function TEST (line 7) | TEST(JSONBinPack_Encoding, encoding_movable) {
  function TEST (line 12) | TEST(JSONBinPack_Encoding, encoding_nothrow_movable) {
  function TEST (line 17) | TEST(JSONBinPack_Encoding, encoding_copyable) {

FILE: test/runtime/input_stream_varint_test.cc
  function TEST (line 9) | TEST(JSONBinPack_InputStream, varint_0x01) {
  function TEST (line 15) | TEST(JSONBinPack_InputStream, varint_0x17) {
  function TEST (line 21) | TEST(JSONBinPack_InputStream, varint_0xac_0x02) {
  function TEST (line 27) | TEST(JSONBinPack_InputStream, varint_0xdf_0x89_0x03) {
  function TEST (line 33) | TEST(JSONBinPack_InputStream, varint_0xfe_0xff_0xff_0xff_0x0f) {
  function TEST (line 41) | TEST(JSONBinPack_InputStream, varint_uint64_max) {

FILE: test/runtime/output_stream_varint_test.cc
  function TEST (line 9) | TEST(JSONBinPack_OutputStream, varint_1) {
  function TEST (line 16) | TEST(JSONBinPack_OutputStream, varint_23) {
  function TEST (line 23) | TEST(JSONBinPack_OutputStream, varint_300) {
  function TEST (line 30) | TEST(JSONBinPack_OutputStream, varint_50399) {
  function TEST (line 37) | TEST(JSONBinPack_OutputStream, varint_4294967294) {
  function TEST (line 44) | TEST(JSONBinPack_OutputStream, varint_uint64_max) {

FILE: test/runtime/v1_any_loader_test.cc
  function TEST (line 8) | TEST(JSONBinPack_Loader_v1, BYTE_CHOICE_INDEX_scalars) {
  function TEST (line 29) | TEST(JSONBinPack_Loader_v1, LARGE_CHOICE_INDEX_scalars) {
  function TEST (line 50) | TEST(JSONBinPack_Loader_v1, TOP_LEVEL_BYTE_CHOICE_INDEX_scalars) {
  function TEST (line 71) | TEST(JSONBinPack_Loader_v1, CONST_NONE_scalar) {
  function TEST (line 86) | TEST(JSONBinPack_Loader_v1, ANY_PACKED_TYPE_TAG_BYTE_PREFIX) {

FILE: test/runtime/v1_array_loader_test.cc
  function TEST (line 8) | TEST(JSONBinPack_Loader_v1, FIXED_TYPED_ARRAY_enum_integer_number) {
  function TEST (line 66) | TEST(JSONBinPack_Loader_v1, BOUNDED_8BITS_TYPED_ARRAY_enum_integer_numbe...
  function TEST (line 131) | TEST(JSONBinPack_Loader_v1, FLOOR_TYPED_ARRAY_enum_integer_number) {
  function TEST (line 189) | TEST(JSONBinPack_Loader_v1, ROOF_TYPED_ARRAY_enum_integer_number) {

FILE: test/runtime/v1_integer_loader_test.cc
  function TEST (line 8) | TEST(JSONBinPack_Loader_v1, BOUNDED_MULTIPLE_8BITS_ENUM_FIXED_positive) {
  function TEST (line 28) | TEST(JSONBinPack_Loader_v1, FLOOR_MULTIPLE_ENUM_VARINT_positive) {
  function TEST (line 45) | TEST(JSONBinPack_Loader_v1, ROOF_MULTIPLE_MIRROR_ENUM_VARINT_positive) {
  function TEST (line 62) | TEST(JSONBinPack_Loader_v1, ARBITRARY_MULTIPLE_ZIGZAG_VARINT_unit_multip...

FILE: test/runtime/v1_loader_test.cc
  function TEST (line 6) | TEST(JSONBinPack_Loader_v1, invalid_encoding_name) {

FILE: test/runtime/v1_number_loader_test.cc
  function TEST (line 8) | TEST(JSONBinPack_Loader_v1, DOUBLE_VARINT_TUPLE) {

FILE: test/runtime/v1_string_loader_test.cc
  function TEST (line 8) | TEST(JSONBinPack_Loader_v1, UTF8_STRING_NO_LENGTH_3) {
  function TEST (line 23) | TEST(JSONBinPack_Loader_v1, FLOOR_VARINT_PREFIX_UTF8_STRING_SHARED_3) {
  function TEST (line 40) | TEST(JSONBinPack_Loader_v1, ROOF_VARINT_PREFIX_UTF8_STRING_SHARED_3) {
  function TEST (line 56) | TEST(JSONBinPack_Loader_v1, BOUNDED_8BIT_PREFIX_UTF8_STRING_SHARED_open) {
  function TEST (line 76) | TEST(JSONBinPack_Loader_v1, RFC3339_DATE_INTEGER_TRIPLET) {
  function TEST (line 88) | TEST(JSONBinPack_Loader_v1, PREFIX_VARINT_LENGTH_STRING_SHARED) {

FILE: vendor/alterschema/src/engine/include/sourcemeta/alterschema/engine_bundle.h
  function class (line 83) | class SOURCEMETA_ALTERSCHEMA_ENGINE_EXPORT Bundle {

FILE: vendor/alterschema/src/engine/include/sourcemeta/alterschema/engine_rule.h
  function namespace (line 19) | namespace sourcemeta::alterschema {

FILE: vendor/alterschema/src/engine/include/sourcemeta/alterschema/engine_transformer.h
  function namespace (line 14) | namespace sourcemeta::alterschema {

FILE: vendor/alterschema/src/engine/rule.cc
  function vocabularies_to_set (line 10) | auto vocabularies_to_set(const std::map<std::string, bool> &vocabularies)

FILE: vendor/alterschema/src/linter/antipattern/const_with_type.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 23) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/antipattern/duplicate_enum_values.h
  function override (line 7) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 26) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/antipattern/duplicate_required_values.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 24) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/antipattern/enum_with_type.h
  function override (line 9) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,

FILE: vendor/alterschema/src/linter/antipattern/exclusive_maximum_number_and_maximum.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/antipattern/exclusive_minimum_number_and_minimum.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/desugar/boolean_true.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 16) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/desugar/const_as_enum.h
  function override (line 7) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 22) | auto transform(sourcemeta::alterschema::Transformer &transformer) const

FILE: vendor/alterschema/src/linter/desugar/exclusive_maximum_integer_to_maximum.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function current (line 34) | const auto current{transformer.schema().at("exclusiveMaximum").to_real()};

FILE: vendor/alterschema/src/linter/desugar/exclusive_minimum_integer_to_minimum.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function current (line 34) | const auto current{transformer.schema().at("exclusiveMinimum").to_real()};

FILE: vendor/alterschema/src/linter/desugar/type_array_to_any_of_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,

FILE: vendor/alterschema/src/linter/desugar/type_boolean_as_enum.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 29) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/desugar/type_null_as_enum.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 29) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/implicit/max_contains_covered_by_max_items.h
  function override (line 9) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/implicit/min_items_given_min_contains.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 23) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/implicit/min_items_implicit.h
  function override (line 7) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/implicit/min_length_implicit.h
  function override (line 7) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 28) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/implicit/min_properties_covered_by_required.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 29) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/implicit/min_properties_implicit.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 26) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/implicit/multiple_of_implicit.h
  function override (line 7) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 26) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/implicit/properties_implicit.h
  function override (line 7) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 33) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/implicit/type_union_implicit.h
  function types (line 119) | auto types{sourcemeta::jsontoolkit::JSON::make_array()};

FILE: vendor/alterschema/src/linter/include/sourcemeta/alterschema/linter.h
  function LinterCategory (line 25) | enum class LinterCategory {

FILE: vendor/alterschema/src/linter/linter.cc
  type sourcemeta::alterschema (line 9) | namespace sourcemeta::alterschema {
    function contains_any (line 11) | auto contains_any(const T &container, const T &values) -> bool {
    function every_item_is_null (line 17) | auto every_item_is_null(const T &container) -> bool {
    function every_item_is_boolean (line 22) | auto every_item_is_boolean(const T &container) -> bool {
    function add (line 181) | auto add(Bundle &bundle, const LinterCategory category) -> void {
  type sourcemeta::alterschema (line 179) | namespace sourcemeta::alterschema {
    function contains_any (line 11) | auto contains_any(const T &container, const T &values) -> bool {
    function every_item_is_null (line 17) | auto every_item_is_null(const T &container) -> bool {
    function every_item_is_boolean (line 22) | auto every_item_is_boolean(const T &container) -> bool {
    function add (line 181) | auto add(Bundle &bundle, const LinterCategory category) -> void {

FILE: vendor/alterschema/src/linter/redundant/additional_properties_default.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 30) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/redundant/content_schema_default.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 24) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/redundant/dependencies_default.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 23) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/redundant/dependent_required_default.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 22) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/redundant/items_array_default.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 26) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/redundant/items_schema_default.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 29) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/redundant/pattern_properties_default.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 26) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/redundant/properties_default.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 28) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/redundant/unevaluated_items_default.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 24) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/redundant/unevaluated_properties_default.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 24) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/redundant/unsatisfiable_max_contains.h
  function override (line 9) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/redundant/unsatisfiable_min_properties.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 29) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/simplify/dependencies_property_tautology.h
  function override (line 9) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function match (line 40) | bool match{false};

FILE: vendor/alterschema/src/linter/simplify/dependent_required_tautology.h
  function override (line 9) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,

FILE: vendor/alterschema/src/linter/simplify/equal_numeric_bounds_to_enum.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 32) | auto transform(sourcemeta::alterschema::Transformer &transformer) const

FILE: vendor/alterschema/src/linter/simplify/maximum_real_for_integer.h
  function override (line 9) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function current (line 31) | const auto current{transformer.schema().at("maximum").to_real()};

FILE: vendor/alterschema/src/linter/simplify/minimum_real_for_integer.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function current (line 30) | const auto current{transformer.schema().at("minimum").to_real()};

FILE: vendor/alterschema/src/linter/simplify/single_type_array.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,

FILE: vendor/alterschema/src/linter/superfluous/content_media_type_without_encoding.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/content_schema_without_media_type.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_array_keywords_applicator_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 23) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_array_keywords_applicator_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 23) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_array_keywords_content_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 23) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_array_keywords_content_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 23) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_array_keywords_draft0.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_array_keywords_draft1.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_array_keywords_draft2.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_array_keywords_draft3.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 20) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_array_keywords_draft4.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 20) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_array_keywords_draft6.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 20) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_array_keywords_draft7.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 20) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_array_keywords_format_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 23) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_array_keywords_format_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_array_keywords_unevaluated_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 23) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_array_keywords_validation_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_array_keywords_validation_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_boolean_keywords_applicator_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_boolean_keywords_applicator_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_boolean_keywords_content_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_boolean_keywords_content_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_boolean_keywords_draft0.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_boolean_keywords_draft1.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_boolean_keywords_draft2.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_boolean_keywords_draft3.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 20) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_boolean_keywords_draft4.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 20) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_boolean_keywords_draft6.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 20) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_boolean_keywords_draft7.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 20) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_boolean_keywords_format_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_boolean_keywords_format_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 27) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_boolean_keywords_unevaluated_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_boolean_keywords_validation_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_boolean_keywords_validation_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_null_keywords_applicator_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_null_keywords_applicator_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_null_keywords_content_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_null_keywords_content_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_null_keywords_draft0.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_null_keywords_draft1.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_null_keywords_draft2.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_null_keywords_draft3.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 20) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_null_keywords_draft4.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 20) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_null_keywords_draft6.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 20) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_null_keywords_draft7.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 20) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_null_keywords_format_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_null_keywords_format_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 27) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_null_keywords_unevaluated_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_null_keywords_validation_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_null_keywords_validation_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_numeric_keywords_applicator_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 24) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_numeric_keywords_applicator_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 24) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_numeric_keywords_content_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 24) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_numeric_keywords_content_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 24) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_numeric_keywords_draft0.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 22) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_numeric_keywords_draft1.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 22) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_numeric_keywords_draft2.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 22) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_numeric_keywords_draft3.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_numeric_keywords_draft4.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_numeric_keywords_draft6.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_numeric_keywords_draft7.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_numeric_keywords_format_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 24) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_numeric_keywords_format_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 26) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_numeric_keywords_unevaluated_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 24) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_numeric_keywords_validation_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 22) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_numeric_keywords_validation_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 22) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_object_keywords_applicator_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 23) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_object_keywords_applicator_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 23) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_object_keywords_content_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 23) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_object_keywords_content_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 23) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_object_keywords_draft0.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_object_keywords_draft1.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_object_keywords_draft2.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_object_keywords_draft3.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 20) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_object_keywords_draft4.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 20) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_object_keywords_draft6.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 20) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_object_keywords_draft7.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 20) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_object_keywords_format_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 23) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_object_keywords_format_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 25) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_object_keywords_unevaluated_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 23) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_object_keywords_validation_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_object_keywords_validation_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_string_keywords_applicator_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 23) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_string_keywords_applicator_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 23) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_string_keywords_draft0.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_string_keywords_draft1.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_string_keywords_draft2.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_string_keywords_draft3.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 20) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_string_keywords_draft4.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 20) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_string_keywords_draft6.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 20) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_string_keywords_draft7.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 20) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_string_keywords_unevaluated_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 23) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_string_keywords_validation_2019_09.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/drop_non_string_keywords_validation_2020_12.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/duplicate_allof_branches.h
  function override (line 10) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 26) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/duplicate_anyof_branches.h
  function override (line 10) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 26) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/else_without_if.h
  function override (line 7) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/if_without_then_else.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 22) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/max_contains_without_contains.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/min_contains_without_contains.h
  function override (line 8) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/superfluous/then_without_if.h
  function override (line 7) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 21) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/alterschema/src/linter/syntax_sugar/enum_to_const.h
  function override (line 7) | [[nodiscard]] auto condition(const sourcemeta::jsontoolkit::JSON &schema,
  function override (line 23) | auto transform(Transformer &transformer) const -> void override {

FILE: vendor/blaze/ports/javascript/describe.mjs
  constant TYPE_INTEGER (line 50) | const TYPE_INTEGER = 2;
  constant TYPE_REAL (line 51) | const TYPE_REAL = 3;
  constant TYPE_OBJECT (line 52) | const TYPE_OBJECT = 6;
  constant TYPE_DECIMAL (line 53) | const TYPE_DECIMAL = 7;
  constant TYPE_NAMES (line 55) | const TYPE_NAMES = [ 'null', 'boolean', 'integer', 'number',
  function typeName (line 58) | function typeName(typeIndex) {
  function jsonTypeOf (line 62) | function jsonTypeOf(value) {
  function valueTypeName (line 74) | function valueTypeName(value) {
  function escapeString (line 82) | function escapeString(input) {
  function stringifyValue (line 86) | function stringifyValue(value) {
  function resolveTarget (line 92) | function resolveTarget(instance, instanceLocation) {
  function extractKeyword (line 107) | function extractKeyword(evaluatePath) {
  function isWithinKeyword (line 117) | function isWithinKeyword(evaluatePath, keyword) {
  function lastInstanceToken (line 127) | function lastInstanceToken(instanceLocation) {
  function objectSize (line 134) | function objectSize(value) {
  function objectKeys (line 140) | function objectKeys(value) {
  function unicodeLength (line 146) | function unicodeLength(string) {
  function isObject (line 156) | function isObject(value) {
  function jsonEqual (line 160) | function jsonEqual(left, right) {
  function jsonCompare (line 183) | function jsonCompare(left, right) {
  function normalizeTypes (line 200) | function normalizeTypes(bitmask) {
  function describeTypeCheck (line 211) | function describeTypeCheck(valid, currentType, expectedType) {
  function describeNotTypeCheck (line 219) | function describeNotTypeCheck(valid, currentType, expectedType) {
  function describeTypesCheck (line 235) | function describeTypesCheck(valid, currentType, bitmask) {
  function describeNotTypesCheck (line 286) | function describeNotTypesCheck(valid, currentType, bitmask) {
  function describeReference (line 337) | function describeReference(target) {
  function describeTypeList (line 342) | function describeTypeList(bitmask) {
  function formatList (line 373) | function formatList(items, conjunction) {
  function describe (line 385) | function describe(valid, instruction, evaluatePath,

FILE: vendor/blaze/ports/javascript/index.mjs
  constant JSON_VERSION (line 9) | const JSON_VERSION = 5;
  constant DEPTH_LIMIT (line 10) | const DEPTH_LIMIT = 300;
  constant URI_REGEX (line 11) | const URI_REGEX = /^[a-zA-Z][a-zA-Z0-9+\-.]*:[^\s]*$/;
  function buildJsonPointer (line 13) | function buildJsonPointer(tokens, length) {
  function jsonTypeOf (line 34) | function jsonTypeOf(value) {
  function isIntegral (line 46) | function isIntegral(value) {
  function resolveInstance (line 51) | function resolveInstance(instance, relativeInstanceLocation) {
  function prepareInstruction (line 66) | function prepareInstruction(instruction) {
  function resolveJumpTargets (line 155) | function resolveJumpTargets(instructions, targets) {
  constant FNV_OFFSET (line 171) | const FNV_OFFSET = 14695981039346656037n;
  constant FNV_PRIME (line 172) | const FNV_PRIME = 1099511628211n;
  constant MASK_53 (line 173) | const MASK_53 = (1n << 53n) - 1n;
  function blazeHash (line 175) | function blazeHash(resource, fragment) {
  function collectAnchorNames (line 184) | function collectAnchorNames(targets, result) {
  function collectAnchorNamesFromInstructions (line 190) | function collectAnchorNamesFromInstructions(instructions, result) {
  function compile (line 202) | function compile(template) {
  function emitResolve (line 243) | function emitResolve(varName, instanceExpr, relInstance) {
  function compileInstructionToCode (line 249) | function compileInstructionToCode(instruction, captures, visited, budget) {
  function generateNativeValidator (line 345) | function generateNativeValidator(template) {
  function sourceToBigInt (line 378) | function sourceToBigInt(source) {
  function reviver (line 391) | function reviver(_key, value, context) {
  class Blaze (line 404) | class Blaze {
    method constructor (line 407) | constructor(template) {
    method validate (line 430) | validate(instance, callbackOrFormat) {
    method snapshotPathTokens (line 498) | snapshotPathTokens() {
    method pushPath (line 502) | pushPath(relativeSchemaLocation) {
    method popPath (line 513) | popPath(count) {
    method callbackPush (line 517) | callbackPush(instruction) {
    method callbackPop (line 531) | callbackPop(instruction, result) {
    method callbackAnnotation (line 547) | callbackAnnotation(instruction) {
    method pushInstanceToken (line 578) | pushInstanceToken(token) {
    method popInstanceToken (line 587) | popInstanceToken() {
    method markEvaluated (line 591) | markEvaluated(target, parent, key) {
    method isEvaluated (line 602) | isEvaluated(target, parent, key) {
    method unevaluate (line 633) | unevaluate() {
  function evaluateInstructionFast (line 652) | function evaluateInstructionFast(instruction, instance, depth, template,...
  function evaluateInstructionTracked (line 661) | function evaluateInstructionTracked(instruction, instance, depth, templa...
  function evaluateInstructionFastCallback (line 691) | function evaluateInstructionFastCallback(instruction, instance, depth, t...
  function evaluateInstructionTrackedCallback (line 700) | function evaluateInstructionTrackedCallback(instruction, instance, depth...
  function effectiveTypeStrictReal (line 732) | function effectiveTypeStrictReal(value) {
  function typeSetTest (line 744) | function typeSetTest(bitmask, typeIndex) {
  function jsonEqual (line 748) | function jsonEqual(left, right) {
  function fastHash (line 772) | function fastHash(value) {
  function isUnique (line 793) | function isUnique(array) {
  function isDivisibleBy (line 829) | function isDivisibleBy(value, divisor) {
  function unicodeLength (line 845) | function unicodeLength(string) {
  function objectSize (line 855) | function objectSize(object) {
  function isObject (line 861) | function isObject(value) {
  function AssertionFail (line 865) | function AssertionFail(instruction, instance, depth, template, evaluator) {
  function AssertionDefines (line 871) | function AssertionDefines(instruction, instance, depth, template, evalua...
  function AssertionDefinesStrict (line 880) | function AssertionDefinesStrict(instruction, instance, depth, template, ...
  function AssertionDefinesAll (line 892) | function AssertionDefinesAll(instruction, instance, depth, template, eva...
  function AssertionDefinesAllStrict (line 907) | function AssertionDefinesAllStrict(instruction, instance, depth, templat...
  function AssertionDefinesExactly (line 925) | function AssertionDefinesExactly(instruction, instance, depth, template,...
  function AssertionDefinesExactlyStrict (line 946) | function AssertionDefinesExactlyStrict(instruction, instance, depth, tem...
  function AssertionDefinesExactlyStrictHash3 (line 970) | function AssertionDefinesExactlyStrictHash3(instruction, instance, depth...
  function AssertionPropertyDependencies (line 991) | function AssertionPropertyDependencies(instruction, instance, depth, tem...
  function AssertionType (line 1010) | function AssertionType(instruction, instance, depth, template, evaluator) {
  function AssertionTypeAny (line 1027) | function AssertionTypeAny(instruction, instance, depth, template, evalua...
  function AssertionTypeStrict (line 1044) | function AssertionTypeStrict(instruction, instance, depth, template, eva...
  function AssertionTypeStrictAny (line 1052) | function AssertionTypeStrictAny(instruction, instance, depth, template, ...
  function AssertionNotTypeStrictAny (line 1060) | function AssertionNotTypeStrictAny(instruction, instance, depth, templat...
  function AssertionTypeStringBounded (line 1068) | function AssertionTypeStringBounded(instruction, instance, depth, templa...
  function AssertionTypeStringUpper (line 1089) | function AssertionTypeStringUpper(instruction, instance, depth, template...
  function AssertionTypeArrayBounded (line 1097) | function AssertionTypeArrayBounded(instruction, instance, depth, templat...
  function AssertionTypeArrayUpper (line 1117) | function AssertionTypeArrayUpper(instruction, instance, depth, template,...
  function AssertionTypeObjectBounded (line 1125) | function AssertionTypeObjectBounded(instruction, instance, depth, templa...
  function AssertionTypeObjectUpper (line 1146) | function AssertionTypeObjectUpper(instruction, instance, depth, template...
  function AssertionRegex (line 1158) | function AssertionRegex(instruction, instance, depth, template, evaluato...
  function AssertionStringSizeLess (line 1168) | function AssertionStringSizeLess(instruction, instance, depth, template,...
  function AssertionStringSizeGreater (line 1178) | function AssertionStringSizeGreater(instruction, instance, depth, templa...
  function AssertionArraySizeLess (line 1188) | function AssertionArraySizeLess(instruction, instance, depth, template, ...
  function AssertionArraySizeGreater (line 1197) | function AssertionArraySizeGreater(instruction, instance, depth, templat...
  function AssertionObjectSizeLess (line 1206) | function AssertionObjectSizeLess(instruction, instance, depth, template,...
  function AssertionObjectSizeGreater (line 1215) | function AssertionObjectSizeGreater(instruction, instance, depth, templa...
  function AssertionEqual (line 1224) | function AssertionEqual(instruction, instance, depth, template, evaluato...
  function AssertionEqualsAny (line 1237) | function AssertionEqualsAny(instruction, instance, depth, template, eval...
  function AssertionEqualsAnyStringHash (line 1258) | function AssertionEqualsAnyStringHash(instruction, instance, depth, temp...
  function AssertionGreaterEqual (line 1293) | function AssertionGreaterEqual(instruction, instance, depth, template, e...
  function AssertionLessEqual (line 1303) | function AssertionLessEqual(instruction, instance, depth, template, eval...
  function AssertionGreater (line 1313) | function AssertionGreater(instruction, instance, depth, template, evalua...
  function AssertionLess (line 1323) | function AssertionLess(instruction, instance, depth, template, evaluator) {
  function AssertionUnique (line 1333) | function AssertionUnique(instruction, instance, depth, template, evaluat...
  function AssertionDivisible (line 1342) | function AssertionDivisible(instruction, instance, depth, template, eval...
  function AssertionTypeIntegerBounded (line 1352) | function AssertionTypeIntegerBounded(instruction, instance, depth, templ...
  function AssertionTypeIntegerBoundedStrict (line 1361) | function AssertionTypeIntegerBoundedStrict(instruction, instance, depth,...
  function AssertionTypeIntegerLowerBound (line 1370) | function AssertionTypeIntegerLowerBound(instruction, instance, depth, te...
  function AssertionTypeIntegerLowerBoundStrict (line 1379) | function AssertionTypeIntegerLowerBoundStrict(instruction, instance, dep...
  function AssertionStringType (line 1388) | function AssertionStringType(instruction, instance, depth, template, eva...
  function AssertionPropertyType (line 1398) | function AssertionPropertyType(instruction, instance, depth, template, e...
  function AssertionPropertyTypeEvaluate (line 1410) | function AssertionPropertyTypeEvaluate(instruction, instance, depth, tem...
  function AssertionPropertyTypeStrict (line 1426) | function AssertionPropertyTypeStrict(instruction, instance, depth, templ...
  function AssertionPropertyTypeStrictEvaluate (line 1436) | function AssertionPropertyTypeStrictEvaluate(instruction, instance, dept...
  function AssertionPropertyTypeStrictAny (line 1450) | function AssertionPropertyTypeStrictAny(instruction, instance, depth, te...
  function AssertionPropertyTypeStrictAnyEvaluate (line 1460) | function AssertionPropertyTypeStrictAnyEvaluate(instruction, instance, d...
  function AssertionArrayPrefix (line 1474) | function AssertionArrayPrefix(instruction, instance, depth, template, ev...
  function AssertionArrayPrefixEvaluate (line 1499) | function AssertionArrayPrefixEvaluate(instruction, instance, depth, temp...
  function AssertionObjectPropertiesSimple (line 1533) | function AssertionObjectPropertiesSimple(instruction, instance, depth, t...
  function AnnotationEmit (line 1564) | function AnnotationEmit(instruction, instance, depth, template, evaluato...
  function AnnotationToParent (line 1568) | function AnnotationToParent(instruction, instance, depth, template, eval...
  function AnnotationBasenameToParent (line 1572) | function AnnotationBasenameToParent(instruction, instance, depth, templa...
  function Evaluate (line 1577) | function Evaluate(instruction, instance, depth, template, evaluator) {
  function LogicalNot (line 1587) | function LogicalNot(instruction, instance, depth, template, evaluator) {
  function LogicalNotEvaluate (line 1603) | function LogicalNotEvaluate(instruction, instance, depth, template, eval...
  function LogicalOr (line 1621) | function LogicalOr(instruction, instance, depth, template, evaluator) {
  function LogicalAnd (line 1649) | function LogicalAnd(instruction, instance, depth, template, evaluator) {
  function LogicalXor (line 1665) | function LogicalXor(instruction, instance, depth, template, evaluator) {
  function LogicalCondition (line 1689) | function LogicalCondition(instruction, instance, depth, template, evalua...
  function LogicalWhenType (line 1738) | function LogicalWhenType(instruction, instance, depth, template, evaluat...
  function LogicalWhenDefines (line 1755) | function LogicalWhenDefines(instruction, instance, depth, template, eval...
  function LogicalWhenArraySizeGreater (line 1773) | function LogicalWhenArraySizeGreater(instruction, instance, depth, templ...
  function LoopPropertiesUnevaluated (line 1790) | function LoopPropertiesUnevaluated(instruction, instance, depth, templat...
  function LoopPropertiesUnevaluatedExcept (line 1818) | function LoopPropertiesUnevaluatedExcept(instruction, instance, depth, t...
  function LoopPropertiesMatch (line 1861) | function LoopPropertiesMatch(instruction, instance, depth, template, eva...
  function LoopPropertiesMatchClosed (line 1884) | function LoopPropertiesMatchClosed(instruction, instance, depth, templat...
  function LoopProperties (line 1910) | function LoopProperties(instruction, instance, depth, template, evaluato...
  function LoopPropertiesEvaluate (line 1936) | function LoopPropertiesEvaluate(instruction, instance, depth, template, ...
  function LoopPropertiesRegex (line 1963) | function LoopPropertiesRegex(instruction, instance, depth, template, eva...
  function LoopPropertiesRegexClosed (line 1992) | function LoopPropertiesRegexClosed(instruction, instance, depth, templat...
  function LoopPropertiesStartsWith (line 2024) | function LoopPropertiesStartsWith(instruction, instance, depth, template...
  function LoopPropertiesExcept (line 2052) | function LoopPropertiesExcept(instruction, instance, depth, template, ev...
  function LoopPropertiesType (line 2093) | function LoopPropertiesType(instruction, instance, depth, template, eval...
  function LoopPropertiesTypeEvaluate (line 2109) | function LoopPropertiesTypeEvaluate(instruction, instance, depth, templa...
  function LoopPropertiesExactlyTypeStrict (line 2126) | function LoopPropertiesExactlyTypeStrict(instruction, instance, depth, t...
  function LoopPropertiesExactlyTypeStrictHash (line 2147) | function LoopPropertiesExactlyTypeStrictHash(instruction, instance, dept...
  function LoopPropertiesTypeStrict (line 2179) | function LoopPropertiesTypeStrict(instruction, instance, depth, template...
  function LoopPropertiesTypeStrictEvaluate (line 2194) | function LoopPropertiesTypeStrictEvaluate(instruction, instance, depth, ...
  function LoopPropertiesTypeStrictAny (line 2210) | function LoopPropertiesTypeStrictAny(instruction, instance, depth, templ...
  function LoopPropertiesTypeStrictAnyEvaluate (line 2225) | function LoopPropertiesTypeStrictAnyEvaluate(instruction, instance, dept...
  function LoopKeys (line 2241) | function LoopKeys(instruction, instance, depth, template, evaluator) {
  function LoopItems (line 2267) | function LoopItems(instruction, instance, depth, template, evaluator) {
  function LoopItemsFrom (line 2289) | function LoopItemsFrom(instruction, instance, depth, template, evaluator) {
  function LoopItemsUnevaluated (line 2312) | function LoopItemsUnevaluated(instruction, instance, depth, template, ev...
  function LoopItemsType (line 2340) | function LoopItemsType(instruction, instance, depth, template, evaluator) {
  function LoopItemsTypeStrict (line 2356) | function LoopItemsTypeStrict(instruction, instance, depth, template, eva...
  function LoopItemsTypeStrictAny (line 2371) | function LoopItemsTypeStrictAny(instruction, instance, depth, template, ...
  function LoopItemsPropertiesExactlyTypeStrictHash (line 2386) | function LoopItemsPropertiesExactlyTypeStrictHash(instruction, instance,...
  function LoopItemsIntegerBounded (line 2425) | function LoopItemsIntegerBounded(instruction, instance, depth, template,...
  function LoopItemsIntegerBoundedSized (line 2447) | function LoopItemsIntegerBoundedSized(instruction, instance, depth, temp...
  function LoopContains (line 2474) | function LoopContains(instruction, instance, depth, template, evaluator) {
  function ControlGroup (line 2516) | function ControlGroup(instruction, instance, depth, template, evaluator) {
  function ControlGroupWhenDefines (line 2526) | function ControlGroupWhenDefines(instruction, instance, depth, template,...
  function ControlGroupWhenDefinesDirect (line 2539) | function ControlGroupWhenDefinesDirect(instruction, instance, depth, tem...
  function ControlGroupWhenType (line 2551) | function ControlGroupWhenType(instruction, instance, depth, template, ev...
  function ControlEvaluate (line 2562) | function ControlEvaluate(instruction, instance, depth, template, evaluat...
  function ControlDynamicAnchorJump (line 2570) | function ControlDynamicAnchorJump(instruction, instance, depth, template...
  function ControlJump (line 2599) | function ControlJump(instruction, instance, depth, template, evaluator) {
  function AssertionTypeArrayBounded_fast (line 2720) | function AssertionTypeArrayBounded_fast(instruction, instance, depth, te...
  function LoopItemsTypeStrictAny_fast (line 2730) | function LoopItemsTypeStrictAny_fast(instruction, instance, depth, templ...
  function AssertionPropertyTypeStrict_fast (line 2741) | function AssertionPropertyTypeStrict_fast(instruction, instance, depth, ...
  function AssertionTypeStrict_fast (line 2748) | function AssertionTypeStrict_fast(instruction, instance, depth, template...
  function AssertionDefinesAllStrict_fast (line 2754) | function AssertionDefinesAllStrict_fast(instruction, instance, depth, te...
  function AssertionEqual_fast (line 2764) | function AssertionEqual_fast(instruction, instance, depth, template, eva...
  function LoopPropertiesMatch_fast (line 2772) | function LoopPropertiesMatch_fast(instruction, instance, depth, template...
  function LogicalOr_fast (line 2791) | function LogicalOr_fast(instruction, instance, depth, template, evaluato...
  function ControlJump_fast (line 2810) | function ControlJump_fast(instruction, instance, depth, template, evalua...
  function AssertionEqualsAnyStringHash_fast (line 2821) | function AssertionEqualsAnyStringHash_fast(instruction, instance, depth,...
  function LogicalXor_fast (line 2840) | function LogicalXor_fast(instruction, instance, depth, template, evaluat...
  function AssertionDefinesStrict_fast (line 2862) | function AssertionDefinesStrict_fast(instruction, instance, depth, templ...
  function LoopItems_fast (line 2867) | function LoopItems_fast(instruction, instance, depth, template, evaluato...
  function LoopPropertiesMatchClosed_fast (line 2882) | function LoopPropertiesMatchClosed_fast(instruction, instance, depth, te...
  function LogicalAnd_fast (line 2901) | function LogicalAnd_fast(instruction, instance, depth, template, evaluat...
  function AssertionTypeStringBounded_fast (line 2913) | function AssertionTypeStringBounded_fast(instruction, instance, depth, t...
  function AssertionPropertyDependencies_fast (line 2923) | function AssertionPropertyDependencies_fast(instruction, instance, depth...
  function AssertionTypeAny_fast (line 2937) | function AssertionTypeAny_fast(instruction, instance, depth, template, e...
  function LogicalCondition_fast (line 2946) | function LogicalCondition_fast(instruction, instance, depth, template, e...
  function LoopPropertiesExcept_fast (line 2985) | function LoopPropertiesExcept_fast(instruction, instance, depth, templat...
  function AssertionRegex_fast (line 3023) | function AssertionRegex_fast(instruction, instance, depth, template, eva...
  function LoopProperties_fast (line 3030) | function LoopProperties_fast(instruction, instance, depth, template, eva...
  function AssertionDefines_fast (line 3053) | function AssertionDefines_fast(instruction, instance, depth, template, e...
  function LogicalWhenType_fast (line 3059) | function LogicalWhenType_fast(instruction, instance, depth, template, ev...
  function LogicalWhenDefines_fast (line 3072) | function LogicalWhenDefines_fast(instruction, instance, depth, template,...
  function AssertionFail_fast (line 3085) | function AssertionFail_fast() { return false; }
  function LoopContains_fast (line 3087) | function LoopContains_fast(instruction, instance, depth, template, evalu...
  function LogicalNot_fast (line 3117) | function LogicalNot_fast(instruction, instance, depth, template, evaluat...
  function LoopItemsType_fast (line 3129) | function LoopItemsType_fast(instruction, instance, depth, template, eval...
  function LoopItemsTypeStrict_fast (line 3141) | function LoopItemsTypeStrict_fast(instruction, instance, depth, template...
  function AssertionEqualsAny_fast (line 3152) | function AssertionEqualsAny_fast(instruction, instance, depth, template,...
  function AssertionDefinesAll_fast (line 3164) | function AssertionDefinesAll_fast(instruction, instance, depth, template...
  function AssertionDefinesExactly_fast (line 3174) | function AssertionDefinesExactly_fast(instruction, instance, depth, temp...
  function AssertionDefinesExactlyStrict_fast (line 3187) | function AssertionDefinesExactlyStrict_fast(instruction, instance, depth...
  function AssertionDefinesExactlyStrictHash3_fast (line 3200) | function AssertionDefinesExactlyStrictHash3_fast(instruction, instance, ...
  function AssertionType_fast (line 3212) | function AssertionType_fast(instruction, instance, depth, template, eval...
  function AssertionTypeStrictAny_fast (line 3220) | function AssertionTypeStrictAny_fast(instruction, instance, depth, templ...
  function AssertionNotTypeStrictAny_fast (line 3226) | function AssertionNotTypeStrictAny_fast(instruction, instance, depth, te...
  function AssertionTypeStringUpper_fast (line 3232) | function AssertionTypeStringUpper_fast(instruction, instance, depth, tem...
  function AssertionTypeArrayUpper_fast (line 3238) | function AssertionTypeArrayUpper_fast(instruction, instance, depth, temp...
  function AssertionTypeObjectBounded_fast (line 3244) | function AssertionTypeObjectBounded_fast(instruction, instance, depth, t...
  function AssertionTypeObjectUpper_fast (line 3254) | function AssertionTypeObjectUpper_fast(instruction, instance, depth, tem...
  function AssertionStringSizeLess_fast (line 3261) | function AssertionStringSizeLess_fast(instruction, instance, depth, temp...
  function AssertionStringSizeGreater_fast (line 3268) | function AssertionStringSizeGreater_fast(instruction, instance, depth, t...
  function AssertionArraySizeLess_fast (line 3275) | function AssertionArraySizeLess_fast(instruction, instance, depth, templ...
  function AssertionArraySizeGreater_fast (line 3281) | function AssertionArraySizeGreater_fast(instruction, instance, depth, te...
  function AssertionObjectSizeLess_fast (line 3287) | function AssertionObjectSizeLess_fast(instruction, instance, depth, temp...
  function AssertionObjectSizeGreater_fast (line 3293) | function AssertionObjectSizeGreater_fast(instruction, instance, depth, t...
  function AssertionGreaterEqual_fast (line 3299) | function AssertionGreaterEqual_fast(instruction, instance, depth, templa...
  function AssertionLessEqual_fast (line 3306) | function AssertionLessEqual_fast(instruction, instance, depth, template,...
  function AssertionGreater_fast (line 3313) | function AssertionGreater_fast(instruction, instance, depth, template, e...
  function AssertionLess_fast (line 3320) | function AssertionLess_fast(instruction, instance, depth, template, eval...
  function AssertionUnique_fast (line 3327) | function AssertionUnique_fast(instruction, instance, depth, template, ev...
  function AssertionDivisible_fast (line 3333) | function AssertionDivisible_fast(instruction, instance, depth, template,...
  function AssertionStringType_fast (line 3340) | function AssertionStringType_fast(instruction, instance, depth, template...
  function AssertionPropertyType_fast (line 3347) | function AssertionPropertyType_fast(instruction, instance, depth, templa...
  function AssertionPropertyTypeEvaluate_fast (line 3356) | function AssertionPropertyTypeEvaluate_fast(instruction, instance, depth...
  function AssertionPropertyTypeStrictEvaluate_fast (line 3370) | function AssertionPropertyTypeStrictEvaluate_fast(instruction, instance,...
  function AssertionPropertyTypeStrictAny_fast (line 3382) | function AssertionPropertyTypeStrictAny_fast(instruction, instance, dept...
  function AssertionPropertyTypeStrictAnyEvaluate_fast (line 3389) | function AssertionPropertyTypeStrictAnyEvaluate_fast(instruction, instan...
  function AssertionArrayPrefix_fast (line 3401) | function AssertionArrayPrefix_fast(instruction, instance, depth, templat...
  function AssertionArrayPrefixEvaluate_fast (line 3418) | function AssertionArrayPrefixEvaluate_fast(instruction, instance, depth,...
  function AssertionObjectPropertiesSimple_fast (line 3444) | function AssertionObjectPropertiesSimple_fast(instruction, instance, dep...
  function AnnotationEmit_fast (line 3464) | function AnnotationEmit_fast() { return true; }
  function AnnotationToParent_fast (line 3465) | function AnnotationToParent_fast() { return true; }
  function AnnotationBasenameToParent_fast (line 3466) | function AnnotationBasenameToParent_fast() { return true; }
  function Evaluate_fast (line 3468) | function Evaluate_fast(instruction, instance, depth, template, evaluator) {
  function LogicalNotEvaluate_fast (line 3476) | function LogicalNotEvaluate_fast(instruction, instance, depth, template,...
  function LogicalWhenArraySizeGreater_fast (line 3493) | function LogicalWhenArraySizeGreater_fast(instruction, instance, depth, ...
  function LoopPropertiesUnevaluated_fast (line 3505) | function LoopPropertiesUnevaluated_fast(instruction, instance, depth, te...
  function LoopPropertiesUnevaluatedExcept_fast (line 3522) | function LoopPropertiesUnevaluatedExcept_fast(instruction, instance, dep...
  function LoopPropertiesEvaluate_fast (line 3554) | function LoopPropertiesEvaluate_fast(instruction, instance, depth, templ...
  function LoopPropertiesRegex_fast (line 3578) | function LoopPropertiesRegex_fast(instruction, instance, depth, template...
  function LoopPropertiesRegexClosed_fast (line 3604) | function LoopPropertiesRegexClosed_fast(instruction, instance, depth, te...
  function LoopPropertiesStartsWith_fast (line 3630) | function LoopPropertiesStartsWith_fast(instruction, instance, depth, tem...
  function LoopPropertiesType_fast (line 3655) | function LoopPropertiesType_fast(instruction, instance, depth, template,...
  function LoopPropertiesTypeEvaluate_fast (line 3667) | function LoopPropertiesTypeEvaluate_fast(instruction, instance, depth, t...
  function LoopPropertiesExactlyTypeStrict_fast (line 3680) | function LoopPropertiesExactlyTypeStrict_fast(instruction, instance, dep...
  function LoopPropertiesExactlyTypeStrictHash_fast (line 3692) | function LoopPropertiesExactlyTypeStrictHash_fast(instruction, instance,...
  function LoopPropertiesTypeStrict_fast (line 3710) | function LoopPropertiesTypeStrict_fast(instruction, instance, depth, tem...
  function LoopPropertiesTypeStrictEvaluate_fast (line 3721) | function LoopPropertiesTypeStrictEvaluate_fast(instruction, instance, de...
  function LoopPropertiesTypeStrictAny_fast (line 3733) | function LoopPropertiesTypeStrictAny_fast(instruction, instance, depth, ...
  function LoopPropertiesTypeStrictAnyEvaluate_fast (line 3744) | function LoopPropertiesTypeStrictAnyEvaluate_fast(instruction, instance,...
  function LoopKeys_fast (line 3756) | function LoopKeys_fast(instruction, instance, depth, template, evaluator) {
  function LoopItemsFrom_fast (line 3776) | function LoopItemsFrom_fast(instruction, instance, depth, template, eval...
  function LoopItemsUnevaluated_fast (line 3791) | function LoopItemsUnevaluated_fast(instruction, instance, depth, templat...
  function LoopItemsPropertiesExactlyTypeStrictHash_fast (line 3808) | function LoopItemsPropertiesExactlyTypeStrictHash_fast(instruction, inst...
  function ControlDynamicAnchorJump_fast (line 3830) | function ControlDynamicAnchorJump_fast(instruction, instance, depth, tem...
  function LoopItemsIntegerBounded_fast (line 3847) | function LoopItemsIntegerBounded_fast(instruction, instance, depth, temp...
  function LoopItemsIntegerBoundedSized_fast (line 3860) | function LoopItemsIntegerBoundedSized_fast(instruction, instance, depth,...
  function AssertionTypeIntegerBounded_fast (line 3875) | function AssertionTypeIntegerBounded_fast(instruction, instance, depth, ...
  function AssertionTypeIntegerBoundedStrict_fast (line 3881) | function AssertionTypeIntegerBoundedStrict_fast(instruction, instance, d...
  function AssertionTypeIntegerLowerBound_fast (line 3887) | function AssertionTypeIntegerLowerBound_fast(instruction, instance, dept...
  function AssertionTypeIntegerLowerBoundStrict_fast (line 3893) | function AssertionTypeIntegerLowerBoundStrict_fast(instruction, instance...
  constant STANDARD_MASK_KEYWORDS (line 3998) | const STANDARD_MASK_KEYWORDS =
  function isAnnotationOpcode (line 4001) | function isAnnotationOpcode(opcode) {
  function lastEvaluatePathToken (line 4005) | function lastEvaluatePathToken(evaluatePath) {
  function isPathPrefix (line 4011) | function isPathPrefix(path, prefix) {
  function maskKey (line 4016) | function maskKey(evaluatePath, instanceLocation) {
  class SimpleOutput (line 4020) | class SimpleOutput {
    method constructor (line 4021) | constructor(instance) {
    method callback (line 4029) | callback(type, valid, instruction, evaluatePath, instanceLocation, ann...
    method toBasic (line 4142) | toBasic(valid) {
  function runStandard (line 4154) | function runStandard(evaluator, instance, format) {

FILE: vendor/blaze/ports/javascript/opcodes.mjs
  constant ASSERTION_FAIL (line 1) | const ASSERTION_FAIL = 0;
  constant ASSERTION_DEFINES (line 2) | const ASSERTION_DEFINES = 1;
  constant ASSERTION_DEFINES_STRICT (line 3) | const ASSERTION_DEFINES_STRICT = 2;
  constant ASSERTION_DEFINES_ALL (line 4) | const ASSERTION_DEFINES_ALL = 3;
  constant ASSERTION_DEFINES_ALL_STRICT (line 5) | const ASSERTION_DEFINES_ALL_STRICT = 4;
  constant ASSERTION_DEFINES_EXACTLY (line 6) | const ASSERTION_DEFINES_EXACTLY = 5;
  constant ASSERTION_DEFINES_EXACTLY_STRICT (line 7) | const ASSERTION_DEFINES_EXACTLY_STRICT = 6;
  constant ASSERTION_DEFINES_EXACTLY_STRICT_HASH3 (line 8) | const ASSERTION_DEFINES_EXACTLY_STRICT_HASH3 = 7;
  constant ASSERTION_PROPERTY_DEPENDENCIES (line 9) | const ASSERTION_PROPERTY_DEPENDENCIES = 8;
  constant ASSERTION_TYPE (line 10) | const ASSERTION_TYPE = 9;
  constant ASSERTION_TYPE_ANY (line 11) | const ASSERTION_TYPE_ANY = 10;
  constant ASSERTION_TYPE_STRICT (line 12) | const ASSERTION_TYPE_STRICT = 11;
  constant ASSERTION_TYPE_STRICT_ANY (line 13) | const ASSERTION_TYPE_STRICT_ANY = 12;
  constant ASSERTION_NOT_TYPE_STRICT_ANY (line 14) | const ASSERTION_NOT_TYPE_STRICT_ANY = 13;
  constant ASSERTION_TYPE_STRING_BOUNDED (line 15) | const ASSERTION_TYPE_STRING_BOUNDED = 14;
  constant ASSERTION_TYPE_STRING_UPPER (line 16) | const ASSERTION_TYPE_STRING_UPPER = 15;
  constant ASSERTION_TYPE_ARRAY_BOUNDED (line 17) | const ASSERTION_TYPE_ARRAY_BOUNDED = 16;
  constant ASSERTION_TYPE_ARRAY_UPPER (line 18) | const ASSERTION_TYPE_ARRAY_UPPER = 17;
  constant ASSERTION_TYPE_OBJECT_BOUNDED (line 19) | const ASSERTION_TYPE_OBJECT_BOUNDED = 18;
  constant ASSERTION_TYPE_OBJECT_UPPER (line 20) | const ASSERTION_TYPE_OBJECT_UPPER = 19;
  constant ASSERTION_REGEX (line 21) | const ASSERTION_REGEX = 20;
  constant ASSERTION_STRING_SIZE_LESS (line 22) | const ASSERTION_STRING_SIZE_LESS = 21;
  constant ASSERTION_STRING_SIZE_GREATER (line 23) | const ASSERTION_STRING_SIZE_GREATER = 22;
  constant ASSERTION_ARRAY_SIZE_LESS (line 24) | const ASSERTION_ARRAY_SIZE_LESS = 23;
  constant ASSERTION_ARRAY_SIZE_GREATER (line 25) | const ASSERTION_ARRAY_SIZE_GREATER = 24;
  constant ASSERTION_OBJECT_SIZE_LESS (line 26) | const ASSERTION_OBJECT_SIZE_LESS = 25;
  constant ASSERTION_OBJECT_SIZE_GREATER (line 27) | const ASSERTION_OBJECT_SIZE_GREATER = 26;
  constant ASSERTION_EQUAL (line 28) | const ASSERTION_EQUAL = 27;
  constant ASSERTION_EQUALS_ANY (line 29) | const ASSERTION_EQUALS_ANY = 28;
  constant ASSERTION_EQUALS_ANY_STRING_HASH (line 30) | const ASSERTION_EQUALS_ANY_STRING_HASH = 29;
  constant ASSERTION_GREATER_EQUAL (line 31) | const ASSERTION_GREATER_EQUAL = 30;
  constant ASSERTION_LESS_EQUAL (line 32) | const ASSERTION_LESS_EQUAL = 31;
  constant ASSERTION_GREATER (line 33) | const ASSERTION_GREATER = 32;
  constant ASSERTION_LESS (line 34) | const ASSERTION_LESS = 33;
  constant ASSERTION_UNIQUE (line 35) | const ASSERTION_UNIQUE = 34;
  constant ASSERTION_DIVISIBLE (line 36) | const ASSERTION_DIVISIBLE = 35;
  constant ASSERTION_TYPE_INTEGER_BOUNDED (line 37) | const ASSERTION_TYPE_INTEGER_BOUNDED = 36;
  constant ASSERTION_TYPE_INTEGER_BOUNDED_STRICT (line 38) | const ASSERTION_TYPE_INTEGER_BOUNDED_STRICT = 37;
  constant ASSERTION_TYPE_INTEGER_LOWER_BOUND (line 39) | const ASSERTION_TYPE_INTEGER_LOWER_BOUND = 38;
  constant ASSERTION_TYPE_INTEGER_LOWER_BOUND_STRICT (line 40) | const ASSERTION_TYPE_INTEGER_LOWER_BOUND_STRICT = 39;
  constant ASSERTION_STRING_TYPE (line 41) | const ASSERTION_STRING_TYPE = 40;
  constant ASSERTION_PROPERTY_TYPE (line 42) | const ASSERTION_PROPERTY_TYPE = 41;
  constant ASSERTION_PROPERTY_TYPE_EVALUATE (line 43) | const ASSERTION_PROPERTY_TYPE_EVALUATE = 42;
  constant ASSERTION_PROPERTY_TYPE_STRICT (line 44) | const ASSERTION_PROPERTY_TYPE_STRICT = 43;
  constant ASSERTION_PROPERTY_TYPE_STRICT_EVALUATE (line 45) | const ASSERTION_PROPERTY_TYPE_STRICT_EVALUATE = 44;
  constant ASSERTION_PROPERTY_TYPE_STRICT_ANY (line 46) | const ASSERTION_PROPERTY_TYPE_STRICT_ANY = 45;
  constant ASSERTION_PROPERTY_TYPE_STRICT_ANY_EVALUATE (line 47) | const ASSERTION_PROPERTY_TYPE_STRICT_ANY_EVALUATE = 46;
  constant ASSERTION_ARRAY_PREFIX (line 48) | const ASSERTION_ARRAY_PREFIX = 47;
  constant ASSERTION_ARRAY_PREFIX_EVALUATE (line 49) | const ASSERTION_ARRAY_PREFIX_EVALUATE = 48;
  constant ASSERTION_OBJECT_PROPERTIES_SIMPLE (line 50) | const ASSERTION_OBJECT_PROPERTIES_SIMPLE = 49;
  constant ANNOTATION_EMIT (line 51) | const ANNOTATION_EMIT = 50;
  constant ANNOTATION_TO_PARENT (line 52) | const ANNOTATION_TO_PARENT = 51;
  constant ANNOTATION_BASENAME_TO_PARENT (line 53) | const ANNOTATION_BASENAME_TO_PARENT = 52;
  constant EVALUATE (line 54) | const EVALUATE = 53;
  constant LOGICAL_NOT (line 55) | const LOGICAL_NOT = 54;
  constant LOGICAL_NOT_EVALUATE (line 56) | const LOGICAL_NOT_EVALUATE = 55;
  constant LOGICAL_OR (line 57) | const LOGICAL_OR = 56;
  constant LOGICAL_AND (line 58) | const LOGICAL_AND = 57;
  constant LOGICAL_XOR (line 59) | const LOGICAL_XOR = 58;
  constant LOGICAL_CONDITION (line 60) | const LOGICAL_CONDITION = 59;
  constant LOGICAL_WHEN_TYPE (line 61) | const LOGICAL_WHEN_TYPE = 60;
  constant LOGICAL_WHEN_DEFINES (line 62) | const LOGICAL_WHEN_DEFINES = 61;
  constant LOGICAL_WHEN_ARRAY_SIZE_GREATER (line 63) | const LOGICAL_WHEN_ARRAY_SIZE_GREATER = 62;
  constant LOOP_PROPERTIES_UNEVALUATED (line 64) | const LOOP_PROPERTIES_UNEVALUATED = 63;
  constant LOOP_PROPERTIES_UNEVALUATED_EXCEPT (line 65) | const LOOP_PROPERTIES_UNEVALUATED_EXCEPT = 64;
  constant LOOP_PROPERTIES_MATCH (line 66) | const LOOP_PROPERTIES_MATCH = 65;
  constant LOOP_PROPERTIES_MATCH_CLOSED (line 67) | const LOOP_PROPERTIES_MATCH_CLOSED = 66;
  constant LOOP_PROPERTIES (line 68) | const LOOP_PROPERTIES = 67;
  constant LOOP_PROPERTIES_EVALUATE (line 69) | const LOOP_PROPERTIES_EVALUATE = 68;
  constant LOOP_PROPERTIES_REGEX (line 70) | const LOOP_PROPERTIES_REGEX = 69;
  constant LOOP_PROPERTIES_REGEX_CLOSED (line 71) | const LOOP_PROPERTIES_REGEX_CLOSED = 70;
  constant LOOP_PROPERTIES_STARTS_WITH (line 72) | const LOOP_PROPERTIES_STARTS_WITH = 71;
  constant LOOP_PROPERTIES_EXCEPT (line 73) | const LOOP_PROPERTIES_EXCEPT = 72;
  constant LOOP_PROPERTIES_TYPE (line 74) | const LOOP_PROPERTIES_TYPE = 73;
  constant LOOP_PROPERTIES_TYPE_EVALUATE (line 75) | const LOOP_PROPERTIES_TYPE_EVALUATE = 74;
  constant LOOP_PROPERTIES_EXACTLY_TYPE_STRICT (line 76) | const LOOP_PROPERTIES_EXACTLY_TYPE_STRICT = 75;
  constant LOOP_PROPERTIES_EXACTLY_TYPE_STRICT_HASH (line 77) | const LOOP_PROPERTIES_EXACTLY_TYPE_STRICT_HASH = 76;
  constant LOOP_PROPERTIES_TYPE_STRICT (line 78) | const LOOP_PROPERTIES_TYPE_STRICT = 77;
  constant LOOP_PROPERTIES_TYPE_STRICT_EVALUATE (line 79) | const LOOP_PROPERTIES_TYPE_STRICT_EVALUATE = 78;
  constant LOOP_PROPERTIES_TYPE_STRICT_ANY (line 80) | const LOOP_PROPERTIES_TYPE_STRICT_ANY = 79;
  constant LOOP_PROPERTIES_TYPE_STRICT_ANY_EVALUATE (line 81) | const LOOP_PROPERTIES_TYPE_STRICT_ANY_EVALUATE = 80;
  constant LOOP_KEYS (line 82) | const LOOP_KEYS = 81;
  constant LOOP_ITEMS (line 83) | const LOOP_ITEMS = 82;
  constant LOOP_ITEMS_FROM (line 84) | const LOOP_ITEMS_FROM = 83;
  constant LOOP_ITEMS_UNEVALUATED (line 85) | const LOOP_ITEMS_UNEVALUATED = 84;
  constant LOOP_ITEMS_TYPE (line 86) | const LOOP_ITEMS_TYPE = 85;
  constant LOOP_ITEMS_TYPE_STRICT (line 87) | const LOOP_ITEMS_TYPE_STRICT = 86;
  constant LOOP_ITEMS_TYPE_STRICT_ANY (line 88) | const LOOP_ITEMS_TYPE_STRICT_ANY = 87;
  constant LOOP_ITEMS_PROPERTIES_EXACTLY_TYPE_STRICT_HASH (line 89) | const LOOP_ITEMS_PROPERTIES_EXACTLY_TYPE_STRICT_HASH = 88;
  constant LOOP_ITEMS_PROPERTIES_EXACTLY_TYPE_STRICT_HASH3 (line 90) | const LOOP_ITEMS_PROPERTIES_EXACTLY_TYPE_STRICT_HASH3 = 89;
  constant LOOP_ITEMS_INTEGER_BOUNDED (line 91) | const LOOP_ITEMS_INTEGER_BOUNDED = 90;
  constant LOOP_ITEMS_INTEGER_BOUNDED_SIZED (line 92) | const LOOP_ITEMS_INTEGER_BOUNDED_SIZED = 91;
  constant LOOP_CONTAINS (line 93) | const LOOP_CONTAINS = 92;
  constant CONTROL_GROUP (line 94) | const CONTROL_GROUP = 93;
  constant CONTROL_GROUP_WHEN_DEFINES (line 95) | const CONTROL_GROUP_WHEN_DEFINES = 94;
  constant CONTROL_GROUP_WHEN_DEFINES_DIRECT (line 96) | const CONTROL_GROUP_WHEN_DEFINES_DIRECT = 95;
  constant CONTROL_GROUP_WHEN_TYPE (line 97) | const CONTROL_GROUP_WHEN_TYPE = 96;
  constant CONTROL_EVALUATE (line 98) | const CONTROL_EVALUATE = 97;
  constant CONTROL_DYNAMIC_ANCHOR_JUMP (line 99) | const CONTROL_DYNAMIC_ANCHOR_JUMP = 98;
  constant CONTROL_JUMP (line 100) | const CONTROL_JUMP = 99;
  constant INSTRUCTION_NAMES (line 102) | const INSTRUCTION_NAMES = {
  constant ANNOTATION_OPCODES (line 206) | const ANNOTATION_OPCODES = new Set([

FILE: vendor/blaze/src/alterschema/alterschema.cc
  type sourcemeta::blaze (line 25) | namespace sourcemeta::blaze {
    function APPLIES_TO_KEYWORDS (line 30) | auto APPLIES_TO_KEYWORDS(Args &&...args) -> SchemaTransformRule::Result {
    function APPLIES_TO_POINTERS (line 37) | inline auto APPLIES_TO_POINTERS(std::vector<Pointer> &&keywords)
    function IS_IN_PLACE_APPLICATOR (line 43) | inline auto IS_IN_PLACE_APPLICATOR(const SchemaKeywordType type) -> bo...
    function WALK_UP (line 60) | auto WALK_UP(const JSON &root, const SchemaFrame &frame,
    function WALK_UP_IN_PLACE_APPLICATORS (line 96) | auto WALK_UP_IN_PLACE_APPLICATORS(const JSON &root, const SchemaFrame ...
    function add (line 293) | auto add(SchemaTransformer &bundle, const AlterSchemaMode mode) -> void {
  type sourcemeta::blaze (line 291) | namespace sourcemeta::blaze {
    function APPLIES_TO_KEYWORDS (line 30) | auto APPLIES_TO_KEYWORDS(Args &&...args) -> SchemaTransformRule::Result {
    function APPLIES_TO_POINTERS (line 37) | inline auto APPLIES_TO_POINTERS(std::vector<Pointer> &&keywords)
    function IS_IN_PLACE_APPLICATOR (line 43) | inline auto IS_IN_PLACE_APPLICATOR(const SchemaKeywordType type) -> bo...
    function WALK_UP (line 60) | auto WALK_UP(const JSON &root, const SchemaFrame &frame,
    function WALK_UP_IN_PLACE_APPLICATORS (line 96) | auto WALK_UP_IN_PLACE_APPLICATORS(const JSON &root, const SchemaFrame ...
    function add (line 293) | auto add(SchemaTransformer &bundle, const AlterSchemaMode mode) -> void {

FILE: vendor/blaze/src/alterschema/canonicalizer/additional_items_implicit.h
  function override (line 34) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/canonicalizer/allof_merge_compatible_branches.h
  function branch_a (line 35) | const auto &branch_a{branches.at(index_a)};
  function source (line 78) | const auto &source{schema.at(KEYWORD).at(this->merge_from_)};
  function Pointer (line 99) | const Pointer new_prefix{current.concat({KEYWORD, this->merge_into_})};
  function Pointer (line 104) | const Pointer old_prefix{current.concat({KEYWORD, index})};
  function metadata (line 150) | const auto &metadata{walker(entry_a.first, vocabularies)};

FILE: vendor/blaze/src/alterschema/canonicalizer/comment_drop.h
  function override (line 7) | [[nodiscard]] auto
  function override (line 24) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/canonicalizer/const_as_enum.h
  function override (line 10) | [[nodiscard]] auto
  function override (line 29) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/canonicalizer/dependencies_to_any_of.h
  function wrapper (line 61) | auto wrapper{JSON::make_object()};

FILE: vendor/blaze/src/alterschema/canonicalizer/dependencies_to_extends_disallow.h
  function extends_branch (line 66) | auto extends_branch{JSON::make_object()};

FILE: vendor/blaze/src/alterschema/canonicalizer/dependent_required_to_any_of.h
  function required_all (line 42) | auto required_all{JSON::make_array()};

FILE: vendor/blaze/src/alterschema/canonicalizer/dependent_schemas_to_any_of.h
  function all_of (line 45) | auto all_of{JSON::make_array()};

FILE: vendor/blaze/src/alterschema/canonicalizer/deprecated_false_drop.h
  function override (line 7) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/canonicalizer/disallow_to_array_of_schemas.h
  function override (line 8) | [[nodiscard]] auto
  function array (line 48) | auto array{JSON::make_array()};

FILE: vendor/blaze/src/alterschema/canonicalizer/divisible_by_implicit.h
  function override (line 7) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/canonicalizer/empty_definitions_drop.h
  function override (line 7) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/canonicalizer/empty_defs_drop.h
  function override (line 7) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/canonicalizer/empty_dependencies_drop.h
  function override (line 8) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/canonicalizer/empty_dependent_required_drop.h
  function override (line 8) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/canonicalizer/empty_dependent_schemas_drop.h
  function override (line 8) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/canonicalizer/exclusive_maximum_boolean_integer_fold.h
  function else (line 40) | else {
  function value (line 63) | const auto value{maximum.to_real()};

FILE: vendor/blaze/src/alterschema/canonicalizer/exclusive_maximum_integer_to_maximum.h
  function result (line 43) | auto result{sourcemeta::core::Decimal{
  function current (line 71) | const auto current{schema.at("exclusiveMaximum").to_real()};

FILE: vendor/blaze/src/alterschema/canonicalizer/exclusive_minimum_boolean_integer_fold.h
  function result (line 41) | auto result{
  function value (line 63) | const auto value{minimum.to_real()};

FILE: vendor/blaze/src/alterschema/canonicalizer/exclusive_minimum_integer_to_minimum.h
  function result (line 43) | auto result{sourcemeta::core::Decimal{
  function current (line 71) | const auto current{schema.at("exclusiveMinimum").to_real()};

FILE: vendor/blaze/src/alterschema/canonicalizer/extends_to_array.h
  function override (line 28) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/canonicalizer/if_then_else_implicit.h
  function override (line 7) | [[nodiscard]] auto
  function override (line 27) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/canonicalizer/implicit_contains_keywords.h
  function override (line 8) | [[nodiscard]] auto
  function override (line 46) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/canonicalizer/implicit_object_keywords.h
  function type_value (line 22) | const auto &type_value{type->to_string()};
  function override (line 35) | auto transform(JSON &schema, const Result &) const -> void override {
  function is_legacy (line 144) | const bool is_legacy{
  function is_pre_draft4 (line 185) | const bool is_pre_draft4{
  function mutable (line 217) | mutable bool add_min_items_{false};

FILE: vendor/blaze/src/alterschema/canonicalizer/inline_single_use_ref.h
  function sibling (line 40) | const auto &sibling{parent_all_of->at(index)};
  function container (line 64) | const auto &container{target_pointer.at(0).to_property()};
  function target_schema (line 81) | const auto &target_schema{sourcemeta::core::get(root, target_pointer)};
  function override (line 97) | auto transform(JSON &schema, const Result &) const -> void override {
  function override (line 101) | [[nodiscard]] auto rereference(const std::string_view, const Pointer &,

FILE: vendor/blaze/src/alterschema/canonicalizer/items_implicit.h
  function override (line 10) | [[nodiscard]] auto
  function override (line 55) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/canonicalizer/max_contains_covered_by_max_items.h
  function override (line 35) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/canonicalizer/max_decimal_implicit.h
  function override (line 7) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/canonicalizer/maximum_can_equal_integer_fold.h
  function else (line 41) | else {
  function value (line 62) | const auto value{maximum.to_real()};

FILE: vendor/blaze/src/alterschema/canonicalizer/maximum_can_equal_true_drop.h
  function override (line 33) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/canonicalizer/min_items_given_min_contains.h
  function override (line 11) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/canonicalizer/min_length_implicit.h
  function override (line 10) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/canonicalizer/min_properties_covered_by_required.h
  function override (line 38) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/canonicalizer/minimum_can_equal_integer_fold.h
  function result (line 42) | auto result{
  function value (line 62) | const auto value{minimum.to_real()};

FILE: vendor/blaze/src/alterschema/canonicalizer/minimum_can_equal_true_drop.h
  function override (line 33) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/canonicalizer/multiple_of_implicit.h
  function override (line 9) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/canonicalizer/optional_property_implicit.h
  function override (line 8) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/canonicalizer/recursive_anchor_false_drop.h
  function override (line 8) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/canonicalizer/single_branch_allof.h
  function branch (line 35) | const auto &branch{all_of->at(0)};
  function branch (line 45) | auto &branch{schema.at("allOf").at(0)};
  function relative (line 68) | const auto relative{target.resolve_from(prefix)};

FILE: vendor/blaze/src/alterschema/canonicalizer/single_branch_anyof.h
  function branch (line 44) | auto &branch{schema.at("anyOf").at(0)};
  function Pointer (line 65) | const Pointer new_prefix{current.concat({"allOf"})};
  function relative (line 72) | const auto relative{target.resolve_from(prefix)};

FILE: vendor/blaze/src/alterschema/canonicalizer/single_branch_oneof.h
  function branch (line 44) | auto &branch{schema.at("oneOf").at(0)};
  function Pointer (line 65) | const Pointer new_prefix{current.concat({"allOf"})};
  function relative (line 72) | const auto relative{target.resolve_from(prefix)};

FILE: vendor/blaze/src/alterschema/canonicalizer/type_array_to_any_of.h
  function disjunctors (line 57) | auto disjunctors{sourcemeta::core::JSON::make_array()};
  function Pointer (line 123) | const Pointer old_prefix{current.concat({keyword})};

FILE: vendor/blaze/src/alterschema/canonicalizer/type_boolean_as_enum.h
  function override (line 11) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/canonicalizer/type_inherit_in_place.h
  function override (line 11) | [[nodiscard]] auto
  function ancestor (line 52) | const auto ancestor{WALK_UP(
  function ancestor_type (line 63) | const auto &ancestor_type{get(root, ancestor.value().get()).at("type")};
  function inferred (line 121) | const auto inferred{infer_type_from_enum(*sibling_enum)};
  function override (line 153) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/canonicalizer/type_null_as_enum.h
  function override (line 11) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/canonicalizer/type_union_implicit.h
  function types (line 64) | auto types{sourcemeta::core::JSON::make_array()};
  function branch_index (line 109) | const auto branch_index{walk_relative.at(1).to_index()};

FILE: vendor/blaze/src/alterschema/canonicalizer/type_union_to_schemas.h
  function override (line 7) | [[nodiscard]] auto
  function override (line 35) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/canonicalizer/type_with_applicator_to_allof.h
  function keyword_type (line 68) | const auto keyword_type{walker(entry.first, vocabularies).type};
  function destination (line 123) | const auto destination{frame.traverse(reference.second.destination)};
  function branch (line 267) | auto branch{JSON::make_object()};
  function branch (line 273) | auto branch{JSON::make_object()};
  function branch (line 279) | auto branch{JSON::make_object()};
  function branch (line 321) | auto branch{JSON::make_object()};
  function Pointer (line 471) | const Pointer old_prefix{current.concat({keyword})};
  function std (line 488) | static constexpr std::array<const char *, 4> APPLICATORS_WITHOUT_ALLOF{
  function std (line 491) | static constexpr auto applicator_bit(std::string_view keyword)
  type class (line 506) | enum class
  function mutable (line 517) | mutable bool ref_annotations_only_{false};

FILE: vendor/blaze/src/alterschema/canonicalizer/type_with_applicator_to_extends.h
  function has_structural (line 35) | const bool has_structural{has_type || has_enum};
  function branch (line 71) | auto branch{JSON::make_object()};
  function new_schema (line 81) | auto new_schema{JSON::make_object()};
  function keyword (line 101) | const auto &keyword{relative.at(0).to_property()};

FILE: vendor/blaze/src/alterschema/canonicalizer/unevaluated_items_to_items.h
  function keyword_type (line 28) | const auto keyword_type{metadata.type};

FILE: vendor/blaze/src/alterschema/canonicalizer/unevaluated_properties_to_additional_properties.h
  function keyword_type (line 30) | const auto keyword_type{metadata.type};

FILE: vendor/blaze/src/alterschema/canonicalizer/unsatisfiable_can_equal_bounds.h
  function max_exclusive (line 35) | const bool max_exclusive{maximum_can_equal &&
  function override (line 42) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/canonicalizer/unsatisfiable_exclusive_equal_bounds.h
  function exclusive_max (line 36) | const bool exclusive_max{exclusive_maximum &&
  function override (line 43) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/canonicalizer/unsatisfiable_type_and_enum.h
  function declared_types (line 36) | const auto declared_types{parse_schema_type(*type)};
  function override (line 54) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/allof_false_simplify.h
  function entry (line 31) | const auto &entry{all_of->at(index)};
  function override (line 42) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/anyof_false_simplify.h
  function entry (line 30) | const auto &entry{any_of->front()};
  function override (line 37) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/anyof_remove_false_schemas.h
  function entry (line 36) | const auto &entry{anyof.at(index)};
  function override (line 48) | auto transform(JSON &schema, const Result &result) const -> void override {

FILE: vendor/blaze/src/alterschema/common/anyof_true_simplify.h
  function current_schema (line 37) | const auto &current_schema{
  function anyof (line 55) | const auto &anyof{schema.at(KEYWORD)};

FILE: vendor/blaze/src/alterschema/common/const_in_enum.h
  function override (line 35) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/const_with_type.h
  function current_types (line 32) | const auto current_types{parse_schema_type(*type)};
  function override (line 39) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/content_media_type_without_encoding.h
  function override (line 11) | [[nodiscard]] auto
  function override (line 29) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/content_schema_without_media_type.h
  function override (line 14) | [[nodiscard]] auto
  function override (line 33) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/dependencies_property_tautology.h
  function override (line 71) | auto transform(JSON &schema, const Result &result) const -> void override {
  function match (line 88) | bool match{false};

FILE: vendor/blaze/src/alterschema/common/dependent_required_tautology.h
  function match (line 44) | bool match{false};

FILE: vendor/blaze/src/alterschema/common/double_negation_elimination.h
  function next (line 55) | auto next{inner.at("not").at("not")};
  function override (line 64) | [[nodiscard]] auto rereference(const std::string_view, const Pointer &,

FILE: vendor/blaze/src/alterschema/common/draft_official_dialect_with_https.h
  function dialect (line 36) | const auto &dialect{schema_keyword->to_string()};
  function old_dialect (line 72) | const auto &old_dialect{schema.at("$schema").to_string()};

FILE: vendor/blaze/src/alterschema/common/draft_official_dialect_without_empty_fragment.h
  function dialect (line 22) | const auto &dialect{schema_keyword->to_string()};
  function override (line 41) | auto transform(sourcemeta::core::JSON &schema, const Result &) const

FILE: vendor/blaze/src/alterschema/common/draft_ref_siblings.h
  function override (line 10) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/common/drop_extends_empty_schemas.h
  function keyword_pointer (line 28) | auto keyword_pointer{location.pointer};

FILE: vendor/blaze/src/alterschema/common/duplicate_allof_branches.h
  function value (line 47) | const auto &value{original.at(index)};
  function Pointer (line 70) | const Pointer old_prefix{allof_prefix.concat({old_index})};

FILE: vendor/blaze/src/alterschema/common/duplicate_anyof_branches.h
  function value (line 47) | const auto &value{original.at(index)};
  function Pointer (line 70) | const Pointer old_prefix{anyof_prefix.concat({old_index})};

FILE: vendor/blaze/src/alterschema/common/duplicate_enum_values.h
  function override (line 38) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/duplicate_required_values.h
  function override (line 11) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/common/dynamic_ref_to_static_ref.h
  function destination_uri (line 54) | const auto &destination_uri{reference_entry->get().destination};
  function destination (line 88) | const auto destination{

FILE: vendor/blaze/src/alterschema/common/else_without_if.h
  function override (line 13) | [[nodiscard]] auto
  function override (line 33) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/empty_object_as_true.h
  function override (line 11) | [[nodiscard]] auto
  function override (line 30) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/enum_with_type.h
  function has_tautology (line 44) | bool has_tautology{false};

FILE: vendor/blaze/src/alterschema/common/equal_numeric_bounds_to_enum.h
  function override (line 53) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/exclusive_maximum_number_and_maximum.h
  function override (line 34) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/exclusive_minimum_number_and_minimum.h
  function override (line 34) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/flatten_nested_allof.h
  function branch (line 33) | const auto &branch{branches.at(index)};
  function result (line 50) | auto result{JSON::make_array()};

FILE: vendor/blaze/src/alterschema/common/flatten_nested_anyof.h
  function branch (line 33) | const auto &branch{branches.at(index)};
  function result (line 50) | auto result{JSON::make_array()};

FILE: vendor/blaze/src/alterschema/common/flatten_nested_extends.h
  function branch (line 30) | const auto &branch{branches.at(index)};
  function result (line 47) | auto result{JSON::make_array()};

FILE: vendor/blaze/src/alterschema/common/if_without_then_else.h
  function override (line 14) | [[nodiscard]] auto
  function override (line 34) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/ignored_metaschema.h
  function dialect (line 23) | const auto dialect{sourcemeta::core::dialect(schema)};
  function override (line 29) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/max_contains_without_contains.h
  function override (line 11) | [[nodiscard]] auto
  function override (line 29) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/maximum_real_for_integer.h
  function current (line 55) | const auto current{schema.at("maximum").to_real()};

FILE: vendor/blaze/src/alterschema/common/min_contains_without_contains.h
  function override (line 11) | [[nodiscard]] auto
  function override (line 29) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/minimum_real_for_integer.h
  function current (line 55) | const auto current{schema.at("minimum").to_real()};

FILE: vendor/blaze/src/alterschema/common/modern_official_dialect_with_empty_fragment.h
  function dialect (line 23) | const auto &dialect{schema_keyword->to_string()};
  function override (line 32) | auto transform(sourcemeta::core::JSON &schema, const Result &) const

FILE: vendor/blaze/src/alterschema/common/modern_official_dialect_with_http.h
  function dialect (line 29) | const auto &dialect{schema_keyword->to_string()};
  function old_dialect (line 45) | const auto &old_dialect{schema.at("$schema").to_string()};

FILE: vendor/blaze/src/alterschema/common/non_applicable_additional_items.h
  function override (line 14) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/common/non_applicable_disallow_types.h
  function entry (line 38) | const auto &entry{disallow->at(index)};

FILE: vendor/blaze/src/alterschema/common/non_applicable_enum_validation_keywords.h
  function override (line 11) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/common/not_false.h
  function override (line 14) | [[nodiscard]] auto
  function override (line 33) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/oneof_false_simplify.h
  function entry (line 30) | const auto &entry{one_of->front()};
  function override (line 37) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/oneof_to_anyof_disjoint_types.h
  function has_enum (line 59) | const auto has_enum{enum_value && enum_value->is_array()};
  function override (line 89) | auto transform(JSON &schema, const Result &) const -> void override {
  function Pointer (line 97) | const Pointer oneof_prefix{current.concat({"oneOf"})};

FILE: vendor/blaze/src/alterschema/common/orphan_definitions.h
  function has_defs (line 28) | const bool has_defs{has_modern_core && schema.defines("$defs")};

FILE: vendor/blaze/src/alterschema/common/single_type_array.h
  function override (line 38) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/then_without_if.h
  function override (line 13) | [[nodiscard]] auto
  function override (line 33) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/unknown_local_ref.h
  function reference_fragment (line 42) | const auto &reference_fragment{reference_entry->get().fragment};

FILE: vendor/blaze/src/alterschema/common/unnecessary_allof_ref_wrapper_draft.h
  function entry (line 31) | const auto &entry{all_of->at(0)};
  function override (line 38) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/common/unnecessary_extends_ref_wrapper.h
  function branch (line 36) | const auto &branch{extends->at(0)};
  function location (line 46) | const auto &location{result.locations.at(0)};

FILE: vendor/blaze/src/alterschema/common/unsatisfiable_drop_validation.h
  function override (line 10) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/common/unsatisfiable_in_place_applicator_type.h
  function parent_types (line 32) | const auto parent_types{parse_schema_type(schema.at("type"))};

FILE: vendor/blaze/src/alterschema/include/sourcemeta/blaze/alterschema.h
  function AlterSchemaMode (line 39) | enum class AlterSchemaMode : std::uint8_t {

FILE: vendor/blaze/src/alterschema/include/sourcemeta/blaze/alterschema_error.h
  function namespace (line 15) | namespace sourcemeta::blaze {
  function override (line 119) | [[nodiscard]] auto what() const noexcept -> const char * override {
  function override (line 147) | [[nodiscard]] auto what() const noexcept -> const char * override {

FILE: vendor/blaze/src/alterschema/include/sourcemeta/blaze/alterschema_transformer.h
  function class (line 34) | class SOURCEMETA_BLAZE_ALTERSCHEMA_EXPORT SchemaTransformRule {

FILE: vendor/blaze/src/alterschema/linter/comment_trim.h
  function override (line 10) | [[nodiscard]] auto
  function override (line 30) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/linter/content_schema_default.h
  function override (line 14) | [[nodiscard]] auto
  function override (line 35) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/linter/definitions_to_defs.h
  function override (line 10) | [[nodiscard]] auto
  function override (line 27) | auto transform(JSON &schema, const Result &) const -> void override {
  function override (line 31) | [[nodiscard]] auto rereference(const std::string_view, const Pointer &,

FILE: vendor/blaze/src/alterschema/linter/dependencies_default.h
  function override (line 14) | [[nodiscard]] auto
  function override (line 37) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/linter/dependent_required_default.h
  function override (line 11) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/linter/description_trailing_period.h
  function description (line 33) | const auto &description{schema.at("description").to_string()};
  function description (line 39) | auto &description{schema.at("description")};

FILE: vendor/blaze/src/alterschema/linter/description_trim.h
  function override (line 11) | [[nodiscard]] auto
  function override (line 37) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/linter/disallow_default.h
  function override (line 10) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/linter/divisible_by_default.h
  function override (line 39) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/linter/else_empty.h
  function override (line 35) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/linter/enum_to_const.h
  function override (line 32) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/linter/equal_numeric_bounds_to_const.h
  function override (line 47) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/linter/forbid_empty_enum.h
  function override (line 10) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/linter/invalid_external_ref.h
  function cached (line 55) | const auto cached{this->resolver_cache_.find(base_key)};
  function entry (line 72) | const auto &[entry,
  function frame_iterator (line 94) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/linter/items_array_default.h
  function override (line 10) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/linter/items_schema_default.h
  function override (line 13) | [[nodiscard]] auto
  function override (line 43) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/linter/multiple_of_default.h
  function override (line 41) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/linter/pattern_properties_default.h
  function override (line 11) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/linter/portable_anchor_names.h
  function id_keyword (line 44) | const auto &id_keyword{
  function value (line 72) | const auto &value{schema.at(keyword).to_string()};
  function sourcemeta (line 94) | const sourcemeta::core::URI uri{value};

FILE: vendor/blaze/src/alterschema/linter/properties_default.h
  function override (line 11) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/linter/property_names_default.h
  function override (line 14) | [[nodiscard]] auto
  function override (line 36) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/linter/property_names_type_default.h
  function override (line 41) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/linter/simple_properties_identifiers.h
  function resource (line 47) | const auto &resource{get(root, base_location->get().pointer)};

FILE: vendor/blaze/src/alterschema/linter/then_empty.h
  function override (line 35) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/linter/title_description_equal.h
  function override (line 11) | [[nodiscard]] auto
  function override (line 38) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/linter/title_trailing_period.h
  function title (line 33) | const auto &title{schema.at("title").to_string()};
  function title (line 39) | auto &title{schema.at("title")};

FILE: vendor/blaze/src/alterschema/linter/title_trim.h
  function override (line 10) | [[nodiscard]] auto
  function override (line 36) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/linter/top_level_description.h
  function override (line 11) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/linter/top_level_examples.h
  function override (line 11) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/linter/top_level_title.h
  function override (line 11) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/linter/unevaluated_items_default.h
  function override (line 14) | [[nodiscard]] auto
  function override (line 35) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/linter/unevaluated_properties_default.h
  function override (line 14) | [[nodiscard]] auto
  function override (line 35) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/linter/unknown_format_prefix.h
  function override (line 38) | auto transform(sourcemeta::core::JSON &schema, const Result &) const
  function std (line 102) | static inline const std::unordered_set<std::string_view>

FILE: vendor/blaze/src/alterschema/linter/unnecessary_allof_ref_wrapper_modern.h
  function override (line 10) | [[nodiscard]] auto

FILE: vendor/blaze/src/alterschema/linter/unnecessary_allof_wrapper.h
  function override (line 13) | [[nodiscard]] auto
  function Pointer (line 207) | const Pointer new_prefix{current.concat({keyword})};

FILE: vendor/blaze/src/alterschema/linter/unnecessary_extends_wrapper.h
  function Pointer (line 129) | const Pointer old_prefix{extends_prefix.concat({relative.at(0), keyword})};

FILE: vendor/blaze/src/alterschema/linter/unsatisfiable_max_contains.h
  function override (line 35) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/linter/unsatisfiable_min_properties.h
  function override (line 38) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/linter/valid_default.h
  function base (line 40) | const auto base{frame.uri(location.pointer)};
  function result (line 55) | const auto result{
  function subschema (line 84) | const auto subschema{
  function SimpleOutput (line 97) | SimpleOutput output{instance, base};

FILE: vendor/blaze/src/alterschema/linter/valid_examples.h
  function override (line 11) | [[nodiscard]] auto
  function subschema (line 93) | const auto subschema{
  function SimpleOutput (line 108) | SimpleOutput output{example, base};
  function override (line 136) | auto transform(JSON &schema, const Result &) const -> void override {

FILE: vendor/blaze/src/alterschema/schema_rule.cc
  type sourcemeta::blaze (line 16) | namespace sourcemeta::blaze {
    function validate_name (line 20) | static auto validate_name(const std::string_view name) -> void {
    function extract_description (line 33) | static auto extract_description(const sourcemeta::core::JSON &schema)
    function extract_title (line 48) | static auto extract_title(const sourcemeta::core::JSON &schema) -> std...

FILE: vendor/blaze/src/alterschema/transformer.cc
  type ProcessedRuleHasher (line 16) | struct ProcessedRuleHasher {
  function calculate_health_percentage (line 27) | auto calculate_health_percentage(const std::size_t subschemas,
  function check_rules (line 40) | auto check_rules(
  function analyse_frame (line 104) | auto analyse_frame(sourcemeta::core::SchemaFrame &frame,
  type sourcemeta::blaze (line 119) | namespace sourcemeta::blaze {
    type PotentiallyBrokenReference (line 207) | struct PotentiallyBrokenReference {

FILE: vendor/blaze/src/alterschema/upgrade/helpers.h
  function std (line 1) | static const std::string DIALECT_OVERRIDE_KEYWORD{
  function string_view (line 9) | static auto current_dialect_or_override(const sourcemeta::core::JSON &sc...

FILE: vendor/blaze/src/alterschema/upgrade/prefix_promoted_2020_12_keywords.h
  function override (line 8) | [[nodiscard]] auto
  function override (line 24) | auto transform(sourcemeta::core::JSON &schema, const Result &) const

FILE: vendor/blaze/src/alterschema/upgrade/prefix_promoted_draft_2019_09_keywords.h
  function override (line 8) | [[nodiscard]] auto
  function override (line 30) | auto transform(sourcemeta::core::JSON &schema, const Result &) const
  function override (line 49) | [[nodiscard]] auto rereference(const std::string_view,

FILE: vendor/blaze/src/alterschema/upgrade/prefix_promoted_draft_4_keywords.h
  function override (line 8) | [[nodiscard]] auto
  function override (line 30) | auto transform(sourcemeta::core::JSON &schema, const Result &) const
  function override (line 49) | [[nodiscard]] auto rereference(const std::string_view,

FILE: vendor/blaze/src/alterschema/upgrade/prefix_promoted_draft_6_keywords.h
  function override (line 8) | [[nodiscard]] auto
  function override (line 30) | auto transform(sourcemeta::core::JSON &schema, const Result &) const
  function override (line 49) | [[nodiscard]] auto rereference(const std::string_view,

FILE: vendor/blaze/src/alterschema/upgrade/prefix_promoted_draft_7_keywords.h
  function override (line 8) | [[nodiscard]] auto
  function override (line 30) | auto transform(sourcemeta::core::JSON &schema, const Result &) const
  function override (line 49) | [[nodiscard]] auto rereference(const std::string_view,

FILE: vendor/blaze/src/alterschema/upgrade/upgrade_2019_09_to_2020_12.h
  function is_resource_scope (line 21) | const bool is_resource_scope{
  function location_vocabularies (line 227) | const auto location_vocabularies{
  function absolute (line 254) | const auto absolute{sourcemeta::core::to_pointer(entry.second.pointer)};
  function last (line 295) | const auto &last{location.pointer.back()};
  function std (line 404) | const std::string anchor_name{fragment.value()};
  function AnchorCharPolicy (line 416) | static const AnchorCharPolicy POLICY{
  function resource_pointer (line 493) | const auto &resource_pointer{closest.value().get().pointer};

FILE: vendor/blaze/src/alterschema/upgrade/upgrade_draft_3_to_draft_4.h
  function dependencies (line 387) | auto &dependencies{schema.at("dependencies")};

FILE: vendor/blaze/src/alterschema/upgrade/upgrade_draft_4_to_draft_6.h
  function sourcemeta (line 83) | const sourcemeta::core::URI uri{schema.at("id").to_string()};
  function exclusive (line 102) | const bool exclusive{schema.at("exclusiveMinimum").to_boolean()};
  function exclusive (line 112) | const bool exclusive{schema.at("exclusiveMaximum").to_boolean()};
  function fragment (line 150) | const auto fragment{extract_id_fragment(subschema.at("id"))};
  function fragment (line 232) | const auto fragment{uri.fragment()};
  function fragment (line 246) | const auto fragment{extract_id_fragment(subschema.at("id"))};
  function sourcemeta (line 260) | const sourcemeta::core::URI uri{subschema.at("id").to_string()};
  function fragment (line 280) | const auto fragment{extract_id_fragment(subschema.at("id"))};
  function rename_iter (line 481) | const auto rename_iter{renames.find(std::string{fragment.value()})};
  function ref_string (line 499) | const auto &ref_string{subschema.at("$ref").to_string()};
  function resource_schema (line 610) | const auto &resource_schema{sourcemeta::core::get(root, closest_pointer)};

FILE: vendor/blaze/src/alterschema/upgrade/upgrade_draft_6_to_draft_7.h
  function std (line 63) | static inline const std::string DRAFT_6_URL{

FILE: vendor/blaze/src/alterschema/upgrade/upgrade_draft_7_to_draft_2019_09.h
  function plain_name (line 228) | const bool plain_name{is_plain_name_fragment(fragment_value)}
  function without_fragment (line 244) | const auto without_fragment{uri.recompose_without_fragment()};
  function dialect (line 342) | const auto &dialect{subschema.at("$schema").to_string()};

FILE: vendor/blaze/src/codegen/codegen.cc
  function is_validation_subschema (line 12) | auto is_validation_subschema(
  type sourcemeta::blaze (line 51) | namespace sourcemeta::blaze {
    function compile (line 53) | auto compile(const sourcemeta::core::JSON &input,

FILE: vendor/blaze/src/codegen/codegen_default_compiler.h
  function CodegenIRImpossible (line 31) | auto handle_impossible(const sourcemeta::core::JSON &,
  function CodegenIRAny (line 42) | auto handle_any(const sourcemeta::core::JSON &,
  function additional_pointer (line 147) | auto additional_pointer{sourcemeta::core::to_pointer(location.pointer)};
  function item_location (line 262) | const auto item_location{
  function additional_location (line 276) | const auto additional_location{frame.traverse(
  function item_location (line 307) | const auto item_location{
  function additional_location (line 321) | const auto additional_location{frame.traverse(
  function items_location (line 342) | const auto items_location{
  function branch_location (line 418) | const auto branch_location{
  function branch_location (line 455) | const auto branch_location{
  function fragment (line 553) | const auto &fragment{dynamic_reference->second.fragment.value()};
  function target_location (line 599) | const auto target_location{
  function branch_location (line 616) | const auto branch_location{
  function else_location (line 663) | const auto else_location{
  function else (line 753) | else if (subschema.defines("anyOf")) {
  function else (line 758) | else if (subschema.defines("oneOf")) {
  function else (line 761) | else if (subschema.defines("allOf")) {
  function else (line 764) | else if (subschema.defines("$dynamicRef")) {
  function else (line 767) | else if (subschema.defines("$ref")) {
  function else (line 770) | else if (subschema.defines("if")) {

FILE: vendor/blaze/src/codegen/codegen_mangle.cc
  function is_alpha (line 5) | auto is_alpha(char character) -> bool {
  function is_digit (line 10) | auto is_digit(char character) -> bool {
  function to_upper (line 14) | auto to_upper(char character) -> char {
  function symbol_to_identifier (line 21) | auto symbol_to_identifier(const std::string_view prefix,
  type sourcemeta::blaze (line 66) | namespace sourcemeta::blaze {
    function mangle (line 68) | auto mangle(const std::string_view prefix,

FILE: vendor/blaze/src/codegen/codegen_symbol.cc
  function strip_extensions (line 15) | auto strip_extensions(const std::string &filename) -> std::string {
  function push_token_segments (line 30) | auto push_token_segments(std::vector<std::string> &result,
  type sourcemeta::blaze (line 75) | namespace sourcemeta::blaze {
    function symbol (line 77) | auto symbol(const sourcemeta::core::SchemaFrame &frame,

FILE: vendor/blaze/src/codegen/codegen_typescript.cc
  function escape_string (line 10) | auto escape_string(const std::string &input) -> std::string {
  type sourcemeta::blaze (line 52) | namespace sourcemeta::blaze {

FILE: vendor/blaze/src/codegen/include/sourcemeta/blaze/codegen.h
  type class (line 34) | enum class
  type CodegenIRType (line 43) | struct CodegenIRType {
  function CodegenIRType (line 49) | struct CodegenIRScalar : CodegenIRType {
  function CodegenIRType (line 54) | struct CodegenIREnumeration : CodegenIRType {
  function CodegenIRType (line 59) | struct CodegenIRUnion : CodegenIRType {
  function CodegenIRType (line 64) | struct CodegenIRIntersection : CodegenIRType {
  function CodegenIRType (line 69) | struct CodegenIRObjectValue : CodegenIRType {
  function CodegenIRType (line 75) | struct CodegenIRObjectPatternProperty : CodegenIRType {
  function CodegenIRType (line 80) | struct CodegenIRObject : CodegenIRType {
  function CodegenIRType (line 89) | struct CodegenIRArray : CodegenIRType {
  function CodegenIRType (line 94) | struct CodegenIRTuple : CodegenIRType {
  function CodegenIRType (line 100) | struct CodegenIRImpossible : CodegenIRType {}
  function CodegenIRType (line 103) | struct CodegenIRAny : CodegenIRType {}
  function CodegenIRType (line 106) | struct CodegenIRConditional : CodegenIRType {
  function CodegenIRType (line 113) | struct CodegenIRReference : CodegenIRType {
  function T (line 169) | T visitor{output, prefix};

FILE: vendor/blaze/src/codegen/include/sourcemeta/blaze/codegen_error.h
  function override (line 54) | [[nodiscard]] auto what() const noexcept -> const char * override {
  function override (line 107) | [[nodiscard]] auto what() const noexcept -> const char * override {
  function override (line 156) | [[nodiscard]] auto what() const noexcept -> const char * override {

FILE: vendor/blaze/src/codegen/include/sourcemeta/blaze/codegen_typescript.h
  function namespace (line 15) | namespace sourcemeta::blaze {

FILE: vendor/blaze/src/compiler/compile.cc
  function compile_subschema (line 21) | auto compile_subschema(const sourcemeta::blaze::Context &context,
  function schema_frame_populate_target_types (line 77) | auto schema_frame_populate_target_types(
  type sourcemeta::blaze (line 152) | namespace sourcemeta::blaze {
    function compile (line 154) | auto compile(const sourcemeta::core::JSON &schema,
    function compile (line 429) | auto compile(const sourcemeta::core::JSON &schema,
    function compile (line 451) | auto compile(const Context &context, const SchemaContext &schema_context,

FILE: vendor/blaze/src/compiler/compile_helpers.h
  function sourcemeta (line 17) | static const sourcemeta::core::JSON::String KEYWORD_EMPTY{}
  function sourcemeta (line 18) | static const sourcemeta::core::JSON::String KEYWORD_PROPERTIES{"properti...
  function extra_index (line 135) | const auto extra_index{context.extra.size()};
  function extra_index (line 149) | const auto extra_index{context.extra.size()};
  function value (line 163) | const auto value{document.at(property).to_integer()};
  function std (line 171) | inline auto
  function type (line 183) | const auto type{sourcemeta::core::SchemaReferenceType::Static};
  function entry (line 188) | inline auto walk_subschemas(const Context &context,
  function std (line 200) | static const std::regex starts_with_regex{R"(^\^([a-zA-Z0-9-_/]+)$)"};
  function destination (line 234) | const auto &destination{

FILE: vendor/blaze/src/compiler/compile_json.cc
  function to_json (line 7) | auto to_json(const sourcemeta::blaze::Instruction &instruction,
  type sourcemeta::blaze (line 50) | namespace sourcemeta::blaze {
    function to_json (line 52) | auto to_json(const Template &schema_template) -> sourcemeta::core::JSON {

FILE: vendor/blaze/src/compiler/default_compiler_2019_09.h
  function namespace (line 9) | namespace internal {
  function Instructions (line 156) | Instructions children{compile(context, schema_context,
  function Instructions (line 191) | auto compiler_2019_09_applicator_contains(const Context &context,
  function Instructions (line 200) | auto compiler_2019_09_applicator_additionalproperties(
  function Instructions (line 211) | auto compiler_2019_09_applicator_items(const Context &context,
  function Instructions (line 234) | auto compiler_2019_09_applicator_additionalitems(
  function Instructions (line 251) | auto compiler_2019_09_applicator_unevaluateditems(
  function Instructions (line 413) | auto compiler_2019_09_core_recursiveref(const Context &context,
  function Instructions (line 458) | Instructions children{
  function Instructions (line 477) | Instructions children{
  function Instructions (line 501) | Instructions children{
  function Instructions (line 512) | auto compiler_2019_09_format_format(const Context &context,

FILE: vendor/blaze/src/compiler/default_compiler_2020_12.h
  function namespace (line 10) | namespace internal {

FILE: vendor/blaze/src/compiler/default_compiler_draft3.h
  function Regex (line 16) | static auto parse_regex(const std::string &pattern,
  function string_size (line 160) | const auto string_size{hashes[index].first.size()};
  function std (line 206) | static const std::string properties_keyword{"properties"};
  function else (line 265) | else if (assume_object) {
  function key (line 299) | const auto key{std::make_tuple(type,
  function Instructions (line 1068) | auto compiler_draft3_applicator_patternproperties(
  function maybe_prefix (line 1113) | const auto maybe_prefix{pattern_as_prefix(entry.first)};
  function items_size (line 1247) | const auto items_size{
  function maximum (line 2046) | const auto maximum{
  function ValueTypes (line 2085) | ValueTypes types{}
  function minimum (line 2105) | const auto minimum{
  function type (line 2141) | const auto &type{value.front().to_string()};
  function ValueTypes (line 2177) | ValueTypes types{}
  function ValueTypes (line 2229) | ValueTypes types{}
  function element (line 2236) | const auto &element{value.at(index)};
  function value (line 2297) | const auto &value{schema_context.schema.at(dynamic_context.keyword)};
  function arm (line 2341) | auto arm{

FILE: vendor/blaze/src/compiler/default_compiler_draft4.h
  function Instructions (line 18) | auto compiler_draft4_validation_required(const Context &context,
  function ValueTypes (line 107) | ValueTypes types{}
  function requires_exhaustive (line 173) | const auto requires_exhaustive{context.mode == Mode::Exhaustive ||
  function Instructions (line 181) | auto compiler_draft4_applicator_not(const Context &context,
  function Instructions (line 256) | auto compiler_draft4_validation_minproperties(

FILE: vendor/blaze/src/compiler/default_compiler_draft6.h
  function maximum (line 63) | const auto maximum{
  function maximum (line 122) | const auto maximum{
  function ValueTypes (line 173) | ValueTypes types{}
  function minimum (line 203) | const auto minimum{
  function type (line 248) | const auto &type{
  function else (line 288) | else if (schema_context.schema.at(dynamic_context.keyword).is_array()) {
  function Instructions (line 356) | auto compiler_draft6_validation_exclusiveminimum(
  function Instructions (line 387) | Instructions children{compile(context, schema_context,
  function Instructions (line 404) | auto compiler_draft6_validation_propertynames(

FILE: vendor/blaze/src/compiler/default_compiler_draft7.h
  function DynamicContext (line 32) | DynamicContext new_dynamic_context{

FILE: vendor/blaze/src/compiler/default_compiler_openapi.h
  function namespace (line 6) | namespace internal {

FILE: vendor/blaze/src/compiler/include/sourcemeta/blaze/compiler.h
  type SchemaContext (line 38) | struct SchemaContext {
  type DynamicContext (line 56) | struct DynamicContext {
  type Context (line 68) | struct Context
  type class (line 82) | enum class
  type Tweaks (line 91) | struct Tweaks {
  function properties_reorder (line 95) | bool properties_reorder{true};

FILE: vendor/blaze/src/compiler/include/sourcemeta/blaze/compiler_error.h
  function override (line 42) | [[nodiscard]] auto what() const noexcept -> const char * override {
  function override (line 71) | [[nodiscard]] auto what() const noexcept -> const char * override {
  function override (line 104) | [[nodiscard]] auto what() const noexcept -> const char * override {
  function override (line 138) | [[nodiscard]] auto what() const noexcept -> const char * override {

FILE: vendor/blaze/src/compiler/include/sourcemeta/blaze/compiler_unevaluated.h
  function namespace (line 18) | namespace sourcemeta::blaze {

FILE: vendor/blaze/src/compiler/postprocess.h
  function namespace (line 17) | namespace sourcemeta::blaze {
  function new_index (line 92) | inline auto duplicate_metadata(Instruction &instruction,
  function new_extra_index (line 207) | const auto new_extra_index{extra.size()};
  function new_extra_index (line 227) | const auto new_extra_index{extra.size()};
  function new_extra_index (line 246) | const auto new_extra_index{extra.size()};
  function child (line 268) | auto &child{instruction.children.front()};

FILE: vendor/blaze/src/compiler/unevaluated.cc
  function find_adjacent_dependencies (line 13) | auto find_adjacent_dependencies(
  type sourcemeta::blaze (line 140) | namespace sourcemeta::blaze {
    function unevaluated (line 148) | auto unevaluated(const JSON &schema, const SchemaFrame &frame,

FILE: vendor/blaze/src/configuration/configuration.cc
  type sourcemeta::blaze (line 10) | namespace sourcemeta::blaze {

FILE: vendor/blaze/src/configuration/fetch.cc
  function compute_sha256 (line 15) | auto compute_sha256(const std::string &content)
  function emit_event (line 22) | auto emit_event(
  type FetchResult (line 45) | enum class FetchResult : std::uint8_t { Success, Error, Aborted }
  function verify_written_schema (line 47) | auto verify_written_schema(
  function fetch_and_write (line 81) | auto fetch_and_write(
  type sourcemeta::blaze (line 157) | namespace sourcemeta::blaze {

FILE: vendor/blaze/src/configuration/include/sourcemeta/blaze/configuration.h
  type SOURCEMETA_BLAZE_CONFIGURATION_EXPORT (line 50) | struct SOURCEMETA_BLAZE_CONFIGURATION_EXPORT
  function absolute_path_explicit (line 57) | bool absolute_path_explicit{false};

FILE: vendor/blaze/src/configuration/include/sourcemeta/blaze/configuration_error.h
  function namespace (line 15) | namespace sourcemeta::blaze {

FILE: vendor/blaze/src/configuration/json.cc
  type sourcemeta::blaze (line 9) | namespace sourcemeta::blaze {
    function relative_display_path (line 11) | static auto relative_display_path(const std::filesystem::path &path,

FILE: vendor/blaze/src/configuration/lock.cc
  function compute_hash (line 14) | auto compute_hash(
  function hash_algorithm_to_string (line 34) | auto hash_algorithm_to_string(
  function string_to_hash_algorithm (line 50) | auto string_to_hash_algorithm(const sourcemeta::core::JSON::String &value,
  type sourcemeta::blaze (line 65) | namespace sourcemeta::blaze {

FILE: vendor/blaze/src/configuration/parse.cc
  type sourcemeta::blaze (line 9) | namespace sourcemeta::blaze {

FILE: vendor/blaze/src/documentation/documentation.cc
  type sourcemeta::blaze (line 16) | namespace sourcemeta::blaze {
    function resolve_destination (line 20) | auto resolve_destination(const sourcemeta::core::JSON::String &raw_ref,
    type VisitedEntry (line 37) | struct VisitedEntry {
    function type_expression_of (line 44) | auto type_expression_of(const sourcemeta::core::JSON &schema,
    function type_expression_of (line 194) | auto type_expression_of(const sourcemeta::core::JSON &schema,
    function badges_of (line 203) | auto badges_of(const sourcemeta::core::JSON &schema) -> sourcemeta::co...
    function modifiers_of (line 234) | auto modifiers_of(const sourcemeta::core::JSON &schema)
    function format_json_number (line 255) | auto format_json_number(const sourcemeta::core::JSON &value)
    function constraints_of (line 262) | auto constraints_of(const sourcemeta::core::JSON &schema)
    function is_required_property (line 494) | auto is_required_property(const sourcemeta::core::JSON &schema,
    function make_path_segment (line 509) | auto make_path_segment(const sourcemeta::core::JSON::String &type,
    function make_section (line 518) | auto make_section(const std::string &label, sourcemeta::core::JSON tab...
    function resolve_ref (line 580) | auto resolve_ref(const sourcemeta::core::JSON &schema,
    function emit_row (line 601) | auto emit_row(const sourcemeta::core::JSON &schema, sourcemeta::core::...
    function walk_properties (line 681) | auto walk_properties(const sourcemeta::core::JSON &schema,
    function walk_wildcard_keyword (line 842) | auto walk_wildcard_keyword(const sourcemeta::core::JSON &schema,
    function walk_pattern_properties (line 933) | auto walk_pattern_properties(const sourcemeta::core::JSON &schema,
    function is_complex_schema (line 978) | auto is_complex_schema(const sourcemeta::core::JSON &schema) -> bool {
    function walk_prefix_items (line 991) | auto walk_prefix_items(const sourcemeta::core::JSON &schema,
    function walk_branches (line 1095) | auto walk_branches(const std::string &keyword, const std::string &label,
    function has_recursive_ref_in_rows (line 1114) | auto has_recursive_ref_in_rows(const sourcemeta::core::JSON &rows) -> ...
    function walk_all_of (line 1132) | auto walk_all_of(const sourcemeta::core::JSON &schema,
    function walk_if_then_else (line 1235) | auto walk_if_then_else(const sourcemeta::core::JSON &schema,
    function walk_branching_subschema (line 1268) | auto walk_branching_subschema(const std::string &label,
    function walk_schema (line 1305) | auto walk_schema(const sourcemeta::core::JSON &schema, const bool incl...
    function to_documentation (line 1536) | auto to_documentation(const sourcemeta::core::JSON &schema,

FILE: vendor/blaze/src/documentation/documentation_html.cc
  type sourcemeta::blaze (line 11) | namespace sourcemeta::blaze {
    function json_to_string (line 15) | auto json_to_string(const sourcemeta::core::JSON &value) -> std::string {
    function is_empty_row (line 21) | auto is_empty_row(const sourcemeta::core::JSON &row) -> bool {
    function collect_ref_targets (line 32) | auto collect_ref_targets(const sourcemeta::core::JSON &table,
    function render_path (line 57) | auto render_path(sourcemeta::core::HTMLWriter &writer,
    function render_modifiers (line 86) | auto render_modifiers(sourcemeta::core::HTMLWriter &writer,
    function render_enum_values (line 97) | auto render_enum_values(sourcemeta::core::HTMLWriter &writer,
    function render_type_expression (line 112) | auto render_type_expression(sourcemeta::core::HTMLWriter &writer,
    function render_badges (line 184) | auto render_badges(sourcemeta::core::HTMLWriter &writer,
    function render_notes (line 205) | auto render_notes(sourcemeta::core::HTMLWriter &writer,
    function emit_header (line 233) | auto emit_header(sourcemeta::core::HTMLWriter &writer) -> void {
    function render_row (line 245) | auto render_row(sourcemeta::core::HTMLWriter &writer,
    function render_section (line 301) | auto render_section(sourcemeta::core::HTMLWriter &writer,
    function render_table (line 334) | auto render_table(sourcemeta::core::HTMLWriter &writer,
    function to_html (line 373) | auto to_html(const sourcemeta::core::JSON &documentation) -> std::stri...

FILE: vendor/blaze/src/documentation/include/sourcemeta/blaze/documentation.h
  function namespace (line 22) | namespace sourcemeta::blaze {

FILE: vendor/blaze/src/evaluator/evaluator_describe.cc
  function instruction_value (line 15) | auto instruction_value(const T &step) -> decltype(auto) {
  function describe_stringify (line 24) | auto describe_stringify(const sourcemeta::core::JSON &value, T &stream)
  function type_name (line 33) | auto type_name(const sourcemeta::core::JSON::Type type) -> std::string_v...
  function value_type_name (line 56) | auto value_type_name(const sourcemeta::core::JSON &value) -> std::string...
  function escape_string (line 63) | auto escape_string(const std::string &input) -> std::string {
  function describe_type_check (line 86) | auto describe_type_check(const bool valid,
  function describe_not_type_check (line 102) | auto describe_not_type_check(const bool valid,
  function describe_types_check (line 123) | auto describe_types_check(const bool valid,
  function describe_not_types_check (line 201) | auto describe_not_types_check(const bool valid,
  function describe_reference (line 279) | auto describe_reference(const sourcemeta::core::JSON &target) -> std::st...
  function is_within_keyword (line 286) | auto is_within_keyword(const sourcemeta::core::WeakPointer &evaluate_path,
  function unknown (line 293) | auto unknown() -> std::string {
  type sourcemeta::blaze (line 300) | namespace sourcemeta::blaze {
    function describe (line 304) | auto describe(const bool valid, const Instruction &step,

FILE: vendor/blaze/src/evaluator/evaluator_json.cc
  function value_from_json (line 7) | auto value_from_json(const sourcemeta::core::JSON &wrapper)
  function instructions_from_json (line 52) | auto instructions_from_json(
  type sourcemeta::blaze (line 122) | namespace sourcemeta::blaze {
    function from_json (line 124) | auto from_json(const sourcemeta::core::JSON &json) -> std::optional<Te...

FILE: vendor/blaze/src/evaluator/include/sourcemeta/blaze/evaluator.h
  type Template (line 38) | struct Template {
  function JSON_VERSION (line 47) | constexpr std::size_t JSON_VERSION{5}
  function EvaluationType (line 56) | enum class EvaluationType : std::uint8_t { Pre, Post };
  function mask (line 207) | constexpr std::size_t mask{(1ULL << 53) - 1};

FILE: vendor/blaze/src/evaluator/include/sourcemeta/blaze/evaluator_dispatch.h
  function namespace (line 180) | namespace sourcemeta::blaze::dispatch {
  function real_type (line 222) | const auto real_type{instance.type()};
  function INSTRUCTION_HANDLER (line 292) | INSTRUCTION_HANDLER(AssertionFail) {
  function value (line 299) | const auto &value{assume_value<ValueProperty>(instruction.value)};
  function value (line 308) | const auto &value{assume_value<ValueProperty>(instruction.value)};
  function object (line 322) | const auto &object{target.as_object()};
  function object (line 410) | const auto &object{target.as_object()};
  function object (line 442) | const auto &object{target.as_object()};
  function value (line 551) | const auto &value{assume_value<ValueRange>(instruction.value)};
  function value (line 563) | const auto value{assume_value_copy<ValueUnsignedInteger>(instruction.val...
  function value (line 572) | const auto &value{assume_value<ValueRange>(instruction.value)};
  function value (line 588) | const auto value{assume_value_copy<ValueUnsignedInteger>(instruction.val...
  function value (line 597) | const auto &value{assume_value<ValueRange>(instruction.value)};
  function value (line 613) | const auto value{assume_value_copy<ValueUnsignedInteger>(instruction.val...
  function value (line 620) | const auto &value{assume_value<ValueRegex>(instruction.value)};
  function value (line 627) | const auto value{assume_value_copy<ValueUnsignedInteger>(instruction.val...
  function value (line 634) | const auto value{assume_value_copy<ValueUnsignedInteger>(instruction.val...
  function value (line 641) | const auto value{assume_value_copy<ValueUnsignedInteger>(instruction.val...
  function value (line 648) | const auto value{assume_value_copy<ValueUnsignedInteger>(instruction.val...
  function value (line 655) | const auto value{assume_value_copy<ValueUnsignedInteger>(instruction.val...
  function value (line 662) | const auto value{assume_value_copy<ValueUnsignedInteger>(instruction.val...
  function target (line 676) | const auto &target{
  function target (line 696) | const auto &target{
  function string_size (line 709) | const auto string_size{target_string.size()};
  function hint (line 713) | const auto &hint{value.second[string_size]};
  function hint (line 734) | const auto &hint{value.second[string_size]};
  function target (line 748) | const auto &target{
  function value (line 758) | const auto &value{assume_value<ValueJSON>(instruction.value)};
  function value (line 765) | const auto &value{assume_value<ValueJSON>(instruction.value)};
  function value (line 772) | const auto &value{assume_value<ValueJSON>(instruction.value)};
  function value (line 779) | const auto &value{assume_value<ValueJSON>(instruction.value)};
  function INSTRUCTION_HANDLER (line 784) | INSTRUCTION_HANDLER(AssertionUnique) {
  function value (line 792) | const auto &value{assume_value<ValueJSON>(instruction.value)};
  function integer (line 800) | const auto integer{target.to_integer()};
  function integer (line 804) | const auto integer{target.as_integer()};
  function INSTRUCTION_HANDLER (line 810) | INSTRUCTION_HANDLER(AssertionTypeIntegerBounded) {
  function integer (line 819) | const auto integer{target.to_integer()};
  function INSTRUCTION_HANDLER (line 825) | INSTRUCTION_HANDLER(AssertionTypeIntegerBoundedStrict) {
  function INSTRUCTION_HANDLER (line 842) | INSTRUCTION_HANDLER(AssertionTypeIntegerLowerBound) {
  function INSTRUCTION_HANDLER (line 856) | INSTRUCTION_HANDLER(AssertionTypeIntegerLowerBoundStrict) {
  function value (line 865) | const auto value{assume_value_copy<ValueStringType>(instruction.value)};
  function value (line 880) | const auto value{assume_value_copy<ValueType>(instruction.value)};
  function value (line 891) | const auto value{assume_value_copy<ValueType>(instruction.value)};
  function value (line 907) | const auto value{assume_value_copy<ValueType>(instruction.value)};
  function value (line 917) | const auto value{assume_value_copy<ValueType>(instruction.value)};
  function type_index (line 932) | const auto type_index{std::to_underlying(target_check->type())};
  function type_index (line 945) | const auto type_index{std::to_underlying(target_check->type())};
  function INSTRUCTION_HANDLER (line 955) | INSTRUCTION_HANDLER(AssertionObjectPropertiesSimple) {
  function array_size (line 1057) | const auto array_size{target.array_size()};
  function integer (line 2438) | const auto integer{element.to_integer()}
  function real (line 2443) | const auto real{element.to_real()}
  function real (line 2449) | const auto real{element.to_decimal().to_double()};
  function INSTRUCTION_HANDLER (line 2459) | INSTRUCTION_HANDLER(LoopItemsIntegerBounded) {
  function DEPTH_LIMIT (line 2690) | constexpr auto DEPTH_LIMIT{300};

FILE: vendor/blaze/src/evaluator/include/sourcemeta/blaze/evaluator_error.h
  function namespace (line 12) | namespace sourcemeta::blaze {

FILE: vendor/blaze/src/evaluator/include/sourcemeta/blaze/evaluator_instruction.h
  function InstructionIndex (line 22) | enum class InstructionIndex : std::uint8_t {

FILE: vendor/blaze/src/evaluator/include/sourcemeta/blaze/evaluator_string_set.h
  function namespace (line 15) | namespace sourcemeta::blaze {
  function noexcept (line 52) | [[nodiscard]] inline auto at(const size_type index) const noexcept
  function hash (line 57) | inline auto insert(const string_type &value) -> void {
  function hash (line 66) | inline auto insert(string_type &&value) -> void {
  function from_json (line 96) | [[nodiscard]] auto to_json() const -> sourcemeta::core::JSON {

FILE: vendor/blaze/src/evaluator/include/sourcemeta/blaze/evaluator_value.h
  function namespace (line 18) | namespace sourcemeta::blaze {
  function ValueNone (line 27) | static auto from_json(const sourcemeta::core::JSON &)
  type ValueRegex (line 74) | struct ValueRegex {
  function string (line 90) | auto string{value.to_string()};
  function ValueStringType (line 123) | enum class ValueStringType : std::uint8_t { URI };

FILE: vendor/blaze/src/output/include/sourcemeta/blaze/output_simple.h
  function namespace (line 23) | namespace sourcemeta::blaze {

FILE: vendor/blaze/src/output/include/sourcemeta/blaze/output_standard.h
  function StandardOutput (line 23) | enum class StandardOutput : std::uint8_t {

FILE: vendor/blaze/src/output/include/sourcemeta/blaze/output_trace.h
  function namespace (line 20) | namespace sourcemeta::blaze {

FILE: vendor/blaze/src/output/output_simple.cc
  type sourcemeta::blaze (line 10) | namespace sourcemeta::blaze {

FILE: vendor/blaze/src/output/output_standard.cc
  type sourcemeta::blaze (line 9) | namespace sourcemeta::blaze {
    function handle_standard (line 13) | auto handle_standard(Evaluator &evaluator, const Template &schema,
    function standard (line 105) | auto standard(Evaluator &evaluator, const Template &schema,
    function standard (line 111) | auto standard(Evaluator &evaluator, const Template &schema,

FILE: vendor/blaze/src/output/output_trace.cc
  function try_vocabulary (line 8) | static auto try_vocabulary(
  type sourcemeta::blaze (line 32) | namespace sourcemeta::blaze {

FILE: vendor/blaze/src/test/include/sourcemeta/blaze/test.h
  function namespace (line 34) | namespace sourcemeta::blaze {

FILE: vendor/blaze/src/test/include/sourcemeta/blaze/test_error.h
  function namespace (line 16) | namespace sourcemeta::blaze {

FILE: vendor/blaze/src/test/test_parser.cc
  function TEST_ERROR_IF (line 13) | inline auto TEST_ERROR_IF(
  type sourcemeta::blaze (line 26) | namespace sourcemeta::blaze {

FILE: vendor/blaze/src/test/test_runner.cc
  type sourcemeta::blaze (line 5) | namespace sourcemeta::blaze {

FILE: vendor/core/src/core/crypto/crypto_sha256.cc
  type sourcemeta::core (line 21) | namespace sourcemeta::core {
    function sha256 (line 23) | auto sha256(const std::string_view input) -> std::string {
    function sha256 (line 54) | auto sha256(const std::string_view input, std::ostream &output) -> void {
    function sha256 (line 173) | auto sha256(const std::string_view input) -> std::string {
    function sha256 (line 241) | auto sha256(const std::string_view input, std::ostream &output) -> void {
  function rotate_right (line 65) | inline constexpr auto rotate_right(std::uint32_t value,
  function big_sigma_0 (line 72) | inline constexpr auto big_sigma_0(std::uint32_t value) noexcept
  function big_sigma_1 (line 78) | inline constexpr auto big_sigma_1(std::uint32_t value) noexcept
  function small_sigma_0 (line 84) | inline constexpr auto small_sigma_0(std::uint32_t value) noexcept
  function small_sigma_1 (line 89) | inline constexpr auto small_sigma_1(std::uint32_t value) noexcept
  function choice (line 95) | inline constexpr auto choice(std::uint32_t x, std::uint32_t y,
  function majority (line 100) | inline constexpr auto majority(std::uint32_t x, std::uint32_t y,
  function sha256_process_block (line 105) | inline auto sha256_process_block(const unsigned char *block,
  type sourcemeta::core (line 171) | namespace sourcemeta::core {
    function sha256 (line 23) | auto sha256(const std::string_view input) -> std::string {
    function sha256 (line 54) | auto sha256(const std::string_view input, std::ostream &output) -> void {
    function sha256 (line 173) | auto sha256(const std::string_view input) -> std::string {
    function sha256 (line 241) | auto sha256(const std::string_view input, std::ostream &output) -> void {

FILE: vendor/core/src/core/crypto/crypto_uuid.cc
  type sourcemeta::core (line 14) | namespace sourcemeta::core {
    function uuidv4 (line 19) | auto uuidv4() -> std::string {

FILE: vendor/core/src/core/crypto/include/sourcemeta/core/crypto_sha256.h
  function namespace (line 12) | namespace sourcemeta::core {

FILE: vendor/core/src/core/crypto/include/sourcemeta/core/crypto_uuid.h
  function namespace (line 10) | namespace sourcemeta::core {

FILE: vendor/core/src/core/dns/hostname.cc
  type sourcemeta::core (line 3) | namespace sourcemeta::core {
    function is_let_dig (line 7) | static constexpr auto is_let_dig(const char character) -> bool {
    function is_let_dig_hyp (line 14) | static constexpr auto is_let_dig_hyp(const char character) -> bool {
    function is_hostname (line 18) | auto is_hostname(const std::string_view value) -> bool {

FILE: vendor/core/src/core/dns/include/sourcemeta/core/dns.h
  function namespace (line 19) | namespace sourcemeta::core {

FILE: vendor/core/src/core/gzip/gzip.cc
  type sourcemeta::core (line 9) | namespace sourcemeta::core {
    function gzip (line 11) | auto gzip(const std::uint8_t *input, const std::size_t size) -> std::s...
    function gunzip (line 33) | auto gunzip(const std::uint8_t *input, const std::size_t size,

FILE: vendor/core/src/core/gzip/include/sourcemeta/core/gzip.h
  function namespace (line 26) | namespace sourcemeta::core {

FILE: vendor/core/src/core/gzip/include/sourcemeta/core/gzip_error.h
  function namespace (line 12) | namespace sourcemeta::core {

FILE: vendor/core/src/core/gzip/include/sourcemeta/core/gzip_streambuf.h
  function namespace (line 12) | namespace sourcemeta::core {

FILE: vendor/core/src/core/gzip/streambuf.cc
  type sourcemeta::core (line 11) | namespace sourcemeta::core {
    type GZIPStreamBuffer::Internal (line 15) | struct GZIPStreamBuffer::Internal {

FILE: vendor/core/src/core/html/escape.cc
  type sourcemeta::core (line 5) | namespace sourcemeta::core {
    function html_escape (line 7) | auto html_escape(std::string &text) -> void {
    function needs_escape (line 97) | static auto needs_escape(const std::string_view input) -> bool {
    function html_escape_append (line 114) | auto html_escape_append(std::string &output, const std::string_view in...
    function html_escape_append (line 144) | auto html_escape_append(HTMLBuffer &output, const std::string_view input)

FILE: vendor/core/src/core/html/include/sourcemeta/core/html_buffer.h
  function SOURCEMETA_FORCEINLINE (line 27) | SOURCEMETA_FORCEINLINE inline auto reserve(const std::size_t bytes) -> v...
  function SOURCEMETA_FORCEINLINE (line 33) | SOURCEMETA_FORCEINLINE inline auto append(const char character) -> void {
  function remaining (line 49) | const auto remaining{

FILE: vendor/core/src/core/html/include/sourcemeta/core/html_escape.h
  function namespace (line 13) | namespace sourcemeta::core {

FILE: vendor/core/src/core/html/include/sourcemeta/core/html_writer.h
  function namespace (line 16) | namespace sourcemeta::core {
  function SOURCEMETA_FORCEINLINE (line 66) | SOURCEMETA_FORCEINLINE inline auto text(std::string_view content)
  function SOURCEMETA_FORCEINLINE (line 74) | SOURCEMETA_FORCEINLINE inline auto raw(std::string_view content)
  function HTML_WRITER_VOID (line 148) | HTML_WRITER_CONTAINER(html)
  function SOURCEMETA_FORCEINLINE (line 445) | SOURCEMETA_FORCEINLINE inline auto void_tag(std::string_view tag) -> void {
  function tag_open_ (line 457) | bool tag_open_{false};

FILE: vendor/core/src/core/html/writer.cc
  type sourcemeta::core (line 5) | namespace sourcemeta::core {

FILE: vendor/core/src/core/ip/include/sourcemeta/core/ip.h
  function namespace (line 19) | namespace sourcemeta::core {

FILE: vendor/core/src/core/ip/ipv4.cc
  type sourcemeta::core (line 3) | namespace sourcemeta::core {
    function is_digit (line 5) | static constexpr auto is_digit(const char character) -> bool {
    function is_ipv4 (line 9) | auto is_ipv4(const std::string_view address) -> bool {

FILE: vendor/core/src/core/ip/ipv6.cc
  type sourcemeta::core (line 6) | namespace sourcemeta::core {
    function make_hex_table (line 8) | static constexpr auto make_hex_table() -> std::array<bool, 256> {
    function is_hex_digit (line 20) | static constexpr auto is_hex_digit(const char character) -> bool {
    function is_ipv6 (line 24) | auto is_ipv6(const std::string_view address) -> bool {

FILE: vendor/core/src/core/json/construct.h
  function value (line 83) | unsigned long value{0}
  function hex_char (line 85) | const char hex_char{*position++};
  function has_exponent (line 124) | const bool has_exponent{std::memchr(data, 'e', length) != nullptr ||
  function decimal_after_first_nonzero (line 153) | const auto decimal_after_first_nonzero{decimal_position >
  type class (line 250) | enum class
  function value (line 285) | auto value{Result{
  function child_count (line 326) | const auto child_count{array_entry.count};
  function current_index (line 409) | const auto current_index{frames.back().get().size()};
  function property_count (line 459) | const auto property_count{object_entry.count};
  function key_length (line 500) | const auto key_length{key_entry.length};
  function value_type (line 576) | const auto value_type{value.type()};

FILE: vendor/core/src/core/json/grammar.h
  function CharT (line 128) | constexpr CharT token_whitespace_space{'\u0020'};

FILE: vendor/core/src/core/json/include/sourcemeta/core/json.h
  function namespace (line 36) | namespace sourcemeta::core {
  function JSON (line 311) | struct std::formatter<sourcemeta::core::JSON> {
  function Type (line 3
Copy disabled (too large) Download .json
Condensed preview — 1684 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (18,785K chars).
[
  {
    "path": ".ackrc",
    "chars": 39,
    "preview": "--ignore-dir=vendor\n--ignore-dir=build\n"
  },
  {
    "path": ".editorconfig",
    "chars": 224,
    "preview": "# editorconfig.org\nroot = true\n\n[*]\nindent_style = space\nindent_size = 2\nend_of_line = lf\ncharset = utf-8\ntrim_trailing_"
  },
  {
    "path": ".gitattributes",
    "chars": 65,
    "preview": "/vendor/** linguist-generated=true\n*.bin binary diff=hex\n* -text\n"
  },
  {
    "path": ".github/workflows/ci.yml",
    "chars": 4220,
    "preview": "name: JSON BinPack\n\non:\n  schedule:\n    # Once per day, Monday to Friday\n    - cron: '0 19 * * 1-5'\n  push:\n    branches"
  },
  {
    "path": ".github/workflows/website-build.yml",
    "chars": 664,
    "preview": "name: website\non:\n  pull_request:\n\nconcurrency:\n  group: website-build-${{ github.ref }}\n  cancel-in-progress: true\n\njob"
  },
  {
    "path": ".github/workflows/website-deploy.yml",
    "chars": 1148,
    "preview": "name: website\non:\n  push:\n    branches: [ \"main\" ]\n  workflow_dispatch:\n\npermissions:\n  contents: read\n  pages: write\n  "
  },
  {
    "path": ".gitignore",
    "chars": 3300,
    "preview": "# Created by https://www.toptal.com/developers/gitignore/api/c,c++,node,cmake\n# Edit at https://www.toptal.com/developer"
  },
  {
    "path": "Brewfile",
    "chars": 27,
    "preview": "brew \"cmake\"\nbrew \"gcc@13\"\n"
  },
  {
    "path": "CMakeLists.txt",
    "chars": 2701,
    "preview": "cmake_minimum_required(VERSION 3.16)\nproject(jsonbinpack VERSION 0.0.1 LANGUAGES CXX\n  DESCRIPTION \"\\\nA space-efficient "
  },
  {
    "path": "DEPENDENCIES",
    "chars": 342,
    "preview": "vendorpull https://github.com/sourcemeta/vendorpull 1dcbac42809cf87cb5b045106b863e17ad84ba02\ncore https://github.com/sou"
  },
  {
    "path": "LICENSE",
    "chars": 644,
    "preview": "This software is dual-licensed: you can redistribute it and/or modify it under\nthe terms of the GNU Affero General Publi"
  },
  {
    "path": "Makefile",
    "chars": 1642,
    "preview": "# Programs\nCMAKE = cmake\nCTEST = ctest\nPYTHON = python3\n\n# Options\nPRESET = Debug\nSHARED = OFF\n\nall: configure compile t"
  },
  {
    "path": "README.markdown",
    "chars": 6351,
    "preview": "**This is a work-in-progress. Please consider starring or watching the repository\nto stay up to date.**\n\n***\n\n![JSON Bin"
  },
  {
    "path": "cmake/FindBlaze.cmake",
    "chars": 458,
    "preview": "if(NOT Blaze_FOUND)\n  if(JSONBINPACK_INSTALL)\n    set(SOURCEMETA_BLAZE_INSTALL ON CACHE BOOL \"enable installation\")\n  el"
  },
  {
    "path": "cmake/FindCore.cmake",
    "chars": 949,
    "preview": "if(NOT Core_FOUND)\n  if(JSONBINPACK_INSTALL)\n    set(SOURCEMETA_CORE_INSTALL ON CACHE BOOL \"enable installation\")\n  else"
  },
  {
    "path": "config.cmake.in",
    "chars": 901,
    "preview": "@PACKAGE_INIT@\n\n# Support both casing styles\nlist(APPEND JSONBINPACK_COMPONENTS ${JSONBinPack_FIND_COMPONENTS})\nlist(APP"
  },
  {
    "path": "doxygen/Doxyfile.in",
    "chars": 116368,
    "preview": "# Doxyfile 1.9.3\n\n# This file describes the settings to be used by the documentation system\n# doxygen (www.doxygen.org) "
  },
  {
    "path": "doxygen/todo.markdown",
    "chars": 3232,
    "preview": "Status\n======\n\nJSON BinPack is under heavy development. This page aims to document what's\nmissing. If you want to fund J"
  },
  {
    "path": "src/compiler/CMakeLists.txt",
    "chars": 1281,
    "preview": "sourcemeta_library(NAMESPACE sourcemeta PROJECT jsonbinpack NAME compiler\n  FOLDER \"JSON BinPack/Compiler\"\n  SOURCES\n   "
  },
  {
    "path": "src/compiler/compiler.cc",
    "chars": 3714,
    "preview": "#include <sourcemeta/jsonbinpack/compiler.h>\n\n#include <sourcemeta/core/numeric.h>\n\n#include <sourcemeta/blaze/altersche"
  },
  {
    "path": "src/compiler/encoding.h",
    "chars": 1008,
    "preview": "#ifndef SOURCEMETA_JSONBINPACK_COMPILER_ENCODING_H_\n#define SOURCEMETA_JSONBINPACK_COMPILER_ENCODING_H_\n\n#include <sourc"
  },
  {
    "path": "src/compiler/include/sourcemeta/jsonbinpack/compiler.h",
    "chars": 2752,
    "preview": "#ifndef SOURCEMETA_JSONBINPACK_COMPILER_H_\n#define SOURCEMETA_JSONBINPACK_COMPILER_H_\n\n#ifndef SOURCEMETA_JSONBINPACK_CO"
  },
  {
    "path": "src/compiler/mapper/enum_8_bit.h",
    "chars": 1581,
    "preview": "// TODO: Unit test this mapping once we have container encodings\nclass Enum8Bit final : public sourcemeta::blaze::Schema"
  },
  {
    "path": "src/compiler/mapper/enum_8_bit_top_level.h",
    "chars": 1557,
    "preview": "class Enum8BitTopLevel final : public sourcemeta::blaze::SchemaTransformRule {\npublic:\n  using mutates = std::true_type;"
  },
  {
    "path": "src/compiler/mapper/enum_arbitrary.h",
    "chars": 1603,
    "preview": "// TODO: Unit test this mapping once we have container encodings\nclass EnumArbitrary final : public sourcemeta::blaze::S"
  },
  {
    "path": "src/compiler/mapper/enum_singleton.h",
    "chars": 1424,
    "preview": "class EnumSingleton final : public sourcemeta::blaze::SchemaTransformRule {\npublic:\n  using mutates = std::true_type;\n  "
  },
  {
    "path": "src/compiler/mapper/integer_bounded_8_bit.h",
    "chars": 1897,
    "preview": "class IntegerBounded8Bit final : public sourcemeta::blaze::SchemaTransformRule {\npublic:\n  using mutates = std::true_typ"
  },
  {
    "path": "src/compiler/mapper/integer_bounded_greater_than_8_bit.h",
    "chars": 1852,
    "preview": "class IntegerBoundedGreaterThan8Bit final\n    : public sourcemeta::blaze::SchemaTransformRule {\npublic:\n  using mutates "
  },
  {
    "path": "src/compiler/mapper/integer_bounded_multiplier_8_bit.h",
    "chars": 2186,
    "preview": "class IntegerBoundedMultiplier8Bit final\n    : public sourcemeta::blaze::SchemaTransformRule {\npublic:\n  using mutates ="
  },
  {
    "path": "src/compiler/mapper/integer_bounded_multiplier_greater_than_8_bit.h",
    "chars": 2122,
    "preview": "class IntegerBoundedMultiplierGreaterThan8Bit final\n    : public sourcemeta::blaze::SchemaTransformRule {\npublic:\n  usin"
  },
  {
    "path": "src/compiler/mapper/integer_lower_bound.h",
    "chars": 1647,
    "preview": "class IntegerLowerBound final : public sourcemeta::blaze::SchemaTransformRule {\npublic:\n  using mutates = std::true_type"
  },
  {
    "path": "src/compiler/mapper/integer_lower_bound_multiplier.h",
    "chars": 1811,
    "preview": "class IntegerLowerBoundMultiplier final\n    : public sourcemeta::blaze::SchemaTransformRule {\npublic:\n  using mutates = "
  },
  {
    "path": "src/compiler/mapper/integer_unbound.h",
    "chars": 1552,
    "preview": "class IntegerUnbound final : public sourcemeta::blaze::SchemaTransformRule {\npublic:\n  using mutates = std::true_type;\n "
  },
  {
    "path": "src/compiler/mapper/integer_unbound_multiplier.h",
    "chars": 1716,
    "preview": "class IntegerUnboundMultiplier final\n    : public sourcemeta::blaze::SchemaTransformRule {\npublic:\n  using mutates = std"
  },
  {
    "path": "src/compiler/mapper/integer_upper_bound.h",
    "chars": 1653,
    "preview": "class IntegerUpperBound final : public sourcemeta::blaze::SchemaTransformRule {\npublic:\n  using mutates = std::true_type"
  },
  {
    "path": "src/compiler/mapper/integer_upper_bound_multiplier.h",
    "chars": 1817,
    "preview": "class IntegerUpperBoundMultiplier final\n    : public sourcemeta::blaze::SchemaTransformRule {\npublic:\n  using mutates = "
  },
  {
    "path": "src/compiler/mapper/number_arbitrary.h",
    "chars": 1355,
    "preview": "class NumberArbitrary final : public sourcemeta::blaze::SchemaTransformRule {\npublic:\n  using mutates = std::true_type;\n"
  },
  {
    "path": "src/runtime/CMakeLists.txt",
    "chars": 1115,
    "preview": "sourcemeta_library(NAMESPACE sourcemeta PROJECT jsonbinpack NAME runtime\n  FOLDER \"JSON BinPack/Runtime\"\n  PRIVATE_HEADE"
  },
  {
    "path": "src/runtime/cache.cc",
    "chars": 2300,
    "preview": "#include <sourcemeta/jsonbinpack/runtime_encoder_cache.h>\n\nnamespace sourcemeta::jsonbinpack {\n\nauto Cache::record(const"
  },
  {
    "path": "src/runtime/decoder_any.cc",
    "chars": 6872,
    "preview": "#include <sourcemeta/jsonbinpack/runtime_decoder.h>\n\n#include <sourcemeta/core/numeric.h>\n\n#include \"unreachable.h\"\n\n#in"
  },
  {
    "path": "src/runtime/decoder_array.cc",
    "chars": 2248,
    "preview": "#include <sourcemeta/jsonbinpack/runtime_decoder.h>\n\n#include <sourcemeta/core/numeric.h>\n\n#include <cassert> // assert\n"
  },
  {
    "path": "src/runtime/decoder_common.cc",
    "chars": 1876,
    "preview": "#include <sourcemeta/jsonbinpack/runtime_decoder.h>\n\n#include \"unreachable.h\"\n\n#include <cassert> // assert\n#include <va"
  },
  {
    "path": "src/runtime/decoder_integer.cc",
    "chars": 4106,
    "preview": "#include <sourcemeta/jsonbinpack/runtime_decoder.h>\n\n#include <sourcemeta/core/numeric.h>\n\n#include <cassert> // assert\n"
  },
  {
    "path": "src/runtime/decoder_number.cc",
    "chars": 709,
    "preview": "#include <sourcemeta/jsonbinpack/runtime_decoder.h>\n\n#include <cstdint> // std::int64_t, std::uint64_t\n\n#if defined(__GN"
  },
  {
    "path": "src/runtime/decoder_object.cc",
    "chars": 1263,
    "preview": "#include <sourcemeta/jsonbinpack/runtime_decoder.h>\n\n#include <cassert> // assert\n#include <cstdint> // std::uint64_t\n\nn"
  },
  {
    "path": "src/runtime/decoder_string.cc",
    "chars": 4263,
    "preview": "#include <sourcemeta/jsonbinpack/runtime_decoder.h>\n\n#include <cassert> // assert\n#include <cstdint> // std::uint8_t, st"
  },
  {
    "path": "src/runtime/encoder_any.cc",
    "chars": 8778,
    "preview": "#include <sourcemeta/jsonbinpack/runtime_encoder.h>\n\n#include <sourcemeta/core/numeric.h>\n\n#include \"unreachable.h\"\n\n#in"
  },
  {
    "path": "src/runtime/encoder_array.cc",
    "chars": 2530,
    "preview": "#include <sourcemeta/jsonbinpack/runtime_encoder.h>\n\n#include <sourcemeta/core/numeric.h>\n\n#include <cassert> // assert\n"
  },
  {
    "path": "src/runtime/encoder_common.cc",
    "chars": 2003,
    "preview": "#include <sourcemeta/jsonbinpack/runtime_encoder.h>\n\n#include \"unreachable.h\"\n\n#include <cassert> // assert\n#include <va"
  },
  {
    "path": "src/runtime/encoder_integer.cc",
    "chars": 3039,
    "preview": "#include <sourcemeta/jsonbinpack/runtime_encoder.h>\n\n#include <sourcemeta/core/numeric.h>\n\n#include <cassert> // assert\n"
  },
  {
    "path": "src/runtime/encoder_number.cc",
    "chars": 671,
    "preview": "#include <sourcemeta/jsonbinpack/runtime_encoder.h>\n\n#include <sourcemeta/core/numeric.h>\n\n#include <cassert> // assert\n"
  },
  {
    "path": "src/runtime/encoder_object.cc",
    "chars": 1018,
    "preview": "#include <sourcemeta/jsonbinpack/runtime_encoder.h>\n\n#include <cassert> // assert\n\nnamespace sourcemeta::jsonbinpack {\n\n"
  },
  {
    "path": "src/runtime/encoder_string.cc",
    "chars": 5482,
    "preview": "#include <sourcemeta/jsonbinpack/runtime_encoder.h>\n\n#include <cassert> // assert\n#include <cstdint> // std::uint8_t, st"
  },
  {
    "path": "src/runtime/include/sourcemeta/jsonbinpack/runtime.h",
    "chars": 1649,
    "preview": "#ifndef SOURCEMETA_JSONBINPACK_RUNTIME_H_\n#define SOURCEMETA_JSONBINPACK_RUNTIME_H_\n\n/// @defgroup runtime Runtime\n/// @"
  },
  {
    "path": "src/runtime/include/sourcemeta/jsonbinpack/runtime_decoder.h",
    "chars": 2226,
    "preview": "#ifndef SOURCEMETA_JSONBINPACK_RUNTIME_DECODER_H_\n#define SOURCEMETA_JSONBINPACK_RUNTIME_DECODER_H_\n\n#ifndef SOURCEMETA_"
  },
  {
    "path": "src/runtime/include/sourcemeta/jsonbinpack/runtime_encoder.h",
    "chars": 2364,
    "preview": "#ifndef SOURCEMETA_JSONBINPACK_RUNTIME_ENCODER_H_\n#define SOURCEMETA_JSONBINPACK_RUNTIME_ENCODER_H_\n\n#ifndef SOURCEMETA_"
  },
  {
    "path": "src/runtime/include/sourcemeta/jsonbinpack/runtime_encoder_cache.h",
    "chars": 1648,
    "preview": "#ifndef SOURCEMETA_JSONBINPACK_RUNTIME_ENCODER_CACHE_H_\n#define SOURCEMETA_JSONBINPACK_RUNTIME_ENCODER_CACHE_H_\n#ifndef "
  },
  {
    "path": "src/runtime/include/sourcemeta/jsonbinpack/runtime_encoding.h",
    "chars": 40170,
    "preview": "#ifndef SOURCEMETA_JSONBINPACK_RUNTIME_ENCODING_H_\n#define SOURCEMETA_JSONBINPACK_RUNTIME_ENCODING_H_\n\n#include <sourcem"
  },
  {
    "path": "src/runtime/include/sourcemeta/jsonbinpack/runtime_input_stream.h",
    "chars": 1087,
    "preview": "#ifndef SOURCEMETA_JSONBINPACK_RUNTIME_INPUT_STREAM_H_\n#define SOURCEMETA_JSONBINPACK_RUNTIME_INPUT_STREAM_H_\n\n#ifndef S"
  },
  {
    "path": "src/runtime/include/sourcemeta/jsonbinpack/runtime_output_stream.h",
    "chars": 1012,
    "preview": "#ifndef SOURCEMETA_JSONBINPACK_RUNTIME_OUTPUT_STREAM_H_\n#define SOURCEMETA_JSONBINPACK_RUNTIME_OUTPUT_STREAM_H_\n\n#ifndef"
  },
  {
    "path": "src/runtime/input_stream.cc",
    "chars": 2025,
    "preview": "#include <sourcemeta/jsonbinpack/runtime_input_stream.h>\n\n#include <sourcemeta/core/numeric.h>\n\n#include <cassert> // as"
  },
  {
    "path": "src/runtime/loader.cc",
    "chars": 2063,
    "preview": "#include <sourcemeta/jsonbinpack/runtime.h>\n\n#include \"loader_v1_any.h\"\n#include \"loader_v1_array.h\"\n#include \"loader_v1"
  },
  {
    "path": "src/runtime/loader_v1_any.h",
    "chars": 2061,
    "preview": "#ifndef SOURCEMETA_JSONBINPACK_RUNTIME_LOADER_V1_ANY_H_\n#define SOURCEMETA_JSONBINPACK_RUNTIME_LOADER_V1_ANY_H_\n\n#includ"
  },
  {
    "path": "src/runtime/loader_v1_array.h",
    "chars": 4967,
    "preview": "#ifndef SOURCEMETA_JSONBINPACK_RUNTIME_LOADER_V1_ARRAY_H_\n#define SOURCEMETA_JSONBINPACK_RUNTIME_LOADER_V1_ARRAY_H_\n\n#in"
  },
  {
    "path": "src/runtime/loader_v1_integer.h",
    "chars": 2585,
    "preview": "#ifndef SOURCEMETA_JSONBINPACK_RUNTIME_LOADER_V1_INTEGER_H_\n#define SOURCEMETA_JSONBINPACK_RUNTIME_LOADER_V1_INTEGER_H_\n"
  },
  {
    "path": "src/runtime/loader_v1_number.h",
    "chars": 422,
    "preview": "#ifndef SOURCEMETA_JSONBINPACK_RUNTIME_LOADER_V1_NUMBER_H_\n#define SOURCEMETA_JSONBINPACK_RUNTIME_LOADER_V1_NUMBER_H_\n\n#"
  },
  {
    "path": "src/runtime/loader_v1_string.h",
    "chars": 2409,
    "preview": "#ifndef SOURCEMETA_JSONBINPACK_RUNTIME_LOADER_V1_STRING_H_\n#define SOURCEMETA_JSONBINPACK_RUNTIME_LOADER_V1_STRING_H_\n\n#"
  },
  {
    "path": "src/runtime/output_stream.cc",
    "chars": 1473,
    "preview": "#include <sourcemeta/jsonbinpack/runtime_output_stream.h>\n\n#include <sourcemeta/core/numeric.h>\n\n#include <cassert> // a"
  },
  {
    "path": "src/runtime/unreachable.h",
    "chars": 426,
    "preview": "#ifndef SOURCEMETA_JSONBINPACK_RUNTIME_UNREACHABLE_H_\n#define SOURCEMETA_JSONBINPACK_RUNTIME_UNREACHABLE_H_\n\n#include <c"
  },
  {
    "path": "test/compiler/2020_12_compiler_any_test.cc",
    "chars": 3109,
    "preview": "#include <gtest/gtest.h>\n\n#include <sourcemeta/core/json.h>\n#include <sourcemeta/jsonbinpack/compiler.h>\n\nTEST(JSONBinPa"
  },
  {
    "path": "test/compiler/2020_12_compiler_integer_test.cc",
    "chars": 7199,
    "preview": "#include <gtest/gtest.h>\n\n#include <sourcemeta/core/json.h>\n#include <sourcemeta/jsonbinpack/compiler.h>\n\nTEST(JSONBinPa"
  },
  {
    "path": "test/compiler/2020_12_compiler_number_test.cc",
    "chars": 705,
    "preview": "#include <gtest/gtest.h>\n\n#include <sourcemeta/core/json.h>\n#include <sourcemeta/jsonbinpack/compiler.h>\n\nTEST(JSONBinPa"
  },
  {
    "path": "test/compiler/CMakeLists.txt",
    "chars": 568,
    "preview": "sourcemeta_googletest(NAMESPACE sourcemeta PROJECT jsonbinpack NAME compiler\n  FOLDER \"JSON BinPack/Compiler\"\n  SOURCES\n"
  },
  {
    "path": "test/compiler/canonicalizer_test.cc",
    "chars": 1457,
    "preview": "#include <gtest/gtest.h>\n\n#include <sourcemeta/core/json.h>\n#include <sourcemeta/core/jsonschema.h>\n#include <sourcemeta"
  },
  {
    "path": "test/compiler/compiler_test.cc",
    "chars": 6695,
    "preview": "#include <gtest/gtest.h>\n\n#include <sourcemeta/core/json.h>\n#include <sourcemeta/jsonbinpack/compiler.h>\n\n#include <stde"
  },
  {
    "path": "test/e2e/CMakeLists.txt",
    "chars": 2114,
    "preview": "add_executable(jsonbinpack_e2e_test_runner runner.cc)\nsourcemeta_add_default_options(PRIVATE jsonbinpack_e2e_test_runner"
  },
  {
    "path": "test/e2e/circleciblank/document.json",
    "chars": 21,
    "preview": "{\n  \"version\": 2.0\n}\n"
  },
  {
    "path": "test/e2e/circleciblank/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/circleciblank/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/circleciblank/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/circleciblank/schema-less/size.txt",
    "chars": 3,
    "preview": "11\n"
  },
  {
    "path": "test/e2e/circlecimatrix/document.json",
    "chars": 252,
    "preview": "{\n  \"version\": 2.1,\n  \"workflows\": {\n    \"test\": {\n      \"jobs\": [\n        {\n          \"m1\": {\n            \"matrix\": {\n "
  },
  {
    "path": "test/e2e/circlecimatrix/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/circlecimatrix/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/circlecimatrix/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/circlecimatrix/schema-less/size.txt",
    "chars": 3,
    "preview": "66\n"
  },
  {
    "path": "test/e2e/commitlint/document.json",
    "chars": 120,
    "preview": "{\n  \"rules\": {\n    \"scope-case\": [2, \"always\", [\"lower-case\"]],\n    \"subject-case\": [2, \"always\", [\"lower-case\"]]\n  }\n}\n"
  },
  {
    "path": "test/e2e/commitlint/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/commitlint/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/commitlint/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/commitlint/schema-less/size.txt",
    "chars": 3,
    "preview": "60\n"
  },
  {
    "path": "test/e2e/commitlintbasic/document.json",
    "chars": 30,
    "preview": "{\n  \"defaultIgnores\": false\n}\n"
  },
  {
    "path": "test/e2e/commitlintbasic/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/commitlintbasic/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/commitlintbasic/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/commitlintbasic/schema-less/size.txt",
    "chars": 3,
    "preview": "17\n"
  },
  {
    "path": "test/e2e/epr/document.json",
    "chars": 601,
    "preview": "{\n\t\"site\": \"https://eample.com\",\n\t\"maxAge\": 31536000,\n\t\"reportUrl\": \"https://example.com\",\n\t\"defaultNavBehavior\": \"block"
  },
  {
    "path": "test/e2e/epr/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/epr/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/epr/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/epr/schema-less/size.txt",
    "chars": 4,
    "preview": "321\n"
  },
  {
    "path": "test/e2e/eslintrc/document.json",
    "chars": 1359,
    "preview": "{\n\t\"extends\": \"defaults/configurations/eslint\",\n\t\"parser\": \"babel-eslint\",\n\t\"ecmaFeatures\": {\n\t\t\"jsx\": true\n\t},\n\t\"plugin"
  },
  {
    "path": "test/e2e/eslintrc/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/eslintrc/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/eslintrc/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/eslintrc/schema-less/size.txt",
    "chars": 4,
    "preview": "969\n"
  },
  {
    "path": "test/e2e/esmrc/document.json",
    "chars": 140,
    "preview": "{\n  \"cjs\": false,\n  \"mainFields\": [\n    \"main\",\n    \"app\"\n  ],\n  \"mode\": \"strict\",\n  \"force\": true,\n  \"cache\": false,\n  "
  },
  {
    "path": "test/e2e/esmrc/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/esmrc/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/esmrc/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/esmrc/schema-less/size.txt",
    "chars": 3,
    "preview": "64\n"
  },
  {
    "path": "test/e2e/geojson/document.json",
    "chars": 454,
    "preview": "{\n  \"type\": \"MultiPolygon\",\n  \"coordinates\": [\n    [\n      [\n        [102.0, 2.0],\n        [103.0, 2.0],\n        [103.0,"
  },
  {
    "path": "test/e2e/geojson/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/geojson/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/geojson/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/geojson/schema-less/size.txt",
    "chars": 4,
    "preview": "127\n"
  },
  {
    "path": "test/e2e/githubfundingblank/document.json",
    "chars": 224,
    "preview": "{\n  \"github\": \"EbookFoundation\",\n  \"patreon\": null,\n  \"open_collective\": null,\n  \"ko_fi\": null,\n  \"tidelift\": null,\n  \"c"
  },
  {
    "path": "test/e2e/githubfundingblank/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/githubfundingblank/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/githubfundingblank/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/githubfundingblank/schema-less/size.txt",
    "chars": 4,
    "preview": "124\n"
  },
  {
    "path": "test/e2e/githubworkflow/document.json",
    "chars": 632,
    "preview": "{\n  \"name\": \"Test on Pull\",\n  \"on\": [\n    \"push\"\n  ],\n  \"jobs\": {\n    \"build\": {\n      \"runs-on\": \"ubuntu-latest\",\n     "
  },
  {
    "path": "test/e2e/githubworkflow/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/githubworkflow/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/githubworkflow/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/githubworkflow/schema-less/size.txt",
    "chars": 4,
    "preview": "277\n"
  },
  {
    "path": "test/e2e/gruntcontribclean/document.json",
    "chars": 128,
    "preview": "{\n\t\"foo\": [ \"path\" ],\n\t\"main\": {\n\t\t\"files\": { },\n\t\t\"src\": [ \"path\" ]\n\t},\n\t\"options\": {\n\t\t\"force\": true,\n\t\t\"no-write\": tr"
  },
  {
    "path": "test/e2e/gruntcontribclean/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/gruntcontribclean/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/gruntcontribclean/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/gruntcontribclean/schema-less/size.txt",
    "chars": 3,
    "preview": "57\n"
  },
  {
    "path": "test/e2e/imageoptimizerwebjob/document.json",
    "chars": 128,
    "preview": "{\n  \"optimizations\": [\n    {\n      \"includes\": [ \"node_modules\" ],\n      \"excludes\": [ \"ost\" ],\n      \"lossy\": true\n    "
  },
  {
    "path": "test/e2e/imageoptimizerwebjob/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/imageoptimizerwebjob/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/imageoptimizerwebjob/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/imageoptimizerwebjob/schema-less/size.txt",
    "chars": 3,
    "preview": "61\n"
  },
  {
    "path": "test/e2e/jsonereversesort/document.json",
    "chars": 137,
    "preview": "{\n  \"$let\": {\n    \"x\": [10,30,10,10,10]\n  },\n  \"in\": {\n    \"$reverse\": {\n      \"$sort\": { \"$eval\": \"x\" },\n      \"by(x)\":"
  },
  {
    "path": "test/e2e/jsonereversesort/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/jsonereversesort/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/jsonereversesort/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/jsonereversesort/schema-less/size.txt",
    "chars": 3,
    "preview": "52\n"
  },
  {
    "path": "test/e2e/jsonesort/document.json",
    "chars": 43,
    "preview": "{\n  \"$sort\": [1,2,1,3,1],\n  \"by(x)\": \"x\"\n}\n"
  },
  {
    "path": "test/e2e/jsonesort/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/jsonesort/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/jsonesort/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/jsonesort/schema-less/size.txt",
    "chars": 3,
    "preview": "21\n"
  },
  {
    "path": "test/e2e/jsonfeed/document.json",
    "chars": 666,
    "preview": "{\n  \"version\": \"https://jsonfeed.org/version/1\",\n  \"user_comment\": \"This is a microblog feed. You can add this to your f"
  },
  {
    "path": "test/e2e/jsonfeed/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/jsonfeed/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/jsonfeed/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/jsonfeed/schema-less/size.txt",
    "chars": 4,
    "preview": "514\n"
  },
  {
    "path": "test/e2e/jsonresume/document.json",
    "chars": 3910,
    "preview": "{\n  \"basics\": {\n    \"name\": \"Richard Hendriks\",\n    \"label\": \"Programmer\",\n    \"picture\": \"\",\n    \"email\": \"richard.hend"
  },
  {
    "path": "test/e2e/jsonresume/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/jsonresume/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/jsonresume/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/jsonresume/schema-less/size.txt",
    "chars": 5,
    "preview": "2619\n"
  },
  {
    "path": "test/e2e/mixed-bounded-object/document.json",
    "chars": 55,
    "preview": "{\n  \"foo\": \"bar\",\n  \"baz\": {\n    \"qux\": [ 1, 2 ]\n  }\n}\n"
  },
  {
    "path": "test/e2e/mixed-bounded-object/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/mixed-bounded-object/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/mixed-bounded-object/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/mixed-bounded-object/schema-less/size.txt",
    "chars": 3,
    "preview": "21\n"
  },
  {
    "path": "test/e2e/netcoreproject/document.json",
    "chars": 1241,
    "preview": "{\n\t\"version\": \"0.1-alpha-*\",\n\t\"compilationOptions\": {\n\t\t\"warningsAsErrors\": true\n\t},\n\t\"dependencies\": {\n\t\t\"Microsoft.Bcl"
  },
  {
    "path": "test/e2e/netcoreproject/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/netcoreproject/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/netcoreproject/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/netcoreproject/schema-less/size.txt",
    "chars": 4,
    "preview": "748\n"
  },
  {
    "path": "test/e2e/nightwatch/document.json",
    "chars": 1834,
    "preview": "{\n  \"custom_commands_path\": null,\n  \"custom_assertions_path\": null,\n  \"page_objects_path\": null,\n  \"globals_path\": null,"
  },
  {
    "path": "test/e2e/nightwatch/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/nightwatch/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/nightwatch/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/nightwatch/schema-less/size.txt",
    "chars": 5,
    "preview": "1085\n"
  },
  {
    "path": "test/e2e/openweathermap/document.json",
    "chars": 709,
    "preview": "{\n  \"coord\": {\n    \"lon\": -122.08,\n    \"lat\": 37.39\n  },\n  \"weather\": [\n    {\n      \"id\": 800,\n      \"main\": \"Clear\",\n  "
  },
  {
    "path": "test/e2e/openweathermap/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/openweathermap/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/openweathermap/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/openweathermap/schema-less/size.txt",
    "chars": 4,
    "preview": "349\n"
  },
  {
    "path": "test/e2e/openweatherroadrisk/document.json",
    "chars": 611,
    "preview": "[\n  {\n    \"dt\": 1602702000,\n    \"coord\": [\n      7.27,\n      44.04\n    ],\n    \"weather\": {\n      \"temp\": 278.44,\n      \""
  },
  {
    "path": "test/e2e/openweatherroadrisk/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/openweatherroadrisk/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/openweatherroadrisk/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/openweatherroadrisk/schema-less/size.txt",
    "chars": 4,
    "preview": "254\n"
  },
  {
    "path": "test/e2e/ox-test/document.json",
    "chars": 280,
    "preview": "{\n  \"tags\": [],\n  \"tz\": -25200,\n  \"days\": [ 1, 1, 2, 1 ],\n  \"coord\": [ -90.0715, 29.9510 ],\n  \"data\": [\n    { \"name\": \"o"
  },
  {
    "path": "test/e2e/ox-test/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/ox-test/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/ox-test/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/ox-test/schema-less/size.txt",
    "chars": 3,
    "preview": "94\n"
  },
  {
    "path": "test/e2e/packagejson/document.json",
    "chars": 2946,
    "preview": "{\n    \"name\": \"grunt\",\n    \"description\": \"The JavaScript Task Runner\",\n    \"version\": \"0.4.5\",\n    \"author\": {\n        "
  },
  {
    "path": "test/e2e/packagejson/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/packagejson/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/packagejson/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/packagejson/schema-less/size.txt",
    "chars": 5,
    "preview": "1957\n"
  },
  {
    "path": "test/e2e/packagejsonlintrc/document.json",
    "chars": 1461,
    "preview": "{\n  \"rules\": {\n    \"require-author\": \"error\",\n    \"require-description\": \"error\",\n    \"require-engines\": \"error\",\n    \"r"
  },
  {
    "path": "test/e2e/packagejsonlintrc/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/packagejsonlintrc/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  },
  {
    "path": "test/e2e/packagejsonlintrc/schema-less/schema.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "test/e2e/packagejsonlintrc/schema-less/size.txt",
    "chars": 4,
    "preview": "791\n"
  },
  {
    "path": "test/e2e/runner.cc",
    "chars": 3825,
    "preview": "#include <sourcemeta/jsonbinpack/compiler.h>\n#include <sourcemeta/jsonbinpack/runtime.h>\n\n#include <sourcemeta/core/json"
  },
  {
    "path": "test/e2e/sapcloudsdkpipeline/document.json",
    "chars": 57,
    "preview": "{\n  \"general\": null,\n  \"stages\": null,\n  \"steps\": null\n}\n"
  },
  {
    "path": "test/e2e/sapcloudsdkpipeline/schema-less/canonical.json",
    "chars": 5,
    "preview": "true\n"
  },
  {
    "path": "test/e2e/sapcloudsdkpipeline/schema-less/encoding.json",
    "chars": 147,
    "preview": "{\n  \"$schema\": \"tag:sourcemeta.com,2024:jsonbinpack/encoding/v1\",\n  \"binpackEncoding\": \"ANY_PACKED_TYPE_TAG_BYTE_PREFIX\""
  }
]

// ... and 1484 more files (download for full content)

About this extraction

This page contains the full source code of the sourcemeta/jsonbinpack GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 1684 files (17.1 MB), approximately 4.6M tokens, and a symbol index with 9560 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!